@xapp/ovai-lib 1.52.117 → 1.53.2
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 +8 -0
- package/package.json +5 -5
package/lib/OVAIApp.d.ts
CHANGED
|
@@ -83,6 +83,14 @@ export interface OVAIApp extends App {
|
|
|
83
83
|
* Opportunity Alerts, notifications for potentially opportunities.
|
|
84
84
|
*/
|
|
85
85
|
opportunityAlerts?: OpportunityAlert[];
|
|
86
|
+
/**
|
|
87
|
+
* The Email address to send lead captures to.
|
|
88
|
+
*/
|
|
89
|
+
leadsContact?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The phone number of a leads user.
|
|
92
|
+
*/
|
|
93
|
+
leadsContactPhone?: string;
|
|
86
94
|
/**
|
|
87
95
|
* Business hours
|
|
88
96
|
*
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.53.2",
|
|
8
8
|
"description": "Shared library for OVAI",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"lib"
|
|
13
13
|
],
|
|
14
14
|
"engines": {
|
|
15
|
-
"node": "^10 || ^12 || ^14 || ^16 || ^18 || ^20
|
|
15
|
+
"node": "^10 || ^12 || ^14 || ^16 || ^18 || ^20"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/chai": "4.3.11",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"typescript": "5.3.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@xapp/stentor-handler-media": "1.
|
|
28
|
-
"@xapp/stentor-media-manager": "1.
|
|
27
|
+
"@xapp/stentor-handler-media": "1.53.2",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.53.2"
|
|
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": "51f042eb52b6b10b3dba94c9b1ec46acea957bf4"
|
|
41
41
|
}
|