@abtnode/schema 1.16.27-beta-725ce3a6 → 1.16.27-beta-f109b207
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 +23 -1
- package/lib/schema.graphqls +22 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -280,6 +280,18 @@ input RequestConfigTrustedPassportsInput {
|
|
|
280
280
|
trustedPassports: [TrustedPassportInput!]
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
input RequestConnectByStudioInput {
|
|
284
|
+
did: String
|
|
285
|
+
storeId: String
|
|
286
|
+
storeUrl: String
|
|
287
|
+
storeName: String
|
|
288
|
+
blockletTitle: String
|
|
289
|
+
type: String
|
|
290
|
+
tenantScope: String
|
|
291
|
+
componentDid: String
|
|
292
|
+
messageId: String
|
|
293
|
+
}
|
|
294
|
+
|
|
283
295
|
input RequestConnectToStoreInput {
|
|
284
296
|
did: String
|
|
285
297
|
storeId: String
|
|
@@ -317,6 +329,7 @@ input RequestCreateProjectInput {
|
|
|
317
329
|
blockletDid: String
|
|
318
330
|
blockletTitle: String
|
|
319
331
|
componentDid: String
|
|
332
|
+
tenantScope: String
|
|
320
333
|
}
|
|
321
334
|
|
|
322
335
|
input RequestCreateReleaseInput {
|
|
@@ -500,6 +513,7 @@ input RequestGetProjectsInput {
|
|
|
500
513
|
did: String
|
|
501
514
|
paging: PagingInput
|
|
502
515
|
componentDid: String
|
|
516
|
+
tenantScope: String
|
|
503
517
|
}
|
|
504
518
|
|
|
505
519
|
input RequestGetReleasesInput {
|
|
@@ -612,6 +626,7 @@ input RequestNodeRuntimeHistoryInput {
|
|
|
612
626
|
input RequestProjectInput {
|
|
613
627
|
did: String
|
|
614
628
|
projectId: String
|
|
629
|
+
messageId: String
|
|
615
630
|
}
|
|
616
631
|
|
|
617
632
|
input RequestPublishToStoreInput {
|
|
@@ -1742,6 +1757,7 @@ type Project {
|
|
|
1742
1757
|
lastReleaseId: String
|
|
1743
1758
|
lastReleaseFiles: [String!]
|
|
1744
1759
|
connectedStores: [ConnectedStore!]
|
|
1760
|
+
tenantScope: String
|
|
1745
1761
|
}
|
|
1746
1762
|
|
|
1747
1763
|
type Release {
|
|
@@ -1846,6 +1862,11 @@ type ResponseClearCache {
|
|
|
1846
1862
|
removed: [String!]
|
|
1847
1863
|
}
|
|
1848
1864
|
|
|
1865
|
+
type ResponseConnectByStudio {
|
|
1866
|
+
code: StatusCode
|
|
1867
|
+
url: String
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1849
1870
|
type ResponseConnectToStore {
|
|
1850
1871
|
code: StatusCode
|
|
1851
1872
|
url: String
|
|
@@ -2594,6 +2615,7 @@ type Mutation {
|
|
|
2594
2615
|
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2595
2616
|
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2596
2617
|
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2618
|
+
connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
|
|
2597
2619
|
}
|
|
2598
2620
|
|
|
2599
2621
|
type Query {
|
|
@@ -2651,4 +2673,4 @@ type Query {
|
|
|
2651
2673
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2652
2674
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2653
2675
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2654
|
-
}`;
|
|
2676
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -280,6 +280,18 @@ input RequestConfigTrustedPassportsInput {
|
|
|
280
280
|
trustedPassports: [TrustedPassportInput!]
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
input RequestConnectByStudioInput {
|
|
284
|
+
did: String
|
|
285
|
+
storeId: String
|
|
286
|
+
storeUrl: String
|
|
287
|
+
storeName: String
|
|
288
|
+
blockletTitle: String
|
|
289
|
+
type: String
|
|
290
|
+
tenantScope: String
|
|
291
|
+
componentDid: String
|
|
292
|
+
messageId: String
|
|
293
|
+
}
|
|
294
|
+
|
|
283
295
|
input RequestConnectToStoreInput {
|
|
284
296
|
did: String
|
|
285
297
|
storeId: String
|
|
@@ -317,6 +329,7 @@ input RequestCreateProjectInput {
|
|
|
317
329
|
blockletDid: String
|
|
318
330
|
blockletTitle: String
|
|
319
331
|
componentDid: String
|
|
332
|
+
tenantScope: String
|
|
320
333
|
}
|
|
321
334
|
|
|
322
335
|
input RequestCreateReleaseInput {
|
|
@@ -500,6 +513,7 @@ input RequestGetProjectsInput {
|
|
|
500
513
|
did: String
|
|
501
514
|
paging: PagingInput
|
|
502
515
|
componentDid: String
|
|
516
|
+
tenantScope: String
|
|
503
517
|
}
|
|
504
518
|
|
|
505
519
|
input RequestGetReleasesInput {
|
|
@@ -612,6 +626,7 @@ input RequestNodeRuntimeHistoryInput {
|
|
|
612
626
|
input RequestProjectInput {
|
|
613
627
|
did: String
|
|
614
628
|
projectId: String
|
|
629
|
+
messageId: String
|
|
615
630
|
}
|
|
616
631
|
|
|
617
632
|
input RequestPublishToStoreInput {
|
|
@@ -1742,6 +1757,7 @@ type Project {
|
|
|
1742
1757
|
lastReleaseId: String
|
|
1743
1758
|
lastReleaseFiles: [String!]
|
|
1744
1759
|
connectedStores: [ConnectedStore!]
|
|
1760
|
+
tenantScope: String
|
|
1745
1761
|
}
|
|
1746
1762
|
|
|
1747
1763
|
type Release {
|
|
@@ -1846,6 +1862,11 @@ type ResponseClearCache {
|
|
|
1846
1862
|
removed: [String!]
|
|
1847
1863
|
}
|
|
1848
1864
|
|
|
1865
|
+
type ResponseConnectByStudio {
|
|
1866
|
+
code: StatusCode
|
|
1867
|
+
url: String
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1849
1870
|
type ResponseConnectToStore {
|
|
1850
1871
|
code: StatusCode
|
|
1851
1872
|
url: String
|
|
@@ -2596,6 +2617,7 @@ type Mutation {
|
|
|
2596
2617
|
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2597
2618
|
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2598
2619
|
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2620
|
+
connectByStudio(input: RequestConnectByStudioInput): ResponseConnectByStudio
|
|
2599
2621
|
}
|
|
2600
2622
|
|
|
2601
2623
|
type Query {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.27-beta-
|
|
6
|
+
"version": "1.16.27-beta-f109b207",
|
|
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": "1c1ba090d312cb41894d7c4bb7f1a1067f84c39a",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|