@jskit-ai/google-rewarded-core 0.1.91 → 0.1.93
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/package.json +17 -17
- package/src/server/GoogleRewardedCoreProvider.js +1 -1
- package/src/server/providerConfigs/GoogleRewardedProviderConfigsProvider.js +1 -1
- package/src/server/rules/GoogleRewardedRulesProvider.js +1 -1
- package/src/server/unlockReceipts/GoogleRewardedUnlockReceiptsProvider.js +1 -1
- package/src/server/watchSessions/GoogleRewardedWatchSessionsProvider.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/google-rewarded-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.93",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./shared": "./src/shared/index.js",
|
|
@@ -124,14 +124,14 @@
|
|
|
124
124
|
"mutations": {
|
|
125
125
|
"dependencies": {
|
|
126
126
|
"runtime": {
|
|
127
|
-
"@jskit-ai/auth-core": "0.1.
|
|
128
|
-
"@jskit-ai/crud-core": "0.1.
|
|
129
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
130
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
131
|
-
"@jskit-ai/json-rest-api-core": "0.1.
|
|
132
|
-
"@jskit-ai/kernel": "0.1.
|
|
133
|
-
"@jskit-ai/resource-crud-core": "0.1.
|
|
134
|
-
"@jskit-ai/workspaces-core": "0.1.
|
|
127
|
+
"@jskit-ai/auth-core": "0.1.155",
|
|
128
|
+
"@jskit-ai/crud-core": "0.1.168",
|
|
129
|
+
"@jskit-ai/database-runtime": "0.1.157",
|
|
130
|
+
"@jskit-ai/http-runtime": "0.1.155",
|
|
131
|
+
"@jskit-ai/json-rest-api-core": "0.1.101",
|
|
132
|
+
"@jskit-ai/kernel": "0.1.157",
|
|
133
|
+
"@jskit-ai/resource-crud-core": "0.1.99",
|
|
134
|
+
"@jskit-ai/workspaces-core": "0.1.135"
|
|
135
135
|
},
|
|
136
136
|
"dev": {}
|
|
137
137
|
},
|
|
@@ -181,13 +181,13 @@
|
|
|
181
181
|
}
|
|
182
182
|
},
|
|
183
183
|
"dependencies": {
|
|
184
|
-
"@jskit-ai/auth-core": "0.1.
|
|
185
|
-
"@jskit-ai/crud-core": "0.1.
|
|
186
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
187
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
188
|
-
"@jskit-ai/json-rest-api-core": "0.1.
|
|
189
|
-
"@jskit-ai/kernel": "0.1.
|
|
190
|
-
"@jskit-ai/resource-crud-core": "0.1.
|
|
191
|
-
"@jskit-ai/workspaces-core": "0.1.
|
|
184
|
+
"@jskit-ai/auth-core": "0.1.155",
|
|
185
|
+
"@jskit-ai/crud-core": "0.1.168",
|
|
186
|
+
"@jskit-ai/database-runtime": "0.1.157",
|
|
187
|
+
"@jskit-ai/http-runtime": "0.1.155",
|
|
188
|
+
"@jskit-ai/json-rest-api-core": "0.1.101",
|
|
189
|
+
"@jskit-ai/kernel": "0.1.157",
|
|
190
|
+
"@jskit-ai/resource-crud-core": "0.1.99",
|
|
191
|
+
"@jskit-ai/workspaces-core": "0.1.135"
|
|
192
192
|
}
|
|
193
193
|
}
|
|
@@ -33,7 +33,7 @@ function resolveCrudPolicyFromApp(app) {
|
|
|
33
33
|
class GoogleRewardedProviderConfigsProvider {
|
|
34
34
|
static id = "crud.google_rewarded_provider_configs";
|
|
35
35
|
|
|
36
|
-
static
|
|
36
|
+
static startsAfter = ["json-rest-api.core", "local.main", "runtime.actions"];
|
|
37
37
|
|
|
38
38
|
register(app) {
|
|
39
39
|
const crudPolicy = resolveCrudPolicyFromApp(app);
|
|
@@ -33,7 +33,7 @@ function resolveCrudPolicyFromApp(app) {
|
|
|
33
33
|
class GoogleRewardedRulesProvider {
|
|
34
34
|
static id = "crud.google_rewarded_rules";
|
|
35
35
|
|
|
36
|
-
static
|
|
36
|
+
static startsAfter = ["json-rest-api.core", "local.main", "runtime.actions"];
|
|
37
37
|
|
|
38
38
|
register(app) {
|
|
39
39
|
const crudPolicy = resolveCrudPolicyFromApp(app);
|
|
@@ -33,7 +33,7 @@ function resolveCrudPolicyFromApp(app) {
|
|
|
33
33
|
class GoogleRewardedUnlockReceiptsProvider {
|
|
34
34
|
static id = "crud.google_rewarded_unlock_receipts";
|
|
35
35
|
|
|
36
|
-
static
|
|
36
|
+
static startsAfter = ["json-rest-api.core", "local.main", "runtime.actions"];
|
|
37
37
|
|
|
38
38
|
register(app) {
|
|
39
39
|
const crudPolicy = resolveCrudPolicyFromApp(app);
|
|
@@ -33,7 +33,7 @@ function resolveCrudPolicyFromApp(app) {
|
|
|
33
33
|
class GoogleRewardedWatchSessionsProvider {
|
|
34
34
|
static id = "crud.google_rewarded_watch_sessions";
|
|
35
35
|
|
|
36
|
-
static
|
|
36
|
+
static startsAfter = ["json-rest-api.core", "local.main", "runtime.actions"];
|
|
37
37
|
|
|
38
38
|
register(app) {
|
|
39
39
|
const crudPolicy = resolveCrudPolicyFromApp(app);
|