@abtnode/schema 1.16.45-beta-20250609-111118-0d252ebe → 1.16.45-beta-20250612-231219-481217be
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 -7
- package/lib/schema.graphqls +9 -7
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -491,6 +491,13 @@ input RequestBlockletRuntimeHistoryInput {
|
|
491
491
|
hours: Uint32
|
492
492
|
}
|
493
493
|
|
494
|
+
input RequestBlockletSettingsInput {
|
495
|
+
did: String
|
496
|
+
enableSessionHardening: Boolean
|
497
|
+
invite: InviteSettingsInput
|
498
|
+
gateway: BlockletGatewayInput
|
499
|
+
}
|
500
|
+
|
494
501
|
input RequestCheckDomainsInput {
|
495
502
|
domains: [String!]
|
496
503
|
did: String
|
@@ -1314,11 +1321,6 @@ input RequestUpdateComponentsInput {
|
|
1314
1321
|
selectedComponents: [String!]
|
1315
1322
|
}
|
1316
1323
|
|
1317
|
-
input RequestUpdateInviteSettingsInput {
|
1318
|
-
did: String
|
1319
|
-
invite: InviteSettingsInput
|
1320
|
-
}
|
1321
|
-
|
1322
1324
|
input RequestUpdateNginxHttpsCertInput {
|
1323
1325
|
id: String
|
1324
1326
|
name: String
|
@@ -2068,6 +2070,7 @@ type BlockletSettings {
|
|
2068
2070
|
theme: Any
|
2069
2071
|
endpointList: [ConnectEndpoint!]
|
2070
2072
|
gateway: Gateway
|
2073
|
+
enableSessionHardening: Boolean
|
2071
2074
|
}
|
2072
2075
|
|
2073
2076
|
type BlockletState {
|
@@ -3931,7 +3934,7 @@ type Mutation {
|
|
3931
3934
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
3932
3935
|
updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
|
3933
3936
|
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
3934
|
-
|
3937
|
+
updateBlockletSettings(input: RequestBlockletSettingsInput): GeneralResponse
|
3935
3938
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
3936
3939
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
3937
3940
|
upgradeNodeVersion(input: RequestUpgradeNodeVersionInput): ResponseUpgradeNodeVersion
|
@@ -3940,7 +3943,6 @@ type Mutation {
|
|
3940
3943
|
rotateSessionKey(input: RequestRotateSessionKeyInput): GeneralResponse
|
3941
3944
|
updateGateway(input: GatewayInput): ResponseGateway
|
3942
3945
|
clearCache(input: RequestClearCacheInput): ResponseClearCache
|
3943
|
-
updateBlockletGateway(input: BlockletGatewayInput): ResponseGateway
|
3944
3946
|
createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
|
3945
3947
|
createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
3946
3948
|
deleteInvitation(input: RequestDeleteInvitationInput): GeneralResponse
|
package/lib/schema.graphqls
CHANGED
@@ -491,6 +491,13 @@ input RequestBlockletRuntimeHistoryInput {
|
|
491
491
|
hours: Uint32
|
492
492
|
}
|
493
493
|
|
494
|
+
input RequestBlockletSettingsInput {
|
495
|
+
did: String
|
496
|
+
enableSessionHardening: Boolean
|
497
|
+
invite: InviteSettingsInput
|
498
|
+
gateway: BlockletGatewayInput
|
499
|
+
}
|
500
|
+
|
494
501
|
input RequestCheckDomainsInput {
|
495
502
|
domains: [String!]
|
496
503
|
did: String
|
@@ -1314,11 +1321,6 @@ input RequestUpdateComponentsInput {
|
|
1314
1321
|
selectedComponents: [String!]
|
1315
1322
|
}
|
1316
1323
|
|
1317
|
-
input RequestUpdateInviteSettingsInput {
|
1318
|
-
did: String
|
1319
|
-
invite: InviteSettingsInput
|
1320
|
-
}
|
1321
|
-
|
1322
1324
|
input RequestUpdateNginxHttpsCertInput {
|
1323
1325
|
id: String
|
1324
1326
|
name: String
|
@@ -2068,6 +2070,7 @@ type BlockletSettings {
|
|
2068
2070
|
theme: Any
|
2069
2071
|
endpointList: [ConnectEndpoint!]
|
2070
2072
|
gateway: Gateway
|
2073
|
+
enableSessionHardening: Boolean
|
2071
2074
|
}
|
2072
2075
|
|
2073
2076
|
type BlockletState {
|
@@ -3933,7 +3936,7 @@ type Mutation {
|
|
3933
3936
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
3934
3937
|
updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
|
3935
3938
|
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
3936
|
-
|
3939
|
+
updateBlockletSettings(input: RequestBlockletSettingsInput): GeneralResponse
|
3937
3940
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
3938
3941
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
3939
3942
|
upgradeNodeVersion(input: RequestUpgradeNodeVersionInput): ResponseUpgradeNodeVersion
|
@@ -3942,7 +3945,6 @@ type Mutation {
|
|
3942
3945
|
rotateSessionKey(input: RequestRotateSessionKeyInput): GeneralResponse
|
3943
3946
|
updateGateway(input: GatewayInput): ResponseGateway
|
3944
3947
|
clearCache(input: RequestClearCacheInput): ResponseClearCache
|
3945
|
-
updateBlockletGateway(input: BlockletGatewayInput): ResponseGateway
|
3946
3948
|
createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
|
3947
3949
|
createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
3948
3950
|
deleteInvitation(input: RequestDeleteInvitationInput): GeneralResponse
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.16.45-beta-
|
6
|
+
"version": "1.16.45-beta-20250612-231219-481217be",
|
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": "01a3fb21f16a515e2565d12797baeda5fdf585b0",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|