@abtnode/schema 1.8.24 → 1.8.26
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 +9 -10
- package/lib/schema.graphqls +9 -10
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -424,11 +424,6 @@ input RequestUpdateAccessKeyInput {
|
|
|
424
424
|
passport: String
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
input RequestUpdateChildBlockletsInput {
|
|
428
|
-
updateId: String
|
|
429
|
-
rootDid: String
|
|
430
|
-
}
|
|
431
|
-
|
|
432
427
|
input RequestUpdateComponentMountPointInput {
|
|
433
428
|
did: String
|
|
434
429
|
rootDid: String
|
|
@@ -441,6 +436,11 @@ input RequestUpdateComponentTitleInput {
|
|
|
441
436
|
title: String
|
|
442
437
|
}
|
|
443
438
|
|
|
439
|
+
input RequestUpdateComponentsInput {
|
|
440
|
+
updateId: String
|
|
441
|
+
rootDid: String
|
|
442
|
+
}
|
|
443
|
+
|
|
444
444
|
input RequestUpdateNginxHttpsCertInput {
|
|
445
445
|
id: String
|
|
446
446
|
name: String
|
|
@@ -712,7 +712,7 @@ type BlockletMeta {
|
|
|
712
712
|
nftFactory: String
|
|
713
713
|
lastPublishedAt: String
|
|
714
714
|
capabilities: BlockletCapabilities
|
|
715
|
-
|
|
715
|
+
components: [ChildConfig!]
|
|
716
716
|
environments: [Environment!]
|
|
717
717
|
requirements: Requirement
|
|
718
718
|
bundleDid: String
|
|
@@ -876,7 +876,6 @@ type CertificateMeta {
|
|
|
876
876
|
|
|
877
877
|
type ChildConfig {
|
|
878
878
|
name: String
|
|
879
|
-
resolved: String
|
|
880
879
|
mountPoint: String
|
|
881
880
|
}
|
|
882
881
|
|
|
@@ -1159,7 +1158,7 @@ type ResponseBlockletMetaFromUrl {
|
|
|
1159
1158
|
registryUrl: String
|
|
1160
1159
|
}
|
|
1161
1160
|
|
|
1162
|
-
type
|
|
1161
|
+
type ResponseCheckComponentsForUpdates {
|
|
1163
1162
|
code: StatusCode
|
|
1164
1163
|
preUpdateInfo: BlockletPreUpdateInfo
|
|
1165
1164
|
}
|
|
@@ -1600,8 +1599,8 @@ type Mutation {
|
|
|
1600
1599
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1601
1600
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1602
1601
|
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1603
|
-
|
|
1604
|
-
|
|
1602
|
+
checkComponentsForUpdates(input: RequestBlockletInput): ResponseCheckComponentsForUpdates
|
|
1603
|
+
upgradeComponents(input: RequestUpdateComponentsInput): ResponseBlocklet
|
|
1605
1604
|
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1606
1605
|
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1607
1606
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
package/lib/schema.graphqls
CHANGED
|
@@ -424,11 +424,6 @@ input RequestUpdateAccessKeyInput {
|
|
|
424
424
|
passport: String
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
input RequestUpdateChildBlockletsInput {
|
|
428
|
-
updateId: String
|
|
429
|
-
rootDid: String
|
|
430
|
-
}
|
|
431
|
-
|
|
432
427
|
input RequestUpdateComponentMountPointInput {
|
|
433
428
|
did: String
|
|
434
429
|
rootDid: String
|
|
@@ -441,6 +436,11 @@ input RequestUpdateComponentTitleInput {
|
|
|
441
436
|
title: String
|
|
442
437
|
}
|
|
443
438
|
|
|
439
|
+
input RequestUpdateComponentsInput {
|
|
440
|
+
updateId: String
|
|
441
|
+
rootDid: String
|
|
442
|
+
}
|
|
443
|
+
|
|
444
444
|
input RequestUpdateNginxHttpsCertInput {
|
|
445
445
|
id: String
|
|
446
446
|
name: String
|
|
@@ -712,7 +712,7 @@ type BlockletMeta {
|
|
|
712
712
|
nftFactory: String
|
|
713
713
|
lastPublishedAt: String
|
|
714
714
|
capabilities: BlockletCapabilities
|
|
715
|
-
|
|
715
|
+
components: [ChildConfig!]
|
|
716
716
|
environments: [Environment!]
|
|
717
717
|
requirements: Requirement
|
|
718
718
|
bundleDid: String
|
|
@@ -876,7 +876,6 @@ type CertificateMeta {
|
|
|
876
876
|
|
|
877
877
|
type ChildConfig {
|
|
878
878
|
name: String
|
|
879
|
-
resolved: String
|
|
880
879
|
mountPoint: String
|
|
881
880
|
}
|
|
882
881
|
|
|
@@ -1159,7 +1158,7 @@ type ResponseBlockletMetaFromUrl {
|
|
|
1159
1158
|
registryUrl: String
|
|
1160
1159
|
}
|
|
1161
1160
|
|
|
1162
|
-
type
|
|
1161
|
+
type ResponseCheckComponentsForUpdates {
|
|
1163
1162
|
code: StatusCode
|
|
1164
1163
|
preUpdateInfo: BlockletPreUpdateInfo
|
|
1165
1164
|
}
|
|
@@ -1602,8 +1601,8 @@ type Mutation {
|
|
|
1602
1601
|
deleteComponent(input: RequestDeleteComponentInput): ResponseBlocklet
|
|
1603
1602
|
cancelDownloadBlocklet(input: RequestBlockletInput): ResponseBlocklet
|
|
1604
1603
|
upgradeBlocklet(input: RequestUpgradeBlockletInput): ResponseBlocklet
|
|
1605
|
-
|
|
1606
|
-
|
|
1604
|
+
checkComponentsForUpdates(input: RequestBlockletInput): ResponseCheckComponentsForUpdates
|
|
1605
|
+
upgradeComponents(input: RequestUpdateComponentsInput): ResponseBlocklet
|
|
1607
1606
|
configBlocklet(input: RequestConfigBlockletInput): ResponseBlocklet
|
|
1608
1607
|
configPublicToStore(input: RequestConfigPublicToStoreInput): ResponseBlocklet
|
|
1609
1608
|
updateWhoCanAccess(input: RequestUpdateWhoCanAccessInput): ResponseBlocklet
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.26",
|
|
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": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "71937dabc196a98a1bb514789bc32aee44a1e8c4",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|