@xapp/ovai-lib 1.48.0 → 1.49.0

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.
@@ -5,31 +5,22 @@ export type OnDemandTemplateType = "PODCAST_TEMPLATE";
5
5
  export type RadioTemplateType = "RADIO_TEMPLATE";
6
6
  /** Our generic starter */
7
7
  export type OCStudioStarterTemplateType = "OC_STUDIO_STARTER_TEMPLATE";
8
- /** Plumbing (home services) */
9
- export type PlumbingTemplateType = "PLUMBING_TEMPLATE";
10
- /**
11
- * HVAC (home services)
12
- */
13
- export type HVACTemplateType = "HVAC_TEMPLATE";
14
- /**
15
- * Exteriors (home services)
16
- */
17
- export type ExteriorsTemplateType = "EXTERIORS_TEMPLATE";
18
- /**
19
- * Remodelling (home services)
20
- */
21
- export type RemodelTemplateType = "REMODEL_TEMPLATE";
22
- /**
23
- * Legal
24
- */
25
- export type LegalTemplateType = "LEGAL_TEMPLATE";
26
- /**
27
- * Generic lead capture
28
- */
29
- export type GenericLeadCaptureTemplateType = "GENERIC_LEAD_CAPTURE_TEMPLATE";
8
+ export type BusinessCoachingTemplateType = "business-coaching";
9
+ export type ConsultingTemplateType = "consulting";
10
+ export type ContactCaptureTemplateType = "contact-capture";
11
+ export type FinancialServicesTemplateType = "financial-services";
12
+ export type HomeServicesCleaningTemplateType = "home-services-cleaning";
13
+ export type HomeServicesContractorsTemplateType = "home-services-contractors";
14
+ export type HomeServicesOutdoorTemplateType = "home-services-outdoor";
15
+ export type InsuranceTemplateType = "insurance";
16
+ export type LegalServicesTemplateType = "legal-services";
17
+ export type LifeCoachingTemplateType = "life-coaching";
18
+ export type RealEstateTemplateType = "real-estate";
19
+ export type TechnologyServicesTemplateType = "technology-services";
20
+ export type TravelTemplateType = "travel";
30
21
  /**
31
22
  * Used to communicate the app is custom and does not adhere to a specific
32
23
  * predefined template.
33
24
  */
34
25
  export type CustomType = "CUSTOM";
35
- export type TemplateType = CustomType | ExteriorsTemplateType | GenericLeadCaptureTemplateType | HVACTemplateType | LegalTemplateType | OCStudioStarterTemplateType | OnDemandTemplateType | PlumbingTemplateType | RadioTemplateType | RemodelTemplateType;
26
+ export type TemplateType = CustomType | OCStudioStarterTemplateType | OnDemandTemplateType | RadioTemplateType | BusinessCoachingTemplateType | ConsultingTemplateType | ContactCaptureTemplateType | FinancialServicesTemplateType | HomeServicesCleaningTemplateType | HomeServicesContractorsTemplateType | HomeServicesOutdoorTemplateType | InsuranceTemplateType | LegalServicesTemplateType | LifeCoachingTemplateType | RealEstateTemplateType | TechnologyServicesTemplateType | TravelTemplateType | string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.48.0",
7
+ "version": "1.49.0",
8
8
  "description": "Shared library for OVAI",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -37,5 +37,5 @@
37
37
  "clean": "rm -rf ./lib/*",
38
38
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
39
39
  },
40
- "gitHead": "859cba5bfdb80fe8ab7b48d9730c4ffa588fcba5"
40
+ "gitHead": "e711be1cb6b88c735fb7484c2b06d9fc93d01da2"
41
41
  }