@thryveai/theme-interfaces 2.7.48 → 2.7.49
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.
|
@@ -77,6 +77,7 @@ export interface IRetailerSettings {
|
|
|
77
77
|
productCardv2?: boolean;
|
|
78
78
|
promoTemplateVersion?: number;
|
|
79
79
|
registrationFields?: IRegistrationField[];
|
|
80
|
+
registrationStep2?: IRegistrationStep2;
|
|
80
81
|
restrictMapPlacesResults?: IRestrictMapPlaces;
|
|
81
82
|
retailerCountry?: IRetailerCountry;
|
|
82
83
|
retailerName: string;
|
|
@@ -334,6 +335,7 @@ export interface IFeaturesV2 {
|
|
|
334
335
|
};
|
|
335
336
|
recipeLegacyShareLink: boolean;
|
|
336
337
|
registrationFields: IRegistrationField[];
|
|
338
|
+
registrationStep2: IRegistrationStep2;
|
|
337
339
|
secondTierAuthorization?: ISecondTierAuthorization;
|
|
338
340
|
showCheckoutPromoCode: boolean;
|
|
339
341
|
showImgOnOrder: boolean;
|
|
@@ -480,9 +482,12 @@ export interface IRegistrationField {
|
|
|
480
482
|
placeholder: string;
|
|
481
483
|
designVersion: IRegistrationFieldTypes;
|
|
482
484
|
validationTypes: IValidationType[];
|
|
483
|
-
alwaysVisible: boolean;
|
|
484
485
|
editable: boolean;
|
|
485
486
|
}
|
|
487
|
+
export interface IRegistrationStep2 {
|
|
488
|
+
enableV2?: boolean;
|
|
489
|
+
alwaysVisible: boolean;
|
|
490
|
+
}
|
|
486
491
|
export interface ICheckoutValidation {
|
|
487
492
|
instructions: IValidationType[];
|
|
488
493
|
phoneNumber: IValidationType[];
|
|
@@ -127,6 +127,10 @@ var DefaultConfigSFUI = {
|
|
|
127
127
|
},
|
|
128
128
|
recipeLegacyShareLink: true,
|
|
129
129
|
registrationFields: [],
|
|
130
|
+
registrationStep2: {
|
|
131
|
+
alwaysVisible: false,
|
|
132
|
+
enableV2: false,
|
|
133
|
+
},
|
|
130
134
|
secondTierAuthorization: undefined,
|
|
131
135
|
showCheckoutPromoCode: true,
|
|
132
136
|
showImgOnOrder: false,
|