@abtnode/schema 1.16.26-beta-818ea1c5 → 1.16.26-beta-351de484
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/index.js +38 -9
- package/lib/schema.graphqls +37 -8
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -64,6 +64,17 @@ input ConnectedAccountInput {
|
|
|
64
64
|
pk: String
|
|
65
65
|
id: String
|
|
66
66
|
lastLoginAt: Uint32
|
|
67
|
+
userInfo: ConnectedAccountInfoInput
|
|
68
|
+
extra: Any
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
input ConnectedAccountInfoInput {
|
|
72
|
+
name: String
|
|
73
|
+
picture: String
|
|
74
|
+
email: String
|
|
75
|
+
emailVerified: Boolean
|
|
76
|
+
sub: String
|
|
77
|
+
extraData: Any
|
|
67
78
|
}
|
|
68
79
|
|
|
69
80
|
input DownloadTokenInput {
|
|
@@ -126,6 +137,11 @@ input RequestAddBlockletSpaceGatewayInput {
|
|
|
126
137
|
spaceGateway: SpaceGatewayInput
|
|
127
138
|
}
|
|
128
139
|
|
|
140
|
+
input RequestAddBlockletStoreInput {
|
|
141
|
+
teamDid: String
|
|
142
|
+
url: String
|
|
143
|
+
}
|
|
144
|
+
|
|
129
145
|
input RequestAddDomainAliasInput {
|
|
130
146
|
id: String
|
|
131
147
|
domainAlias: String
|
|
@@ -204,11 +220,6 @@ input RequestBlockletRuntimeHistoryInput {
|
|
|
204
220
|
hours: Uint32
|
|
205
221
|
}
|
|
206
222
|
|
|
207
|
-
input RequestChangeBlockletStoreInput {
|
|
208
|
-
teamDid: String
|
|
209
|
-
url: String
|
|
210
|
-
}
|
|
211
|
-
|
|
212
223
|
input RequestCheckDomainsInput {
|
|
213
224
|
domains: [String!]
|
|
214
225
|
did: String
|
|
@@ -274,6 +285,7 @@ input RequestConnectToStoreInput {
|
|
|
274
285
|
storeId: String
|
|
275
286
|
storeUrl: String
|
|
276
287
|
storeName: String
|
|
288
|
+
projectId: String
|
|
277
289
|
}
|
|
278
290
|
|
|
279
291
|
input RequestCreateAccessKeyInput {
|
|
@@ -359,6 +371,12 @@ input RequestDeleteBlockletSpaceGatewayInput {
|
|
|
359
371
|
spaceGatewayDid: String
|
|
360
372
|
}
|
|
361
373
|
|
|
374
|
+
input RequestDeleteBlockletStoreInput {
|
|
375
|
+
teamDid: String
|
|
376
|
+
url: String
|
|
377
|
+
projectId: String
|
|
378
|
+
}
|
|
379
|
+
|
|
362
380
|
input RequestDeleteComponentInput {
|
|
363
381
|
did: String
|
|
364
382
|
rootDid: String
|
|
@@ -1262,7 +1280,6 @@ type BlockletSettings {
|
|
|
1262
1280
|
notification: Any
|
|
1263
1281
|
session: SessionConfig
|
|
1264
1282
|
federated: FederatedConfig
|
|
1265
|
-
connectedStores: [ConnectedStore!]
|
|
1266
1283
|
}
|
|
1267
1284
|
|
|
1268
1285
|
type BlockletState {
|
|
@@ -1417,6 +1434,17 @@ type ConnectedAccount {
|
|
|
1417
1434
|
pk: String
|
|
1418
1435
|
id: String
|
|
1419
1436
|
lastLoginAt: Uint32
|
|
1437
|
+
userInfo: ConnectedAccountInfo
|
|
1438
|
+
extra: Any
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
type ConnectedAccountInfo {
|
|
1442
|
+
name: String
|
|
1443
|
+
picture: String
|
|
1444
|
+
email: String
|
|
1445
|
+
emailVerified: Boolean
|
|
1446
|
+
sub: String
|
|
1447
|
+
extraData: Any
|
|
1420
1448
|
}
|
|
1421
1449
|
|
|
1422
1450
|
type ConnectedStore {
|
|
@@ -1713,6 +1741,7 @@ type Project {
|
|
|
1713
1741
|
componentDid: String
|
|
1714
1742
|
lastReleaseId: String
|
|
1715
1743
|
lastReleaseFiles: [String!]
|
|
1744
|
+
connectedStores: [ConnectedStore!]
|
|
1716
1745
|
}
|
|
1717
1746
|
|
|
1718
1747
|
type Release {
|
|
@@ -2527,8 +2556,8 @@ type Mutation {
|
|
|
2527
2556
|
revokePermissionFromRole(input: RequestRevokePermissionFromRoleInput): GeneralResponse
|
|
2528
2557
|
updatePermissionsForRole(input: RequestUpdatePermissionsForRoleInput): ResponseRole
|
|
2529
2558
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2530
|
-
addBlockletStore(input:
|
|
2531
|
-
deleteBlockletStore(input:
|
|
2559
|
+
addBlockletStore(input: RequestAddBlockletStoreInput): GeneralResponse
|
|
2560
|
+
deleteBlockletStore(input: RequestDeleteBlockletStoreInput): GeneralResponse
|
|
2532
2561
|
createTag(input: RequestTagInput): ResponseTag
|
|
2533
2562
|
updateTag(input: RequestTagInput): ResponseTag
|
|
2534
2563
|
deleteTag(input: RequestTagInput): ResponseTag
|
|
@@ -2622,4 +2651,4 @@ type Query {
|
|
|
2622
2651
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2623
2652
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2624
2653
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2625
|
-
}`;
|
|
2654
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -64,6 +64,17 @@ input ConnectedAccountInput {
|
|
|
64
64
|
pk: String
|
|
65
65
|
id: String
|
|
66
66
|
lastLoginAt: Uint32
|
|
67
|
+
userInfo: ConnectedAccountInfoInput
|
|
68
|
+
extra: Any
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
input ConnectedAccountInfoInput {
|
|
72
|
+
name: String
|
|
73
|
+
picture: String
|
|
74
|
+
email: String
|
|
75
|
+
emailVerified: Boolean
|
|
76
|
+
sub: String
|
|
77
|
+
extraData: Any
|
|
67
78
|
}
|
|
68
79
|
|
|
69
80
|
input DownloadTokenInput {
|
|
@@ -126,6 +137,11 @@ input RequestAddBlockletSpaceGatewayInput {
|
|
|
126
137
|
spaceGateway: SpaceGatewayInput
|
|
127
138
|
}
|
|
128
139
|
|
|
140
|
+
input RequestAddBlockletStoreInput {
|
|
141
|
+
teamDid: String
|
|
142
|
+
url: String
|
|
143
|
+
}
|
|
144
|
+
|
|
129
145
|
input RequestAddDomainAliasInput {
|
|
130
146
|
id: String
|
|
131
147
|
domainAlias: String
|
|
@@ -204,11 +220,6 @@ input RequestBlockletRuntimeHistoryInput {
|
|
|
204
220
|
hours: Uint32
|
|
205
221
|
}
|
|
206
222
|
|
|
207
|
-
input RequestChangeBlockletStoreInput {
|
|
208
|
-
teamDid: String
|
|
209
|
-
url: String
|
|
210
|
-
}
|
|
211
|
-
|
|
212
223
|
input RequestCheckDomainsInput {
|
|
213
224
|
domains: [String!]
|
|
214
225
|
did: String
|
|
@@ -274,6 +285,7 @@ input RequestConnectToStoreInput {
|
|
|
274
285
|
storeId: String
|
|
275
286
|
storeUrl: String
|
|
276
287
|
storeName: String
|
|
288
|
+
projectId: String
|
|
277
289
|
}
|
|
278
290
|
|
|
279
291
|
input RequestCreateAccessKeyInput {
|
|
@@ -359,6 +371,12 @@ input RequestDeleteBlockletSpaceGatewayInput {
|
|
|
359
371
|
spaceGatewayDid: String
|
|
360
372
|
}
|
|
361
373
|
|
|
374
|
+
input RequestDeleteBlockletStoreInput {
|
|
375
|
+
teamDid: String
|
|
376
|
+
url: String
|
|
377
|
+
projectId: String
|
|
378
|
+
}
|
|
379
|
+
|
|
362
380
|
input RequestDeleteComponentInput {
|
|
363
381
|
did: String
|
|
364
382
|
rootDid: String
|
|
@@ -1262,7 +1280,6 @@ type BlockletSettings {
|
|
|
1262
1280
|
notification: Any
|
|
1263
1281
|
session: SessionConfig
|
|
1264
1282
|
federated: FederatedConfig
|
|
1265
|
-
connectedStores: [ConnectedStore!]
|
|
1266
1283
|
}
|
|
1267
1284
|
|
|
1268
1285
|
type BlockletState {
|
|
@@ -1417,6 +1434,17 @@ type ConnectedAccount {
|
|
|
1417
1434
|
pk: String
|
|
1418
1435
|
id: String
|
|
1419
1436
|
lastLoginAt: Uint32
|
|
1437
|
+
userInfo: ConnectedAccountInfo
|
|
1438
|
+
extra: Any
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
type ConnectedAccountInfo {
|
|
1442
|
+
name: String
|
|
1443
|
+
picture: String
|
|
1444
|
+
email: String
|
|
1445
|
+
emailVerified: Boolean
|
|
1446
|
+
sub: String
|
|
1447
|
+
extraData: Any
|
|
1420
1448
|
}
|
|
1421
1449
|
|
|
1422
1450
|
type ConnectedStore {
|
|
@@ -1713,6 +1741,7 @@ type Project {
|
|
|
1713
1741
|
componentDid: String
|
|
1714
1742
|
lastReleaseId: String
|
|
1715
1743
|
lastReleaseFiles: [String!]
|
|
1744
|
+
connectedStores: [ConnectedStore!]
|
|
1716
1745
|
}
|
|
1717
1746
|
|
|
1718
1747
|
type Release {
|
|
@@ -2529,8 +2558,8 @@ type Mutation {
|
|
|
2529
2558
|
revokePermissionFromRole(input: RequestRevokePermissionFromRoleInput): GeneralResponse
|
|
2530
2559
|
updatePermissionsForRole(input: RequestUpdatePermissionsForRoleInput): ResponseRole
|
|
2531
2560
|
hasPermission(input: RequestHasPermissionInput): BooleanResponse
|
|
2532
|
-
addBlockletStore(input:
|
|
2533
|
-
deleteBlockletStore(input:
|
|
2561
|
+
addBlockletStore(input: RequestAddBlockletStoreInput): GeneralResponse
|
|
2562
|
+
deleteBlockletStore(input: RequestDeleteBlockletStoreInput): GeneralResponse
|
|
2534
2563
|
createTag(input: RequestTagInput): ResponseTag
|
|
2535
2564
|
updateTag(input: RequestTagInput): ResponseTag
|
|
2536
2565
|
deleteTag(input: RequestTagInput): ResponseTag
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.26-beta-
|
|
6
|
+
"version": "1.16.26-beta-351de484",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "00eba435a21506382c7823ea804abea196390a0f",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|