@abtnode/schema 1.17.7-beta-20251227-001958-ea2ba3f5 → 1.17.7-beta-20251229-085620-84f09930
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 +29 -62
- package/lib/schema.graphqls +28 -61
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -575,6 +575,7 @@ input RequestComponentsInput {
|
|
|
575
575
|
input RequestConfigAuthenticationInput {
|
|
576
576
|
did: String
|
|
577
577
|
authentication: String
|
|
578
|
+
oauth: String
|
|
578
579
|
}
|
|
579
580
|
|
|
580
581
|
input RequestConfigBlockletInput {
|
|
@@ -964,6 +965,10 @@ input RequestGetBlockletSecurityRulesInput {
|
|
|
964
965
|
input RequestGetBlockletsInput {
|
|
965
966
|
useCache: Boolean
|
|
966
967
|
includeRuntimeInfo: Boolean
|
|
968
|
+
paging: PagingInput
|
|
969
|
+
search: String
|
|
970
|
+
external: Boolean
|
|
971
|
+
sort: SortInput
|
|
967
972
|
}
|
|
968
973
|
|
|
969
974
|
input RequestGetDynamicComponentsInput {
|
|
@@ -1046,10 +1051,6 @@ input RequestGetRoutingSitesInput {
|
|
|
1046
1051
|
snapshotHash: String
|
|
1047
1052
|
}
|
|
1048
1053
|
|
|
1049
|
-
input RequestGetRoutingSnapshotsInput {
|
|
1050
|
-
limit: Int32
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
1054
|
input RequestGetSelectedResourcesInput {
|
|
1054
1055
|
did: String
|
|
1055
1056
|
projectId: String
|
|
@@ -1061,10 +1062,6 @@ input RequestGetSessionInput {
|
|
|
1061
1062
|
id: String
|
|
1062
1063
|
}
|
|
1063
1064
|
|
|
1064
|
-
input RequestGetSnapshotSitesInput {
|
|
1065
|
-
hash: String
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
1065
|
input RequestGetTrafficInsightsInput {
|
|
1069
1066
|
did: String
|
|
1070
1067
|
startDate: String
|
|
@@ -1100,6 +1097,21 @@ input RequestHasPermissionInput {
|
|
|
1100
1097
|
permission: String
|
|
1101
1098
|
}
|
|
1102
1099
|
|
|
1100
|
+
input RequestInstallBlockletInput {
|
|
1101
|
+
type: String
|
|
1102
|
+
did: String
|
|
1103
|
+
storeUrl: String
|
|
1104
|
+
url: String
|
|
1105
|
+
file: Upload
|
|
1106
|
+
diffVersion: String
|
|
1107
|
+
deleteSet: [String!]
|
|
1108
|
+
title: String
|
|
1109
|
+
description: String
|
|
1110
|
+
startImmediately: Boolean
|
|
1111
|
+
appSk: String
|
|
1112
|
+
downloadTokenList: [DownloadTokenInput!]
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1103
1115
|
input RequestInstallComponentInput {
|
|
1104
1116
|
rootDid: String
|
|
1105
1117
|
mountPoint: String
|
|
@@ -1212,12 +1224,6 @@ input RequestMigrateOrgResourceInput {
|
|
|
1212
1224
|
resourceIds: [String!]
|
|
1213
1225
|
}
|
|
1214
1226
|
|
|
1215
|
-
input RequestNodeRoutingInput {
|
|
1216
|
-
provider: String
|
|
1217
|
-
snapshotHash: String
|
|
1218
|
-
forceRepopulate: Boolean
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
1227
|
input RequestNodeRuntimeHistoryInput {
|
|
1222
1228
|
hours: Uint32
|
|
1223
1229
|
}
|
|
@@ -1404,11 +1410,6 @@ input RequestTagsInput {
|
|
|
1404
1410
|
paging: PagingInput
|
|
1405
1411
|
}
|
|
1406
1412
|
|
|
1407
|
-
input RequestTakeRoutingSnapshotInput {
|
|
1408
|
-
dryRun: Boolean
|
|
1409
|
-
message: String
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
1413
|
input RequestTeamPermissionInput {
|
|
1413
1414
|
teamDid: String
|
|
1414
1415
|
permission: PermissionInput
|
|
@@ -1634,20 +1635,6 @@ input RequestVerifyAigneConnectionInput {
|
|
|
1634
1635
|
did: String
|
|
1635
1636
|
}
|
|
1636
1637
|
|
|
1637
|
-
input RequestVersionedBlockletInput {
|
|
1638
|
-
type: String
|
|
1639
|
-
did: String
|
|
1640
|
-
storeUrl: String
|
|
1641
|
-
url: String
|
|
1642
|
-
file: Upload
|
|
1643
|
-
diffVersion: String
|
|
1644
|
-
deleteSet: [String!]
|
|
1645
|
-
title: String
|
|
1646
|
-
description: String
|
|
1647
|
-
startImmediately: Boolean
|
|
1648
|
-
downloadTokenList: [DownloadTokenInput!]
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
1638
|
input RoleUpdateInput {
|
|
1652
1639
|
name: String
|
|
1653
1640
|
title: String
|
|
@@ -1700,6 +1687,11 @@ input SessionConfigInput {
|
|
|
1700
1687
|
enableBlacklist: Boolean
|
|
1701
1688
|
}
|
|
1702
1689
|
|
|
1690
|
+
input SortInput {
|
|
1691
|
+
field: String
|
|
1692
|
+
direction: String
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1703
1695
|
input SpaceGatewayInput {
|
|
1704
1696
|
name: String
|
|
1705
1697
|
url: String
|
|
@@ -2329,6 +2321,7 @@ type BlockletSettings {
|
|
|
2329
2321
|
aigne: AigneConfig
|
|
2330
2322
|
org: OrgSettings
|
|
2331
2323
|
didConnect: Any
|
|
2324
|
+
oauth: Any
|
|
2332
2325
|
}
|
|
2333
2326
|
|
|
2334
2327
|
type BlockletState {
|
|
@@ -3389,6 +3382,7 @@ type ResponseGetBlockletSpaceGateways {
|
|
|
3389
3382
|
type ResponseGetBlocklets {
|
|
3390
3383
|
code: StatusCode
|
|
3391
3384
|
blocklets: [BlockletState!]
|
|
3385
|
+
paging: Paging
|
|
3392
3386
|
}
|
|
3393
3387
|
|
|
3394
3388
|
type ResponseGetCertificates {
|
|
@@ -3487,11 +3481,6 @@ type ResponseGetRoutingSites {
|
|
|
3487
3481
|
sites: [RoutingSite!]
|
|
3488
3482
|
}
|
|
3489
3483
|
|
|
3490
|
-
type ResponseGetRoutingSnapshots {
|
|
3491
|
-
code: StatusCode
|
|
3492
|
-
snapshots: [RoutingSnapshot!]
|
|
3493
|
-
}
|
|
3494
|
-
|
|
3495
3484
|
type ResponseGetSelectedResources {
|
|
3496
3485
|
code: StatusCode
|
|
3497
3486
|
resources: [String!]
|
|
@@ -3502,11 +3491,6 @@ type ResponseGetSession {
|
|
|
3502
3491
|
session: Any
|
|
3503
3492
|
}
|
|
3504
3493
|
|
|
3505
|
-
type ResponseGetSnapshotSites {
|
|
3506
|
-
code: StatusCode
|
|
3507
|
-
sites: [RoutingSite!]
|
|
3508
|
-
}
|
|
3509
|
-
|
|
3510
3494
|
type ResponseGetTrafficInsights {
|
|
3511
3495
|
code: StatusCode
|
|
3512
3496
|
list: [TrafficInsight!]
|
|
@@ -3712,11 +3696,6 @@ type ResponseTags {
|
|
|
3712
3696
|
paging: Paging
|
|
3713
3697
|
}
|
|
3714
3698
|
|
|
3715
|
-
type ResponseTakeRoutingSnapshot {
|
|
3716
|
-
code: StatusCode
|
|
3717
|
-
hash: String
|
|
3718
|
-
}
|
|
3719
|
-
|
|
3720
3699
|
type ResponseUpdateAccessKey {
|
|
3721
3700
|
code: StatusCode
|
|
3722
3701
|
data: AccessKey
|
|
@@ -3836,14 +3815,6 @@ type RoutingSite {
|
|
|
3836
3815
|
corsAllowedOrigins: [String!]
|
|
3837
3816
|
}
|
|
3838
3817
|
|
|
3839
|
-
type RoutingSnapshot {
|
|
3840
|
-
hash: String
|
|
3841
|
-
tree: String
|
|
3842
|
-
message: String
|
|
3843
|
-
author: String
|
|
3844
|
-
createdAt: Uint32
|
|
3845
|
-
}
|
|
3846
|
-
|
|
3847
3818
|
type RuntimeInfo {
|
|
3848
3819
|
pid: String
|
|
3849
3820
|
port: String
|
|
@@ -4331,7 +4302,7 @@ enum StatusCode {
|
|
|
4331
4302
|
scalar Upload
|
|
4332
4303
|
|
|
4333
4304
|
type Mutation {
|
|
4334
|
-
installBlocklet(input:
|
|
4305
|
+
installBlocklet(input: RequestInstallBlockletInput): ResponseBlocklet
|
|
4335
4306
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
4336
4307
|
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
4337
4308
|
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
@@ -4373,7 +4344,6 @@ type Mutation {
|
|
|
4373
4344
|
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
|
4374
4345
|
updateBlockletSettings(input: RequestBlockletSettingsInput): GeneralResponse
|
|
4375
4346
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
4376
|
-
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
4377
4347
|
upgradeNodeVersion(input: RequestUpgradeNodeVersionInput): ResponseUpgradeNodeVersion
|
|
4378
4348
|
restartServer: ResponseRestartServer
|
|
4379
4349
|
resetNode(input: RequestResetNodeInput): ResponseResetNode
|
|
@@ -4427,7 +4397,6 @@ type Mutation {
|
|
|
4427
4397
|
addRoutingRule(input: RequestAddRoutingRuleInput): ResponseRoutingSite
|
|
4428
4398
|
updateRoutingRule(input: RequestUpdateRoutingRuleInput): ResponseRoutingSite
|
|
4429
4399
|
deleteRoutingRule(input: RequestDeleteRoutingRuleInput): ResponseRoutingSite
|
|
4430
|
-
takeRoutingSnapshot(input: RequestTakeRoutingSnapshotInput): ResponseTakeRoutingSnapshot
|
|
4431
4400
|
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
4432
4401
|
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
4433
4402
|
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
@@ -4503,8 +4472,6 @@ type Query {
|
|
|
4503
4472
|
getNotificationComponents(input: RequestNotificationComponentsInput): ResponseNotificationComponents
|
|
4504
4473
|
resendNotification(input: RequestResendNotificationInput): ResponseResendNotification
|
|
4505
4474
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
|
4506
|
-
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
|
4507
|
-
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
|
4508
4475
|
getRoutingProviders: ResponseGetRoutingProviders
|
|
4509
4476
|
isDidDomain(input: RequestIsDidDomainInput): ResponseIsDidDomain
|
|
4510
4477
|
getCertificates: ResponseGetCertificates
|
|
@@ -4574,4 +4541,4 @@ type Query {
|
|
|
4574
4541
|
getOrgMembers(input: RequestGetOrgDataInput): ResponseOrgUsers
|
|
4575
4542
|
getOrgInvitableUsers(input: RequestInvitableUsersInput): ResponseUsers
|
|
4576
4543
|
getOrgResource(input: RequestGetOrgResourceInput): ResponseGetOrgResource
|
|
4577
|
-
}`;
|
|
4544
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -575,6 +575,7 @@ input RequestComponentsInput {
|
|
|
575
575
|
input RequestConfigAuthenticationInput {
|
|
576
576
|
did: String
|
|
577
577
|
authentication: String
|
|
578
|
+
oauth: String
|
|
578
579
|
}
|
|
579
580
|
|
|
580
581
|
input RequestConfigBlockletInput {
|
|
@@ -964,6 +965,10 @@ input RequestGetBlockletSecurityRulesInput {
|
|
|
964
965
|
input RequestGetBlockletsInput {
|
|
965
966
|
useCache: Boolean
|
|
966
967
|
includeRuntimeInfo: Boolean
|
|
968
|
+
paging: PagingInput
|
|
969
|
+
search: String
|
|
970
|
+
external: Boolean
|
|
971
|
+
sort: SortInput
|
|
967
972
|
}
|
|
968
973
|
|
|
969
974
|
input RequestGetDynamicComponentsInput {
|
|
@@ -1046,10 +1051,6 @@ input RequestGetRoutingSitesInput {
|
|
|
1046
1051
|
snapshotHash: String
|
|
1047
1052
|
}
|
|
1048
1053
|
|
|
1049
|
-
input RequestGetRoutingSnapshotsInput {
|
|
1050
|
-
limit: Int32
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
1054
|
input RequestGetSelectedResourcesInput {
|
|
1054
1055
|
did: String
|
|
1055
1056
|
projectId: String
|
|
@@ -1061,10 +1062,6 @@ input RequestGetSessionInput {
|
|
|
1061
1062
|
id: String
|
|
1062
1063
|
}
|
|
1063
1064
|
|
|
1064
|
-
input RequestGetSnapshotSitesInput {
|
|
1065
|
-
hash: String
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
1065
|
input RequestGetTrafficInsightsInput {
|
|
1069
1066
|
did: String
|
|
1070
1067
|
startDate: String
|
|
@@ -1100,6 +1097,21 @@ input RequestHasPermissionInput {
|
|
|
1100
1097
|
permission: String
|
|
1101
1098
|
}
|
|
1102
1099
|
|
|
1100
|
+
input RequestInstallBlockletInput {
|
|
1101
|
+
type: String
|
|
1102
|
+
did: String
|
|
1103
|
+
storeUrl: String
|
|
1104
|
+
url: String
|
|
1105
|
+
file: Upload
|
|
1106
|
+
diffVersion: String
|
|
1107
|
+
deleteSet: [String!]
|
|
1108
|
+
title: String
|
|
1109
|
+
description: String
|
|
1110
|
+
startImmediately: Boolean
|
|
1111
|
+
appSk: String
|
|
1112
|
+
downloadTokenList: [DownloadTokenInput!]
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1103
1115
|
input RequestInstallComponentInput {
|
|
1104
1116
|
rootDid: String
|
|
1105
1117
|
mountPoint: String
|
|
@@ -1212,12 +1224,6 @@ input RequestMigrateOrgResourceInput {
|
|
|
1212
1224
|
resourceIds: [String!]
|
|
1213
1225
|
}
|
|
1214
1226
|
|
|
1215
|
-
input RequestNodeRoutingInput {
|
|
1216
|
-
provider: String
|
|
1217
|
-
snapshotHash: String
|
|
1218
|
-
forceRepopulate: Boolean
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
1227
|
input RequestNodeRuntimeHistoryInput {
|
|
1222
1228
|
hours: Uint32
|
|
1223
1229
|
}
|
|
@@ -1404,11 +1410,6 @@ input RequestTagsInput {
|
|
|
1404
1410
|
paging: PagingInput
|
|
1405
1411
|
}
|
|
1406
1412
|
|
|
1407
|
-
input RequestTakeRoutingSnapshotInput {
|
|
1408
|
-
dryRun: Boolean
|
|
1409
|
-
message: String
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
1413
|
input RequestTeamPermissionInput {
|
|
1413
1414
|
teamDid: String
|
|
1414
1415
|
permission: PermissionInput
|
|
@@ -1634,20 +1635,6 @@ input RequestVerifyAigneConnectionInput {
|
|
|
1634
1635
|
did: String
|
|
1635
1636
|
}
|
|
1636
1637
|
|
|
1637
|
-
input RequestVersionedBlockletInput {
|
|
1638
|
-
type: String
|
|
1639
|
-
did: String
|
|
1640
|
-
storeUrl: String
|
|
1641
|
-
url: String
|
|
1642
|
-
file: Upload
|
|
1643
|
-
diffVersion: String
|
|
1644
|
-
deleteSet: [String!]
|
|
1645
|
-
title: String
|
|
1646
|
-
description: String
|
|
1647
|
-
startImmediately: Boolean
|
|
1648
|
-
downloadTokenList: [DownloadTokenInput!]
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
1638
|
input RoleUpdateInput {
|
|
1652
1639
|
name: String
|
|
1653
1640
|
title: String
|
|
@@ -1700,6 +1687,11 @@ input SessionConfigInput {
|
|
|
1700
1687
|
enableBlacklist: Boolean
|
|
1701
1688
|
}
|
|
1702
1689
|
|
|
1690
|
+
input SortInput {
|
|
1691
|
+
field: String
|
|
1692
|
+
direction: String
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1703
1695
|
input SpaceGatewayInput {
|
|
1704
1696
|
name: String
|
|
1705
1697
|
url: String
|
|
@@ -2329,6 +2321,7 @@ type BlockletSettings {
|
|
|
2329
2321
|
aigne: AigneConfig
|
|
2330
2322
|
org: OrgSettings
|
|
2331
2323
|
didConnect: Any
|
|
2324
|
+
oauth: Any
|
|
2332
2325
|
}
|
|
2333
2326
|
|
|
2334
2327
|
type BlockletState {
|
|
@@ -3389,6 +3382,7 @@ type ResponseGetBlockletSpaceGateways {
|
|
|
3389
3382
|
type ResponseGetBlocklets {
|
|
3390
3383
|
code: StatusCode
|
|
3391
3384
|
blocklets: [BlockletState!]
|
|
3385
|
+
paging: Paging
|
|
3392
3386
|
}
|
|
3393
3387
|
|
|
3394
3388
|
type ResponseGetCertificates {
|
|
@@ -3487,11 +3481,6 @@ type ResponseGetRoutingSites {
|
|
|
3487
3481
|
sites: [RoutingSite!]
|
|
3488
3482
|
}
|
|
3489
3483
|
|
|
3490
|
-
type ResponseGetRoutingSnapshots {
|
|
3491
|
-
code: StatusCode
|
|
3492
|
-
snapshots: [RoutingSnapshot!]
|
|
3493
|
-
}
|
|
3494
|
-
|
|
3495
3484
|
type ResponseGetSelectedResources {
|
|
3496
3485
|
code: StatusCode
|
|
3497
3486
|
resources: [String!]
|
|
@@ -3502,11 +3491,6 @@ type ResponseGetSession {
|
|
|
3502
3491
|
session: Any
|
|
3503
3492
|
}
|
|
3504
3493
|
|
|
3505
|
-
type ResponseGetSnapshotSites {
|
|
3506
|
-
code: StatusCode
|
|
3507
|
-
sites: [RoutingSite!]
|
|
3508
|
-
}
|
|
3509
|
-
|
|
3510
3494
|
type ResponseGetTrafficInsights {
|
|
3511
3495
|
code: StatusCode
|
|
3512
3496
|
list: [TrafficInsight!]
|
|
@@ -3712,11 +3696,6 @@ type ResponseTags {
|
|
|
3712
3696
|
paging: Paging
|
|
3713
3697
|
}
|
|
3714
3698
|
|
|
3715
|
-
type ResponseTakeRoutingSnapshot {
|
|
3716
|
-
code: StatusCode
|
|
3717
|
-
hash: String
|
|
3718
|
-
}
|
|
3719
|
-
|
|
3720
3699
|
type ResponseUpdateAccessKey {
|
|
3721
3700
|
code: StatusCode
|
|
3722
3701
|
data: AccessKey
|
|
@@ -3836,14 +3815,6 @@ type RoutingSite {
|
|
|
3836
3815
|
corsAllowedOrigins: [String!]
|
|
3837
3816
|
}
|
|
3838
3817
|
|
|
3839
|
-
type RoutingSnapshot {
|
|
3840
|
-
hash: String
|
|
3841
|
-
tree: String
|
|
3842
|
-
message: String
|
|
3843
|
-
author: String
|
|
3844
|
-
createdAt: Uint32
|
|
3845
|
-
}
|
|
3846
|
-
|
|
3847
3818
|
type RuntimeInfo {
|
|
3848
3819
|
pid: String
|
|
3849
3820
|
port: String
|
|
@@ -4333,7 +4304,7 @@ enum Upload {
|
|
|
4333
4304
|
}
|
|
4334
4305
|
|
|
4335
4306
|
type Mutation {
|
|
4336
|
-
installBlocklet(input:
|
|
4307
|
+
installBlocklet(input: RequestInstallBlockletInput): ResponseBlocklet
|
|
4337
4308
|
installComponent(input: RequestInstallComponentInput): ResponseBlocklet
|
|
4338
4309
|
startBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
4339
4310
|
stopBlocklet(input: RequestComponentsInput): ResponseBlocklet
|
|
@@ -4375,7 +4346,6 @@ type Mutation {
|
|
|
4375
4346
|
updateAutoCheckUpdate(input: RequestUpdateAutoCheckUpdateInput): GeneralResponse
|
|
4376
4347
|
updateBlockletSettings(input: RequestBlockletSettingsInput): GeneralResponse
|
|
4377
4348
|
updateNodeInfo(input: NodeInfoInput): ResponseGetNodeInfo
|
|
4378
|
-
updateNodeRouting(input: RequestNodeRoutingInput): ResponseGetNodeInfo
|
|
4379
4349
|
upgradeNodeVersion(input: RequestUpgradeNodeVersionInput): ResponseUpgradeNodeVersion
|
|
4380
4350
|
restartServer: ResponseRestartServer
|
|
4381
4351
|
resetNode(input: RequestResetNodeInput): ResponseResetNode
|
|
@@ -4429,7 +4399,6 @@ type Mutation {
|
|
|
4429
4399
|
addRoutingRule(input: RequestAddRoutingRuleInput): ResponseRoutingSite
|
|
4430
4400
|
updateRoutingRule(input: RequestUpdateRoutingRuleInput): ResponseRoutingSite
|
|
4431
4401
|
deleteRoutingRule(input: RequestDeleteRoutingRuleInput): ResponseRoutingSite
|
|
4432
|
-
takeRoutingSnapshot(input: RequestTakeRoutingSnapshotInput): ResponseTakeRoutingSnapshot
|
|
4433
4402
|
updateCertificate(input: RequestUpdateNginxHttpsCertInput): ResponseUpdateNginxHttpsCert
|
|
4434
4403
|
addCertificate(input: RequestAddNginxHttpsCertInput): ResponseAddNginxHttpsCert
|
|
4435
4404
|
deleteCertificate(input: RequestDeleteNginxHttpsCertInput): ResponseDeleteNginxHttpsCert
|
|
@@ -4509,8 +4478,6 @@ type Query {
|
|
|
4509
4478
|
getNotificationComponents(input: RequestNotificationComponentsInput): ResponseNotificationComponents
|
|
4510
4479
|
resendNotification(input: RequestResendNotificationInput): ResponseResendNotification
|
|
4511
4480
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
|
4512
|
-
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
|
4513
|
-
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
|
4514
4481
|
getRoutingProviders: ResponseGetRoutingProviders
|
|
4515
4482
|
isDidDomain(input: RequestIsDidDomainInput): ResponseIsDidDomain
|
|
4516
4483
|
getCertificates: ResponseGetCertificates
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.17.7-beta-
|
|
6
|
+
"version": "1.17.7-beta-20251229-085620-84f09930",
|
|
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": "fe2ffc3cf431bbaa89ac802bed793aa1188da4c3",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|