@abtnode/schema 1.6.21 → 1.6.24
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 +5 -0
- package/lib/schema.graphqls +5 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -452,6 +452,7 @@ input RequestVersionedBlockletInput {
|
|
|
452
452
|
deleteSet: [String!]
|
|
453
453
|
title: String
|
|
454
454
|
description: String
|
|
455
|
+
startImmediately: Boolean
|
|
455
456
|
}
|
|
456
457
|
|
|
457
458
|
input RequsetCreateInvitationInput {
|
|
@@ -510,6 +511,7 @@ input TeamInput {
|
|
|
510
511
|
|
|
511
512
|
input TrustedPassportInput {
|
|
512
513
|
issuerDid: String
|
|
514
|
+
remark: String
|
|
513
515
|
mappings: [TrustedPassportMappingInput!]
|
|
514
516
|
}
|
|
515
517
|
|
|
@@ -683,6 +685,7 @@ type BlockletState {
|
|
|
683
685
|
runtimeInfo: RuntimeInfo
|
|
684
686
|
source: BlockletSource
|
|
685
687
|
deployedFrom: String
|
|
688
|
+
sourceUrl: String
|
|
686
689
|
port: Float32
|
|
687
690
|
interfaces: [BlockletStateInterface!]
|
|
688
691
|
engine: BlockletEngine
|
|
@@ -1262,6 +1265,7 @@ type RuntimeInfo {
|
|
|
1262
1265
|
|
|
1263
1266
|
type TrustedPassport {
|
|
1264
1267
|
issuerDid: String
|
|
1268
|
+
remark: String
|
|
1265
1269
|
mappings: [TrustedPassportMapping!]
|
|
1266
1270
|
}
|
|
1267
1271
|
|
|
@@ -1312,6 +1316,7 @@ enum BackendServiceType {
|
|
|
1312
1316
|
redirect
|
|
1313
1317
|
none
|
|
1314
1318
|
general_proxy
|
|
1319
|
+
direct_response
|
|
1315
1320
|
}
|
|
1316
1321
|
|
|
1317
1322
|
enum BlockletSource {
|
package/lib/schema.graphqls
CHANGED
|
@@ -452,6 +452,7 @@ input RequestVersionedBlockletInput {
|
|
|
452
452
|
deleteSet: [String!]
|
|
453
453
|
title: String
|
|
454
454
|
description: String
|
|
455
|
+
startImmediately: Boolean
|
|
455
456
|
}
|
|
456
457
|
|
|
457
458
|
input RequsetCreateInvitationInput {
|
|
@@ -510,6 +511,7 @@ input TeamInput {
|
|
|
510
511
|
|
|
511
512
|
input TrustedPassportInput {
|
|
512
513
|
issuerDid: String
|
|
514
|
+
remark: String
|
|
513
515
|
mappings: [TrustedPassportMappingInput!]
|
|
514
516
|
}
|
|
515
517
|
|
|
@@ -683,6 +685,7 @@ type BlockletState {
|
|
|
683
685
|
runtimeInfo: RuntimeInfo
|
|
684
686
|
source: BlockletSource
|
|
685
687
|
deployedFrom: String
|
|
688
|
+
sourceUrl: String
|
|
686
689
|
port: Float32
|
|
687
690
|
interfaces: [BlockletStateInterface!]
|
|
688
691
|
engine: BlockletEngine
|
|
@@ -1262,6 +1265,7 @@ type RuntimeInfo {
|
|
|
1262
1265
|
|
|
1263
1266
|
type TrustedPassport {
|
|
1264
1267
|
issuerDid: String
|
|
1268
|
+
remark: String
|
|
1265
1269
|
mappings: [TrustedPassportMapping!]
|
|
1266
1270
|
}
|
|
1267
1271
|
|
|
@@ -1312,6 +1316,7 @@ enum BackendServiceType {
|
|
|
1312
1316
|
redirect
|
|
1313
1317
|
none
|
|
1314
1318
|
general_proxy
|
|
1319
|
+
direct_response
|
|
1315
1320
|
}
|
|
1316
1321
|
|
|
1317
1322
|
enum BlockletSource {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.6.
|
|
6
|
+
"version": "1.6.24",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
15
|
"license": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "6bd8792a155ebbbefea6ca3d42c5b59b354d9879"
|
|
17
17
|
}
|