@abtnode/schema 1.16.25 → 1.16.26-beta-e0056285
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 +39 -0
- package/lib/schema.graphqls +39 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -269,6 +269,13 @@ input RequestConfigTrustedPassportsInput {
|
|
|
269
269
|
trustedPassports: [TrustedPassportInput!]
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
+
input RequestConnectToStoreInput {
|
|
273
|
+
did: String
|
|
274
|
+
storeId: String
|
|
275
|
+
storeUrl: String
|
|
276
|
+
storeName: String
|
|
277
|
+
}
|
|
278
|
+
|
|
272
279
|
input RequestCreateAccessKeyInput {
|
|
273
280
|
remark: String
|
|
274
281
|
passport: String
|
|
@@ -589,6 +596,14 @@ input RequestProjectInput {
|
|
|
589
596
|
projectId: String
|
|
590
597
|
}
|
|
591
598
|
|
|
599
|
+
input RequestPublishToStoreInput {
|
|
600
|
+
did: String
|
|
601
|
+
projectId: String
|
|
602
|
+
releaseId: String
|
|
603
|
+
type: String
|
|
604
|
+
storeId: String
|
|
605
|
+
}
|
|
606
|
+
|
|
592
607
|
input RequestQuitFederatedLoginInput {
|
|
593
608
|
did: String
|
|
594
609
|
}
|
|
@@ -1247,6 +1262,7 @@ type BlockletSettings {
|
|
|
1247
1262
|
notification: Any
|
|
1248
1263
|
session: SessionConfig
|
|
1249
1264
|
federated: FederatedConfig
|
|
1265
|
+
connectedStores: [ConnectedStore!]
|
|
1250
1266
|
}
|
|
1251
1267
|
|
|
1252
1268
|
type BlockletState {
|
|
@@ -1403,6 +1419,16 @@ type ConnectedAccount {
|
|
|
1403
1419
|
lastLoginAt: Uint32
|
|
1404
1420
|
}
|
|
1405
1421
|
|
|
1422
|
+
type ConnectedStore {
|
|
1423
|
+
storeId: String
|
|
1424
|
+
storeName: String
|
|
1425
|
+
storeUrl: String
|
|
1426
|
+
accessToken: String
|
|
1427
|
+
developerDid: String
|
|
1428
|
+
developerEmail: String
|
|
1429
|
+
developerName: String
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1406
1432
|
type CreateAccessKey {
|
|
1407
1433
|
accessKeyId: String
|
|
1408
1434
|
accessKeySecret: String
|
|
@@ -1705,6 +1731,7 @@ type Release {
|
|
|
1705
1731
|
createdAt: String
|
|
1706
1732
|
updatedAt: String
|
|
1707
1733
|
blockletComponents: [ReleaseComponent!]
|
|
1734
|
+
publishedStoreIds: [String!]
|
|
1708
1735
|
}
|
|
1709
1736
|
|
|
1710
1737
|
type ReleaseComponent {
|
|
@@ -1790,6 +1817,11 @@ type ResponseClearCache {
|
|
|
1790
1817
|
removed: [String!]
|
|
1791
1818
|
}
|
|
1792
1819
|
|
|
1820
|
+
type ResponseConnectToStore {
|
|
1821
|
+
code: StatusCode
|
|
1822
|
+
url: String
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1793
1825
|
type ResponseCreateAccessKey {
|
|
1794
1826
|
code: StatusCode
|
|
1795
1827
|
data: CreateAccessKey
|
|
@@ -2015,6 +2047,11 @@ type ResponseProject {
|
|
|
2015
2047
|
project: Project
|
|
2016
2048
|
}
|
|
2017
2049
|
|
|
2050
|
+
type ResponsePublishToStore {
|
|
2051
|
+
code: StatusCode
|
|
2052
|
+
url: String
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2018
2055
|
type ResponseReadBlockletNotifications {
|
|
2019
2056
|
code: StatusCode
|
|
2020
2057
|
numAffected: Int32
|
|
@@ -2526,6 +2563,8 @@ type Mutation {
|
|
|
2526
2563
|
createRelease(input: RequestCreateReleaseInput): ResponseRelease
|
|
2527
2564
|
deleteRelease(input: RequestReleaseInput): GeneralResponse
|
|
2528
2565
|
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2566
|
+
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2567
|
+
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2529
2568
|
}
|
|
2530
2569
|
|
|
2531
2570
|
type Query {
|
package/lib/schema.graphqls
CHANGED
|
@@ -269,6 +269,13 @@ input RequestConfigTrustedPassportsInput {
|
|
|
269
269
|
trustedPassports: [TrustedPassportInput!]
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
+
input RequestConnectToStoreInput {
|
|
273
|
+
did: String
|
|
274
|
+
storeId: String
|
|
275
|
+
storeUrl: String
|
|
276
|
+
storeName: String
|
|
277
|
+
}
|
|
278
|
+
|
|
272
279
|
input RequestCreateAccessKeyInput {
|
|
273
280
|
remark: String
|
|
274
281
|
passport: String
|
|
@@ -589,6 +596,14 @@ input RequestProjectInput {
|
|
|
589
596
|
projectId: String
|
|
590
597
|
}
|
|
591
598
|
|
|
599
|
+
input RequestPublishToStoreInput {
|
|
600
|
+
did: String
|
|
601
|
+
projectId: String
|
|
602
|
+
releaseId: String
|
|
603
|
+
type: String
|
|
604
|
+
storeId: String
|
|
605
|
+
}
|
|
606
|
+
|
|
592
607
|
input RequestQuitFederatedLoginInput {
|
|
593
608
|
did: String
|
|
594
609
|
}
|
|
@@ -1247,6 +1262,7 @@ type BlockletSettings {
|
|
|
1247
1262
|
notification: Any
|
|
1248
1263
|
session: SessionConfig
|
|
1249
1264
|
federated: FederatedConfig
|
|
1265
|
+
connectedStores: [ConnectedStore!]
|
|
1250
1266
|
}
|
|
1251
1267
|
|
|
1252
1268
|
type BlockletState {
|
|
@@ -1403,6 +1419,16 @@ type ConnectedAccount {
|
|
|
1403
1419
|
lastLoginAt: Uint32
|
|
1404
1420
|
}
|
|
1405
1421
|
|
|
1422
|
+
type ConnectedStore {
|
|
1423
|
+
storeId: String
|
|
1424
|
+
storeName: String
|
|
1425
|
+
storeUrl: String
|
|
1426
|
+
accessToken: String
|
|
1427
|
+
developerDid: String
|
|
1428
|
+
developerEmail: String
|
|
1429
|
+
developerName: String
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1406
1432
|
type CreateAccessKey {
|
|
1407
1433
|
accessKeyId: String
|
|
1408
1434
|
accessKeySecret: String
|
|
@@ -1705,6 +1731,7 @@ type Release {
|
|
|
1705
1731
|
createdAt: String
|
|
1706
1732
|
updatedAt: String
|
|
1707
1733
|
blockletComponents: [ReleaseComponent!]
|
|
1734
|
+
publishedStoreIds: [String!]
|
|
1708
1735
|
}
|
|
1709
1736
|
|
|
1710
1737
|
type ReleaseComponent {
|
|
@@ -1790,6 +1817,11 @@ type ResponseClearCache {
|
|
|
1790
1817
|
removed: [String!]
|
|
1791
1818
|
}
|
|
1792
1819
|
|
|
1820
|
+
type ResponseConnectToStore {
|
|
1821
|
+
code: StatusCode
|
|
1822
|
+
url: String
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1793
1825
|
type ResponseCreateAccessKey {
|
|
1794
1826
|
code: StatusCode
|
|
1795
1827
|
data: CreateAccessKey
|
|
@@ -2015,6 +2047,11 @@ type ResponseProject {
|
|
|
2015
2047
|
project: Project
|
|
2016
2048
|
}
|
|
2017
2049
|
|
|
2050
|
+
type ResponsePublishToStore {
|
|
2051
|
+
code: StatusCode
|
|
2052
|
+
url: String
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2018
2055
|
type ResponseReadBlockletNotifications {
|
|
2019
2056
|
code: StatusCode
|
|
2020
2057
|
numAffected: Int32
|
|
@@ -2528,6 +2565,8 @@ type Mutation {
|
|
|
2528
2565
|
createRelease(input: RequestCreateReleaseInput): ResponseRelease
|
|
2529
2566
|
deleteRelease(input: RequestReleaseInput): GeneralResponse
|
|
2530
2567
|
updateSelectedResources(input: RequestUpdateSelectedResourcesInput): GeneralResponse
|
|
2568
|
+
connectToStore(input: RequestConnectToStoreInput): ResponseConnectToStore
|
|
2569
|
+
publishToStore(input: RequestPublishToStoreInput): ResponsePublishToStore
|
|
2531
2570
|
}
|
|
2532
2571
|
|
|
2533
2572
|
type Query {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.26-beta-e0056285",
|
|
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": "a79b8637ad50d136e7c5d91bfb41dc7a7c337485",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|