@thryveai/theme-interfaces 2.7.48 → 2.7.50

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,8 +482,11 @@ export interface IRegistrationField {
480
482
  placeholder: string;
481
483
  designVersion: IRegistrationFieldTypes;
482
484
  validationTypes: IValidationType[];
485
+ editable?: boolean;
486
+ }
487
+ export interface IRegistrationStep2 {
488
+ enableV2: boolean;
483
489
  alwaysVisible: boolean;
484
- editable: boolean;
485
490
  }
486
491
  export interface ICheckoutValidation {
487
492
  instructions: 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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.48",
3
+ "version": "2.7.50",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",