@thryveai/theme-interfaces 2.7.10 → 2.7.12

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.
@@ -278,6 +278,7 @@ export interface IAddressesSettingsV2 {
278
278
  addNewAddressUrl: string;
279
279
  editAddressUrl: string;
280
280
  deleteAddressUrl: string;
281
+ addressProfileName: string | null;
281
282
  };
282
283
  useAddressValidation: boolean;
283
284
  }
@@ -530,6 +531,10 @@ export interface IProductCardsProps {
530
531
  }
531
532
  export interface IProductCardV2ComponentProps {
532
533
  promotionLabel: IProductCardV2PromotionLabelsSettings;
534
+ recommendedLabel: IProductCardV2RecommendedLabelSettings;
535
+ }
536
+ export interface IProductCardV2RecommendedLabelSettings {
537
+ enabled: boolean;
533
538
  }
534
539
  export interface IProductCardV2PromotionLabelsSettings {
535
540
  showLines: number;
@@ -702,7 +702,7 @@ exports.AdminSettingsTemplateSFUI = {
702
702
  description: "The default tab displayed on modals like store selection",
703
703
  helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3708780694/Default+Tab+View",
704
704
  type: exports.AdminTemplateInputTypes.dropdown,
705
- options: ["list", "map"],
705
+ options: ["listView", "mapView"],
706
706
  },
707
707
  disableTprPrice: {
708
708
  title: "Disable TPR Price",
@@ -42,6 +42,7 @@ var DefaultConfigSFUI = {
42
42
  editAddressUrl: "",
43
43
  enabled: false,
44
44
  useForNewAddresses: false,
45
+ addressProfileName: null,
45
46
  },
46
47
  useAddressValidation: true,
47
48
  },
@@ -215,6 +216,7 @@ var DefaultConfigSFUI = {
215
216
  promotionLabel: {
216
217
  showLines: 1,
217
218
  },
219
+ recommendedLabel: { enabled: false },
218
220
  },
219
221
  },
220
222
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.10",
3
+ "version": "2.7.12",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",
@@ -26,4 +26,4 @@
26
26
  "ts-node": "^10.8.1",
27
27
  "typescript": "4.6.3"
28
28
  }
29
- }
29
+ }