@abtnode/schema 1.16.41-beta-20250319-034744-5c62f533 → 1.16.41-beta-20250321-223009-25dace48
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 +28 -0
- package/lib/schema.graphqls +28 -0
- 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 {
|
@@ -1185,6 +1193,12 @@ input RequestUpdateSelectedResourcesInput {
|
|
1185
1193
|
resources: [String!]
|
1186
1194
|
}
|
1187
1195
|
|
1196
|
+
input RequestUpdateUserAddressInput {
|
1197
|
+
teamDid: String
|
1198
|
+
did: String
|
1199
|
+
address: UserAddressInput
|
1200
|
+
}
|
1201
|
+
|
1188
1202
|
input RequestUpdateUserExtraInput {
|
1189
1203
|
teamDid: String
|
1190
1204
|
did: String
|
@@ -1549,6 +1563,13 @@ type Backup {
|
|
1549
1563
|
status: Uint32
|
1550
1564
|
message: String
|
1551
1565
|
progress: Uint32
|
1566
|
+
metadata: Any
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
type BackupSummaryItem {
|
1570
|
+
date: String
|
1571
|
+
successCount: Int32
|
1572
|
+
errorCount: Int32
|
1552
1573
|
}
|
1553
1574
|
|
1554
1575
|
type BlockPolicy {
|
@@ -2672,6 +2693,11 @@ type ResponseGetAuditLogs {
|
|
2672
2693
|
paging: Paging
|
2673
2694
|
}
|
2674
2695
|
|
2696
|
+
type ResponseGetBlockletBackupSummary {
|
2697
|
+
code: StatusCode
|
2698
|
+
summary: [BackupSummaryItem!]
|
2699
|
+
}
|
2700
|
+
|
2675
2701
|
type ResponseGetBlockletBackups {
|
2676
2702
|
code: StatusCode
|
2677
2703
|
backups: [Backup!]
|
@@ -3513,6 +3539,7 @@ type Mutation {
|
|
3513
3539
|
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
3514
3540
|
removeUserPassport(input: RequestRevokeUserPassportInput): GeneralResponse
|
3515
3541
|
switchProfile(input: RequestSwitchProfileInput): ResponseUser
|
3542
|
+
updateUserAddress(input: RequestUpdateUserAddressInput): ResponseUser
|
3516
3543
|
createRole(input: RequestCreateRoleInput): ResponseRole
|
3517
3544
|
updateRole(input: RequestTeamRoleInput): ResponseRole
|
3518
3545
|
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
@@ -3623,6 +3650,7 @@ type Query {
|
|
3623
3650
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
3624
3651
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
3625
3652
|
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
3653
|
+
getBlockletBackupSummary(input: RequestGetBlockletBackupSummaryInput): ResponseGetBlockletBackupSummary
|
3626
3654
|
getBlockletSpaceGateways(input: RequestBlockletInput): ResponseGetBlockletSpaceGateways
|
3627
3655
|
getTrafficInsights(input: RequestGetTrafficInsightsInput): ResponseGetTrafficInsights
|
3628
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 {
|
@@ -1185,6 +1193,12 @@ input RequestUpdateSelectedResourcesInput {
|
|
1185
1193
|
resources: [String!]
|
1186
1194
|
}
|
1187
1195
|
|
1196
|
+
input RequestUpdateUserAddressInput {
|
1197
|
+
teamDid: String
|
1198
|
+
did: String
|
1199
|
+
address: UserAddressInput
|
1200
|
+
}
|
1201
|
+
|
1188
1202
|
input RequestUpdateUserExtraInput {
|
1189
1203
|
teamDid: String
|
1190
1204
|
did: String
|
@@ -1549,6 +1563,13 @@ type Backup {
|
|
1549
1563
|
status: Uint32
|
1550
1564
|
message: String
|
1551
1565
|
progress: Uint32
|
1566
|
+
metadata: Any
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
type BackupSummaryItem {
|
1570
|
+
date: String
|
1571
|
+
successCount: Int32
|
1572
|
+
errorCount: Int32
|
1552
1573
|
}
|
1553
1574
|
|
1554
1575
|
type BlockPolicy {
|
@@ -2672,6 +2693,11 @@ type ResponseGetAuditLogs {
|
|
2672
2693
|
paging: Paging
|
2673
2694
|
}
|
2674
2695
|
|
2696
|
+
type ResponseGetBlockletBackupSummary {
|
2697
|
+
code: StatusCode
|
2698
|
+
summary: [BackupSummaryItem!]
|
2699
|
+
}
|
2700
|
+
|
2675
2701
|
type ResponseGetBlockletBackups {
|
2676
2702
|
code: StatusCode
|
2677
2703
|
backups: [Backup!]
|
@@ -3515,6 +3541,7 @@ type Mutation {
|
|
3515
3541
|
enableUserPassport(input: RequestRevokeUserPassportInput): ResponseUser
|
3516
3542
|
removeUserPassport(input: RequestRevokeUserPassportInput): GeneralResponse
|
3517
3543
|
switchProfile(input: RequestSwitchProfileInput): ResponseUser
|
3544
|
+
updateUserAddress(input: RequestUpdateUserAddressInput): ResponseUser
|
3518
3545
|
createRole(input: RequestCreateRoleInput): ResponseRole
|
3519
3546
|
updateRole(input: RequestTeamRoleInput): ResponseRole
|
3520
3547
|
deleteRole(input: RequestDeleteRoleInput): GeneralResponse
|
@@ -3625,6 +3652,7 @@ type Query {
|
|
3625
3652
|
getAuditLogs(input: RequestGetAuditLogsInput): ResponseGetAuditLogs
|
3626
3653
|
getLauncherSession(input: RequestGetLauncherSessionInput): ResponseGetLauncherSession
|
3627
3654
|
getBlockletBackups(input: RequestGetBlockletBackupsInput): ResponseGetBlockletBackups
|
3655
|
+
getBlockletBackupSummary(input: RequestGetBlockletBackupSummaryInput): ResponseGetBlockletBackupSummary
|
3628
3656
|
getBlockletSpaceGateways(input: RequestBlockletInput): ResponseGetBlockletSpaceGateways
|
3629
3657
|
getTrafficInsights(input: RequestGetTrafficInsightsInput): ResponseGetTrafficInsights
|
3630
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-20250321-223009-25dace48",
|
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": "b12975e9604c4faf73766feb325f9124226bfff1",
|
17
17
|
"devDependencies": {
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
19
19
|
}
|