@abtnode/schema 1.16.29-beta-0070353c → 1.16.29-beta-88bdefe8
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 +12 -0
- package/lib/schema.graphqls +12 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -312,6 +312,7 @@ input RequestCreateInvitationInput {
|
|
|
312
312
|
teamDid: String
|
|
313
313
|
role: String
|
|
314
314
|
remark: String
|
|
315
|
+
sourceAppPid: String
|
|
315
316
|
}
|
|
316
317
|
|
|
317
318
|
input RequestCreatePassportIssuanceInput {
|
|
@@ -448,6 +449,12 @@ input RequestDisbandFederatedLoginInput {
|
|
|
448
449
|
did: String
|
|
449
450
|
}
|
|
450
451
|
|
|
452
|
+
input RequestDisconnectFromStoreInput {
|
|
453
|
+
did: String
|
|
454
|
+
storeId: String
|
|
455
|
+
projectId: String
|
|
456
|
+
}
|
|
457
|
+
|
|
451
458
|
input RequestEndSessionInput {
|
|
452
459
|
id: String
|
|
453
460
|
}
|
|
@@ -1938,6 +1945,10 @@ type ResponseDeleteWebHook {
|
|
|
1938
1945
|
code: StatusCode
|
|
1939
1946
|
}
|
|
1940
1947
|
|
|
1948
|
+
type ResponseDisconnectFromStore {
|
|
1949
|
+
code: StatusCode
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1941
1952
|
type ResponseFindCertificateByDomain {
|
|
1942
1953
|
code: StatusCode
|
|
1943
1954
|
cert: Certificate
|
|
@@ -2640,6 +2651,7 @@ type Mutation {
|
|
|
2640
2651
|
deleteRelease(input: RequestReleaseInput): GeneralResponse
|
|
2641
2652
|
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2642
2653
|
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2654
|
+
disconnectFromStore(input: RequestDisconnectFromStoreInput): ResponseDisconnectFromStore
|
|
2643
2655
|
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2644
2656
|
connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
|
|
2645
2657
|
}
|
package/lib/schema.graphqls
CHANGED
|
@@ -312,6 +312,7 @@ input RequestCreateInvitationInput {
|
|
|
312
312
|
teamDid: String
|
|
313
313
|
role: String
|
|
314
314
|
remark: String
|
|
315
|
+
sourceAppPid: String
|
|
315
316
|
}
|
|
316
317
|
|
|
317
318
|
input RequestCreatePassportIssuanceInput {
|
|
@@ -448,6 +449,12 @@ input RequestDisbandFederatedLoginInput {
|
|
|
448
449
|
did: String
|
|
449
450
|
}
|
|
450
451
|
|
|
452
|
+
input RequestDisconnectFromStoreInput {
|
|
453
|
+
did: String
|
|
454
|
+
storeId: String
|
|
455
|
+
projectId: String
|
|
456
|
+
}
|
|
457
|
+
|
|
451
458
|
input RequestEndSessionInput {
|
|
452
459
|
id: String
|
|
453
460
|
}
|
|
@@ -1938,6 +1945,10 @@ type ResponseDeleteWebHook {
|
|
|
1938
1945
|
code: StatusCode
|
|
1939
1946
|
}
|
|
1940
1947
|
|
|
1948
|
+
type ResponseDisconnectFromStore {
|
|
1949
|
+
code: StatusCode
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1941
1952
|
type ResponseFindCertificateByDomain {
|
|
1942
1953
|
code: StatusCode
|
|
1943
1954
|
cert: Certificate
|
|
@@ -2642,6 +2653,7 @@ type Mutation {
|
|
|
2642
2653
|
deleteRelease(input: RequestReleaseInput): GeneralResponse
|
|
2643
2654
|
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2644
2655
|
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2656
|
+
disconnectFromStore(input: RequestDisconnectFromStoreInput): ResponseDisconnectFromStore
|
|
2645
2657
|
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2646
2658
|
connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
|
|
2647
2659
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.29-beta-
|
|
6
|
+
"version": "1.16.29-beta-88bdefe8",
|
|
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": "2a91288d21c8defe019e1debfc242b6ef708573e",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|