@abtnode/schema 1.16.41-beta-20250319-131732-1224cca5 → 1.16.41-beta-20250325-054737-39c060ca
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 +21 -0
- package/lib/schema.graphqls +25 -3
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -692,8 +692,16 @@ input RequestGetBlockletAccessPolicyInput {
|
|
692
692
|
id: String
|
693
693
|
}
|
694
694
|
|
695
|
+
input RequestGetBlockletBackupSummaryInput {
|
696
|
+
did: String
|
697
|
+
startTime: String
|
698
|
+
endTime: String
|
699
|
+
}
|
700
|
+
|
695
701
|
input RequestGetBlockletBackupsInput {
|
696
702
|
did: String
|
703
|
+
startTime: String
|
704
|
+
endTime: String
|
697
705
|
}
|
698
706
|
|
699
707
|
input RequestGetBlockletResponseHeaderPoliciesInput {
|
@@ -1555,6 +1563,13 @@ type Backup {
|
|
1555
1563
|
status: Uint32
|
1556
1564
|
message: String
|
1557
1565
|
progress: Uint32
|
1566
|
+
metadata: Any
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
type BackupSummaryItem {
|
1570
|
+
date: String
|
1571
|
+
successCount: Int32
|
1572
|
+
errorCount: Int32
|
1558
1573
|
}
|
1559
1574
|
|
1560
1575
|
type BlockPolicy {
|
@@ -2678,6 +2693,11 @@ type ResponseGetAuditLogs {
|
|
2678
2693
|
paging: Paging
|
2679
2694
|
}
|
2680
2695
|
|
2696
|
+
type ResponseGetBlockletBackupSummary {
|
2697
|
+
code: StatusCode
|
2698
|
+
summary: [BackupSummaryItem!]
|
2699
|
+
}
|
2700
|
+
|
2681
2701
|
type ResponseGetBlockletBackups {
|
2682
2702
|
code: StatusCode
|
2683
2703
|
backups: [Backup!]
|
@@ -3630,6 +3650,7 @@ type Query {
|
|
3630
3650
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
3631
3651
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
3632
3652
|
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
3653
|
+
getBlockletBackupSummary(input: RequestGetBlockletBackupSummaryInput): ResponseGetBlockletBackupSummary
|
3633
3654
|
getBlockletSpaceGateways(input: RequestBlockletInput): ResponseGetBlockletSpaceGateways
|
3634
3655
|
getTrafficInsights(input: RequestGetTrafficInsightsInput): ResponseGetTrafficInsights
|
3635
3656
|
getProjects(input: RequestGetProjectsInput): ResponseGetProjects
|
package/lib/schema.graphqls
CHANGED
@@ -692,8 +692,16 @@ input RequestGetBlockletAccessPolicyInput {
|
|
692
692
|
id: String
|
693
693
|
}
|
694
694
|
|
695
|
+
input RequestGetBlockletBackupSummaryInput {
|
696
|
+
did: String
|
697
|
+
startTime: String
|
698
|
+
endTime: String
|
699
|
+
}
|
700
|
+
|
695
701
|
input RequestGetBlockletBackupsInput {
|
696
702
|
did: String
|
703
|
+
startTime: String
|
704
|
+
endTime: String
|
697
705
|
}
|
698
706
|
|
699
707
|
input RequestGetBlockletResponseHeaderPoliciesInput {
|
@@ -1186,9 +1194,9 @@ input RequestUpdateSelectedResourcesInput {
|
|
1186
1194
|
}
|
1187
1195
|
|
1188
1196
|
input RequestUpdateUserAddressInput {
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1197
|
+
teamDid: String
|
1198
|
+
did: String
|
1199
|
+
address: UserAddressInput
|
1192
1200
|
}
|
1193
1201
|
|
1194
1202
|
input RequestUpdateUserExtraInput {
|
@@ -1555,6 +1563,13 @@ type Backup {
|
|
1555
1563
|
status: Uint32
|
1556
1564
|
message: String
|
1557
1565
|
progress: Uint32
|
1566
|
+
metadata: Any
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
type BackupSummaryItem {
|
1570
|
+
date: String
|
1571
|
+
successCount: Int32
|
1572
|
+
errorCount: Int32
|
1558
1573
|
}
|
1559
1574
|
|
1560
1575
|
type BlockPolicy {
|
@@ -2678,6 +2693,11 @@ type ResponseGetAuditLogs {
|
|
2678
2693
|
paging: Paging
|
2679
2694
|
}
|
2680
2695
|
|
2696
|
+
type ResponseGetBlockletBackupSummary {
|
2697
|
+
code: StatusCode
|
2698
|
+
summary: [BackupSummaryItem!]
|
2699
|
+
}
|
2700
|
+
|
2681
2701
|
type ResponseGetBlockletBackups {
|
2682
2702
|
code: StatusCode
|
2683
2703
|
backups: [Backup!]
|
@@ -3521,6 +3541,7 @@ type Mutation {
|
|
3521
3541
|
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
3522
3542
|
removeUserPassport(input: RequestRevokeUserPassportInput): GeneralResponse
|
3523
3543
|
switchProfile(input: RequestSwitchProfileInput): ResponseUser
|
3544
|
+
updateUserAddress(input: RequestUpdateUserAddressInput): ResponseUser
|
3524
3545
|
createRole(input: RequestCreateRoleInput): ResponseRole
|
3525
3546
|
updateRole(input: RequestTeamRoleInput): ResponseRole
|
3526
3547
|
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
@@ -3631,6 +3652,7 @@ type Query {
|
|
3631
3652
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
3632
3653
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
3633
3654
|
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
3655
|
+
getBlockletBackupSummary(input: RequestGetBlockletBackupSummaryInput): ResponseGetBlockletBackupSummary
|
3634
3656
|
getBlockletSpaceGateways(input: RequestBlockletInput): ResponseGetBlockletSpaceGateways
|
3635
3657
|
getTrafficInsights(input: RequestGetTrafficInsightsInput): ResponseGetTrafficInsights
|
3636
3658
|
getProjects(input: RequestGetProjectsInput): ResponseGetProjects
|
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-20250325-054737-39c060ca",
|
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": "9e56cfa4785c8c15e6b9091625f380bb7bc46670",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|