@abtnode/schema 1.16.20 → 1.16.21-beta-edf184e1
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 +38 -1
- package/lib/schema.graphqls +37 -0
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -428,6 +428,14 @@ input RequestGetBlockletBackupsInput {
|
|
|
428
428
|
did: String
|
|
429
429
|
}
|
|
430
430
|
|
|
431
|
+
input RequestGetBlockletNotificationsInput {
|
|
432
|
+
receiver: String
|
|
433
|
+
sender: String
|
|
434
|
+
read: Boolean
|
|
435
|
+
paging: PagingInput
|
|
436
|
+
teamDid: String
|
|
437
|
+
}
|
|
438
|
+
|
|
431
439
|
input RequestGetBlockletsInput {
|
|
432
440
|
useCache: Boolean
|
|
433
441
|
}
|
|
@@ -518,6 +526,10 @@ input RequestInstallComponentInput {
|
|
|
518
526
|
skipNavigation: Boolean
|
|
519
527
|
}
|
|
520
528
|
|
|
529
|
+
input RequestIsDidDomainInput {
|
|
530
|
+
domain: String
|
|
531
|
+
}
|
|
532
|
+
|
|
521
533
|
input RequestIssuePassportToUserInput {
|
|
522
534
|
teamDid: String
|
|
523
535
|
userDid: String
|
|
@@ -559,6 +571,11 @@ input RequestQuitFederatedLoginInput {
|
|
|
559
571
|
did: String
|
|
560
572
|
}
|
|
561
573
|
|
|
574
|
+
input RequestReadBlockletNotificationsInput {
|
|
575
|
+
id: String
|
|
576
|
+
teamDid: String
|
|
577
|
+
}
|
|
578
|
+
|
|
562
579
|
input RequestReadNotificationsInput {
|
|
563
580
|
id: String
|
|
564
581
|
}
|
|
@@ -1743,6 +1760,12 @@ type ResponseGetBlockletBackups {
|
|
|
1743
1760
|
backups: [Backup!]
|
|
1744
1761
|
}
|
|
1745
1762
|
|
|
1763
|
+
type ResponseGetBlockletNotifications {
|
|
1764
|
+
code: StatusCode
|
|
1765
|
+
list: [Notification!]
|
|
1766
|
+
paging: Paging
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1746
1769
|
type ResponseGetBlockletSpaceGateways {
|
|
1747
1770
|
code: StatusCode
|
|
1748
1771
|
spaceGateways: [SpaceGateway!]
|
|
@@ -1858,6 +1881,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1858
1881
|
counts: [KeyValue!]
|
|
1859
1882
|
}
|
|
1860
1883
|
|
|
1884
|
+
type ResponseIsDidDomain {
|
|
1885
|
+
code: StatusCode
|
|
1886
|
+
value: Boolean
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1861
1889
|
type ResponseNodeRuntimeHistory {
|
|
1862
1890
|
code: StatusCode
|
|
1863
1891
|
history: [NodeHistoryItem!]
|
|
@@ -1878,6 +1906,11 @@ type ResponseProject {
|
|
|
1878
1906
|
project: Project
|
|
1879
1907
|
}
|
|
1880
1908
|
|
|
1909
|
+
type ResponseReadBlockletNotifications {
|
|
1910
|
+
code: StatusCode
|
|
1911
|
+
numAffected: Int32
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1881
1914
|
type ResponseReadNotifications {
|
|
1882
1915
|
code: StatusCode
|
|
1883
1916
|
numAffected: Int32
|
|
@@ -2332,6 +2365,8 @@ type Mutation {
|
|
|
2332
2365
|
deleteTag(input: RequestTagInput): ResponseTag
|
|
2333
2366
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2334
2367
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2368
|
+
readBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
|
2369
|
+
unreadBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
|
2335
2370
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
2336
2371
|
addDomainAlias(input: RequestAddDomainAliasInput): ResponseRoutingSite
|
|
2337
2372
|
deleteDomainAlias(input: RequestDeleteDomainAliasInput): ResponseRoutingSite
|
|
@@ -2376,10 +2411,12 @@ type Query {
|
|
|
2376
2411
|
getNodeRuntimeHistory(input: RequestNodeRuntimeHistoryInput): ResponseNodeRuntimeHistory
|
|
2377
2412
|
getBlockletMeta(input: RequestBlockletMetaInput): ResponseBlockletMeta
|
|
2378
2413
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
|
2414
|
+
getBlockletNotifications(input: RequestGetBlockletNotificationsInput): ResponseGetBlockletNotifications
|
|
2379
2415
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
|
2380
2416
|
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
|
2381
2417
|
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
|
2382
2418
|
getRoutingProviders: ResponseGetRoutingProviders
|
|
2419
|
+
isDidDomain(input: RequestIsDidDomainInput): ResponseIsDidDomain
|
|
2383
2420
|
getCertificates: ResponseGetCertificates
|
|
2384
2421
|
checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
|
|
2385
2422
|
findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
|
|
@@ -2411,4 +2448,4 @@ type Query {
|
|
|
2411
2448
|
getReleases(input: RequestGetReleasesInput): ResponseGetReleases
|
|
2412
2449
|
getRelease(input: RequestReleaseInput): ResponseGetRelease
|
|
2413
2450
|
getSelectedResources(input: RequestGetSelectedResourcesInput): ResponseGetSelectedResources
|
|
2414
|
-
}`;
|
|
2451
|
+
}`;
|
package/lib/schema.graphqls
CHANGED
|
@@ -428,6 +428,14 @@ input RequestGetBlockletBackupsInput {
|
|
|
428
428
|
did: String
|
|
429
429
|
}
|
|
430
430
|
|
|
431
|
+
input RequestGetBlockletNotificationsInput {
|
|
432
|
+
receiver: String
|
|
433
|
+
sender: String
|
|
434
|
+
read: Boolean
|
|
435
|
+
paging: PagingInput
|
|
436
|
+
teamDid: String
|
|
437
|
+
}
|
|
438
|
+
|
|
431
439
|
input RequestGetBlockletsInput {
|
|
432
440
|
useCache: Boolean
|
|
433
441
|
}
|
|
@@ -518,6 +526,10 @@ input RequestInstallComponentInput {
|
|
|
518
526
|
skipNavigation: Boolean
|
|
519
527
|
}
|
|
520
528
|
|
|
529
|
+
input RequestIsDidDomainInput {
|
|
530
|
+
domain: String
|
|
531
|
+
}
|
|
532
|
+
|
|
521
533
|
input RequestIssuePassportToUserInput {
|
|
522
534
|
teamDid: String
|
|
523
535
|
userDid: String
|
|
@@ -559,6 +571,11 @@ input RequestQuitFederatedLoginInput {
|
|
|
559
571
|
did: String
|
|
560
572
|
}
|
|
561
573
|
|
|
574
|
+
input RequestReadBlockletNotificationsInput {
|
|
575
|
+
id: String
|
|
576
|
+
teamDid: String
|
|
577
|
+
}
|
|
578
|
+
|
|
562
579
|
input RequestReadNotificationsInput {
|
|
563
580
|
id: String
|
|
564
581
|
}
|
|
@@ -1743,6 +1760,12 @@ type ResponseGetBlockletBackups {
|
|
|
1743
1760
|
backups: [Backup!]
|
|
1744
1761
|
}
|
|
1745
1762
|
|
|
1763
|
+
type ResponseGetBlockletNotifications {
|
|
1764
|
+
code: StatusCode
|
|
1765
|
+
list: [Notification!]
|
|
1766
|
+
paging: Paging
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1746
1769
|
type ResponseGetBlockletSpaceGateways {
|
|
1747
1770
|
code: StatusCode
|
|
1748
1771
|
spaceGateways: [SpaceGateway!]
|
|
@@ -1858,6 +1881,11 @@ type ResponseGetUsersCountPerRole {
|
|
|
1858
1881
|
counts: [KeyValue!]
|
|
1859
1882
|
}
|
|
1860
1883
|
|
|
1884
|
+
type ResponseIsDidDomain {
|
|
1885
|
+
code: StatusCode
|
|
1886
|
+
value: Boolean
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1861
1889
|
type ResponseNodeRuntimeHistory {
|
|
1862
1890
|
code: StatusCode
|
|
1863
1891
|
history: [NodeHistoryItem!]
|
|
@@ -1878,6 +1906,11 @@ type ResponseProject {
|
|
|
1878
1906
|
project: Project
|
|
1879
1907
|
}
|
|
1880
1908
|
|
|
1909
|
+
type ResponseReadBlockletNotifications {
|
|
1910
|
+
code: StatusCode
|
|
1911
|
+
numAffected: Int32
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1881
1914
|
type ResponseReadNotifications {
|
|
1882
1915
|
code: StatusCode
|
|
1883
1916
|
numAffected: Int32
|
|
@@ -2334,6 +2367,8 @@ type Mutation {
|
|
|
2334
2367
|
deleteTag(input: RequestTagInput): ResponseTag
|
|
2335
2368
|
readNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2336
2369
|
unreadNotifications(input: RequestReadNotificationsInput): ResponseReadNotifications
|
|
2370
|
+
readBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
|
2371
|
+
unreadBlockletNotifications(input: RequestReadBlockletNotificationsInput): ResponseReadBlockletNotifications
|
|
2337
2372
|
addRoutingSite(input: RequestAddRoutingSiteInput): ResponseRoutingSite
|
|
2338
2373
|
addDomainAlias(input: RequestAddDomainAliasInput): ResponseRoutingSite
|
|
2339
2374
|
deleteDomainAlias(input: RequestDeleteDomainAliasInput): ResponseRoutingSite
|
|
@@ -2378,10 +2413,12 @@ type Query {
|
|
|
2378
2413
|
getNodeRuntimeHistory(input: RequestNodeRuntimeHistoryInput): ResponseNodeRuntimeHistory
|
|
2379
2414
|
getBlockletMeta(input: RequestBlockletMetaInput): ResponseBlockletMeta
|
|
2380
2415
|
getNotifications(input: RequestGetNotificationsInput): ResponseGetNotifications
|
|
2416
|
+
getBlockletNotifications(input: RequestGetBlockletNotificationsInput): ResponseGetBlockletNotifications
|
|
2381
2417
|
getRoutingSites(input: RequestGetRoutingSitesInput): ResponseGetRoutingSites
|
|
2382
2418
|
getRoutingSnapshots(input: RequestGetRoutingSnapshotsInput): ResponseGetRoutingSnapshots
|
|
2383
2419
|
getSnapshotSites(input: RequestGetSnapshotSitesInput): ResponseGetSnapshotSites
|
|
2384
2420
|
getRoutingProviders: ResponseGetRoutingProviders
|
|
2421
|
+
isDidDomain(input: RequestIsDidDomainInput): ResponseIsDidDomain
|
|
2385
2422
|
getCertificates: ResponseGetCertificates
|
|
2386
2423
|
checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
|
|
2387
2424
|
findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.21-beta-edf184e1",
|
|
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": "e89c7e31d2d9ca5d00ae1f72304bdc7dcb78cc44",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|