@abtnode/schema 1.16.28 → 1.16.29-beta-e04c6f40

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 CHANGED
@@ -32,6 +32,7 @@ input BlockletStoreInput {
32
32
  cdnUrl: String
33
33
  protected: Boolean
34
34
  id: String
35
+ scope: String
35
36
  }
36
37
 
37
38
  input ConfigEntryInput {
@@ -141,6 +142,7 @@ input RequestAddBlockletSpaceGatewayInput {
141
142
  input RequestAddBlockletStoreInput {
142
143
  teamDid: String
143
144
  url: String
145
+ scope: String
144
146
  }
145
147
 
146
148
  input RequestAddDomainAliasInput {
@@ -310,6 +312,7 @@ input RequestCreateInvitationInput {
310
312
  teamDid: String
311
313
  role: String
312
314
  remark: String
315
+ sourceAppPid: String
313
316
  }
314
317
 
315
318
  input RequestCreatePassportIssuanceInput {
@@ -446,6 +449,12 @@ input RequestDisbandFederatedLoginInput {
446
449
  did: String
447
450
  }
448
451
 
452
+ input RequestDisconnectFromStoreInput {
453
+ did: String
454
+ storeId: String
455
+ projectId: String
456
+ }
457
+
449
458
  input RequestEndSessionInput {
450
459
  id: String
451
460
  }
@@ -1368,6 +1377,7 @@ type BlockletStore {
1368
1377
  cdnUrl: String
1369
1378
  protected: Boolean
1370
1379
  id: String
1380
+ scope: String
1371
1381
  }
1372
1382
 
1373
1383
  type BooleanResponse {
@@ -1487,6 +1497,7 @@ type ConnectedStore {
1487
1497
  developerDid: String
1488
1498
  developerEmail: String
1489
1499
  developerName: String
1500
+ scope: String
1490
1501
  }
1491
1502
 
1492
1503
  type CreateAccessKey {
@@ -1934,6 +1945,10 @@ type ResponseDeleteWebHook {
1934
1945
  code: StatusCode
1935
1946
  }
1936
1947
 
1948
+ type ResponseDisconnectFromStore {
1949
+ code: StatusCode
1950
+ }
1951
+
1937
1952
  type ResponseFindCertificateByDomain {
1938
1953
  code: StatusCode
1939
1954
  cert: Certificate
@@ -2636,6 +2651,7 @@ type Mutation {
2636
2651
  deleteRelease(input: RequestReleaseInput): GeneralResponse
2637
2652
  updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
2638
2653
  connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
2654
+ disconnectFromStore(input: RequestDisconnectFromStoreInput): ResponseDisconnectFromStore
2639
2655
  publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
2640
2656
  connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
2641
2657
  }
@@ -32,6 +32,7 @@ input BlockletStoreInput {
32
32
  cdnUrl: String
33
33
  protected: Boolean
34
34
  id: String
35
+ scope: String
35
36
  }
36
37
 
37
38
  input ConfigEntryInput {
@@ -141,6 +142,7 @@ input RequestAddBlockletSpaceGatewayInput {
141
142
  input RequestAddBlockletStoreInput {
142
143
  teamDid: String
143
144
  url: String
145
+ scope: String
144
146
  }
145
147
 
146
148
  input RequestAddDomainAliasInput {
@@ -310,6 +312,7 @@ input RequestCreateInvitationInput {
310
312
  teamDid: String
311
313
  role: String
312
314
  remark: String
315
+ sourceAppPid: String
313
316
  }
314
317
 
315
318
  input RequestCreatePassportIssuanceInput {
@@ -446,6 +449,12 @@ input RequestDisbandFederatedLoginInput {
446
449
  did: String
447
450
  }
448
451
 
452
+ input RequestDisconnectFromStoreInput {
453
+ did: String
454
+ storeId: String
455
+ projectId: String
456
+ }
457
+
449
458
  input RequestEndSessionInput {
450
459
  id: String
451
460
  }
@@ -1368,6 +1377,7 @@ type BlockletStore {
1368
1377
  cdnUrl: String
1369
1378
  protected: Boolean
1370
1379
  id: String
1380
+ scope: String
1371
1381
  }
1372
1382
 
1373
1383
  type BooleanResponse {
@@ -1487,6 +1497,7 @@ type ConnectedStore {
1487
1497
  developerDid: String
1488
1498
  developerEmail: String
1489
1499
  developerName: String
1500
+ scope: String
1490
1501
  }
1491
1502
 
1492
1503
  type CreateAccessKey {
@@ -1934,6 +1945,10 @@ type ResponseDeleteWebHook {
1934
1945
  code: StatusCode
1935
1946
  }
1936
1947
 
1948
+ type ResponseDisconnectFromStore {
1949
+ code: StatusCode
1950
+ }
1951
+
1937
1952
  type ResponseFindCertificateByDomain {
1938
1953
  code: StatusCode
1939
1954
  cert: Certificate
@@ -2638,6 +2653,7 @@ type Mutation {
2638
2653
  deleteRelease(input: RequestReleaseInput): GeneralResponse
2639
2654
  updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
2640
2655
  connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
2656
+ disconnectFromStore(input: RequestDisconnectFromStoreInput): ResponseDisconnectFromStore
2641
2657
  publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
2642
2658
  connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
2643
2659
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.28",
6
+ "version": "1.16.29-beta-e04c6f40",
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": "54db076a7e520bbc260f8cbf0af31dd50b86aef1",
16
+ "gitHead": "f3e8f2ce931215b95ada33e87aee997d8ae52a69",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }