@xapp/ovai-lib 1.70.9 → 1.70.13
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.
|
@@ -106,7 +106,8 @@ export type Tier = "BRONZE_BUNDLE" | // chat & search
|
|
|
106
106
|
"FREE" | // Our default
|
|
107
107
|
"STANDARD" | // Has a few options
|
|
108
108
|
"PRO" | // Has a few more options
|
|
109
|
-
"TRIAL_STANDARD" | "
|
|
109
|
+
"TRIAL_STANDARD" | "PARTNER" | // Reserverd for Partners, no limitations.
|
|
110
|
+
"APP_SUB";
|
|
110
111
|
export interface BaseStudioTier {
|
|
111
112
|
tier: Tier;
|
|
112
113
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.70.
|
|
7
|
+
"version": "1.70.13",
|
|
8
8
|
"description": "Shared library for OVAI",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"@types/chai": "5.2.2",
|
|
19
19
|
"chai": "4.5.0",
|
|
20
20
|
"stentor-guards": "1.61.13",
|
|
21
|
-
"stentor-media": "1.61.
|
|
21
|
+
"stentor-media": "1.61.15",
|
|
22
22
|
"stentor-models": "1.61.11",
|
|
23
23
|
"ts-node": "10.9.2",
|
|
24
24
|
"typescript": "5.9.2"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@xapp/stentor-handler-media": "1.70.
|
|
28
|
-
"@xapp/stentor-media-manager": "1.70.
|
|
27
|
+
"@xapp/stentor-handler-media": "1.70.13",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.70.13"
|
|
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": "b9ad165a411b678b8f53d63bf54849cbc671e32b"
|
|
41
41
|
}
|