@thryveai/theme-interfaces 2.7.182 → 2.7.184

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.
@@ -2153,10 +2153,13 @@ export declare const JSONSchemas: {
2153
2153
  locationId: {
2154
2154
  type: string;
2155
2155
  };
2156
+ enableRecommendationsV2: {
2157
+ type: string;
2158
+ };
2156
2159
  };
2157
2160
  additionalProperties: boolean;
2158
2161
  };
2159
- "DeepPartial<structure-749943994-834-854-749943994-824-855-749943994-759-899-749943994-0-1735>": {
2162
+ "DeepPartial<structure-749943994-834-854-749943994-824-855-749943994-759-935-749943994-0-1771>": {
2160
2163
  type: string;
2161
2164
  properties: {
2162
2165
  enable: {
@@ -2354,7 +2357,7 @@ export declare const JSONSchemas: {
2354
2357
  };
2355
2358
  additionalProperties: boolean;
2356
2359
  };
2357
- "DeepPartial<interface-749943994-705-759-749943994-0-1735>": {
2360
+ "DeepPartial<interface-749943994-705-759-749943994-0-1771>": {
2358
2361
  type: string;
2359
2362
  properties: {
2360
2363
  enabled: {
@@ -3028,18 +3028,21 @@ exports.JSONSchemas = {
3028
3028
  "type": "boolean"
3029
3029
  },
3030
3030
  "search": {
3031
- "$ref": "#/definitions/DeepPartial%3Cstructure-749943994-834-854-749943994-824-855-749943994-759-899-749943994-0-1735%3E"
3031
+ "$ref": "#/definitions/DeepPartial%3Cstructure-749943994-834-854-749943994-824-855-749943994-759-935-749943994-0-1771%3E"
3032
3032
  },
3033
3033
  "stores": {
3034
3034
  "$ref": "#/definitions/DeepPartial%3Cstring%5B%5D%3E"
3035
3035
  },
3036
3036
  "locationId": {
3037
3037
  "type": "string"
3038
+ },
3039
+ "enableRecommendationsV2": {
3040
+ "type": "boolean"
3038
3041
  }
3039
3042
  },
3040
3043
  "additionalProperties": false
3041
3044
  },
3042
- "DeepPartial<structure-749943994-834-854-749943994-824-855-749943994-759-899-749943994-0-1735>": {
3045
+ "DeepPartial<structure-749943994-834-854-749943994-824-855-749943994-759-935-749943994-0-1771>": {
3043
3046
  "type": "object",
3044
3047
  "properties": {
3045
3048
  "enable": {
@@ -3277,12 +3280,12 @@ exports.JSONSchemas = {
3277
3280
  "type": "object",
3278
3281
  "properties": {
3279
3282
  "preserveOrderNote": {
3280
- "$ref": "#/definitions/DeepPartial%3Cinterface-749943994-705-759-749943994-0-1735%3E"
3283
+ "$ref": "#/definitions/DeepPartial%3Cinterface-749943994-705-759-749943994-0-1771%3E"
3281
3284
  }
3282
3285
  },
3283
3286
  "additionalProperties": false
3284
3287
  },
3285
- "DeepPartial<interface-749943994-705-759-749943994-0-1735>": {
3288
+ "DeepPartial<interface-749943994-705-759-749943994-0-1771>": {
3286
3289
  "type": "object",
3287
3290
  "properties": {
3288
3291
  "enabled": {
@@ -27,6 +27,7 @@ export interface IRecommendedSubstitutions {
27
27
  };
28
28
  stores: string[];
29
29
  locationId: string;
30
+ enableRecommendationsV2: boolean;
30
31
  }
31
32
  export interface ISpecialRequestItems {
32
33
  enable: boolean;
@@ -13,6 +13,7 @@ export interface IMobileSettings {
13
13
  enableCircularsForCorporateStore: boolean;
14
14
  enableCompactHeader: boolean;
15
15
  enableCouponRecommendedTag: boolean;
16
+ enableCouponGalleryDetailsCardV2: boolean;
16
17
  enableDeleteAccount: boolean;
17
18
  enableEarlyTimeSlotSelection: boolean;
18
19
  enableFirstIntentModal: boolean;
@@ -6,6 +6,7 @@ exports.MobileDefaultSettings = {
6
6
  enableCircularsForCorporateStore: false,
7
7
  enableCouponRecommendedTag: true,
8
8
  enableDeleteAccount: true,
9
+ enableCouponGalleryDetailsCardV2: false,
9
10
  enableEarlyTimeSlotSelection: false,
10
11
  enableFirstIntentModal: false,
11
12
  enableGetDeliveryMoreStores: false,
@@ -96,6 +96,12 @@ exports.AdminSettingsTemplateMobile = {
96
96
  helpLink: "",
97
97
  type: "checkbox",
98
98
  },
99
+ enableCouponGalleryDetailsCardV2: {
100
+ description: "Should show Coupon Gallery details card V2?",
101
+ title: "Enable Coupon Gallery details card V2",
102
+ helpLink: "",
103
+ type: "checkbox",
104
+ },
99
105
  },
100
106
  type: "collapsableObject",
101
107
  },