You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Add To Bag Text */
addToBagText?: string | null;
/** Bag Text */
bagText?: string | null;
/** Added To Bag Text */
addedToBagText?: string | null;
Actual output:
/** Add To Bag Text */
addToBagText?: string | undefined;
/** Bag Text */
bagText?: string | undefined;
/** Added To Bag Text */
addedToBagText?: string | undefined;
Any debugging guidance would be greatly appreciated! Thank you!
The text was updated successfully, but these errors were encountered:
The documentation states:
However after generating types, there is not a single instance of
null
in the generated files, despite dozens of attributes being non-required.Node version: 16.17.0
Package version: 3.4.0
Yarn script:
Expected output:
Actual output:
Any debugging guidance would be greatly appreciated! Thank you!
The text was updated successfully, but these errors were encountered: