@abtnode/schema 1.16.39-beta-20250213-123635-cabff5af → 1.16.39-beta-20250218-110004-a308c501
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 -0
- package/lib/schema.graphqls +9 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -275,6 +275,10 @@ input ProxyPolicyInput {
|
|
275
275
|
realIpHeader: String
|
276
276
|
}
|
277
277
|
|
278
|
+
input RequestAbortBlockletBackupInput {
|
279
|
+
appPid: String
|
280
|
+
}
|
281
|
+
|
278
282
|
input RequestAddBlockletAccessPolicyInput {
|
279
283
|
did: String
|
280
284
|
data: BlockletAccessPolicyInput
|
@@ -1378,6 +1382,7 @@ type AuditLogActor {
|
|
1378
1382
|
role: String
|
1379
1383
|
fullName: String
|
1380
1384
|
avatar: String
|
1385
|
+
source: String
|
1381
1386
|
}
|
1382
1387
|
|
1383
1388
|
type AuditLogEnv {
|
@@ -2171,6 +2176,9 @@ type NotificationReceiver {
|
|
2171
2176
|
emailSendFailedReason: String
|
2172
2177
|
emailSendRecord: [NotificationSendRecord!]
|
2173
2178
|
webhook: Any
|
2179
|
+
email: String
|
2180
|
+
webhookUrls: String
|
2181
|
+
deviceId: String
|
2174
2182
|
}
|
2175
2183
|
|
2176
2184
|
type NotificationSendRecord {
|
@@ -3154,6 +3162,7 @@ type Mutation {
|
|
3154
3162
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
3155
3163
|
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
3156
3164
|
backupBlocklet(input: RequestBackupBlockletInput): GeneralResponse
|
3165
|
+
abortBlockletBackup(input: RequestAbortBlockletBackupInput): GeneralResponse
|
3157
3166
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3158
3167
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3159
3168
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
package/lib/schema.graphqls
CHANGED
@@ -275,6 +275,10 @@ input ProxyPolicyInput {
|
|
275
275
|
realIpHeader: String
|
276
276
|
}
|
277
277
|
|
278
|
+
input RequestAbortBlockletBackupInput {
|
279
|
+
appPid: String
|
280
|
+
}
|
281
|
+
|
278
282
|
input RequestAddBlockletAccessPolicyInput {
|
279
283
|
did: String
|
280
284
|
data: BlockletAccessPolicyInput
|
@@ -1378,6 +1382,7 @@ type AuditLogActor {
|
|
1378
1382
|
role: String
|
1379
1383
|
fullName: String
|
1380
1384
|
avatar: String
|
1385
|
+
source: String
|
1381
1386
|
}
|
1382
1387
|
|
1383
1388
|
type AuditLogEnv {
|
@@ -2171,6 +2176,9 @@ type NotificationReceiver {
|
|
2171
2176
|
emailSendFailedReason: String
|
2172
2177
|
emailSendRecord: [NotificationSendRecord!]
|
2173
2178
|
webhook: Any
|
2179
|
+
email: String
|
2180
|
+
webhookUrls: String
|
2181
|
+
deviceId: String
|
2174
2182
|
}
|
2175
2183
|
|
2176
2184
|
type NotificationSendRecord {
|
@@ -3156,6 +3164,7 @@ type Mutation {
|
|
3156
3164
|
updateComponentTitle(input: RequestUpdateComponentTitleInput): ResponseBlocklet
|
3157
3165
|
updateComponentMountPoint(input: RequestUpdateComponentMountPointInput): ResponseBlocklet
|
3158
3166
|
backupBlocklet(input: RequestBackupBlockletInput): GeneralResponse
|
3167
|
+
abortBlockletBackup(input: RequestAbortBlockletBackupInput): GeneralResponse
|
3159
3168
|
restoreBlocklet(input: RequestRestoreBlockletInput): GeneralResponse
|
3160
3169
|
migrateApplicationToStructV2(input: RequestMigrateApplicationToStructV2Input): GeneralResponse
|
3161
3170
|
addBlockletSpaceGateway(input: RequestAddBlockletSpaceGatewayInput): GeneralResponse
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.16.39-beta-
|
6
|
+
"version": "1.16.39-beta-20250218-110004-a308c501",
|
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": "f47632e1ce0cc8295dd3fa1131bcc6252d6adaf9",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|