@abtnode/schema 1.16.41-beta-20250317-081605-78d4ac9f → 1.16.41-beta-20250318-123609-b48bb2d7
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 +46 -1
- package/lib/schema.graphqls +46 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -854,6 +854,18 @@ input RequestJoinFederatedLoginInput {
|
|
854
854
|
appUrl: String
|
855
855
|
}
|
856
856
|
|
857
|
+
input RequestLaunchBlockletByLauncherInput {
|
858
|
+
blockletMetaUrl: String
|
859
|
+
title: String
|
860
|
+
description: String
|
861
|
+
chainHost: String
|
862
|
+
launcherSessionId: String
|
863
|
+
launcherUrl: String
|
864
|
+
onlyRequired: Boolean
|
865
|
+
type: String
|
866
|
+
storeUrl: String
|
867
|
+
}
|
868
|
+
|
857
869
|
input RequestLimitInput {
|
858
870
|
enabled: Boolean
|
859
871
|
rate: Uint32
|
@@ -1326,6 +1338,15 @@ input TrustedPassportMappingToInput {
|
|
1326
1338
|
ttlPolicy: String
|
1327
1339
|
}
|
1328
1340
|
|
1341
|
+
input UserAddressInput {
|
1342
|
+
country: String
|
1343
|
+
province: String
|
1344
|
+
city: String
|
1345
|
+
postalCode: String
|
1346
|
+
line1: String
|
1347
|
+
line2: String
|
1348
|
+
}
|
1349
|
+
|
1329
1350
|
input UserInfoInput {
|
1330
1351
|
did: String
|
1331
1352
|
pk: String
|
@@ -1356,6 +1377,7 @@ input UserInfoInput {
|
|
1356
1377
|
emailVerified: Boolean
|
1357
1378
|
phoneVerified: Boolean
|
1358
1379
|
metadata: UserMetadataInput
|
1380
|
+
address: UserAddressInput
|
1359
1381
|
}
|
1360
1382
|
|
1361
1383
|
input UserMetadataInput {
|
@@ -1622,6 +1644,11 @@ type BlockletHistoryItem {
|
|
1622
1644
|
mem: Uint64
|
1623
1645
|
}
|
1624
1646
|
|
1647
|
+
type BlockletHistoryItemList {
|
1648
|
+
key: String
|
1649
|
+
value: [BlockletHistoryItem!]
|
1650
|
+
}
|
1651
|
+
|
1625
1652
|
type BlockletMeta {
|
1626
1653
|
did: String
|
1627
1654
|
name: String
|
@@ -1921,6 +1948,7 @@ type ComponentState {
|
|
1921
1948
|
mountPoint: String
|
1922
1949
|
dependents: [Dependent!]
|
1923
1950
|
required: Boolean
|
1951
|
+
appRuntimeInfo: RuntimeInfo
|
1924
1952
|
}
|
1925
1953
|
|
1926
1954
|
type ConfigEntry {
|
@@ -2521,7 +2549,7 @@ type ResponseBlockletResponseHeaderPolicy {
|
|
2521
2549
|
|
2522
2550
|
type ResponseBlockletRuntimeHistory {
|
2523
2551
|
code: StatusCode
|
2524
|
-
|
2552
|
+
historyList: [BlockletHistoryItemList!]
|
2525
2553
|
}
|
2526
2554
|
|
2527
2555
|
type ResponseBlockletSecurityRule {
|
@@ -2788,6 +2816,11 @@ type ResponseIsDidDomain {
|
|
2788
2816
|
value: Boolean
|
2789
2817
|
}
|
2790
2818
|
|
2819
|
+
type ResponseLaunchBlockletByLauncher {
|
2820
|
+
code: StatusCode
|
2821
|
+
data: Any
|
2822
|
+
}
|
2823
|
+
|
2791
2824
|
type ResponseMakeAllNotificationsAsRead {
|
2792
2825
|
code: StatusCode
|
2793
2826
|
data: ReadUpdateAffected
|
@@ -3015,6 +3048,7 @@ type RuntimeInfo {
|
|
3015
3048
|
memoryUsage: Float32
|
3016
3049
|
cpuUsage: Float32
|
3017
3050
|
runningDocker: Boolean
|
3051
|
+
cpus: Any
|
3018
3052
|
}
|
3019
3053
|
|
3020
3054
|
type SessionConfig {
|
@@ -3118,6 +3152,15 @@ type UpdateList {
|
|
3118
3152
|
meta: BlockletMeta
|
3119
3153
|
}
|
3120
3154
|
|
3155
|
+
type UserAddress {
|
3156
|
+
country: String
|
3157
|
+
province: String
|
3158
|
+
city: String
|
3159
|
+
postalCode: String
|
3160
|
+
line1: String
|
3161
|
+
line2: String
|
3162
|
+
}
|
3163
|
+
|
3121
3164
|
type UserInfo {
|
3122
3165
|
did: String
|
3123
3166
|
pk: String
|
@@ -3148,6 +3191,7 @@ type UserInfo {
|
|
3148
3191
|
emailVerified: Boolean
|
3149
3192
|
phoneVerified: Boolean
|
3150
3193
|
metadata: UserMetadata
|
3194
|
+
address: UserAddress
|
3151
3195
|
}
|
3152
3196
|
|
3153
3197
|
type UserMetadata {
|
@@ -3436,6 +3480,7 @@ type Mutation {
|
|
3436
3480
|
abortBlockletBackup(input: RequestAbortBlockletBackupInput): GeneralResponse
|
3437
3481
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3438
3482
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3483
|
+
launchBlockletByLauncher(input: RequestLaunchBlockletByLauncherInput): ResponseLaunchBlockletByLauncher
|
3439
3484
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
3440
3485
|
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
3441
3486
|
updateBlockletSpaceGateway(input: RequestUpdateBlockletSpaceGatewayInput): GeneralResponse
|
package/lib/schema.graphqls
CHANGED
@@ -854,6 +854,18 @@ input RequestJoinFederatedLoginInput {
|
|
854
854
|
appUrl: String
|
855
855
|
}
|
856
856
|
|
857
|
+
input RequestLaunchBlockletByLauncherInput {
|
858
|
+
blockletMetaUrl: String
|
859
|
+
title: String
|
860
|
+
description: String
|
861
|
+
chainHost: String
|
862
|
+
launcherSessionId: String
|
863
|
+
launcherUrl: String
|
864
|
+
onlyRequired: Boolean
|
865
|
+
type: String
|
866
|
+
storeUrl: String
|
867
|
+
}
|
868
|
+
|
857
869
|
input RequestLimitInput {
|
858
870
|
enabled: Boolean
|
859
871
|
rate: Uint32
|
@@ -1326,6 +1338,15 @@ input TrustedPassportMappingToInput {
|
|
1326
1338
|
ttlPolicy: String
|
1327
1339
|
}
|
1328
1340
|
|
1341
|
+
input UserAddressInput {
|
1342
|
+
country: String
|
1343
|
+
province: String
|
1344
|
+
city: String
|
1345
|
+
postalCode: String
|
1346
|
+
line1: String
|
1347
|
+
line2: String
|
1348
|
+
}
|
1349
|
+
|
1329
1350
|
input UserInfoInput {
|
1330
1351
|
did: String
|
1331
1352
|
pk: String
|
@@ -1356,6 +1377,7 @@ input UserInfoInput {
|
|
1356
1377
|
emailVerified: Boolean
|
1357
1378
|
phoneVerified: Boolean
|
1358
1379
|
metadata: UserMetadataInput
|
1380
|
+
address: UserAddressInput
|
1359
1381
|
}
|
1360
1382
|
|
1361
1383
|
input UserMetadataInput {
|
@@ -1622,6 +1644,11 @@ type BlockletHistoryItem {
|
|
1622
1644
|
mem: Uint64
|
1623
1645
|
}
|
1624
1646
|
|
1647
|
+
type BlockletHistoryItemList {
|
1648
|
+
key: String
|
1649
|
+
value: [BlockletHistoryItem!]
|
1650
|
+
}
|
1651
|
+
|
1625
1652
|
type BlockletMeta {
|
1626
1653
|
did: String
|
1627
1654
|
name: String
|
@@ -1921,6 +1948,7 @@ type ComponentState {
|
|
1921
1948
|
mountPoint: String
|
1922
1949
|
dependents: [Dependent!]
|
1923
1950
|
required: Boolean
|
1951
|
+
appRuntimeInfo: RuntimeInfo
|
1924
1952
|
}
|
1925
1953
|
|
1926
1954
|
type ConfigEntry {
|
@@ -2521,7 +2549,7 @@ type ResponseBlockletResponseHeaderPolicy {
|
|
2521
2549
|
|
2522
2550
|
type ResponseBlockletRuntimeHistory {
|
2523
2551
|
code: StatusCode
|
2524
|
-
|
2552
|
+
historyList: [BlockletHistoryItemList!]
|
2525
2553
|
}
|
2526
2554
|
|
2527
2555
|
type ResponseBlockletSecurityRule {
|
@@ -2788,6 +2816,11 @@ type ResponseIsDidDomain {
|
|
2788
2816
|
value: Boolean
|
2789
2817
|
}
|
2790
2818
|
|
2819
|
+
type ResponseLaunchBlockletByLauncher {
|
2820
|
+
code: StatusCode
|
2821
|
+
data: Any
|
2822
|
+
}
|
2823
|
+
|
2791
2824
|
type ResponseMakeAllNotificationsAsRead {
|
2792
2825
|
code: StatusCode
|
2793
2826
|
data: ReadUpdateAffected
|
@@ -3015,6 +3048,7 @@ type RuntimeInfo {
|
|
3015
3048
|
memoryUsage: Float32
|
3016
3049
|
cpuUsage: Float32
|
3017
3050
|
runningDocker: Boolean
|
3051
|
+
cpus: Any
|
3018
3052
|
}
|
3019
3053
|
|
3020
3054
|
type SessionConfig {
|
@@ -3118,6 +3152,15 @@ type UpdateList {
|
|
3118
3152
|
meta: BlockletMeta
|
3119
3153
|
}
|
3120
3154
|
|
3155
|
+
type UserAddress {
|
3156
|
+
country: String
|
3157
|
+
province: String
|
3158
|
+
city: String
|
3159
|
+
postalCode: String
|
3160
|
+
line1: String
|
3161
|
+
line2: String
|
3162
|
+
}
|
3163
|
+
|
3121
3164
|
type UserInfo {
|
3122
3165
|
did: String
|
3123
3166
|
pk: String
|
@@ -3148,6 +3191,7 @@ type UserInfo {
|
|
3148
3191
|
emailVerified: Boolean
|
3149
3192
|
phoneVerified: Boolean
|
3150
3193
|
metadata: UserMetadata
|
3194
|
+
address: UserAddress
|
3151
3195
|
}
|
3152
3196
|
|
3153
3197
|
type UserMetadata {
|
@@ -3438,6 +3482,7 @@ type Mutation {
|
|
3438
3482
|
abortBlockletBackup(input: RequestAbortBlockletBackupInput): GeneralResponse
|
3439
3483
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3440
3484
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3485
|
+
launchBlockletByLauncher(input: RequestLaunchBlockletByLauncherInput): ResponseLaunchBlockletByLauncher
|
3441
3486
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
3442
3487
|
deleteBlockletSpaceGateway(input: RequestDeleteBlockletSpaceGatewayInput): GeneralResponse
|
3443
3488
|
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.41-beta-
|
6
|
+
"version": "1.16.41-beta-20250318-123609-b48bb2d7",
|
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": "bb26547e22d71d208582b6254c355598a42f363b",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|