@xapp/ovai-lib 1.63.5 → 1.63.10
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 +4 -0
- package/package.json +5 -5
package/lib/OVAIApp.d.ts
CHANGED
|
@@ -114,6 +114,10 @@ export interface OVAIApp extends App {
|
|
|
114
114
|
* The subscription ID linked to the App
|
|
115
115
|
*/
|
|
116
116
|
stripeSubscriptionId?: string;
|
|
117
|
+
/**
|
|
118
|
+
* The payment status in Stripe
|
|
119
|
+
*/
|
|
120
|
+
subscriptionPaymentStatus?: string;
|
|
117
121
|
/**
|
|
118
122
|
* Allows app-specific overriding of IPRights
|
|
119
123
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.63.
|
|
7
|
+
"version": "1.63.10",
|
|
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": "4.3.20",
|
|
19
19
|
"chai": "4.5.0",
|
|
20
20
|
"stentor-guards": "1.59.128",
|
|
21
|
-
"stentor-media": "1.59.
|
|
21
|
+
"stentor-media": "1.59.132",
|
|
22
22
|
"stentor-models": "1.59.128",
|
|
23
23
|
"ts-node": "10.9.2",
|
|
24
24
|
"typescript": "5.6.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@xapp/stentor-handler-media": "1.63.
|
|
28
|
-
"@xapp/stentor-media-manager": "1.63.
|
|
27
|
+
"@xapp/stentor-handler-media": "1.63.9",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.63.9"
|
|
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": "9e03600d0151f2a17d7fffc16f0d7ffcaa205dd8"
|
|
41
41
|
}
|