@abtnode/schema 1.16.45-beta-20250610-112229-2eb0face → 1.16.45-beta-20250614-101901-d1700f8d
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 +24 -7
- package/lib/schema.graphqls +24 -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
|
@@ -1009,6 +1016,15 @@ input RequestLaunchBlockletByLauncherInput {
|
|
1009
1016
|
storeUrl: String
|
1010
1017
|
}
|
1011
1018
|
|
1019
|
+
input RequestLaunchBlockletWithoutWalletInput {
|
1020
|
+
blockletMetaUrl: String
|
1021
|
+
title: String
|
1022
|
+
description: String
|
1023
|
+
onlyRequired: Boolean
|
1024
|
+
type: String
|
1025
|
+
storeUrl: String
|
1026
|
+
}
|
1027
|
+
|
1012
1028
|
input RequestLimitInput {
|
1013
1029
|
enabled: Boolean
|
1014
1030
|
global: Uint32
|
@@ -1314,11 +1330,6 @@ input RequestUpdateComponentsInput {
|
|
1314
1330
|
selectedComponents: [String!]
|
1315
1331
|
}
|
1316
1332
|
|
1317
|
-
input RequestUpdateInviteSettingsInput {
|
1318
|
-
did: String
|
1319
|
-
invite: InviteSettingsInput
|
1320
|
-
}
|
1321
|
-
|
1322
1333
|
input RequestUpdateNginxHttpsCertInput {
|
1323
1334
|
id: String
|
1324
1335
|
name: String
|
@@ -2068,6 +2079,7 @@ type BlockletSettings {
|
|
2068
2079
|
theme: Any
|
2069
2080
|
endpointList: [ConnectEndpoint!]
|
2070
2081
|
gateway: Gateway
|
2082
|
+
enableSessionHardening: Boolean
|
2071
2083
|
}
|
2072
2084
|
|
2073
2085
|
type BlockletState {
|
@@ -3204,6 +3216,11 @@ type ResponseLaunchBlockletByLauncher {
|
|
3204
3216
|
data: Any
|
3205
3217
|
}
|
3206
3218
|
|
3219
|
+
type ResponseLaunchBlockletWithoutWallet {
|
3220
|
+
code: StatusCode
|
3221
|
+
data: Any
|
3222
|
+
}
|
3223
|
+
|
3207
3224
|
type ResponseMakeAllNotificationsAsRead {
|
3208
3225
|
code: StatusCode
|
3209
3226
|
data: ReadUpdateAffected
|
@@ -3926,12 +3943,13 @@ type Mutation {
|
|
3926
3943
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3927
3944
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3928
3945
|
launchBlockletByLauncher(input: RequestLaunchBlockletByLauncherInput): ResponseLaunchBlockletByLauncher
|
3946
|
+
launchBlockletWithoutWallet(input: RequestLaunchBlockletWithoutWalletInput): ResponseLaunchBlockletWithoutWallet
|
3929
3947
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
3930
3948
|
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
3931
3949
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
3932
3950
|
updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
|
3933
3951
|
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
3934
|
-
|
3952
|
+
updateBlockletSettings(input: RequestBlockletSettingsInput): GeneralResponse
|
3935
3953
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
3936
3954
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
3937
3955
|
upgradeNodeVersion(input: RequestUpgradeNodeVersionInput): ResponseUpgradeNodeVersion
|
@@ -3940,7 +3958,6 @@ type Mutation {
|
|
3940
3958
|
rotateSessionKey(input: RequestRotateSessionKeyInput): GeneralResponse
|
3941
3959
|
updateGateway(input: GatewayInput): ResponseGateway
|
3942
3960
|
clearCache(input: RequestClearCacheInput): ResponseClearCache
|
3943
|
-
updateBlockletGateway(input: BlockletGatewayInput): ResponseGateway
|
3944
3961
|
createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
|
3945
3962
|
createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
3946
3963
|
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
|
@@ -1009,6 +1016,15 @@ input RequestLaunchBlockletByLauncherInput {
|
|
1009
1016
|
storeUrl: String
|
1010
1017
|
}
|
1011
1018
|
|
1019
|
+
input RequestLaunchBlockletWithoutWalletInput {
|
1020
|
+
blockletMetaUrl: String
|
1021
|
+
title: String
|
1022
|
+
description: String
|
1023
|
+
onlyRequired: Boolean
|
1024
|
+
type: String
|
1025
|
+
storeUrl: String
|
1026
|
+
}
|
1027
|
+
|
1012
1028
|
input RequestLimitInput {
|
1013
1029
|
enabled: Boolean
|
1014
1030
|
global: Uint32
|
@@ -1314,11 +1330,6 @@ input RequestUpdateComponentsInput {
|
|
1314
1330
|
selectedComponents: [String!]
|
1315
1331
|
}
|
1316
1332
|
|
1317
|
-
input RequestUpdateInviteSettingsInput {
|
1318
|
-
did: String
|
1319
|
-
invite: InviteSettingsInput
|
1320
|
-
}
|
1321
|
-
|
1322
1333
|
input RequestUpdateNginxHttpsCertInput {
|
1323
1334
|
id: String
|
1324
1335
|
name: String
|
@@ -2068,6 +2079,7 @@ type BlockletSettings {
|
|
2068
2079
|
theme: Any
|
2069
2080
|
endpointList: [ConnectEndpoint!]
|
2070
2081
|
gateway: Gateway
|
2082
|
+
enableSessionHardening: Boolean
|
2071
2083
|
}
|
2072
2084
|
|
2073
2085
|
type BlockletState {
|
@@ -3204,6 +3216,11 @@ type ResponseLaunchBlockletByLauncher {
|
|
3204
3216
|
data: Any
|
3205
3217
|
}
|
3206
3218
|
|
3219
|
+
type ResponseLaunchBlockletWithoutWallet {
|
3220
|
+
code: StatusCode
|
3221
|
+
data: Any
|
3222
|
+
}
|
3223
|
+
|
3207
3224
|
type ResponseMakeAllNotificationsAsRead {
|
3208
3225
|
code: StatusCode
|
3209
3226
|
data: ReadUpdateAffected
|
@@ -3928,12 +3945,13 @@ type Mutation {
|
|
3928
3945
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3929
3946
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3930
3947
|
launchBlockletByLauncher(input: RequestLaunchBlockletByLauncherInput): ResponseLaunchBlockletByLauncher
|
3948
|
+
launchBlockletWithoutWallet(input: RequestLaunchBlockletWithoutWalletInput): ResponseLaunchBlockletWithoutWallet
|
3931
3949
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
3932
3950
|
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
3933
3951
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
3934
3952
|
updateAutoBackup(input: RequestUpdateAutoBackupInput): GeneralResponse
|
3935
3953
|
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
3936
|
-
|
3954
|
+
updateBlockletSettings(input: RequestBlockletSettingsInput): GeneralResponse
|
3937
3955
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
3938
3956
|
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
3939
3957
|
upgradeNodeVersion(input: RequestUpgradeNodeVersionInput): ResponseUpgradeNodeVersion
|
@@ -3942,7 +3960,6 @@ type Mutation {
|
|
3942
3960
|
rotateSessionKey(input: RequestRotateSessionKeyInput): GeneralResponse
|
3943
3961
|
updateGateway(input: GatewayInput): ResponseGateway
|
3944
3962
|
clearCache(input: RequestClearCacheInput): ResponseClearCache
|
3945
|
-
updateBlockletGateway(input: BlockletGatewayInput): ResponseGateway
|
3946
3963
|
createMemberInvitation(input: RequestCreateInvitationInput): ResponseCreateInvitation
|
3947
3964
|
createTransferInvitation(input: RequestCreateTransferNodeInvitationInput): ResponseCreateTransferNodeInvitation
|
3948
3965
|
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-20250614-101901-d1700f8d",
|
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": "5fb4c294b2754d660fa946ac85c962edb2deaad2",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|