@xapp/ovai-lib 1.45.63 → 1.45.66
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.
- package/lib/OVAIApp.d.ts +32 -0
- package/package.json +7 -7
package/lib/OVAIApp.d.ts
CHANGED
|
@@ -56,6 +56,25 @@ export interface OVAIApp extends App {
|
|
|
56
56
|
* It will not be the only website the app will or can be installed on however it is where accurate information about the company can be retrieved.
|
|
57
57
|
*/
|
|
58
58
|
website?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Data related to what was found on the customers website
|
|
61
|
+
*/
|
|
62
|
+
websiteData?: {
|
|
63
|
+
/**
|
|
64
|
+
* Calls to action such as "Free Quote", "Schedule Consultation".
|
|
65
|
+
*
|
|
66
|
+
* These can be used as suggestion chips.
|
|
67
|
+
*/
|
|
68
|
+
callsToAction?: string[];
|
|
69
|
+
/**
|
|
70
|
+
* Primary theme color, hex value, based on an image of the website.
|
|
71
|
+
*/
|
|
72
|
+
primaryColor?: string;
|
|
73
|
+
/**
|
|
74
|
+
* Secondary color, hex value, that complements the primary color on the website.
|
|
75
|
+
*/
|
|
76
|
+
secondaryColor?: string;
|
|
77
|
+
};
|
|
59
78
|
/**
|
|
60
79
|
* Places associated with the application.
|
|
61
80
|
*/
|
|
@@ -70,6 +89,19 @@ export interface OVAIApp extends App {
|
|
|
70
89
|
* This can be manually populated, populated from the website metadata, or populated from the placeId.
|
|
71
90
|
*/
|
|
72
91
|
businessHours?: BusinessHours;
|
|
92
|
+
/**
|
|
93
|
+
* A description of the business and it's services.
|
|
94
|
+
*
|
|
95
|
+
* This can be used for LLM operations
|
|
96
|
+
*/
|
|
97
|
+
businessDescription?: string;
|
|
98
|
+
/**
|
|
99
|
+
* A description of what they consider to be high value leads, prioritized queries that they
|
|
100
|
+
* want to be notified immediately.
|
|
101
|
+
*
|
|
102
|
+
* This can be used for LLM operations
|
|
103
|
+
*/
|
|
104
|
+
businessHighValueLeadDescription?: string;
|
|
73
105
|
/**
|
|
74
106
|
* The subscription ID linked to the App
|
|
75
107
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.45.
|
|
7
|
+
"version": "1.45.66",
|
|
8
8
|
"description": "Shared library for OVAI",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/chai": "4.3.4",
|
|
19
19
|
"chai": "4.3.7",
|
|
20
|
-
"stentor-guards": "1.57.
|
|
21
|
-
"stentor-media": "1.57.
|
|
22
|
-
"stentor-models": "1.57.
|
|
20
|
+
"stentor-guards": "1.57.119",
|
|
21
|
+
"stentor-media": "1.57.120",
|
|
22
|
+
"stentor-models": "1.57.119",
|
|
23
23
|
"ts-node": "10.9.1",
|
|
24
24
|
"typescript": "4.9.5"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@xapp/stentor-handler-media": "1.45.
|
|
28
|
-
"@xapp/stentor-media-manager": "1.45.
|
|
27
|
+
"@xapp/stentor-handler-media": "1.45.65",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.45.65"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"stentor-guards": "1.x",
|
|
@@ -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": "
|
|
40
|
+
"gitHead": "45b824d111a39fcda266e8cb96a94d1e467ab31f"
|
|
41
41
|
}
|