@abtnode/schema 1.16.45-beta-20250612-231219-481217be → 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 +15 -0
- package/lib/schema.graphqls +15 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -1016,6 +1016,15 @@ input RequestLaunchBlockletByLauncherInput {
|
|
1016
1016
|
storeUrl: String
|
1017
1017
|
}
|
1018
1018
|
|
1019
|
+
input RequestLaunchBlockletWithoutWalletInput {
|
1020
|
+
blockletMetaUrl: String
|
1021
|
+
title: String
|
1022
|
+
description: String
|
1023
|
+
onlyRequired: Boolean
|
1024
|
+
type: String
|
1025
|
+
storeUrl: String
|
1026
|
+
}
|
1027
|
+
|
1019
1028
|
input RequestLimitInput {
|
1020
1029
|
enabled: Boolean
|
1021
1030
|
global: Uint32
|
@@ -3207,6 +3216,11 @@ type ResponseLaunchBlockletByLauncher {
|
|
3207
3216
|
data: Any
|
3208
3217
|
}
|
3209
3218
|
|
3219
|
+
type ResponseLaunchBlockletWithoutWallet {
|
3220
|
+
code: StatusCode
|
3221
|
+
data: Any
|
3222
|
+
}
|
3223
|
+
|
3210
3224
|
type ResponseMakeAllNotificationsAsRead {
|
3211
3225
|
code: StatusCode
|
3212
3226
|
data: ReadUpdateAffected
|
@@ -3929,6 +3943,7 @@ type Mutation {
|
|
3929
3943
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3930
3944
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3931
3945
|
launchBlockletByLauncher(input: RequestLaunchBlockletByLauncherInput): ResponseLaunchBlockletByLauncher
|
3946
|
+
launchBlockletWithoutWallet(input: RequestLaunchBlockletWithoutWalletInput): ResponseLaunchBlockletWithoutWallet
|
3932
3947
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
3933
3948
|
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
3934
3949
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
package/lib/schema.graphqls
CHANGED
@@ -1016,6 +1016,15 @@ input RequestLaunchBlockletByLauncherInput {
|
|
1016
1016
|
storeUrl: String
|
1017
1017
|
}
|
1018
1018
|
|
1019
|
+
input RequestLaunchBlockletWithoutWalletInput {
|
1020
|
+
blockletMetaUrl: String
|
1021
|
+
title: String
|
1022
|
+
description: String
|
1023
|
+
onlyRequired: Boolean
|
1024
|
+
type: String
|
1025
|
+
storeUrl: String
|
1026
|
+
}
|
1027
|
+
|
1019
1028
|
input RequestLimitInput {
|
1020
1029
|
enabled: Boolean
|
1021
1030
|
global: Uint32
|
@@ -3207,6 +3216,11 @@ type ResponseLaunchBlockletByLauncher {
|
|
3207
3216
|
data: Any
|
3208
3217
|
}
|
3209
3218
|
|
3219
|
+
type ResponseLaunchBlockletWithoutWallet {
|
3220
|
+
code: StatusCode
|
3221
|
+
data: Any
|
3222
|
+
}
|
3223
|
+
|
3210
3224
|
type ResponseMakeAllNotificationsAsRead {
|
3211
3225
|
code: StatusCode
|
3212
3226
|
data: ReadUpdateAffected
|
@@ -3931,6 +3945,7 @@ type Mutation {
|
|
3931
3945
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3932
3946
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3933
3947
|
launchBlockletByLauncher(input: RequestLaunchBlockletByLauncherInput): ResponseLaunchBlockletByLauncher
|
3948
|
+
launchBlockletWithoutWallet(input: RequestLaunchBlockletWithoutWalletInput): ResponseLaunchBlockletWithoutWallet
|
3934
3949
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
3935
3950
|
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
3936
3951
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): 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
|
}
|