@thryveai/theme-interfaces 2.7.41 → 2.7.42

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.
@@ -342,10 +342,7 @@ export interface IFeaturesV2 {
342
342
  gsaSupportedBrowser: boolean;
343
343
  }
344
344
  export interface IPdpSettingsV2 {
345
- externalContent: {
346
- enabled: boolean;
347
- contentProviders: IDefaultExternal[];
348
- };
345
+ externalContent: IExternalContentProps;
349
346
  nutritionZone: INutritionZone;
350
347
  nutritionLink: IPdpNutritionLink;
351
348
  pdpDetailsLayout: IProductDetailsPageLayout;
@@ -456,6 +453,10 @@ export interface IRestrictMapPlaces {
456
453
  }
457
454
  export declare type IValidationType = IValidateDateRange | IValidateLength | IValidateMultipleLengths | "alphaNumeric" | "alphaOnly" | "anyPhone" | "auPhone" | "auPostCode" | "auState" | "caPhone" | "caPostCode" | "caProvince" | "correctDate" | "email" | "ieCounty" | "iePhone" | "iePostCode" | "luhnValidation" | "noSpecialChar" | "numericOnly" | "password" | "required" | "usMobileNumber" | "usPhone" | "usPhone10Digits" | "usPostCode" | "usState" | "notWhiteSpacesOnly" | "NAPhone";
458
455
  export declare type IEnvNames = "dev" | "de2" | "qat" | "qa2" | "int" | "in2" | "lod" | "lo2" | "stg" | "st2" | "stagingConfig" | "productionConfig";
456
+ export interface IExternalContentProps {
457
+ enabled: boolean;
458
+ contentProviders: IDefaultExternal[];
459
+ }
459
460
  export declare type INutritionZone = "us" | "eu" | "au" | "ca";
460
461
  export declare type IFooterTypes = "default" | "version2" | "version3" | "version4" | "version5" | "version6";
461
462
  export declare type IValidateLength = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.41",
3
+ "version": "2.7.42",
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
+ }