@abtnode/schema 1.16.8 → 1.16.9
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/LICENSE +13 -0
- package/lib/index.js +96 -73
- package/lib/schema.graphqls +96 -73
- package/package.json +3 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2018-2020 ArcBlock
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/lib/index.js
CHANGED
|
@@ -62,6 +62,14 @@ input ConfigNavigationInput {
|
|
|
62
62
|
from: String
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
input ConnectedAccountInput {
|
|
66
|
+
provider: String
|
|
67
|
+
did: String
|
|
68
|
+
pk: String
|
|
69
|
+
id: String
|
|
70
|
+
lastLoginAt: Uint32
|
|
71
|
+
}
|
|
72
|
+
|
|
65
73
|
input DownloadTokenInput {
|
|
66
74
|
did: String
|
|
67
75
|
token: String
|
|
@@ -103,11 +111,11 @@ input PassportInput {
|
|
|
103
111
|
title: String
|
|
104
112
|
issuer: IssuerInput
|
|
105
113
|
type: [String!]
|
|
106
|
-
issuanceDate:
|
|
107
|
-
expirationDate:
|
|
114
|
+
issuanceDate: Uint32
|
|
115
|
+
expirationDate: Uint32
|
|
108
116
|
status: String
|
|
109
117
|
role: String
|
|
110
|
-
lastLoginAt:
|
|
118
|
+
lastLoginAt: Uint32
|
|
111
119
|
}
|
|
112
120
|
|
|
113
121
|
input PermissionInput {
|
|
@@ -601,7 +609,6 @@ input RequestUsersInput {
|
|
|
601
609
|
sort: UserSortInput
|
|
602
610
|
paging: PagingInput
|
|
603
611
|
dids: [String!]
|
|
604
|
-
sourceIds: [String!]
|
|
605
612
|
}
|
|
606
613
|
|
|
607
614
|
input RequestVersionedBlockletInput {
|
|
@@ -702,14 +709,17 @@ input UserInfoInput {
|
|
|
702
709
|
fullName: String
|
|
703
710
|
email: String
|
|
704
711
|
approved: Boolean
|
|
705
|
-
createdAt:
|
|
706
|
-
updatedAt:
|
|
712
|
+
createdAt: Uint32
|
|
713
|
+
updatedAt: Uint32
|
|
707
714
|
locale: String
|
|
708
715
|
passports: [PassportInput!]
|
|
709
|
-
firstLoginAt:
|
|
710
|
-
lastLoginAt:
|
|
716
|
+
firstLoginAt: Uint32
|
|
717
|
+
lastLoginAt: Uint32
|
|
711
718
|
remark: String
|
|
712
719
|
lastLoginIp: String
|
|
720
|
+
sourceProvider: String
|
|
721
|
+
connectedAccounts: [ConnectedAccountInput!]
|
|
722
|
+
extra: Any
|
|
713
723
|
source: String
|
|
714
724
|
extraConfigs: Any
|
|
715
725
|
}
|
|
@@ -722,9 +732,9 @@ input UserQueryInput {
|
|
|
722
732
|
}
|
|
723
733
|
|
|
724
734
|
input UserSortInput {
|
|
725
|
-
updatedAt:
|
|
726
|
-
createdAt:
|
|
727
|
-
lastLoginAt:
|
|
735
|
+
updatedAt: Uint32
|
|
736
|
+
createdAt: Uint32
|
|
737
|
+
lastLoginAt: Uint32
|
|
728
738
|
}
|
|
729
739
|
|
|
730
740
|
input WebHookParamInput {
|
|
@@ -738,10 +748,11 @@ input WebHookParamInput {
|
|
|
738
748
|
|
|
739
749
|
type AccessKey {
|
|
740
750
|
accessKeyId: String
|
|
751
|
+
accessKeyPublic: String
|
|
741
752
|
remark: String
|
|
742
753
|
passport: String
|
|
743
|
-
createdAt:
|
|
744
|
-
lastUsedAt:
|
|
754
|
+
createdAt: Uint32
|
|
755
|
+
lastUsedAt: Uint32
|
|
745
756
|
createdBy: String
|
|
746
757
|
updatedBy: String
|
|
747
758
|
}
|
|
@@ -754,8 +765,9 @@ type AuditLog {
|
|
|
754
765
|
content: String
|
|
755
766
|
actor: AuditLogActor
|
|
756
767
|
env: AuditLogEnv
|
|
757
|
-
createdAt:
|
|
768
|
+
createdAt: Uint32
|
|
758
769
|
ip: String
|
|
770
|
+
ua: String
|
|
759
771
|
}
|
|
760
772
|
|
|
761
773
|
type AuditLogActor {
|
|
@@ -781,8 +793,8 @@ type Backup {
|
|
|
781
793
|
sourceUrl: String
|
|
782
794
|
target: String
|
|
783
795
|
targetUrl: String
|
|
784
|
-
createdAt:
|
|
785
|
-
updatedAt:
|
|
796
|
+
createdAt: Uint32
|
|
797
|
+
updatedAt: Uint32
|
|
786
798
|
status: Uint32
|
|
787
799
|
message: String
|
|
788
800
|
}
|
|
@@ -791,7 +803,7 @@ type BlockletBackupState {
|
|
|
791
803
|
appDid: String
|
|
792
804
|
appPid: String
|
|
793
805
|
name: String
|
|
794
|
-
createdAt:
|
|
806
|
+
createdAt: Uint32
|
|
795
807
|
}
|
|
796
808
|
|
|
797
809
|
type BlockletCapabilities {
|
|
@@ -847,7 +859,6 @@ type BlockletMeta {
|
|
|
847
859
|
main: String
|
|
848
860
|
stats: BlockletStats
|
|
849
861
|
homepage: String
|
|
850
|
-
price: Float32
|
|
851
862
|
path: String
|
|
852
863
|
community: String
|
|
853
864
|
documentation: String
|
|
@@ -863,7 +874,7 @@ type BlockletMeta {
|
|
|
863
874
|
repository: BlockletRepository
|
|
864
875
|
payment: BlockletPayment
|
|
865
876
|
nftFactory: String
|
|
866
|
-
lastPublishedAt:
|
|
877
|
+
lastPublishedAt: Uint32
|
|
867
878
|
capabilities: BlockletCapabilities
|
|
868
879
|
components: [ChildConfig!]
|
|
869
880
|
environments: [Environment!]
|
|
@@ -933,7 +944,7 @@ type BlockletSettings {
|
|
|
933
944
|
trustedPassports: [TrustedPassport!]
|
|
934
945
|
whoCanAccess: String
|
|
935
946
|
owner: WalletInfo
|
|
936
|
-
children: [
|
|
947
|
+
children: [SimpleBlockletState!]
|
|
937
948
|
publicToStore: Boolean
|
|
938
949
|
storeList: [BlockletStore!]
|
|
939
950
|
navigations: [ConfigNavigation!]
|
|
@@ -945,11 +956,11 @@ type BlockletSettings {
|
|
|
945
956
|
type BlockletState {
|
|
946
957
|
meta: BlockletMeta
|
|
947
958
|
status: BlockletStatus
|
|
948
|
-
createdAt:
|
|
949
|
-
installedAt:
|
|
950
|
-
startedAt:
|
|
951
|
-
pausedAt:
|
|
952
|
-
stoppedAt:
|
|
959
|
+
createdAt: Uint32
|
|
960
|
+
installedAt: Uint32
|
|
961
|
+
startedAt: Uint32
|
|
962
|
+
pausedAt: Uint32
|
|
963
|
+
stoppedAt: Uint32
|
|
953
964
|
environments: [ConfigEntry!]
|
|
954
965
|
configs: [ConfigEntry!]
|
|
955
966
|
diskInfo: DiskInfo
|
|
@@ -1007,8 +1018,8 @@ type Certificate {
|
|
|
1007
1018
|
id: String
|
|
1008
1019
|
meta: CertificateMeta
|
|
1009
1020
|
matchedSites: [MatchedSites!]
|
|
1010
|
-
createdAt:
|
|
1011
|
-
updatedAt:
|
|
1021
|
+
createdAt: Uint32
|
|
1022
|
+
updatedAt: Uint32
|
|
1012
1023
|
isProtected: Boolean
|
|
1013
1024
|
source: String
|
|
1014
1025
|
status: String
|
|
@@ -1038,11 +1049,11 @@ type ChildConfig {
|
|
|
1038
1049
|
type ComponentState {
|
|
1039
1050
|
meta: BlockletMeta
|
|
1040
1051
|
status: BlockletStatus
|
|
1041
|
-
createdAt:
|
|
1042
|
-
installedAt:
|
|
1043
|
-
startedAt:
|
|
1044
|
-
pausedAt:
|
|
1045
|
-
stoppedAt:
|
|
1052
|
+
createdAt: Uint32
|
|
1053
|
+
installedAt: Uint32
|
|
1054
|
+
startedAt: Uint32
|
|
1055
|
+
pausedAt: Uint32
|
|
1056
|
+
stoppedAt: Uint32
|
|
1046
1057
|
environments: [ConfigEntry!]
|
|
1047
1058
|
configs: [ConfigEntry!]
|
|
1048
1059
|
diskInfo: DiskInfo
|
|
@@ -1084,37 +1095,27 @@ type ConfigNavigation {
|
|
|
1084
1095
|
from: String
|
|
1085
1096
|
}
|
|
1086
1097
|
|
|
1098
|
+
type ConnectedAccount {
|
|
1099
|
+
provider: String
|
|
1100
|
+
did: String
|
|
1101
|
+
pk: String
|
|
1102
|
+
id: String
|
|
1103
|
+
lastLoginAt: Uint32
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1087
1106
|
type CreateAccessKey {
|
|
1088
1107
|
accessKeyId: String
|
|
1089
1108
|
accessKeySecret: String
|
|
1090
1109
|
remark: String
|
|
1091
1110
|
passport: String
|
|
1092
|
-
createdAt:
|
|
1093
|
-
lastUsedAt:
|
|
1111
|
+
createdAt: Uint32
|
|
1112
|
+
lastUsedAt: Uint32
|
|
1094
1113
|
}
|
|
1095
1114
|
|
|
1096
1115
|
type DelegationState {
|
|
1097
1116
|
delegated: Boolean
|
|
1098
1117
|
}
|
|
1099
1118
|
|
|
1100
|
-
type DeletedBlockletMeta {
|
|
1101
|
-
did: String
|
|
1102
|
-
name: String
|
|
1103
|
-
version: String
|
|
1104
|
-
description: String
|
|
1105
|
-
title: String
|
|
1106
|
-
bundleDid: String
|
|
1107
|
-
bundleName: String
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
type DeletedBlockletState {
|
|
1111
|
-
meta: DeletedBlockletMeta
|
|
1112
|
-
status: BlockletStatus
|
|
1113
|
-
deployedFrom: String
|
|
1114
|
-
mountPoint: String
|
|
1115
|
-
deletedAt: String
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
1119
|
type Dependent {
|
|
1119
1120
|
id: String
|
|
1120
1121
|
required: Boolean
|
|
@@ -1233,9 +1234,9 @@ type NodeState {
|
|
|
1233
1234
|
port: String
|
|
1234
1235
|
initialized: Boolean
|
|
1235
1236
|
nodeOwner: WalletInfo
|
|
1236
|
-
createdAt:
|
|
1237
|
-
startedAt:
|
|
1238
|
-
initializedAt:
|
|
1237
|
+
createdAt: Uint32
|
|
1238
|
+
startedAt: Uint32
|
|
1239
|
+
initializedAt: Uint32
|
|
1239
1240
|
mode: String
|
|
1240
1241
|
routing: NodeRouting
|
|
1241
1242
|
environments: [ConfigEntry!]
|
|
@@ -1268,8 +1269,8 @@ type Notification {
|
|
|
1268
1269
|
entityType: String
|
|
1269
1270
|
entityId: String
|
|
1270
1271
|
read: Boolean
|
|
1271
|
-
createdAt:
|
|
1272
|
-
updatedAt:
|
|
1272
|
+
createdAt: Uint32
|
|
1273
|
+
updatedAt: Uint32
|
|
1273
1274
|
id: String
|
|
1274
1275
|
severity: String
|
|
1275
1276
|
}
|
|
@@ -1293,11 +1294,11 @@ type Passport {
|
|
|
1293
1294
|
title: String
|
|
1294
1295
|
issuer: Issuer
|
|
1295
1296
|
type: [String!]
|
|
1296
|
-
issuanceDate:
|
|
1297
|
-
expirationDate:
|
|
1297
|
+
issuanceDate: Uint32
|
|
1298
|
+
expirationDate: Uint32
|
|
1298
1299
|
status: String
|
|
1299
1300
|
role: String
|
|
1300
|
-
lastLoginAt:
|
|
1301
|
+
lastLoginAt: Uint32
|
|
1301
1302
|
}
|
|
1302
1303
|
|
|
1303
1304
|
type PassportIssuanceInfo {
|
|
@@ -1615,7 +1616,7 @@ type ResponseUsers {
|
|
|
1615
1616
|
|
|
1616
1617
|
type ResponseWebHooks {
|
|
1617
1618
|
code: StatusCode
|
|
1618
|
-
webhooks: [
|
|
1619
|
+
webhooks: [WebHook!]
|
|
1619
1620
|
}
|
|
1620
1621
|
|
|
1621
1622
|
type Role {
|
|
@@ -1676,7 +1677,7 @@ type RoutingSnapshot {
|
|
|
1676
1677
|
tree: String
|
|
1677
1678
|
message: String
|
|
1678
1679
|
author: String
|
|
1679
|
-
createdAt:
|
|
1680
|
+
createdAt: Uint32
|
|
1680
1681
|
}
|
|
1681
1682
|
|
|
1682
1683
|
type RuntimeInfo {
|
|
@@ -1687,6 +1688,24 @@ type RuntimeInfo {
|
|
|
1687
1688
|
cpuUsage: Float32
|
|
1688
1689
|
}
|
|
1689
1690
|
|
|
1691
|
+
type SimpleBlockletMeta {
|
|
1692
|
+
did: String
|
|
1693
|
+
name: String
|
|
1694
|
+
version: String
|
|
1695
|
+
description: String
|
|
1696
|
+
title: String
|
|
1697
|
+
bundleDid: String
|
|
1698
|
+
bundleName: String
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
type SimpleBlockletState {
|
|
1702
|
+
meta: SimpleBlockletMeta
|
|
1703
|
+
status: BlockletStatus
|
|
1704
|
+
deployedFrom: String
|
|
1705
|
+
mountPoint: String
|
|
1706
|
+
deletedAt: Uint32
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1690
1709
|
type SpaceGateway {
|
|
1691
1710
|
name: String
|
|
1692
1711
|
url: String
|
|
@@ -1736,14 +1755,17 @@ type UserInfo {
|
|
|
1736
1755
|
fullName: String
|
|
1737
1756
|
email: String
|
|
1738
1757
|
approved: Boolean
|
|
1739
|
-
createdAt:
|
|
1740
|
-
updatedAt:
|
|
1758
|
+
createdAt: Uint32
|
|
1759
|
+
updatedAt: Uint32
|
|
1741
1760
|
locale: String
|
|
1742
1761
|
passports: [Passport!]
|
|
1743
|
-
firstLoginAt:
|
|
1744
|
-
lastLoginAt:
|
|
1762
|
+
firstLoginAt: Uint32
|
|
1763
|
+
lastLoginAt: Uint32
|
|
1745
1764
|
remark: String
|
|
1746
1765
|
lastLoginIp: String
|
|
1766
|
+
sourceProvider: String
|
|
1767
|
+
connectedAccounts: [ConnectedAccount!]
|
|
1768
|
+
extra: Any
|
|
1747
1769
|
source: String
|
|
1748
1770
|
extraConfigs: Any
|
|
1749
1771
|
}
|
|
@@ -1753,6 +1775,14 @@ type WalletInfo {
|
|
|
1753
1775
|
pk: String
|
|
1754
1776
|
}
|
|
1755
1777
|
|
|
1778
|
+
type WebHook {
|
|
1779
|
+
type: SenderType
|
|
1780
|
+
id: String
|
|
1781
|
+
params: [WebHookParam!]
|
|
1782
|
+
createdAt: Uint32
|
|
1783
|
+
updatedAt: Uint32
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1756
1786
|
type WebHookParam {
|
|
1757
1787
|
name: String
|
|
1758
1788
|
description: String
|
|
@@ -1762,13 +1792,6 @@ type WebHookParam {
|
|
|
1762
1792
|
type: String
|
|
1763
1793
|
}
|
|
1764
1794
|
|
|
1765
|
-
type WebHookRecord {
|
|
1766
|
-
type: SenderType
|
|
1767
|
-
id: String
|
|
1768
|
-
params: [WebHookParam!]
|
|
1769
|
-
createdAt: String
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
1795
|
type WebHookSender {
|
|
1773
1796
|
type: SenderType
|
|
1774
1797
|
title: String
|
package/lib/schema.graphqls
CHANGED
|
@@ -62,6 +62,14 @@ input ConfigNavigationInput {
|
|
|
62
62
|
from: String
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
input ConnectedAccountInput {
|
|
66
|
+
provider: String
|
|
67
|
+
did: String
|
|
68
|
+
pk: String
|
|
69
|
+
id: String
|
|
70
|
+
lastLoginAt: Uint32
|
|
71
|
+
}
|
|
72
|
+
|
|
65
73
|
input DownloadTokenInput {
|
|
66
74
|
did: String
|
|
67
75
|
token: String
|
|
@@ -103,11 +111,11 @@ input PassportInput {
|
|
|
103
111
|
title: String
|
|
104
112
|
issuer: IssuerInput
|
|
105
113
|
type: [String!]
|
|
106
|
-
issuanceDate:
|
|
107
|
-
expirationDate:
|
|
114
|
+
issuanceDate: Uint32
|
|
115
|
+
expirationDate: Uint32
|
|
108
116
|
status: String
|
|
109
117
|
role: String
|
|
110
|
-
lastLoginAt:
|
|
118
|
+
lastLoginAt: Uint32
|
|
111
119
|
}
|
|
112
120
|
|
|
113
121
|
input PermissionInput {
|
|
@@ -601,7 +609,6 @@ input RequestUsersInput {
|
|
|
601
609
|
sort: UserSortInput
|
|
602
610
|
paging: PagingInput
|
|
603
611
|
dids: [String!]
|
|
604
|
-
sourceIds: [String!]
|
|
605
612
|
}
|
|
606
613
|
|
|
607
614
|
input RequestVersionedBlockletInput {
|
|
@@ -702,14 +709,17 @@ input UserInfoInput {
|
|
|
702
709
|
fullName: String
|
|
703
710
|
email: String
|
|
704
711
|
approved: Boolean
|
|
705
|
-
createdAt:
|
|
706
|
-
updatedAt:
|
|
712
|
+
createdAt: Uint32
|
|
713
|
+
updatedAt: Uint32
|
|
707
714
|
locale: String
|
|
708
715
|
passports: [PassportInput!]
|
|
709
|
-
firstLoginAt:
|
|
710
|
-
lastLoginAt:
|
|
716
|
+
firstLoginAt: Uint32
|
|
717
|
+
lastLoginAt: Uint32
|
|
711
718
|
remark: String
|
|
712
719
|
lastLoginIp: String
|
|
720
|
+
sourceProvider: String
|
|
721
|
+
connectedAccounts: [ConnectedAccountInput!]
|
|
722
|
+
extra: Any
|
|
713
723
|
source: String
|
|
714
724
|
extraConfigs: Any
|
|
715
725
|
}
|
|
@@ -722,9 +732,9 @@ input UserQueryInput {
|
|
|
722
732
|
}
|
|
723
733
|
|
|
724
734
|
input UserSortInput {
|
|
725
|
-
updatedAt:
|
|
726
|
-
createdAt:
|
|
727
|
-
lastLoginAt:
|
|
735
|
+
updatedAt: Uint32
|
|
736
|
+
createdAt: Uint32
|
|
737
|
+
lastLoginAt: Uint32
|
|
728
738
|
}
|
|
729
739
|
|
|
730
740
|
input WebHookParamInput {
|
|
@@ -738,10 +748,11 @@ input WebHookParamInput {
|
|
|
738
748
|
|
|
739
749
|
type AccessKey {
|
|
740
750
|
accessKeyId: String
|
|
751
|
+
accessKeyPublic: String
|
|
741
752
|
remark: String
|
|
742
753
|
passport: String
|
|
743
|
-
createdAt:
|
|
744
|
-
lastUsedAt:
|
|
754
|
+
createdAt: Uint32
|
|
755
|
+
lastUsedAt: Uint32
|
|
745
756
|
createdBy: String
|
|
746
757
|
updatedBy: String
|
|
747
758
|
}
|
|
@@ -754,8 +765,9 @@ type AuditLog {
|
|
|
754
765
|
content: String
|
|
755
766
|
actor: AuditLogActor
|
|
756
767
|
env: AuditLogEnv
|
|
757
|
-
createdAt:
|
|
768
|
+
createdAt: Uint32
|
|
758
769
|
ip: String
|
|
770
|
+
ua: String
|
|
759
771
|
}
|
|
760
772
|
|
|
761
773
|
type AuditLogActor {
|
|
@@ -781,8 +793,8 @@ type Backup {
|
|
|
781
793
|
sourceUrl: String
|
|
782
794
|
target: String
|
|
783
795
|
targetUrl: String
|
|
784
|
-
createdAt:
|
|
785
|
-
updatedAt:
|
|
796
|
+
createdAt: Uint32
|
|
797
|
+
updatedAt: Uint32
|
|
786
798
|
status: Uint32
|
|
787
799
|
message: String
|
|
788
800
|
}
|
|
@@ -791,7 +803,7 @@ type BlockletBackupState {
|
|
|
791
803
|
appDid: String
|
|
792
804
|
appPid: String
|
|
793
805
|
name: String
|
|
794
|
-
createdAt:
|
|
806
|
+
createdAt: Uint32
|
|
795
807
|
}
|
|
796
808
|
|
|
797
809
|
type BlockletCapabilities {
|
|
@@ -847,7 +859,6 @@ type BlockletMeta {
|
|
|
847
859
|
main: String
|
|
848
860
|
stats: BlockletStats
|
|
849
861
|
homepage: String
|
|
850
|
-
price: Float32
|
|
851
862
|
path: String
|
|
852
863
|
community: String
|
|
853
864
|
documentation: String
|
|
@@ -863,7 +874,7 @@ type BlockletMeta {
|
|
|
863
874
|
repository: BlockletRepository
|
|
864
875
|
payment: BlockletPayment
|
|
865
876
|
nftFactory: String
|
|
866
|
-
lastPublishedAt:
|
|
877
|
+
lastPublishedAt: Uint32
|
|
867
878
|
capabilities: BlockletCapabilities
|
|
868
879
|
components: [ChildConfig!]
|
|
869
880
|
environments: [Environment!]
|
|
@@ -933,7 +944,7 @@ type BlockletSettings {
|
|
|
933
944
|
trustedPassports: [TrustedPassport!]
|
|
934
945
|
whoCanAccess: String
|
|
935
946
|
owner: WalletInfo
|
|
936
|
-
children: [
|
|
947
|
+
children: [SimpleBlockletState!]
|
|
937
948
|
publicToStore: Boolean
|
|
938
949
|
storeList: [BlockletStore!]
|
|
939
950
|
navigations: [ConfigNavigation!]
|
|
@@ -945,11 +956,11 @@ type BlockletSettings {
|
|
|
945
956
|
type BlockletState {
|
|
946
957
|
meta: BlockletMeta
|
|
947
958
|
status: BlockletStatus
|
|
948
|
-
createdAt:
|
|
949
|
-
installedAt:
|
|
950
|
-
startedAt:
|
|
951
|
-
pausedAt:
|
|
952
|
-
stoppedAt:
|
|
959
|
+
createdAt: Uint32
|
|
960
|
+
installedAt: Uint32
|
|
961
|
+
startedAt: Uint32
|
|
962
|
+
pausedAt: Uint32
|
|
963
|
+
stoppedAt: Uint32
|
|
953
964
|
environments: [ConfigEntry!]
|
|
954
965
|
configs: [ConfigEntry!]
|
|
955
966
|
diskInfo: DiskInfo
|
|
@@ -1007,8 +1018,8 @@ type Certificate {
|
|
|
1007
1018
|
id: String
|
|
1008
1019
|
meta: CertificateMeta
|
|
1009
1020
|
matchedSites: [MatchedSites!]
|
|
1010
|
-
createdAt:
|
|
1011
|
-
updatedAt:
|
|
1021
|
+
createdAt: Uint32
|
|
1022
|
+
updatedAt: Uint32
|
|
1012
1023
|
isProtected: Boolean
|
|
1013
1024
|
source: String
|
|
1014
1025
|
status: String
|
|
@@ -1038,11 +1049,11 @@ type ChildConfig {
|
|
|
1038
1049
|
type ComponentState {
|
|
1039
1050
|
meta: BlockletMeta
|
|
1040
1051
|
status: BlockletStatus
|
|
1041
|
-
createdAt:
|
|
1042
|
-
installedAt:
|
|
1043
|
-
startedAt:
|
|
1044
|
-
pausedAt:
|
|
1045
|
-
stoppedAt:
|
|
1052
|
+
createdAt: Uint32
|
|
1053
|
+
installedAt: Uint32
|
|
1054
|
+
startedAt: Uint32
|
|
1055
|
+
pausedAt: Uint32
|
|
1056
|
+
stoppedAt: Uint32
|
|
1046
1057
|
environments: [ConfigEntry!]
|
|
1047
1058
|
configs: [ConfigEntry!]
|
|
1048
1059
|
diskInfo: DiskInfo
|
|
@@ -1084,37 +1095,27 @@ type ConfigNavigation {
|
|
|
1084
1095
|
from: String
|
|
1085
1096
|
}
|
|
1086
1097
|
|
|
1098
|
+
type ConnectedAccount {
|
|
1099
|
+
provider: String
|
|
1100
|
+
did: String
|
|
1101
|
+
pk: String
|
|
1102
|
+
id: String
|
|
1103
|
+
lastLoginAt: Uint32
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1087
1106
|
type CreateAccessKey {
|
|
1088
1107
|
accessKeyId: String
|
|
1089
1108
|
accessKeySecret: String
|
|
1090
1109
|
remark: String
|
|
1091
1110
|
passport: String
|
|
1092
|
-
createdAt:
|
|
1093
|
-
lastUsedAt:
|
|
1111
|
+
createdAt: Uint32
|
|
1112
|
+
lastUsedAt: Uint32
|
|
1094
1113
|
}
|
|
1095
1114
|
|
|
1096
1115
|
type DelegationState {
|
|
1097
1116
|
delegated: Boolean
|
|
1098
1117
|
}
|
|
1099
1118
|
|
|
1100
|
-
type DeletedBlockletMeta {
|
|
1101
|
-
did: String
|
|
1102
|
-
name: String
|
|
1103
|
-
version: String
|
|
1104
|
-
description: String
|
|
1105
|
-
title: String
|
|
1106
|
-
bundleDid: String
|
|
1107
|
-
bundleName: String
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
type DeletedBlockletState {
|
|
1111
|
-
meta: DeletedBlockletMeta
|
|
1112
|
-
status: BlockletStatus
|
|
1113
|
-
deployedFrom: String
|
|
1114
|
-
mountPoint: String
|
|
1115
|
-
deletedAt: String
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
1119
|
type Dependent {
|
|
1119
1120
|
id: String
|
|
1120
1121
|
required: Boolean
|
|
@@ -1233,9 +1234,9 @@ type NodeState {
|
|
|
1233
1234
|
port: String
|
|
1234
1235
|
initialized: Boolean
|
|
1235
1236
|
nodeOwner: WalletInfo
|
|
1236
|
-
createdAt:
|
|
1237
|
-
startedAt:
|
|
1238
|
-
initializedAt:
|
|
1237
|
+
createdAt: Uint32
|
|
1238
|
+
startedAt: Uint32
|
|
1239
|
+
initializedAt: Uint32
|
|
1239
1240
|
mode: String
|
|
1240
1241
|
routing: NodeRouting
|
|
1241
1242
|
environments: [ConfigEntry!]
|
|
@@ -1268,8 +1269,8 @@ type Notification {
|
|
|
1268
1269
|
entityType: String
|
|
1269
1270
|
entityId: String
|
|
1270
1271
|
read: Boolean
|
|
1271
|
-
createdAt:
|
|
1272
|
-
updatedAt:
|
|
1272
|
+
createdAt: Uint32
|
|
1273
|
+
updatedAt: Uint32
|
|
1273
1274
|
id: String
|
|
1274
1275
|
severity: String
|
|
1275
1276
|
}
|
|
@@ -1293,11 +1294,11 @@ type Passport {
|
|
|
1293
1294
|
title: String
|
|
1294
1295
|
issuer: Issuer
|
|
1295
1296
|
type: [String!]
|
|
1296
|
-
issuanceDate:
|
|
1297
|
-
expirationDate:
|
|
1297
|
+
issuanceDate: Uint32
|
|
1298
|
+
expirationDate: Uint32
|
|
1298
1299
|
status: String
|
|
1299
1300
|
role: String
|
|
1300
|
-
lastLoginAt:
|
|
1301
|
+
lastLoginAt: Uint32
|
|
1301
1302
|
}
|
|
1302
1303
|
|
|
1303
1304
|
type PassportIssuanceInfo {
|
|
@@ -1615,7 +1616,7 @@ type ResponseUsers {
|
|
|
1615
1616
|
|
|
1616
1617
|
type ResponseWebHooks {
|
|
1617
1618
|
code: StatusCode
|
|
1618
|
-
webhooks: [
|
|
1619
|
+
webhooks: [WebHook!]
|
|
1619
1620
|
}
|
|
1620
1621
|
|
|
1621
1622
|
type Role {
|
|
@@ -1676,7 +1677,7 @@ type RoutingSnapshot {
|
|
|
1676
1677
|
tree: String
|
|
1677
1678
|
message: String
|
|
1678
1679
|
author: String
|
|
1679
|
-
createdAt:
|
|
1680
|
+
createdAt: Uint32
|
|
1680
1681
|
}
|
|
1681
1682
|
|
|
1682
1683
|
type RuntimeInfo {
|
|
@@ -1687,6 +1688,24 @@ type RuntimeInfo {
|
|
|
1687
1688
|
cpuUsage: Float32
|
|
1688
1689
|
}
|
|
1689
1690
|
|
|
1691
|
+
type SimpleBlockletMeta {
|
|
1692
|
+
did: String
|
|
1693
|
+
name: String
|
|
1694
|
+
version: String
|
|
1695
|
+
description: String
|
|
1696
|
+
title: String
|
|
1697
|
+
bundleDid: String
|
|
1698
|
+
bundleName: String
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
type SimpleBlockletState {
|
|
1702
|
+
meta: SimpleBlockletMeta
|
|
1703
|
+
status: BlockletStatus
|
|
1704
|
+
deployedFrom: String
|
|
1705
|
+
mountPoint: String
|
|
1706
|
+
deletedAt: Uint32
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1690
1709
|
type SpaceGateway {
|
|
1691
1710
|
name: String
|
|
1692
1711
|
url: String
|
|
@@ -1736,14 +1755,17 @@ type UserInfo {
|
|
|
1736
1755
|
fullName: String
|
|
1737
1756
|
email: String
|
|
1738
1757
|
approved: Boolean
|
|
1739
|
-
createdAt:
|
|
1740
|
-
updatedAt:
|
|
1758
|
+
createdAt: Uint32
|
|
1759
|
+
updatedAt: Uint32
|
|
1741
1760
|
locale: String
|
|
1742
1761
|
passports: [Passport!]
|
|
1743
|
-
firstLoginAt:
|
|
1744
|
-
lastLoginAt:
|
|
1762
|
+
firstLoginAt: Uint32
|
|
1763
|
+
lastLoginAt: Uint32
|
|
1745
1764
|
remark: String
|
|
1746
1765
|
lastLoginIp: String
|
|
1766
|
+
sourceProvider: String
|
|
1767
|
+
connectedAccounts: [ConnectedAccount!]
|
|
1768
|
+
extra: Any
|
|
1747
1769
|
source: String
|
|
1748
1770
|
extraConfigs: Any
|
|
1749
1771
|
}
|
|
@@ -1753,6 +1775,14 @@ type WalletInfo {
|
|
|
1753
1775
|
pk: String
|
|
1754
1776
|
}
|
|
1755
1777
|
|
|
1778
|
+
type WebHook {
|
|
1779
|
+
type: SenderType
|
|
1780
|
+
id: String
|
|
1781
|
+
params: [WebHookParam!]
|
|
1782
|
+
createdAt: Uint32
|
|
1783
|
+
updatedAt: Uint32
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1756
1786
|
type WebHookParam {
|
|
1757
1787
|
name: String
|
|
1758
1788
|
description: String
|
|
@@ -1762,13 +1792,6 @@ type WebHookParam {
|
|
|
1762
1792
|
type: String
|
|
1763
1793
|
}
|
|
1764
1794
|
|
|
1765
|
-
type WebHookRecord {
|
|
1766
|
-
type: SenderType
|
|
1767
|
-
id: String
|
|
1768
|
-
params: [WebHookParam!]
|
|
1769
|
-
createdAt: String
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
1795
|
type WebHookSender {
|
|
1773
1796
|
type: SenderType
|
|
1774
1797
|
title: String
|
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.9",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"scripts": {},
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
15
|
-
"license": "
|
|
16
|
-
"gitHead": "
|
|
15
|
+
"license": "Apache-2.0",
|
|
16
|
+
"gitHead": "700ce63e24f6f9b7ad8ecd4ca0aecc8305ee9693",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@wangshijun/ts-protoc-gen": "^0.16.2"
|
|
19
19
|
}
|