@abtnode/types 1.16.24 → 1.16.25-beta-4f765cf3
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/rpc_pb.d.ts +707 -718
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
@@ -1,918 +1,907 @@
|
|
1
1
|
// package: abt_node
|
2
2
|
// file: rpc.proto
|
3
|
-
import * as enum_pb from
|
4
|
-
import * as type_pb from
|
5
|
-
export type TEmptyRequest = {
|
6
|
-
}
|
3
|
+
import * as enum_pb from './enum_pb';
|
4
|
+
import * as type_pb from './type_pb';
|
5
|
+
export type TEmptyRequest = {};
|
7
6
|
export type TGeneralResponse = {
|
8
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
9
|
-
}
|
7
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
8
|
+
};
|
10
9
|
export type TBooleanResponse = {
|
11
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
12
|
-
result: boolean
|
13
|
-
}
|
10
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
11
|
+
result: boolean;
|
12
|
+
};
|
14
13
|
export type TRequestBlocklet = {
|
15
|
-
did: string
|
16
|
-
}
|
14
|
+
did: string;
|
15
|
+
};
|
17
16
|
export type TRequestComponents = {
|
18
|
-
did: string
|
19
|
-
componentDids: string[]
|
20
|
-
}
|
17
|
+
did: string;
|
18
|
+
componentDids: string[];
|
19
|
+
};
|
21
20
|
export type TRequestBlockletDetail = {
|
22
|
-
did: string
|
23
|
-
attachRuntimeInfo: boolean
|
24
|
-
|
21
|
+
did: string;
|
22
|
+
attachRuntimeInfo: boolean;
|
23
|
+
getOptionalComponents: boolean;
|
24
|
+
};
|
25
25
|
export type TResponseBlocklet = {
|
26
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
27
|
-
blocklet?: type_pb.TBlockletState
|
28
|
-
}
|
26
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
27
|
+
blocklet?: type_pb.TBlockletState;
|
28
|
+
};
|
29
29
|
export type TRequestBlockletMetaFromUrl = {
|
30
|
-
url: string
|
31
|
-
checkPrice: boolean
|
32
|
-
}
|
30
|
+
url: string;
|
31
|
+
checkPrice: boolean;
|
32
|
+
};
|
33
33
|
export type TResponseBlockletMetaFromUrl = {
|
34
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
35
|
-
meta?: type_pb.TBlockletMeta
|
36
|
-
isFree: boolean
|
37
|
-
inStore: boolean
|
38
|
-
registryUrl: string
|
39
|
-
}
|
34
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
35
|
+
meta?: type_pb.TBlockletMeta;
|
36
|
+
isFree: boolean;
|
37
|
+
inStore: boolean;
|
38
|
+
registryUrl: string;
|
39
|
+
};
|
40
40
|
export type TRequestBlockletDiff = {
|
41
|
-
did: string
|
42
|
-
hashFiles: type_pb.THashFile[]
|
43
|
-
rootDid: string
|
44
|
-
}
|
41
|
+
did: string;
|
42
|
+
hashFiles: type_pb.THashFile[];
|
43
|
+
rootDid: string;
|
44
|
+
};
|
45
45
|
export type TResponseBlockletDiff = {
|
46
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
47
|
-
blockletDiff?: type_pb.TBlockletDiff
|
48
|
-
}
|
46
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
47
|
+
blockletDiff?: type_pb.TBlockletDiff;
|
48
|
+
};
|
49
49
|
export type TRequestGetBlocklets = {
|
50
|
-
useCache: boolean
|
51
|
-
query?: type_pb.TBlockletQuery
|
52
|
-
}
|
50
|
+
useCache: boolean;
|
51
|
+
query?: type_pb.TBlockletQuery;
|
52
|
+
};
|
53
53
|
export type TResponseGetBlocklets = {
|
54
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
55
|
-
blocklets: type_pb.TBlockletState[]
|
56
|
-
}
|
54
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
55
|
+
blocklets: type_pb.TBlockletState[];
|
56
|
+
};
|
57
57
|
export type TResponseBlockletsFromBackup = {
|
58
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
59
|
-
backups: type_pb.TBlockletBackupState[]
|
60
|
-
}
|
61
|
-
export type TRequestGetNodeInfo = {
|
62
|
-
}
|
58
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
59
|
+
backups: type_pb.TBlockletBackupState[];
|
60
|
+
};
|
61
|
+
export type TRequestGetNodeInfo = {};
|
63
62
|
export type TResponseGetNodeInfo = {
|
64
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
65
|
-
info?: type_pb.TNodeState
|
66
|
-
}
|
63
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
64
|
+
info?: type_pb.TNodeState;
|
65
|
+
};
|
67
66
|
export type TResponseGetNodeEnv = {
|
68
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
69
|
-
info?: type_pb.TNodeEnvInfo
|
70
|
-
}
|
67
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
68
|
+
info?: type_pb.TNodeEnvInfo;
|
69
|
+
};
|
71
70
|
export type TRequestResetNode = {
|
72
|
-
owner: boolean
|
73
|
-
blocklets: boolean
|
74
|
-
webhooks: boolean
|
75
|
-
certificates: boolean
|
76
|
-
accessKeys: boolean
|
77
|
-
blockletExtras: boolean
|
78
|
-
routingRules: boolean
|
79
|
-
users: boolean
|
80
|
-
invitations: boolean
|
81
|
-
}
|
71
|
+
owner: boolean;
|
72
|
+
blocklets: boolean;
|
73
|
+
webhooks: boolean;
|
74
|
+
certificates: boolean;
|
75
|
+
accessKeys: boolean;
|
76
|
+
blockletExtras: boolean;
|
77
|
+
routingRules: boolean;
|
78
|
+
users: boolean;
|
79
|
+
invitations: boolean;
|
80
|
+
};
|
82
81
|
export type TResponseResetNode = {
|
83
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
84
|
-
}
|
85
|
-
export type TRequestDelegationState = {
|
86
|
-
}
|
82
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
83
|
+
};
|
84
|
+
export type TRequestDelegationState = {};
|
87
85
|
export type TResponseDelegationState = {
|
88
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
89
|
-
state?: type_pb.TDelegationState
|
90
|
-
}
|
86
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
87
|
+
state?: type_pb.TDelegationState;
|
88
|
+
};
|
91
89
|
export type TRequestConfigBlocklet = {
|
92
|
-
did: string[]
|
93
|
-
configs: type_pb.TConfigEntry[]
|
94
|
-
}
|
90
|
+
did: string[];
|
91
|
+
configs: type_pb.TConfigEntry[];
|
92
|
+
};
|
95
93
|
export type TRequestVersionedBlocklet = {
|
96
|
-
type: string
|
97
|
-
did: string
|
98
|
-
storeUrl: string
|
99
|
-
url: string
|
100
|
-
file: enum_pb.UploadMap[keyof enum_pb.UploadMap]
|
101
|
-
diffVersion: string
|
102
|
-
deleteSet: string[]
|
103
|
-
title: string
|
104
|
-
description: string
|
105
|
-
startImmediately: boolean
|
106
|
-
downloadTokenList: type_pb.TDownloadToken[]
|
107
|
-
}
|
94
|
+
type: string;
|
95
|
+
did: string;
|
96
|
+
storeUrl: string;
|
97
|
+
url: string;
|
98
|
+
file: enum_pb.UploadMap[keyof enum_pb.UploadMap];
|
99
|
+
diffVersion: string;
|
100
|
+
deleteSet: string[];
|
101
|
+
title: string;
|
102
|
+
description: string;
|
103
|
+
startImmediately: boolean;
|
104
|
+
downloadTokenList: type_pb.TDownloadToken[];
|
105
|
+
};
|
108
106
|
export type TRequestInstallComponent = {
|
109
|
-
rootDid: string
|
110
|
-
mountPoint: string
|
111
|
-
url: string
|
112
|
-
file: enum_pb.UploadMap[keyof enum_pb.UploadMap]
|
113
|
-
did: string
|
114
|
-
diffVersion: string
|
115
|
-
deleteSet: string[]
|
116
|
-
name: string
|
117
|
-
title: string
|
118
|
-
configs: type_pb.TConfigEntry[]
|
119
|
-
downloadTokenList: type_pb.TDownloadToken[]
|
120
|
-
skipNavigation: boolean
|
121
|
-
onlyRequired: boolean
|
122
|
-
}
|
107
|
+
rootDid: string;
|
108
|
+
mountPoint: string;
|
109
|
+
url: string;
|
110
|
+
file: enum_pb.UploadMap[keyof enum_pb.UploadMap];
|
111
|
+
did: string;
|
112
|
+
diffVersion: string;
|
113
|
+
deleteSet: string[];
|
114
|
+
name: string;
|
115
|
+
title: string;
|
116
|
+
configs: type_pb.TConfigEntry[];
|
117
|
+
downloadTokenList: type_pb.TDownloadToken[];
|
118
|
+
skipNavigation: boolean;
|
119
|
+
onlyRequired: boolean;
|
120
|
+
};
|
123
121
|
export type TResponseCheckComponentsForUpdates = {
|
124
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
125
|
-
preUpdateInfo?: type_pb.TBlockletPreUpdateInfo
|
126
|
-
}
|
122
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
123
|
+
preUpdateInfo?: type_pb.TBlockletPreUpdateInfo;
|
124
|
+
};
|
127
125
|
export type TRequestUpdateComponents = {
|
128
|
-
updateId: string
|
129
|
-
rootDid: string
|
130
|
-
selectedComponents: string[]
|
131
|
-
}
|
126
|
+
updateId: string;
|
127
|
+
rootDid: string;
|
128
|
+
selectedComponents: string[];
|
129
|
+
};
|
132
130
|
export type TRequestGetDynamicComponents = {
|
133
|
-
url: string
|
134
|
-
}
|
131
|
+
url: string;
|
132
|
+
};
|
135
133
|
export type TResponseGetDynamicComponents = {
|
136
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
137
|
-
components: type_pb.TComponentState[]
|
138
|
-
}
|
134
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
135
|
+
components: type_pb.TComponentState[];
|
136
|
+
};
|
139
137
|
export type TRequestConfigPublicToStore = {
|
140
|
-
did: string
|
141
|
-
publicToStore: boolean
|
142
|
-
}
|
138
|
+
did: string;
|
139
|
+
publicToStore: boolean;
|
140
|
+
};
|
143
141
|
export type TRequestConfigNavigations = {
|
144
|
-
did: string
|
145
|
-
navigations: type_pb.TConfigNavigation[]
|
146
|
-
}
|
142
|
+
did: string;
|
143
|
+
navigations: type_pb.TConfigNavigation[];
|
144
|
+
};
|
147
145
|
export type TRequestConfigOAuth = {
|
148
|
-
did: string
|
149
|
-
oauth: string
|
150
|
-
}
|
146
|
+
did: string;
|
147
|
+
oauth: string;
|
148
|
+
};
|
151
149
|
export type TRequestJoinFederatedLogin = {
|
152
|
-
did: string
|
153
|
-
appUrl: string
|
154
|
-
}
|
150
|
+
did: string;
|
151
|
+
appUrl: string;
|
152
|
+
};
|
155
153
|
export type TRequestQuitFederatedLogin = {
|
156
|
-
did: string
|
157
|
-
}
|
154
|
+
did: string;
|
155
|
+
};
|
158
156
|
export type TRequestDisbandFederatedLogin = {
|
159
|
-
did: string
|
160
|
-
}
|
157
|
+
did: string;
|
158
|
+
};
|
161
159
|
export type TRequestAuditFederatedLogin = {
|
162
|
-
did: string
|
163
|
-
memberPid: string
|
164
|
-
status: string
|
165
|
-
}
|
160
|
+
did: string;
|
161
|
+
memberPid: string;
|
162
|
+
status: string;
|
163
|
+
};
|
166
164
|
export type TRequestConfigFederated = {
|
167
|
-
did: string
|
168
|
-
autoLogin: boolean
|
169
|
-
}
|
165
|
+
did: string;
|
166
|
+
autoLogin: boolean;
|
167
|
+
};
|
170
168
|
export type TRequestConfigNotification = {
|
171
|
-
did: string
|
172
|
-
notification: string
|
173
|
-
}
|
169
|
+
did: string;
|
170
|
+
notification: string;
|
171
|
+
};
|
174
172
|
export type TRequestSendEmail = {
|
175
|
-
did: string
|
176
|
-
receiver: string
|
177
|
-
email: string
|
178
|
-
}
|
173
|
+
did: string;
|
174
|
+
receiver: string;
|
175
|
+
email: string;
|
176
|
+
};
|
179
177
|
export type TRequestUpdateWhoCanAccess = {
|
180
|
-
did: string[]
|
181
|
-
whoCanAccess: string
|
182
|
-
}
|
178
|
+
did: string[];
|
179
|
+
whoCanAccess: string;
|
180
|
+
};
|
183
181
|
export type TRequestUpdateComponentTitle = {
|
184
|
-
did: string
|
185
|
-
rootDid: string
|
186
|
-
title: string
|
187
|
-
}
|
182
|
+
did: string;
|
183
|
+
rootDid: string;
|
184
|
+
title: string;
|
185
|
+
};
|
188
186
|
export type TRequestUpdateComponentMountPoint = {
|
189
|
-
did: string
|
190
|
-
rootDid: string
|
191
|
-
mountPoint: string
|
192
|
-
}
|
187
|
+
did: string;
|
188
|
+
rootDid: string;
|
189
|
+
mountPoint: string;
|
190
|
+
};
|
193
191
|
export type TRequestBackupBlocklet = {
|
194
|
-
appDid: string
|
195
|
-
to: enum_pb.BackupToMap[keyof enum_pb.BackupToMap]
|
196
|
-
}
|
192
|
+
appDid: string;
|
193
|
+
to: enum_pb.BackupToMap[keyof enum_pb.BackupToMap];
|
194
|
+
};
|
197
195
|
export type TRequestRestoreBlocklet = {
|
198
|
-
endpoint: string
|
199
|
-
appDid: string
|
200
|
-
delegation: string
|
201
|
-
password: Uint8Array | string
|
202
|
-
wallet?: Record<string, any
|
203
|
-
from: enum_pb.BackupToMap[keyof enum_pb.BackupToMap]
|
204
|
-
appPid: string
|
205
|
-
}
|
196
|
+
endpoint: string;
|
197
|
+
appDid: string;
|
198
|
+
delegation: string;
|
199
|
+
password: Uint8Array | string;
|
200
|
+
wallet?: Record<string, any>;
|
201
|
+
from: enum_pb.BackupToMap[keyof enum_pb.BackupToMap];
|
202
|
+
appPid: string;
|
203
|
+
};
|
206
204
|
export type TRequestDeleteBlocklet = {
|
207
|
-
did: string
|
208
|
-
keepData: boolean
|
209
|
-
}
|
205
|
+
did: string;
|
206
|
+
keepData: boolean;
|
207
|
+
};
|
210
208
|
export type TRequestDeleteComponent = {
|
211
|
-
did: string
|
212
|
-
rootDid: string
|
213
|
-
keepData: boolean
|
214
|
-
}
|
215
|
-
export type TRequestRegistry = {
|
216
|
-
}
|
209
|
+
did: string;
|
210
|
+
rootDid: string;
|
211
|
+
keepData: boolean;
|
212
|
+
};
|
213
|
+
export type TRequestRegistry = {};
|
217
214
|
export type TRequestBlockletMeta = {
|
218
|
-
did: string
|
219
|
-
storeUrl: string
|
220
|
-
}
|
215
|
+
did: string;
|
216
|
+
storeUrl: string;
|
217
|
+
};
|
221
218
|
export type TResponseBlockletMeta = {
|
222
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
223
|
-
meta?: Record<string, any
|
224
|
-
}
|
219
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
220
|
+
meta?: Record<string, any>;
|
221
|
+
};
|
225
222
|
export type TRequestGetNotifications = {
|
226
|
-
receiver: string
|
227
|
-
sender: string
|
228
|
-
read: boolean
|
229
|
-
paging?: type_pb.TPaging
|
230
|
-
}
|
223
|
+
receiver: string;
|
224
|
+
sender: string;
|
225
|
+
read: boolean;
|
226
|
+
paging?: type_pb.TPaging;
|
227
|
+
};
|
231
228
|
export type TResponseGetNotifications = {
|
232
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
233
|
-
list: type_pb.TNotification[]
|
234
|
-
paging?: type_pb.TPaging
|
235
|
-
}
|
229
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
230
|
+
list: type_pb.TNotification[];
|
231
|
+
paging?: type_pb.TPaging;
|
232
|
+
};
|
236
233
|
export type TRequestReadNotifications = {
|
237
|
-
id: string
|
238
|
-
}
|
234
|
+
id: string;
|
235
|
+
};
|
239
236
|
export type TResponseReadNotifications = {
|
240
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
241
|
-
numAffected: number
|
242
|
-
}
|
237
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
238
|
+
numAffected: number;
|
239
|
+
};
|
243
240
|
export type TRequestGetBlockletNotifications = {
|
244
|
-
receiver: string
|
245
|
-
sender: string
|
246
|
-
read: boolean
|
247
|
-
paging?: type_pb.TPaging
|
248
|
-
teamDid: string
|
249
|
-
}
|
241
|
+
receiver: string;
|
242
|
+
sender: string;
|
243
|
+
read: boolean;
|
244
|
+
paging?: type_pb.TPaging;
|
245
|
+
teamDid: string;
|
246
|
+
};
|
250
247
|
export type TResponseGetBlockletNotifications = {
|
251
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
252
|
-
list: type_pb.TNotification[]
|
253
|
-
paging?: type_pb.TPaging
|
254
|
-
}
|
248
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
249
|
+
list: type_pb.TNotification[];
|
250
|
+
paging?: type_pb.TPaging;
|
251
|
+
};
|
255
252
|
export type TRequestReadBlockletNotifications = {
|
256
|
-
id: string
|
257
|
-
teamDid: string
|
258
|
-
}
|
253
|
+
id: string;
|
254
|
+
teamDid: string;
|
255
|
+
};
|
259
256
|
export type TResponseReadBlockletNotifications = {
|
260
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
261
|
-
numAffected: number
|
262
|
-
}
|
257
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
258
|
+
numAffected: number;
|
259
|
+
};
|
263
260
|
export type TRequestNodeRouting = {
|
264
|
-
provider: string
|
265
|
-
snapshotHash: string
|
266
|
-
forceRepopulate: boolean
|
267
|
-
}
|
261
|
+
provider: string;
|
262
|
+
snapshotHash: string;
|
263
|
+
forceRepopulate: boolean;
|
264
|
+
};
|
268
265
|
export type TRequestAddRoutingSite = {
|
269
|
-
domain: string
|
270
|
-
type: string
|
271
|
-
rules: type_pb.TRoutingRule[]
|
272
|
-
}
|
266
|
+
domain: string;
|
267
|
+
type: string;
|
268
|
+
rules: type_pb.TRoutingRule[];
|
269
|
+
};
|
273
270
|
export type TRequestUpdateRoutingSite = {
|
274
|
-
id: string
|
275
|
-
corsAllowedOrigins: string[]
|
276
|
-
domain: string
|
277
|
-
teamDid: string
|
278
|
-
}
|
271
|
+
id: string;
|
272
|
+
corsAllowedOrigins: string[];
|
273
|
+
domain: string;
|
274
|
+
teamDid: string;
|
275
|
+
};
|
279
276
|
export type TRequestAddDomainAlias = {
|
280
|
-
id: string
|
281
|
-
domainAlias: string
|
282
|
-
force: boolean
|
283
|
-
teamDid: string
|
284
|
-
type: string
|
285
|
-
nftDid: string
|
286
|
-
chainHost: string
|
287
|
-
inBlockletSetup: boolean
|
288
|
-
}
|
277
|
+
id: string;
|
278
|
+
domainAlias: string;
|
279
|
+
force: boolean;
|
280
|
+
teamDid: string;
|
281
|
+
type: string;
|
282
|
+
nftDid: string;
|
283
|
+
chainHost: string;
|
284
|
+
inBlockletSetup: boolean;
|
285
|
+
};
|
289
286
|
export type TRequestDeleteDomainAlias = {
|
290
|
-
id: string
|
291
|
-
domainAlias: string
|
292
|
-
teamDid: string
|
293
|
-
}
|
287
|
+
id: string;
|
288
|
+
domainAlias: string;
|
289
|
+
teamDid: string;
|
290
|
+
};
|
294
291
|
export type TRequestGetRoutingSites = {
|
295
|
-
snapshotHash: string
|
296
|
-
}
|
292
|
+
snapshotHash: string;
|
293
|
+
};
|
297
294
|
export type TResponseGetRoutingSites = {
|
298
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
299
|
-
sites: type_pb.TRoutingSite[]
|
300
|
-
}
|
295
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
296
|
+
sites: type_pb.TRoutingSite[];
|
297
|
+
};
|
301
298
|
export type TResponseRoutingSite = {
|
302
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
303
|
-
site?: type_pb.TRoutingSite
|
304
|
-
}
|
299
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
300
|
+
site?: type_pb.TRoutingSite;
|
301
|
+
};
|
305
302
|
export type TRequestDeleteRoutingSite = {
|
306
|
-
id: string
|
307
|
-
}
|
303
|
+
id: string;
|
304
|
+
};
|
308
305
|
export type TRequestAddRoutingRule = {
|
309
|
-
id: string
|
310
|
-
rule?: type_pb.TRoutingRule
|
311
|
-
teamDid: string
|
312
|
-
}
|
306
|
+
id: string;
|
307
|
+
rule?: type_pb.TRoutingRule;
|
308
|
+
teamDid: string;
|
309
|
+
};
|
313
310
|
export type TRequestUpdateRoutingRule = {
|
314
|
-
id: string
|
315
|
-
rule?: type_pb.TRoutingRule
|
316
|
-
teamDid: string
|
317
|
-
}
|
311
|
+
id: string;
|
312
|
+
rule?: type_pb.TRoutingRule;
|
313
|
+
teamDid: string;
|
314
|
+
};
|
318
315
|
export type TRequestDeleteRoutingRule = {
|
319
|
-
id: string
|
320
|
-
ruleId: string
|
321
|
-
teamDid: string
|
322
|
-
}
|
316
|
+
id: string;
|
317
|
+
ruleId: string;
|
318
|
+
teamDid: string;
|
319
|
+
};
|
323
320
|
export type TRequestCheckDomains = {
|
324
|
-
domains: string[]
|
325
|
-
did: string
|
326
|
-
}
|
321
|
+
domains: string[];
|
322
|
+
did: string;
|
323
|
+
};
|
327
324
|
export type TResponseCheckDomains = {
|
328
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
329
|
-
}
|
325
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
326
|
+
};
|
330
327
|
export type TRequestFindCertificateByDomain = {
|
331
|
-
domain: string
|
332
|
-
did: string
|
333
|
-
}
|
328
|
+
domain: string;
|
329
|
+
did: string;
|
330
|
+
};
|
334
331
|
export type TResponseFindCertificateByDomain = {
|
335
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
336
|
-
cert?: type_pb.TCertificate
|
337
|
-
}
|
332
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
333
|
+
cert?: type_pb.TCertificate;
|
334
|
+
};
|
338
335
|
export type TRequestTakeRoutingSnapshot = {
|
339
|
-
dryRun: boolean
|
340
|
-
message: string
|
341
|
-
}
|
336
|
+
dryRun: boolean;
|
337
|
+
message: string;
|
338
|
+
};
|
342
339
|
export type TResponseTakeRoutingSnapshot = {
|
343
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
344
|
-
hash: string
|
345
|
-
}
|
340
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
341
|
+
hash: string;
|
342
|
+
};
|
346
343
|
export type TRequestGetRoutingSnapshots = {
|
347
|
-
limit: number
|
348
|
-
}
|
344
|
+
limit: number;
|
345
|
+
};
|
349
346
|
export type TResponseGetRoutingSnapshots = {
|
350
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
351
|
-
snapshots: type_pb.TRoutingSnapshot[]
|
352
|
-
}
|
347
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
348
|
+
snapshots: type_pb.TRoutingSnapshot[];
|
349
|
+
};
|
353
350
|
export type TRequestGetSnapshotSites = {
|
354
|
-
hash: string
|
355
|
-
}
|
351
|
+
hash: string;
|
352
|
+
};
|
356
353
|
export type TResponseGetSnapshotSites = {
|
357
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
358
|
-
sites: type_pb.TRoutingSite[]
|
359
|
-
}
|
360
|
-
export type TRequestGetRoutingProviders = {
|
361
|
-
}
|
354
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
355
|
+
sites: type_pb.TRoutingSite[];
|
356
|
+
};
|
357
|
+
export type TRequestGetRoutingProviders = {};
|
362
358
|
export type TResponseGetRoutingProviders = {
|
363
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
364
|
-
providers: type_pb.TRoutingProvider[]
|
365
|
-
}
|
366
|
-
export type TRequestGetCertificates = {
|
367
|
-
}
|
359
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
360
|
+
providers: type_pb.TRoutingProvider[];
|
361
|
+
};
|
362
|
+
export type TRequestGetCertificates = {};
|
368
363
|
export type TResponseGetCertificates = {
|
369
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
370
|
-
certificates: type_pb.TCertificate[]
|
371
|
-
}
|
364
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
365
|
+
certificates: type_pb.TCertificate[];
|
366
|
+
};
|
372
367
|
export type TRequestAddNginxHttpsCert = {
|
373
|
-
name: string
|
374
|
-
privateKey: string
|
375
|
-
certificate: string
|
376
|
-
}
|
368
|
+
name: string;
|
369
|
+
privateKey: string;
|
370
|
+
certificate: string;
|
371
|
+
};
|
377
372
|
export type TResponseAddNginxHttpsCert = {
|
378
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
379
|
-
}
|
373
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
374
|
+
};
|
380
375
|
export type TRequestUpdateNginxHttpsCert = {
|
381
|
-
id: string
|
382
|
-
name: string
|
383
|
-
}
|
376
|
+
id: string;
|
377
|
+
name: string;
|
378
|
+
};
|
384
379
|
export type TResponseUpdateNginxHttpsCert = {
|
385
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
386
|
-
}
|
380
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
381
|
+
};
|
387
382
|
export type TRequestDeleteNginxHttpsCert = {
|
388
|
-
id: string
|
389
|
-
}
|
383
|
+
id: string;
|
384
|
+
};
|
390
385
|
export type TResponseDeleteNginxHttpsCert = {
|
391
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
392
|
-
}
|
386
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
387
|
+
};
|
393
388
|
export type TRequestAddLetsEncryptCert = {
|
394
|
-
domain: string
|
395
|
-
did: string
|
396
|
-
siteId: string
|
397
|
-
inBlockletSetup: boolean
|
398
|
-
}
|
389
|
+
domain: string;
|
390
|
+
did: string;
|
391
|
+
siteId: string;
|
392
|
+
inBlockletSetup: boolean;
|
393
|
+
};
|
399
394
|
export type TResponseAddLetsEncryptCert = {
|
400
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
401
|
-
}
|
395
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
396
|
+
};
|
402
397
|
export type TRequestIsDidDomain = {
|
403
|
-
domain: string
|
404
|
-
}
|
398
|
+
domain: string;
|
399
|
+
};
|
405
400
|
export type TResponseIsDidDomain = {
|
406
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
407
|
-
value: boolean
|
408
|
-
}
|
409
|
-
export type TRequestAccessKeys = {
|
410
|
-
}
|
401
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
402
|
+
value: boolean;
|
403
|
+
};
|
404
|
+
export type TRequestAccessKeys = {};
|
411
405
|
export type TResponseAccessKeys = {
|
412
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
413
|
-
list: type_pb.TAccessKey[]
|
414
|
-
}
|
406
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
407
|
+
list: type_pb.TAccessKey[];
|
408
|
+
};
|
415
409
|
export type TRequestCreateAccessKey = {
|
416
|
-
remark: string
|
417
|
-
passport: string
|
418
|
-
}
|
410
|
+
remark: string;
|
411
|
+
passport: string;
|
412
|
+
};
|
419
413
|
export type TResponseCreateAccessKey = {
|
420
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
421
|
-
data?: type_pb.TCreateAccessKey
|
422
|
-
}
|
414
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
415
|
+
data?: type_pb.TCreateAccessKey;
|
416
|
+
};
|
423
417
|
export type TRequestUpdateAccessKey = {
|
424
|
-
accessKeyId: string
|
425
|
-
remark: string
|
426
|
-
passport: string
|
427
|
-
}
|
418
|
+
accessKeyId: string;
|
419
|
+
remark: string;
|
420
|
+
passport: string;
|
421
|
+
};
|
428
422
|
export type TResponseUpdateAccessKey = {
|
429
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
430
|
-
data?: type_pb.TAccessKey
|
431
|
-
}
|
423
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
424
|
+
data?: type_pb.TAccessKey;
|
425
|
+
};
|
432
426
|
export type TRequestDeleteAccessKey = {
|
433
|
-
accessKeyId: string
|
434
|
-
}
|
427
|
+
accessKeyId: string;
|
428
|
+
};
|
435
429
|
export type TResponseDeleteAccessKey = {
|
436
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
437
|
-
}
|
430
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
431
|
+
};
|
438
432
|
export type TRequestCreateWebHook = {
|
439
|
-
type: enum_pb.SenderTypeMap[keyof enum_pb.SenderTypeMap]
|
440
|
-
title: string
|
441
|
-
description: string
|
442
|
-
params: type_pb.TWebHookParam[]
|
443
|
-
}
|
433
|
+
type: enum_pb.SenderTypeMap[keyof enum_pb.SenderTypeMap];
|
434
|
+
title: string;
|
435
|
+
description: string;
|
436
|
+
params: type_pb.TWebHookParam[];
|
437
|
+
};
|
444
438
|
export type TRequestDeleteWebHook = {
|
445
|
-
id: string
|
446
|
-
}
|
447
|
-
export type TRequestWebHook = {
|
448
|
-
}
|
449
|
-
export type TRequestSenderList = {
|
450
|
-
}
|
439
|
+
id: string;
|
440
|
+
};
|
441
|
+
export type TRequestWebHook = {};
|
442
|
+
export type TRequestSenderList = {};
|
451
443
|
export type TResponseSenderList = {
|
452
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
453
|
-
senders: type_pb.TWebHookSender[]
|
454
|
-
}
|
444
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
445
|
+
senders: type_pb.TWebHookSender[];
|
446
|
+
};
|
455
447
|
export type TResponseWebHooks = {
|
456
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
457
|
-
webhooks: type_pb.TWebHook[]
|
458
|
-
}
|
448
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
449
|
+
webhooks: type_pb.TWebHook[];
|
450
|
+
};
|
459
451
|
export type TResponseDeleteWebHook = {
|
460
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
461
|
-
}
|
452
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
453
|
+
};
|
462
454
|
export type TResponseCreateWebHook = {
|
463
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
464
|
-
webhook?: type_pb.TWebHookSender
|
465
|
-
}
|
455
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
456
|
+
webhook?: type_pb.TWebHookSender;
|
457
|
+
};
|
466
458
|
export type TRequestSendMsg = {
|
467
|
-
webhookId: string
|
468
|
-
message: string
|
469
|
-
}
|
459
|
+
webhookId: string;
|
460
|
+
message: string;
|
461
|
+
};
|
470
462
|
export type TResponseSendMsg = {
|
471
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
472
|
-
}
|
473
|
-
export type TRequestUpgradeNodeVersion = {
|
474
|
-
}
|
463
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
464
|
+
};
|
465
|
+
export type TRequestUpgradeNodeVersion = {};
|
475
466
|
export type TResponseUpgradeNodeVersion = {
|
476
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
477
|
-
sessionId: string
|
478
|
-
}
|
479
|
-
export type TRequestCheckNodeVersion = {
|
480
|
-
}
|
467
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
468
|
+
sessionId: string;
|
469
|
+
};
|
470
|
+
export type TRequestCheckNodeVersion = {};
|
481
471
|
export type TResponseCheckNodeVersion = {
|
482
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
483
|
-
version: string
|
484
|
-
}
|
485
|
-
export type TRequestRestartServer = {
|
486
|
-
}
|
472
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
473
|
+
version: string;
|
474
|
+
};
|
475
|
+
export type TRequestRestartServer = {};
|
487
476
|
export type TResponseRestartServer = {
|
488
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
489
|
-
sessionId: string
|
490
|
-
}
|
477
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
478
|
+
sessionId: string;
|
479
|
+
};
|
491
480
|
export type TRequestGetSession = {
|
492
|
-
id: string
|
493
|
-
}
|
481
|
+
id: string;
|
482
|
+
};
|
494
483
|
export type TResponseGetSession = {
|
495
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
496
|
-
session?: Record<string, any
|
497
|
-
}
|
484
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
485
|
+
session?: Record<string, any>;
|
486
|
+
};
|
498
487
|
export type TRequestStartSession = {
|
499
|
-
data: string
|
500
|
-
}
|
488
|
+
data: string;
|
489
|
+
};
|
501
490
|
export type TRequestUpdateSession = {
|
502
|
-
id: string
|
503
|
-
data: string
|
504
|
-
}
|
491
|
+
id: string;
|
492
|
+
data: string;
|
493
|
+
};
|
505
494
|
export type TRequestEndSession = {
|
506
|
-
id: string
|
507
|
-
}
|
495
|
+
id: string;
|
496
|
+
};
|
508
497
|
export type TRequestCreateInvitation = {
|
509
|
-
teamDid: string
|
510
|
-
role: string
|
511
|
-
remark: string
|
512
|
-
}
|
498
|
+
teamDid: string;
|
499
|
+
role: string;
|
500
|
+
remark: string;
|
501
|
+
};
|
513
502
|
export type TResponseCreateInvitation = {
|
514
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
515
|
-
inviteInfo?: type_pb.TInviteInfo
|
516
|
-
}
|
503
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
504
|
+
inviteInfo?: type_pb.TInviteInfo;
|
505
|
+
};
|
517
506
|
export type TRequestCreateTransferNodeInvitation = {
|
518
|
-
teamDid: string
|
519
|
-
remark: string
|
520
|
-
}
|
507
|
+
teamDid: string;
|
508
|
+
remark: string;
|
509
|
+
};
|
521
510
|
export type TResponseCreateTransferNodeInvitation = {
|
522
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
523
|
-
inviteInfo?: type_pb.TInviteInfo
|
524
|
-
}
|
511
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
512
|
+
inviteInfo?: type_pb.TInviteInfo;
|
513
|
+
};
|
525
514
|
export type TRequestDeleteTeamSession = {
|
526
|
-
teamDid: string
|
527
|
-
sessionId: string
|
528
|
-
}
|
515
|
+
teamDid: string;
|
516
|
+
sessionId: string;
|
517
|
+
};
|
529
518
|
export type TResponseGetInvitations = {
|
530
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
531
|
-
invitations: type_pb.TInviteInfo[]
|
532
|
-
}
|
519
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
520
|
+
invitations: type_pb.TInviteInfo[];
|
521
|
+
};
|
533
522
|
export type TRequestDeleteInvitation = {
|
534
|
-
teamDid: string
|
535
|
-
inviteId: string
|
536
|
-
}
|
523
|
+
teamDid: string;
|
524
|
+
inviteId: string;
|
525
|
+
};
|
537
526
|
export type TRequestHasPermission = {
|
538
|
-
teamDid: string
|
539
|
-
role: string
|
540
|
-
permission: string
|
541
|
-
}
|
527
|
+
teamDid: string;
|
528
|
+
role: string;
|
529
|
+
permission: string;
|
530
|
+
};
|
542
531
|
export type TRequestCreatePassportIssuance = {
|
543
|
-
teamDid: string
|
544
|
-
ownerDid: string
|
545
|
-
name: string
|
546
|
-
}
|
532
|
+
teamDid: string;
|
533
|
+
ownerDid: string;
|
534
|
+
name: string;
|
535
|
+
};
|
547
536
|
export type TResponseCreatePassportIssuance = {
|
548
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
549
|
-
info?: type_pb.TPassportIssuanceInfo
|
550
|
-
}
|
537
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
538
|
+
info?: type_pb.TPassportIssuanceInfo;
|
539
|
+
};
|
551
540
|
export type TRequestGetPassportIssuances = {
|
552
|
-
teamDid: string
|
553
|
-
ownerDid: string
|
554
|
-
}
|
541
|
+
teamDid: string;
|
542
|
+
ownerDid: string;
|
543
|
+
};
|
555
544
|
export type TResponseGetPassportIssuances = {
|
556
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
557
|
-
list: type_pb.TPassportIssuanceInfo[]
|
558
|
-
}
|
545
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
546
|
+
list: type_pb.TPassportIssuanceInfo[];
|
547
|
+
};
|
559
548
|
export type TRequestConfigTrustedPassports = {
|
560
|
-
teamDid: string
|
561
|
-
trustedPassports: type_pb.TTrustedPassport[]
|
562
|
-
}
|
549
|
+
teamDid: string;
|
550
|
+
trustedPassports: type_pb.TTrustedPassport[];
|
551
|
+
};
|
563
552
|
export type TRequestConfigTrustedFactories = {
|
564
|
-
teamDid: string
|
565
|
-
trustedFactories: type_pb.TTrustedFactory[]
|
566
|
-
}
|
553
|
+
teamDid: string;
|
554
|
+
trustedFactories: type_pb.TTrustedFactory[];
|
555
|
+
};
|
567
556
|
export type TRequestConfigPassportIssuance = {
|
568
|
-
teamDid: string
|
569
|
-
enable: boolean
|
570
|
-
}
|
557
|
+
teamDid: string;
|
558
|
+
enable: boolean;
|
559
|
+
};
|
571
560
|
export type TResponseRoles = {
|
572
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
573
|
-
roles: type_pb.TRole[]
|
574
|
-
}
|
561
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
562
|
+
roles: type_pb.TRole[];
|
563
|
+
};
|
575
564
|
export type TRequestCreateRole = {
|
576
|
-
teamDid: string
|
577
|
-
name: string
|
578
|
-
title: string
|
579
|
-
description: string
|
580
|
-
childName: string
|
581
|
-
permissions: string[]
|
582
|
-
extra: string
|
583
|
-
}
|
565
|
+
teamDid: string;
|
566
|
+
name: string;
|
567
|
+
title: string;
|
568
|
+
description: string;
|
569
|
+
childName: string;
|
570
|
+
permissions: string[];
|
571
|
+
extra: string;
|
572
|
+
};
|
584
573
|
export type TResponseRole = {
|
585
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
586
|
-
role?: type_pb.TRole
|
587
|
-
}
|
574
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
575
|
+
role?: type_pb.TRole;
|
576
|
+
};
|
588
577
|
export type TResponsePermissions = {
|
589
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
590
|
-
permissions: type_pb.TPermission[]
|
591
|
-
}
|
578
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
579
|
+
permissions: type_pb.TPermission[];
|
580
|
+
};
|
592
581
|
export type TRequestCreatePermission = {
|
593
|
-
teamDid: string
|
594
|
-
name: string
|
595
|
-
description: string
|
596
|
-
}
|
582
|
+
teamDid: string;
|
583
|
+
name: string;
|
584
|
+
description: string;
|
585
|
+
};
|
597
586
|
export type TRequestTeamPermission = {
|
598
|
-
teamDid: string
|
599
|
-
permission?: type_pb.TPermission
|
600
|
-
}
|
587
|
+
teamDid: string;
|
588
|
+
permission?: type_pb.TPermission;
|
589
|
+
};
|
601
590
|
export type TResponsePermission = {
|
602
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
603
|
-
permission?: type_pb.TPermission
|
604
|
-
}
|
591
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
592
|
+
permission?: type_pb.TPermission;
|
593
|
+
};
|
605
594
|
export type TRequestGrantPermissionForRole = {
|
606
|
-
teamDid: string
|
607
|
-
roleName: string
|
608
|
-
grantName: string
|
609
|
-
}
|
595
|
+
teamDid: string;
|
596
|
+
roleName: string;
|
597
|
+
grantName: string;
|
598
|
+
};
|
610
599
|
export type TRequestRevokePermissionFromRole = {
|
611
|
-
teamDid: string
|
612
|
-
roleName: string
|
613
|
-
grantName: string
|
614
|
-
}
|
600
|
+
teamDid: string;
|
601
|
+
roleName: string;
|
602
|
+
grantName: string;
|
603
|
+
};
|
615
604
|
export type TRequestDeleteRole = {
|
616
|
-
teamDid: string
|
617
|
-
name: string
|
618
|
-
}
|
605
|
+
teamDid: string;
|
606
|
+
name: string;
|
607
|
+
};
|
619
608
|
export type TRequestDeletePermission = {
|
620
|
-
teamDid: string
|
621
|
-
name: string
|
622
|
-
}
|
609
|
+
teamDid: string;
|
610
|
+
name: string;
|
611
|
+
};
|
623
612
|
export type TRequestUpdatePermissionsForRole = {
|
624
|
-
teamDid: string
|
625
|
-
roleName: string
|
626
|
-
grantNames: string[]
|
627
|
-
}
|
613
|
+
teamDid: string;
|
614
|
+
roleName: string;
|
615
|
+
grantNames: string[];
|
616
|
+
};
|
628
617
|
export type TRequestTeamRole = {
|
629
|
-
teamDid: string
|
630
|
-
role?: type_pb.TRoleUpdate
|
631
|
-
}
|
618
|
+
teamDid: string;
|
619
|
+
role?: type_pb.TRoleUpdate;
|
620
|
+
};
|
632
621
|
export type TRequestTeamUser = {
|
633
|
-
teamDid: string
|
634
|
-
user?: type_pb.TUserInfo
|
635
|
-
options?: TRequestTeamUserOptions
|
636
|
-
}
|
622
|
+
teamDid: string;
|
623
|
+
user?: type_pb.TUserInfo;
|
624
|
+
options?: TRequestTeamUserOptions;
|
625
|
+
};
|
637
626
|
export type TRequestUpdateUserTags = {
|
638
|
-
teamDid: string
|
639
|
-
did: string
|
640
|
-
tags: number[]
|
641
|
-
}
|
627
|
+
teamDid: string;
|
628
|
+
did: string;
|
629
|
+
tags: number[];
|
630
|
+
};
|
642
631
|
export type TRequestUpdateUserExtra = {
|
643
|
-
teamDid: string
|
644
|
-
did: string
|
645
|
-
remark: string
|
646
|
-
extra: string
|
647
|
-
}
|
632
|
+
teamDid: string;
|
633
|
+
did: string;
|
634
|
+
remark: string;
|
635
|
+
extra: string;
|
636
|
+
};
|
648
637
|
export type TRequestTeamUserOptions = {
|
649
|
-
enableConnectedAccount: boolean
|
650
|
-
includeTags: boolean
|
651
|
-
}
|
638
|
+
enableConnectedAccount: boolean;
|
639
|
+
includeTags: boolean;
|
640
|
+
};
|
652
641
|
export type TResponseUser = {
|
653
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
654
|
-
user?: type_pb.TUserInfo
|
655
|
-
}
|
642
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
643
|
+
user?: type_pb.TUserInfo;
|
644
|
+
};
|
656
645
|
export type TRequestUsers = {
|
657
|
-
teamDid: string
|
658
|
-
query?: type_pb.TUserQuery
|
659
|
-
sort?: type_pb.TUserSort
|
660
|
-
paging?: type_pb.TPaging
|
661
|
-
dids: string[]
|
662
|
-
}
|
646
|
+
teamDid: string;
|
647
|
+
query?: type_pb.TUserQuery;
|
648
|
+
sort?: type_pb.TUserSort;
|
649
|
+
paging?: type_pb.TPaging;
|
650
|
+
dids: string[];
|
651
|
+
};
|
663
652
|
export type TResponseGetUsersCount = {
|
664
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
665
|
-
count: number
|
666
|
-
}
|
653
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
654
|
+
count: number;
|
655
|
+
};
|
667
656
|
export type TResponseGetUsersCountPerRole = {
|
668
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
669
|
-
counts: type_pb.TKeyValue[]
|
670
|
-
}
|
657
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
658
|
+
counts: type_pb.TKeyValue[];
|
659
|
+
};
|
671
660
|
export type TResponseUsers = {
|
672
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
673
|
-
users: type_pb.TUserInfo[]
|
674
|
-
paging?: type_pb.TPaging
|
675
|
-
}
|
661
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
662
|
+
users: type_pb.TUserInfo[];
|
663
|
+
paging?: type_pb.TPaging;
|
664
|
+
};
|
676
665
|
export type TRequestIssuePassportToUser = {
|
677
|
-
teamDid: string
|
678
|
-
userDid: string
|
679
|
-
role: string
|
680
|
-
}
|
666
|
+
teamDid: string;
|
667
|
+
userDid: string;
|
668
|
+
role: string;
|
669
|
+
};
|
681
670
|
export type TRequestSwitchProfile = {
|
682
|
-
teamDid: string
|
683
|
-
userDid: string
|
684
|
-
profile?: type_pb.TUserProfile
|
685
|
-
}
|
671
|
+
teamDid: string;
|
672
|
+
userDid: string;
|
673
|
+
profile?: type_pb.TUserProfile;
|
674
|
+
};
|
686
675
|
export type TRequestRevokeUserPassport = {
|
687
|
-
teamDid: string
|
688
|
-
userDid: string
|
689
|
-
passportId: string
|
690
|
-
}
|
676
|
+
teamDid: string;
|
677
|
+
userDid: string;
|
678
|
+
passportId: string;
|
679
|
+
};
|
691
680
|
export type TRequestChangeBlockletStore = {
|
692
|
-
teamDid: string
|
693
|
-
url: string
|
694
|
-
}
|
681
|
+
teamDid: string;
|
682
|
+
url: string;
|
683
|
+
};
|
695
684
|
export type TRequestGetAuditLogs = {
|
696
|
-
paging?: type_pb.TPaging
|
697
|
-
scope: string
|
698
|
-
category: string
|
699
|
-
}
|
685
|
+
paging?: type_pb.TPaging;
|
686
|
+
scope: string;
|
687
|
+
category: string;
|
688
|
+
};
|
700
689
|
export type TResponseGetAuditLogs = {
|
701
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
702
|
-
list: type_pb.TAuditLog[]
|
703
|
-
paging?: type_pb.TPaging
|
704
|
-
}
|
690
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
691
|
+
list: type_pb.TAuditLog[];
|
692
|
+
paging?: type_pb.TPaging;
|
693
|
+
};
|
705
694
|
export type TRequestGateway = {
|
706
|
-
requestLimit?: type_pb.TRequestLimit
|
707
|
-
cacheEnabled: boolean
|
708
|
-
}
|
695
|
+
requestLimit?: type_pb.TRequestLimit;
|
696
|
+
cacheEnabled: boolean;
|
697
|
+
};
|
709
698
|
export type TResponseGateway = {
|
710
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
711
|
-
gateway?: type_pb.TGateway
|
712
|
-
cacheEnabled: boolean
|
713
|
-
}
|
699
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
700
|
+
gateway?: type_pb.TGateway;
|
701
|
+
cacheEnabled: boolean;
|
702
|
+
};
|
714
703
|
export type TRequestBlockletRuntimeHistory = {
|
715
|
-
did: string
|
716
|
-
hours: number
|
717
|
-
}
|
704
|
+
did: string;
|
705
|
+
hours: number;
|
706
|
+
};
|
718
707
|
export type TResponseNodeRuntimeHistory = {
|
719
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
720
|
-
history: type_pb.TNodeHistoryItem[]
|
721
|
-
}
|
708
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
709
|
+
history: type_pb.TNodeHistoryItem[];
|
710
|
+
};
|
722
711
|
export type TRequestNodeRuntimeHistory = {
|
723
|
-
hours: number
|
724
|
-
}
|
712
|
+
hours: number;
|
713
|
+
};
|
725
714
|
export type TResponseBlockletRuntimeHistory = {
|
726
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
727
|
-
history: type_pb.TBlockletHistoryItem[]
|
728
|
-
}
|
715
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
716
|
+
history: type_pb.TBlockletHistoryItem[];
|
717
|
+
};
|
729
718
|
export type TRequestMigrateApplicationToStructV2 = {
|
730
|
-
did: string
|
731
|
-
appSk: string
|
732
|
-
}
|
719
|
+
did: string;
|
720
|
+
appSk: string;
|
721
|
+
};
|
733
722
|
export type TRequestAddBlockletSpaceGateway = {
|
734
|
-
did: string
|
735
|
-
spaceGateway?: type_pb.TSpaceGateway
|
736
|
-
}
|
723
|
+
did: string;
|
724
|
+
spaceGateway?: type_pb.TSpaceGateway;
|
725
|
+
};
|
737
726
|
export type TRequestDeleteBlockletSpaceGateway = {
|
738
|
-
did: string
|
739
|
-
spacegatewaydid: string
|
740
|
-
}
|
727
|
+
did: string;
|
728
|
+
spacegatewaydid: string;
|
729
|
+
};
|
741
730
|
export type TRequestUpdateBlockletSpaceGateway = {
|
742
|
-
did: string
|
743
|
-
where?: type_pb.TSpaceGateway
|
744
|
-
spaceGateway?: type_pb.TSpaceGateway
|
745
|
-
}
|
731
|
+
did: string;
|
732
|
+
where?: type_pb.TSpaceGateway;
|
733
|
+
spaceGateway?: type_pb.TSpaceGateway;
|
734
|
+
};
|
746
735
|
export type TResponseGetBlockletSpaceGateways = {
|
747
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
748
|
-
spaceGateways: type_pb.TSpaceGateway[]
|
749
|
-
}
|
736
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
737
|
+
spaceGateways: type_pb.TSpaceGateway[];
|
738
|
+
};
|
750
739
|
export type TRequestUpdateAutoBackup = {
|
751
|
-
did: string
|
752
|
-
autobackup?: type_pb.TAutoBackup
|
753
|
-
}
|
740
|
+
did: string;
|
741
|
+
autobackup?: type_pb.TAutoBackup;
|
742
|
+
};
|
754
743
|
export type TResponseGetAutoBackup = {
|
755
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
756
|
-
autobackup?: type_pb.TAutoBackup
|
757
|
-
}
|
744
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
745
|
+
autobackup?: type_pb.TAutoBackup;
|
746
|
+
};
|
758
747
|
export type TRequestGetAutoBackup = {
|
759
|
-
did: string
|
760
|
-
}
|
748
|
+
did: string;
|
749
|
+
};
|
761
750
|
export type TRequestGetBlockletBackups = {
|
762
|
-
did: string
|
763
|
-
}
|
751
|
+
did: string;
|
752
|
+
};
|
764
753
|
export type TResponseGetBlockletBackups = {
|
765
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
766
|
-
backups: type_pb.TBackup[]
|
767
|
-
}
|
754
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
755
|
+
backups: type_pb.TBackup[];
|
756
|
+
};
|
768
757
|
export type TRequestUpdateAutoCheckUpdate = {
|
769
|
-
did: string
|
770
|
-
autoCheckUpdate?: type_pb.TAutoCheckUpdate
|
771
|
-
}
|
758
|
+
did: string;
|
759
|
+
autoCheckUpdate?: type_pb.TAutoCheckUpdate;
|
760
|
+
};
|
772
761
|
export type TRequestGetAutoCheckUpdate = {
|
773
|
-
did: string
|
774
|
-
}
|
762
|
+
did: string;
|
763
|
+
};
|
775
764
|
export type TResponseGetAutoCheckUpdate = {
|
776
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
777
|
-
autoCheckUpdate?: type_pb.TAutoCheckUpdate
|
778
|
-
}
|
765
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
766
|
+
autoCheckUpdate?: type_pb.TAutoCheckUpdate;
|
767
|
+
};
|
779
768
|
export type TRequestGetLauncherSession = {
|
780
|
-
launcherSessionId: string
|
781
|
-
launcherUrl: string
|
782
|
-
}
|
769
|
+
launcherSessionId: string;
|
770
|
+
launcherUrl: string;
|
771
|
+
};
|
783
772
|
export type TResponseGetLauncherSession = {
|
784
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
785
|
-
error: string
|
786
|
-
launcherSession?: Record<string, any
|
787
|
-
}
|
773
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
774
|
+
error: string;
|
775
|
+
launcherSession?: Record<string, any>;
|
776
|
+
};
|
788
777
|
export type TRequestUpdateAppSessionConfig = {
|
789
|
-
did: string
|
790
|
-
config?: type_pb.TSessionConfig
|
791
|
-
}
|
778
|
+
did: string;
|
779
|
+
config?: type_pb.TSessionConfig;
|
780
|
+
};
|
792
781
|
export type TRequestGetTrafficInsights = {
|
793
|
-
did: string
|
794
|
-
startDate: string
|
795
|
-
endDate: string
|
796
|
-
paging?: type_pb.TPaging
|
797
|
-
}
|
782
|
+
did: string;
|
783
|
+
startDate: string;
|
784
|
+
endDate: string;
|
785
|
+
paging?: type_pb.TPaging;
|
786
|
+
};
|
798
787
|
export type TResponseGetTrafficInsights = {
|
799
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
800
|
-
list: type_pb.TTrafficInsight[]
|
801
|
-
paging?: type_pb.TPaging
|
802
|
-
}
|
788
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
789
|
+
list: type_pb.TTrafficInsight[];
|
790
|
+
paging?: type_pb.TPaging;
|
791
|
+
};
|
803
792
|
export type TRequestClearCache = {
|
804
|
-
teamDid: string
|
805
|
-
pattern: string
|
806
|
-
}
|
793
|
+
teamDid: string;
|
794
|
+
pattern: string;
|
795
|
+
};
|
807
796
|
export type TResponseClearCache = {
|
808
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
809
|
-
removed: string[]
|
810
|
-
}
|
797
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
798
|
+
removed: string[];
|
799
|
+
};
|
811
800
|
export type TRequestTag = {
|
812
|
-
teamDid: string
|
813
|
-
tag?: type_pb.TTag
|
814
|
-
}
|
801
|
+
teamDid: string;
|
802
|
+
tag?: type_pb.TTag;
|
803
|
+
};
|
815
804
|
export type TResponseTag = {
|
816
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
817
|
-
tag?: type_pb.TTag
|
818
|
-
}
|
805
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
806
|
+
tag?: type_pb.TTag;
|
807
|
+
};
|
819
808
|
export type TRequestTags = {
|
820
|
-
teamDid: string
|
821
|
-
paging?: type_pb.TPaging
|
822
|
-
}
|
809
|
+
teamDid: string;
|
810
|
+
paging?: type_pb.TPaging;
|
811
|
+
};
|
823
812
|
export type TResponseTags = {
|
824
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
825
|
-
tags: type_pb.TTag[]
|
826
|
-
paging?: type_pb.TPaging
|
827
|
-
}
|
813
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
814
|
+
tags: type_pb.TTag[];
|
815
|
+
paging?: type_pb.TPaging;
|
816
|
+
};
|
828
817
|
export type TRequestProject = {
|
829
|
-
did: string
|
830
|
-
projectid: string
|
831
|
-
}
|
818
|
+
did: string;
|
819
|
+
projectid: string;
|
820
|
+
};
|
832
821
|
export type TRequestGetProjects = {
|
833
|
-
did: string
|
834
|
-
paging?: type_pb.TPaging
|
835
|
-
componentDid: string
|
836
|
-
}
|
822
|
+
did: string;
|
823
|
+
paging?: type_pb.TPaging;
|
824
|
+
componentDid: string;
|
825
|
+
};
|
837
826
|
export type TResponseGetProjects = {
|
838
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
839
|
-
projects: type_pb.TProject[]
|
840
|
-
paging?: type_pb.TPaging
|
841
|
-
}
|
827
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
828
|
+
projects: type_pb.TProject[];
|
829
|
+
paging?: type_pb.TPaging;
|
830
|
+
};
|
842
831
|
export type TResponseGetProject = {
|
843
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
844
|
-
project?: type_pb.TProject
|
845
|
-
}
|
832
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
833
|
+
project?: type_pb.TProject;
|
834
|
+
};
|
846
835
|
export type TRequestCreateProject = {
|
847
|
-
did: string
|
848
|
-
type: enum_pb.PublishTypeMap[keyof enum_pb.PublishTypeMap]
|
849
|
-
blockletDid: string
|
850
|
-
blockletTitle: string
|
851
|
-
componentDid: string
|
852
|
-
}
|
836
|
+
did: string;
|
837
|
+
type: enum_pb.PublishTypeMap[keyof enum_pb.PublishTypeMap];
|
838
|
+
blockletDid: string;
|
839
|
+
blockletTitle: string;
|
840
|
+
componentDid: string;
|
841
|
+
};
|
853
842
|
export type TResponseProject = {
|
854
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
855
|
-
project?: type_pb.TProject
|
856
|
-
}
|
843
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
844
|
+
project?: type_pb.TProject;
|
845
|
+
};
|
857
846
|
export type TRequestUpdateProject = {
|
858
|
-
did: string
|
859
|
-
projectid: string
|
860
|
-
blockletTitle: string
|
861
|
-
blockletDescription: string
|
862
|
-
blockletIntroduction: string
|
863
|
-
}
|
847
|
+
did: string;
|
848
|
+
projectid: string;
|
849
|
+
blockletTitle: string;
|
850
|
+
blockletDescription: string;
|
851
|
+
blockletIntroduction: string;
|
852
|
+
};
|
864
853
|
export type TRequestRelease = {
|
865
|
-
did: string
|
866
|
-
projectId: string
|
867
|
-
releaseId: string
|
868
|
-
}
|
854
|
+
did: string;
|
855
|
+
projectId: string;
|
856
|
+
releaseId: string;
|
857
|
+
};
|
869
858
|
export type TResponseGetRelease = {
|
870
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
871
|
-
release?: type_pb.TRelease
|
872
|
-
}
|
859
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
860
|
+
release?: type_pb.TRelease;
|
861
|
+
};
|
873
862
|
export type TRequestGetReleases = {
|
874
|
-
did: string
|
875
|
-
projectid: string
|
876
|
-
paging?: type_pb.TPaging
|
877
|
-
}
|
863
|
+
did: string;
|
864
|
+
projectid: string;
|
865
|
+
paging?: type_pb.TPaging;
|
866
|
+
};
|
878
867
|
export type TResponseGetReleases = {
|
879
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
880
|
-
releases: type_pb.TRelease[]
|
881
|
-
paging?: type_pb.TPaging
|
882
|
-
}
|
868
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
869
|
+
releases: type_pb.TRelease[];
|
870
|
+
paging?: type_pb.TPaging;
|
871
|
+
};
|
883
872
|
export type TRequestCreateRelease = {
|
884
|
-
did: string
|
885
|
-
projectId: string
|
886
|
-
releaseId: string
|
887
|
-
blockletDid: string
|
888
|
-
blockletVersion: string
|
889
|
-
blockletTitle: string
|
890
|
-
blockletDescription: string
|
891
|
-
blockletLogo: string
|
892
|
-
blockletIntroduction: string
|
893
|
-
blockletScreenshots: string[]
|
894
|
-
note: string
|
895
|
-
status: string
|
896
|
-
blockletComponents: string[]
|
897
|
-
}
|
873
|
+
did: string;
|
874
|
+
projectId: string;
|
875
|
+
releaseId: string;
|
876
|
+
blockletDid: string;
|
877
|
+
blockletVersion: string;
|
878
|
+
blockletTitle: string;
|
879
|
+
blockletDescription: string;
|
880
|
+
blockletLogo: string;
|
881
|
+
blockletIntroduction: string;
|
882
|
+
blockletScreenshots: string[];
|
883
|
+
note: string;
|
884
|
+
status: string;
|
885
|
+
blockletComponents: string[];
|
886
|
+
};
|
898
887
|
export type TResponseRelease = {
|
899
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
900
|
-
release?: type_pb.TRelease
|
901
|
-
}
|
888
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
889
|
+
release?: type_pb.TRelease;
|
890
|
+
};
|
902
891
|
export type TRequestGetSelectedResources = {
|
903
|
-
did: string
|
904
|
-
projectId: string
|
905
|
-
releaseId: string
|
906
|
-
componentDid: string
|
907
|
-
}
|
892
|
+
did: string;
|
893
|
+
projectId: string;
|
894
|
+
releaseId: string;
|
895
|
+
componentDid: string;
|
896
|
+
};
|
908
897
|
export type TResponseGetSelectedResources = {
|
909
|
-
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]
|
910
|
-
resources: string[]
|
911
|
-
}
|
898
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
899
|
+
resources: string[];
|
900
|
+
};
|
912
901
|
export type TRequestUpdateSelectedResources = {
|
913
|
-
did: string
|
914
|
-
projectId: string
|
915
|
-
releaseId: string
|
916
|
-
componentDid: string
|
917
|
-
resources: string[]
|
918
|
-
}
|
902
|
+
did: string;
|
903
|
+
projectId: string;
|
904
|
+
releaseId: string;
|
905
|
+
componentDid: string;
|
906
|
+
resources: string[];
|
907
|
+
};
|