@thryveai/theme-interfaces 2.7.47 → 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,6 +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;
489
+ alwaysVisible: boolean;
483
490
  }
484
491
  export interface ICheckoutValidation {
485
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,
@@ -304,7 +308,7 @@ var DefaultConfigSFUI = {
304
308
  enableSelectToContinueText: false,
305
309
  },
306
310
  useContentEngineV2Components: {
307
- Carousel: false,
311
+ Carousel: true,
308
312
  SmallCarousel: false,
309
313
  Freeform: false,
310
314
  ContactUs: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.47",
3
+ "version": "2.7.49",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",