@gem-sdk/core 1.14.0-dev.745 → 1.14.0-dev.750
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -7646,10 +7646,11 @@ type PostPurchaseTypo = {
|
|
|
7646
7646
|
textTransform?: PostPurchaseTextTransform;
|
|
7647
7647
|
textColor?: PostPurchaseTextColor;
|
|
7648
7648
|
};
|
|
7649
|
+
type SettingIDType = keyof PostPurchaseTypo;
|
|
7649
7650
|
type TypographyPostPurchaseControlType<T> = SharedControlType<T> & {
|
|
7650
7651
|
type: 'typography-post-purchase';
|
|
7651
7652
|
default?: PostPurchaseTypo;
|
|
7652
|
-
|
|
7653
|
+
hiddenSetting?: SettingIDType[];
|
|
7653
7654
|
};
|
|
7654
7655
|
|
|
7655
7656
|
type ProductOffersControlType<T> = SharedControlType<T> & {
|