@xapp/ovai-lib 1.45.59 → 1.45.61
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 +6 -0
- package/package.json +6 -6
package/lib/OVAIApp.d.ts
CHANGED
|
@@ -16,6 +16,12 @@ export interface OVAIApp extends App {
|
|
|
16
16
|
* The ID of the organization the app belongs to
|
|
17
17
|
*/
|
|
18
18
|
organizationId: string;
|
|
19
|
+
/**
|
|
20
|
+
* An ID that references to an external system.
|
|
21
|
+
*
|
|
22
|
+
* This can be used during partner integrations to link a stentor app with one in the partner's system.
|
|
23
|
+
*/
|
|
24
|
+
externalId?: string;
|
|
19
25
|
/**
|
|
20
26
|
* Type of App
|
|
21
27
|
*/
|
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.61",
|
|
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.
|
|
20
|
+
"stentor-guards": "1.57.112",
|
|
21
|
+
"stentor-media": "1.57.112",
|
|
22
22
|
"stentor-models": "1.57.111",
|
|
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.60",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.45.60"
|
|
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": "f31f4b234d58cd34315865847786a6a489a81de2"
|
|
41
41
|
}
|