@36node/auth-sdk 2.13.2 → 2.14.1
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/dist/gen/client/client.gen.d.ts +2 -0
- package/dist/gen/client/client.gen.js +172 -0
- package/dist/gen/client/client.gen.js.map +1 -0
- package/dist/gen/client/index.d.ts +7 -0
- package/dist/gen/client/index.js +15 -0
- package/dist/gen/client/index.js.map +1 -0
- package/dist/gen/client/types.gen.d.ts +75 -0
- package/dist/gen/client/types.gen.js +3 -0
- package/dist/gen/client/types.gen.js.map +1 -0
- package/dist/gen/client/utils.gen.d.ts +30 -0
- package/dist/gen/client/utils.gen.js +232 -0
- package/dist/gen/client/utils.gen.js.map +1 -0
- package/dist/gen/client.gen.d.ts +4 -0
- package/dist/gen/client.gen.js +6 -0
- package/dist/gen/client.gen.js.map +1 -0
- package/dist/gen/core/auth.gen.d.ts +8 -0
- package/dist/gen/core/auth.gen.js +18 -0
- package/dist/gen/core/auth.gen.js.map +1 -0
- package/dist/gen/core/bodySerializer.gen.d.ts +17 -0
- package/dist/gen/core/bodySerializer.gen.js +60 -0
- package/dist/gen/core/bodySerializer.gen.js.map +1 -0
- package/dist/gen/core/params.gen.d.ts +23 -0
- package/dist/gen/core/params.gen.js +93 -0
- package/dist/gen/core/params.gen.js.map +1 -0
- package/dist/gen/core/pathSerializer.gen.d.ts +30 -0
- package/dist/gen/core/pathSerializer.gen.js +123 -0
- package/dist/gen/core/pathSerializer.gen.js.map +1 -0
- package/dist/gen/core/serverSentEvents.gen.d.ts +23 -0
- package/dist/gen/core/serverSentEvents.gen.js +156 -0
- package/dist/gen/core/serverSentEvents.gen.js.map +1 -0
- package/dist/gen/core/types.gen.d.ts +32 -0
- package/dist/gen/core/types.gen.js +3 -0
- package/dist/gen/core/types.gen.js.map +1 -0
- package/dist/gen/core/utils.gen.d.ts +19 -0
- package/dist/gen/core/utils.gen.js +90 -0
- package/dist/gen/core/utils.gen.js.map +1 -0
- package/dist/gen/sdk.gen.d.ts +84 -0
- package/dist/gen/sdk.gen.js +527 -0
- package/dist/gen/sdk.gen.js.map +1 -0
- package/dist/gen/transformers.gen.d.ts +48 -0
- package/dist/gen/transformers.gen.js +382 -0
- package/dist/gen/transformers.gen.js.map +1 -0
- package/dist/gen/types.gen.d.ts +1795 -0
- package/dist/gen/types.gen.js +3 -0
- package/dist/gen/types.gen.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -4
- package/dist/sdk.gen.d.ts +0 -81
- package/dist/sdk.gen.js +0 -398
- package/dist/sdk.gen.js.map +0 -1
- package/dist/types.gen.d.ts +0 -1292
- package/dist/types.gen.js +0 -405
- package/dist/types.gen.js.map +0 -1
package/dist/types.gen.d.ts
DELETED
|
@@ -1,1292 +0,0 @@
|
|
|
1
|
-
export type AggregateUserDto = {
|
|
2
|
-
group?: Array<('level' | 'labels' | 'language' | 'ns' | 'registerRegion' | 'roles' | 'groups' | 'active' | 'status' | 'createdAt')>;
|
|
3
|
-
dateUnit?: 'hour' | 'day' | 'week' | 'month' | 'year';
|
|
4
|
-
};
|
|
5
|
-
export type dateUnit = 'hour' | 'day' | 'week' | 'month' | 'year';
|
|
6
|
-
export type AppResult = {
|
|
7
|
-
message: string;
|
|
8
|
-
};
|
|
9
|
-
export type Authorizer = {
|
|
10
|
-
url: string;
|
|
11
|
-
};
|
|
12
|
-
export type bindThirdPartyDto = {
|
|
13
|
-
login: string;
|
|
14
|
-
password?: string;
|
|
15
|
-
source: string;
|
|
16
|
-
tid: string;
|
|
17
|
-
};
|
|
18
|
-
export type Captcha = {
|
|
19
|
-
code: string;
|
|
20
|
-
expireAt: Date;
|
|
21
|
-
key: string;
|
|
22
|
-
id: string;
|
|
23
|
-
createdAt?: Date;
|
|
24
|
-
updatedAt?: Date;
|
|
25
|
-
createdBy?: string;
|
|
26
|
-
updatedBy?: string;
|
|
27
|
-
};
|
|
28
|
-
export type CountResult = {
|
|
29
|
-
count: number;
|
|
30
|
-
};
|
|
31
|
-
export type CreateCaptchaDto = {
|
|
32
|
-
code?: string;
|
|
33
|
-
expireAt?: Date;
|
|
34
|
-
key: string;
|
|
35
|
-
};
|
|
36
|
-
export type CreateEmailRecordDto = {
|
|
37
|
-
status: (EmailStatus);
|
|
38
|
-
from: string;
|
|
39
|
-
to: string;
|
|
40
|
-
subject: string;
|
|
41
|
-
content: string;
|
|
42
|
-
sentAt?: Date;
|
|
43
|
-
};
|
|
44
|
-
export type CreateGroupDto = {
|
|
45
|
-
data?: string;
|
|
46
|
-
name: string;
|
|
47
|
-
permissions?: Array<(string)>;
|
|
48
|
-
active?: boolean;
|
|
49
|
-
};
|
|
50
|
-
export type CreateNamespaceDto = {
|
|
51
|
-
data?: string;
|
|
52
|
-
desc?: string;
|
|
53
|
-
labels?: Array<(string)>;
|
|
54
|
-
name: string;
|
|
55
|
-
key: string;
|
|
56
|
-
ns?: string;
|
|
57
|
-
permissions?: Array<(string)>;
|
|
58
|
-
active?: boolean;
|
|
59
|
-
defaultPassword?: string;
|
|
60
|
-
exportable?: boolean;
|
|
61
|
-
};
|
|
62
|
-
export type CreateRoleDto = {
|
|
63
|
-
permissions?: Array<(string)>;
|
|
64
|
-
key: string;
|
|
65
|
-
name: string;
|
|
66
|
-
};
|
|
67
|
-
export type CreateSessionDto = {
|
|
68
|
-
expireAt: Date;
|
|
69
|
-
subject: string;
|
|
70
|
-
source?: string;
|
|
71
|
-
permissions?: Array<(string)>;
|
|
72
|
-
roles?: Array<(string)>;
|
|
73
|
-
groups?: Array<(string)>;
|
|
74
|
-
ns?: string;
|
|
75
|
-
type?: string;
|
|
76
|
-
oneTimeUse?: boolean;
|
|
77
|
-
};
|
|
78
|
-
export type CreateSmsRecordDto = {
|
|
79
|
-
status: (SmsStatus);
|
|
80
|
-
phone: string;
|
|
81
|
-
sign: string;
|
|
82
|
-
template: string;
|
|
83
|
-
params?: string;
|
|
84
|
-
sentAt?: Date;
|
|
85
|
-
};
|
|
86
|
-
export type createThirdPartyDto = {
|
|
87
|
-
source: string;
|
|
88
|
-
tid: string;
|
|
89
|
-
accessToken: string;
|
|
90
|
-
expireAt?: number;
|
|
91
|
-
tokenType?: string;
|
|
92
|
-
refreshToken?: string;
|
|
93
|
-
refreshTokenExpireAt?: number;
|
|
94
|
-
uid?: string;
|
|
95
|
-
data: string;
|
|
96
|
-
};
|
|
97
|
-
export type CreateUserDto = {
|
|
98
|
-
password?: string;
|
|
99
|
-
readonly hasPassword?: boolean;
|
|
100
|
-
groups?: Array<(string)>;
|
|
101
|
-
labels?: Array<(string)>;
|
|
102
|
-
permissions?: Array<(string)>;
|
|
103
|
-
roles?: Array<(string)>;
|
|
104
|
-
avatar?: string;
|
|
105
|
-
birthday?: Date;
|
|
106
|
-
data?: string;
|
|
107
|
-
email?: string;
|
|
108
|
-
name?: string;
|
|
109
|
-
identity?: string;
|
|
110
|
-
identityVerifiedAt?: Date;
|
|
111
|
-
identityVerified?: boolean;
|
|
112
|
-
intro?: string;
|
|
113
|
-
inviter?: string;
|
|
114
|
-
language?: string;
|
|
115
|
-
level?: number;
|
|
116
|
-
nickname?: string;
|
|
117
|
-
ns?: string;
|
|
118
|
-
phone?: string;
|
|
119
|
-
registerIp?: string;
|
|
120
|
-
registerRegion?: string;
|
|
121
|
-
username?: string;
|
|
122
|
-
employeeId?: string;
|
|
123
|
-
active?: boolean;
|
|
124
|
-
status?: string;
|
|
125
|
-
expireAt?: Date;
|
|
126
|
-
type?: string;
|
|
127
|
-
};
|
|
128
|
-
export type DateGroup = {
|
|
129
|
-
year?: number;
|
|
130
|
-
month?: number;
|
|
131
|
-
week?: number;
|
|
132
|
-
day?: number;
|
|
133
|
-
hour?: number;
|
|
134
|
-
};
|
|
135
|
-
export type EmailRecord = {
|
|
136
|
-
status: (EmailStatus);
|
|
137
|
-
from: string;
|
|
138
|
-
to: string;
|
|
139
|
-
subject: string;
|
|
140
|
-
content: string;
|
|
141
|
-
sentAt?: Date;
|
|
142
|
-
id: string;
|
|
143
|
-
createdAt?: Date;
|
|
144
|
-
updatedAt?: Date;
|
|
145
|
-
createdBy?: string;
|
|
146
|
-
updatedBy?: string;
|
|
147
|
-
};
|
|
148
|
-
export type EmailStatus = 'pending' | 'sent';
|
|
149
|
-
export type GetAuthorizerQuery = {
|
|
150
|
-
provider: string;
|
|
151
|
-
redirectUri?: string;
|
|
152
|
-
responseType?: string;
|
|
153
|
-
state?: string;
|
|
154
|
-
};
|
|
155
|
-
export type GithubDto = {
|
|
156
|
-
code: string;
|
|
157
|
-
redirectUri?: string;
|
|
158
|
-
repositoryId?: string;
|
|
159
|
-
};
|
|
160
|
-
export type Group = {
|
|
161
|
-
data?: string;
|
|
162
|
-
name: string;
|
|
163
|
-
permissions?: Array<(string)>;
|
|
164
|
-
active?: boolean;
|
|
165
|
-
id: string;
|
|
166
|
-
createdAt?: Date;
|
|
167
|
-
updatedAt?: Date;
|
|
168
|
-
createdBy?: string;
|
|
169
|
-
updatedBy?: string;
|
|
170
|
-
};
|
|
171
|
-
export type HealthCheckResult = {
|
|
172
|
-
message: string;
|
|
173
|
-
};
|
|
174
|
-
export type Industry = {
|
|
175
|
-
code: string;
|
|
176
|
-
name: string;
|
|
177
|
-
children: Array<Industry>;
|
|
178
|
-
};
|
|
179
|
-
export type ListCaptchasQuery = {
|
|
180
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'expireAt' | '-expireAt';
|
|
181
|
-
code?: string;
|
|
182
|
-
key?: string;
|
|
183
|
-
_limit?: number;
|
|
184
|
-
_offset?: number;
|
|
185
|
-
};
|
|
186
|
-
export type _sort = 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'expireAt' | '-expireAt';
|
|
187
|
-
export type ListEmailRecordsQuery = {
|
|
188
|
-
status?: (EmailStatus);
|
|
189
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'sentAt' | '-sentAt';
|
|
190
|
-
createdAt_gt?: Date;
|
|
191
|
-
createdAt_lt?: Date;
|
|
192
|
-
sentAt_gt?: Date;
|
|
193
|
-
sentAt_lt?: Date;
|
|
194
|
-
from?: string;
|
|
195
|
-
to?: string;
|
|
196
|
-
_limit?: number;
|
|
197
|
-
_offset?: number;
|
|
198
|
-
};
|
|
199
|
-
export type _sort2 = 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'sentAt' | '-sentAt';
|
|
200
|
-
export type ListGroupsQuery = {
|
|
201
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt';
|
|
202
|
-
id?: Array<(string)>;
|
|
203
|
-
name_like?: string;
|
|
204
|
-
name?: string;
|
|
205
|
-
active?: boolean;
|
|
206
|
-
_limit?: number;
|
|
207
|
-
_offset?: number;
|
|
208
|
-
};
|
|
209
|
-
export type _sort3 = 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt';
|
|
210
|
-
export type ListIndustriesQuery = {
|
|
211
|
-
depth?: number;
|
|
212
|
-
};
|
|
213
|
-
export type ListNamespacesQuery = {
|
|
214
|
-
key?: (string | Array<(string)>);
|
|
215
|
-
key_start?: (string | Array<(string)>);
|
|
216
|
-
key_tree?: string;
|
|
217
|
-
ns?: (string | Array<(string)>);
|
|
218
|
-
ns_start?: (string | Array<(string)>);
|
|
219
|
-
ns_tree?: string;
|
|
220
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'key' | '-key' | 'name' | '-name';
|
|
221
|
-
name_like?: string;
|
|
222
|
-
labels?: Array<(string)>;
|
|
223
|
-
_limit?: number;
|
|
224
|
-
_offset?: number;
|
|
225
|
-
};
|
|
226
|
-
export type _sort4 = 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'key' | '-key' | 'name' | '-name';
|
|
227
|
-
export type ListRolesQuery = {
|
|
228
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt';
|
|
229
|
-
name_like?: string;
|
|
230
|
-
name?: string;
|
|
231
|
-
key?: string;
|
|
232
|
-
_limit?: number;
|
|
233
|
-
_offset?: number;
|
|
234
|
-
};
|
|
235
|
-
export type ListSessionsQuery = {
|
|
236
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'expireAt' | '-expireAt';
|
|
237
|
-
refreshToken?: string;
|
|
238
|
-
subject?: string;
|
|
239
|
-
source?: string;
|
|
240
|
-
permissions?: Array<(string)>;
|
|
241
|
-
roles?: Array<(string)>;
|
|
242
|
-
groups?: Array<(string)>;
|
|
243
|
-
ns?: string;
|
|
244
|
-
type?: string;
|
|
245
|
-
oneTimeUse?: boolean;
|
|
246
|
-
_limit?: number;
|
|
247
|
-
_offset?: number;
|
|
248
|
-
};
|
|
249
|
-
export type ListSmsRecordsQuery = {
|
|
250
|
-
status?: (SmsStatus);
|
|
251
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'sentAt' | '-sentAt';
|
|
252
|
-
createdAt_gt?: Date;
|
|
253
|
-
createdAt_lt?: Date;
|
|
254
|
-
sentAt_gt?: Date;
|
|
255
|
-
sentAt_lt?: Date;
|
|
256
|
-
phone?: string;
|
|
257
|
-
sign?: string;
|
|
258
|
-
_limit?: number;
|
|
259
|
-
_offset?: number;
|
|
260
|
-
};
|
|
261
|
-
export type ListThirdPartyQuery = {
|
|
262
|
-
source?: string;
|
|
263
|
-
tid?: string;
|
|
264
|
-
accessToken?: string;
|
|
265
|
-
expireAt?: number;
|
|
266
|
-
tokenType?: string;
|
|
267
|
-
refreshToken?: string;
|
|
268
|
-
refreshTokenExpireAt?: number;
|
|
269
|
-
uid?: string;
|
|
270
|
-
data?: string;
|
|
271
|
-
_limit?: number;
|
|
272
|
-
_offset?: number;
|
|
273
|
-
};
|
|
274
|
-
export type ListUsersQuery = {
|
|
275
|
-
id?: Array<(string)>;
|
|
276
|
-
ns?: (string | Array<(string)>);
|
|
277
|
-
ns_start?: (string | Array<(string)>);
|
|
278
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'lastLoginAt' | '-lastLoginAt' | 'expireAt' | '-expireAt';
|
|
279
|
-
name_like?: string;
|
|
280
|
-
username_like?: string;
|
|
281
|
-
nickname_like?: string;
|
|
282
|
-
ns_tree?: string;
|
|
283
|
-
expireAt_gte?: Date;
|
|
284
|
-
expireAt_lte?: Date;
|
|
285
|
-
active?: boolean;
|
|
286
|
-
email?: string;
|
|
287
|
-
groups?: Array<(string)>;
|
|
288
|
-
inviter?: string;
|
|
289
|
-
labels?: Array<(string)>;
|
|
290
|
-
name?: string;
|
|
291
|
-
phone?: string;
|
|
292
|
-
registerRegion?: string;
|
|
293
|
-
roles?: Array<(string)>;
|
|
294
|
-
status?: string;
|
|
295
|
-
type?: string;
|
|
296
|
-
username?: string;
|
|
297
|
-
_limit?: number;
|
|
298
|
-
_offset?: number;
|
|
299
|
-
};
|
|
300
|
-
export type _sort5 = 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt' | 'lastLoginAt' | '-lastLoginAt' | 'expireAt' | '-expireAt';
|
|
301
|
-
export type LoginByEmailDto = {
|
|
302
|
-
email: string;
|
|
303
|
-
key: string;
|
|
304
|
-
code: string;
|
|
305
|
-
};
|
|
306
|
-
export type LoginByPhoneDto = {
|
|
307
|
-
phone: string;
|
|
308
|
-
key: string;
|
|
309
|
-
code: string;
|
|
310
|
-
};
|
|
311
|
-
export type LoginDto = {
|
|
312
|
-
login: string;
|
|
313
|
-
password: string;
|
|
314
|
-
};
|
|
315
|
-
export type LogoutDto = {
|
|
316
|
-
sid: string;
|
|
317
|
-
};
|
|
318
|
-
export type Namespace = {
|
|
319
|
-
data?: string;
|
|
320
|
-
desc?: string;
|
|
321
|
-
labels?: Array<(string)>;
|
|
322
|
-
name: string;
|
|
323
|
-
key: string;
|
|
324
|
-
ns?: string;
|
|
325
|
-
permissions?: Array<(string)>;
|
|
326
|
-
active?: boolean;
|
|
327
|
-
defaultPassword?: string;
|
|
328
|
-
exportable?: boolean;
|
|
329
|
-
id: string;
|
|
330
|
-
createdAt?: Date;
|
|
331
|
-
updatedAt?: Date;
|
|
332
|
-
createdBy?: string;
|
|
333
|
-
updatedBy?: string;
|
|
334
|
-
};
|
|
335
|
-
export type OAuthDto = {
|
|
336
|
-
provider: string;
|
|
337
|
-
code: string;
|
|
338
|
-
grantType?: string;
|
|
339
|
-
redirectUri?: string;
|
|
340
|
-
};
|
|
341
|
-
export type RefreshTokenDto = {
|
|
342
|
-
refreshToken: string;
|
|
343
|
-
};
|
|
344
|
-
export type Region = {
|
|
345
|
-
code: string;
|
|
346
|
-
nameZh: string;
|
|
347
|
-
namePinyin: string;
|
|
348
|
-
nameEn: string;
|
|
349
|
-
dialingPrefix: string;
|
|
350
|
-
};
|
|
351
|
-
export type RegisterByEmailDto = {
|
|
352
|
-
email: string;
|
|
353
|
-
key: string;
|
|
354
|
-
code: string;
|
|
355
|
-
ns?: string;
|
|
356
|
-
inviter?: string;
|
|
357
|
-
labels?: Array<(string)>;
|
|
358
|
-
registerIp?: string;
|
|
359
|
-
registerRegion?: string;
|
|
360
|
-
type?: string;
|
|
361
|
-
};
|
|
362
|
-
export type RegisterbyPhoneDto = {
|
|
363
|
-
phone: string;
|
|
364
|
-
key: string;
|
|
365
|
-
code: string;
|
|
366
|
-
ns?: string;
|
|
367
|
-
inviter?: string;
|
|
368
|
-
labels?: Array<(string)>;
|
|
369
|
-
registerIp?: string;
|
|
370
|
-
registerRegion?: string;
|
|
371
|
-
type?: string;
|
|
372
|
-
};
|
|
373
|
-
export type RegisterDto = {
|
|
374
|
-
username: string;
|
|
375
|
-
password: string;
|
|
376
|
-
ns?: string;
|
|
377
|
-
inviter?: string;
|
|
378
|
-
labels?: Array<(string)>;
|
|
379
|
-
registerIp?: string;
|
|
380
|
-
registerRegion?: string;
|
|
381
|
-
type?: string;
|
|
382
|
-
};
|
|
383
|
-
export type ResetPasswordByEmailDto = {
|
|
384
|
-
email: string;
|
|
385
|
-
key: string;
|
|
386
|
-
code: string;
|
|
387
|
-
password: string;
|
|
388
|
-
};
|
|
389
|
-
export type ResetPasswordByPhoneDto = {
|
|
390
|
-
phone: string;
|
|
391
|
-
key: string;
|
|
392
|
-
code: string;
|
|
393
|
-
password: string;
|
|
394
|
-
};
|
|
395
|
-
export type Role = {
|
|
396
|
-
key: string;
|
|
397
|
-
name: string;
|
|
398
|
-
permissions: Array<(string)>;
|
|
399
|
-
id: string;
|
|
400
|
-
createdAt?: Date;
|
|
401
|
-
updatedAt?: Date;
|
|
402
|
-
createdBy?: string;
|
|
403
|
-
updatedBy?: string;
|
|
404
|
-
};
|
|
405
|
-
export type SendEmailDto = {
|
|
406
|
-
from: string;
|
|
407
|
-
to: string;
|
|
408
|
-
subject: string;
|
|
409
|
-
content: string;
|
|
410
|
-
};
|
|
411
|
-
export type SendSmsDto = {
|
|
412
|
-
phone: string;
|
|
413
|
-
sign: string;
|
|
414
|
-
template: string;
|
|
415
|
-
params?: {
|
|
416
|
-
[key: string]: unknown;
|
|
417
|
-
};
|
|
418
|
-
};
|
|
419
|
-
export type Session = {
|
|
420
|
-
expireAt: Date;
|
|
421
|
-
key: string;
|
|
422
|
-
subject: string;
|
|
423
|
-
source?: string;
|
|
424
|
-
permissions?: Array<(string)>;
|
|
425
|
-
roles?: Array<(string)>;
|
|
426
|
-
groups?: Array<(string)>;
|
|
427
|
-
ns?: string;
|
|
428
|
-
type?: string;
|
|
429
|
-
oneTimeUse?: boolean;
|
|
430
|
-
id: string;
|
|
431
|
-
createdAt?: Date;
|
|
432
|
-
updatedAt?: Date;
|
|
433
|
-
createdBy?: string;
|
|
434
|
-
updatedBy?: string;
|
|
435
|
-
};
|
|
436
|
-
export type SessionWithToken = {
|
|
437
|
-
expireAt: Date;
|
|
438
|
-
key: string;
|
|
439
|
-
subject: string;
|
|
440
|
-
source?: string;
|
|
441
|
-
permissions?: Array<(string)>;
|
|
442
|
-
roles?: Array<(string)>;
|
|
443
|
-
groups?: Array<(string)>;
|
|
444
|
-
ns?: string;
|
|
445
|
-
type?: string;
|
|
446
|
-
oneTimeUse?: boolean;
|
|
447
|
-
id: string;
|
|
448
|
-
createdAt?: Date;
|
|
449
|
-
updatedAt?: Date;
|
|
450
|
-
createdBy?: string;
|
|
451
|
-
updatedBy?: string;
|
|
452
|
-
token: string;
|
|
453
|
-
tokenExpireAt: Date;
|
|
454
|
-
};
|
|
455
|
-
export type SignTokenDto = {
|
|
456
|
-
expiresIn: string;
|
|
457
|
-
uid: string;
|
|
458
|
-
permissions?: Array<(string)>;
|
|
459
|
-
};
|
|
460
|
-
export type SmsRecord = {
|
|
461
|
-
status: (SmsStatus);
|
|
462
|
-
phone: string;
|
|
463
|
-
sign: string;
|
|
464
|
-
template: string;
|
|
465
|
-
params?: string;
|
|
466
|
-
sentAt?: Date;
|
|
467
|
-
id: string;
|
|
468
|
-
createdAt?: Date;
|
|
469
|
-
updatedAt?: Date;
|
|
470
|
-
createdBy?: string;
|
|
471
|
-
updatedBy?: string;
|
|
472
|
-
};
|
|
473
|
-
export type SmsStatus = 'pending' | 'sent';
|
|
474
|
-
export type ThirdParty = {
|
|
475
|
-
source: string;
|
|
476
|
-
tid: string;
|
|
477
|
-
accessToken: string;
|
|
478
|
-
expireAt?: number;
|
|
479
|
-
tokenType?: string;
|
|
480
|
-
refreshToken?: string;
|
|
481
|
-
refreshTokenExpireAt?: number;
|
|
482
|
-
uid?: string;
|
|
483
|
-
data: string;
|
|
484
|
-
id: string;
|
|
485
|
-
createdAt?: Date;
|
|
486
|
-
updatedAt?: Date;
|
|
487
|
-
createdBy?: string;
|
|
488
|
-
updatedBy?: string;
|
|
489
|
-
};
|
|
490
|
-
export type Token = {
|
|
491
|
-
token: string;
|
|
492
|
-
tokenExpireAt: Date;
|
|
493
|
-
};
|
|
494
|
-
export type UpdateCaptchaDto = {
|
|
495
|
-
code?: string;
|
|
496
|
-
expireAt?: Date;
|
|
497
|
-
key?: string;
|
|
498
|
-
};
|
|
499
|
-
export type UpdateEmailRecordDto = {
|
|
500
|
-
status?: (EmailStatus);
|
|
501
|
-
from?: string;
|
|
502
|
-
to?: string;
|
|
503
|
-
subject?: string;
|
|
504
|
-
content?: string;
|
|
505
|
-
sentAt?: Date;
|
|
506
|
-
};
|
|
507
|
-
export type UpdateGroupDto = {
|
|
508
|
-
data?: string;
|
|
509
|
-
name?: string;
|
|
510
|
-
permissions?: Array<(string)>;
|
|
511
|
-
active?: boolean;
|
|
512
|
-
};
|
|
513
|
-
export type UpdateNamespaceDto = {
|
|
514
|
-
data?: string;
|
|
515
|
-
desc?: string;
|
|
516
|
-
labels?: Array<(string)>;
|
|
517
|
-
name?: string;
|
|
518
|
-
permissions?: Array<(string)>;
|
|
519
|
-
active?: boolean;
|
|
520
|
-
defaultPassword?: string;
|
|
521
|
-
exportable?: boolean;
|
|
522
|
-
};
|
|
523
|
-
export type UpdatePasswordDto = {
|
|
524
|
-
oldPassword?: string;
|
|
525
|
-
newPassword: string;
|
|
526
|
-
};
|
|
527
|
-
export type UpdateRoleDto = {
|
|
528
|
-
name?: string;
|
|
529
|
-
permissions?: Array<(string)>;
|
|
530
|
-
};
|
|
531
|
-
export type UpdateSessionDto = {
|
|
532
|
-
expireAt?: Date;
|
|
533
|
-
subject?: string;
|
|
534
|
-
source?: string;
|
|
535
|
-
permissions?: Array<(string)>;
|
|
536
|
-
roles?: Array<(string)>;
|
|
537
|
-
groups?: Array<(string)>;
|
|
538
|
-
ns?: string;
|
|
539
|
-
type?: string;
|
|
540
|
-
oneTimeUse?: boolean;
|
|
541
|
-
};
|
|
542
|
-
export type UpdateSmsRecordDto = {
|
|
543
|
-
status?: (SmsStatus);
|
|
544
|
-
phone?: string;
|
|
545
|
-
sign?: string;
|
|
546
|
-
template?: string;
|
|
547
|
-
params?: string;
|
|
548
|
-
sentAt?: Date;
|
|
549
|
-
};
|
|
550
|
-
export type UpdateThirdPartyDto = {
|
|
551
|
-
source?: string;
|
|
552
|
-
tid?: string;
|
|
553
|
-
accessToken?: string;
|
|
554
|
-
expireAt?: number;
|
|
555
|
-
tokenType?: string;
|
|
556
|
-
refreshToken?: string;
|
|
557
|
-
refreshTokenExpireAt?: number;
|
|
558
|
-
uid?: string;
|
|
559
|
-
data?: string;
|
|
560
|
-
};
|
|
561
|
-
export type UpdateUserDto = {
|
|
562
|
-
readonly hasPassword?: boolean;
|
|
563
|
-
avatar?: string;
|
|
564
|
-
birthday?: Date;
|
|
565
|
-
data?: string;
|
|
566
|
-
email?: string;
|
|
567
|
-
name?: string;
|
|
568
|
-
identity?: string;
|
|
569
|
-
identityVerifiedAt?: Date;
|
|
570
|
-
identityVerified?: boolean;
|
|
571
|
-
intro?: string;
|
|
572
|
-
inviter?: string;
|
|
573
|
-
labels?: Array<(string)>;
|
|
574
|
-
language?: string;
|
|
575
|
-
lastLoginIp?: string;
|
|
576
|
-
lastSeenAt?: Date;
|
|
577
|
-
level?: number;
|
|
578
|
-
nickname?: string;
|
|
579
|
-
ns?: string;
|
|
580
|
-
phone?: string;
|
|
581
|
-
registerIp?: string;
|
|
582
|
-
registerRegion?: string;
|
|
583
|
-
roles?: Array<(string)>;
|
|
584
|
-
username?: string;
|
|
585
|
-
employeeId?: string;
|
|
586
|
-
permissions?: Array<(string)>;
|
|
587
|
-
groups?: Array<(string)>;
|
|
588
|
-
lastLoginAt?: Date;
|
|
589
|
-
active?: boolean;
|
|
590
|
-
status?: string;
|
|
591
|
-
expireAt?: Date;
|
|
592
|
-
type?: string;
|
|
593
|
-
};
|
|
594
|
-
export type User = {
|
|
595
|
-
password?: string;
|
|
596
|
-
readonly hasPassword?: boolean;
|
|
597
|
-
avatar?: string;
|
|
598
|
-
birthday?: Date;
|
|
599
|
-
data?: string;
|
|
600
|
-
email?: string;
|
|
601
|
-
name?: string;
|
|
602
|
-
identity?: string;
|
|
603
|
-
identityVerifiedAt?: Date;
|
|
604
|
-
identityVerified?: boolean;
|
|
605
|
-
intro?: string;
|
|
606
|
-
inviter?: string;
|
|
607
|
-
labels: Array<(string)>;
|
|
608
|
-
language?: string;
|
|
609
|
-
lastLoginIp?: string;
|
|
610
|
-
lastSeenAt?: Date;
|
|
611
|
-
level?: number;
|
|
612
|
-
nickname?: string;
|
|
613
|
-
ns?: string;
|
|
614
|
-
phone?: string;
|
|
615
|
-
registerIp?: string;
|
|
616
|
-
registerRegion?: string;
|
|
617
|
-
roles: Array<(string)>;
|
|
618
|
-
username?: string;
|
|
619
|
-
employeeId?: string;
|
|
620
|
-
permissions: Array<(string)>;
|
|
621
|
-
groups: Array<(string)>;
|
|
622
|
-
lastLoginAt?: Date;
|
|
623
|
-
active?: boolean;
|
|
624
|
-
status?: string;
|
|
625
|
-
expireAt?: Date;
|
|
626
|
-
type?: string;
|
|
627
|
-
id: string;
|
|
628
|
-
createdAt?: Date;
|
|
629
|
-
updatedAt?: Date;
|
|
630
|
-
createdBy?: string;
|
|
631
|
-
updatedBy?: string;
|
|
632
|
-
};
|
|
633
|
-
export type UserAggregateResult = {
|
|
634
|
-
level?: number;
|
|
635
|
-
label?: string;
|
|
636
|
-
language?: string;
|
|
637
|
-
ns?: string;
|
|
638
|
-
registerRegion?: string;
|
|
639
|
-
role?: string;
|
|
640
|
-
group?: string;
|
|
641
|
-
active?: boolean;
|
|
642
|
-
status?: string;
|
|
643
|
-
createdAt?: DateGroup;
|
|
644
|
-
count: number;
|
|
645
|
-
};
|
|
646
|
-
export type VerifyCaptchaDto = {
|
|
647
|
-
code: string;
|
|
648
|
-
key: string;
|
|
649
|
-
};
|
|
650
|
-
export type VerifyCaptchaResultDto = {
|
|
651
|
-
success: boolean;
|
|
652
|
-
};
|
|
653
|
-
export type HelloResponse = (AppResult);
|
|
654
|
-
export type HelloError = unknown;
|
|
655
|
-
export type CleanupResponse = (AppResult);
|
|
656
|
-
export type CleanupError = unknown;
|
|
657
|
-
export type LoginData = {
|
|
658
|
-
body: LoginDto;
|
|
659
|
-
};
|
|
660
|
-
export type LoginResponse = (SessionWithToken);
|
|
661
|
-
export type LoginError = unknown;
|
|
662
|
-
export type GetAuthorizerData = {
|
|
663
|
-
query: {
|
|
664
|
-
GetAuthorizerQuery: GetAuthorizerQuery;
|
|
665
|
-
};
|
|
666
|
-
};
|
|
667
|
-
export type GetAuthorizerResponse = (Authorizer);
|
|
668
|
-
export type GetAuthorizerError = unknown;
|
|
669
|
-
export type LoginByGithubData = {
|
|
670
|
-
body: GithubDto;
|
|
671
|
-
};
|
|
672
|
-
export type LoginByGithubResponse = (SessionWithToken);
|
|
673
|
-
export type LoginByGithubError = unknown;
|
|
674
|
-
export type LoginByOAuthData = {
|
|
675
|
-
body: OAuthDto;
|
|
676
|
-
};
|
|
677
|
-
export type LoginByOAuthResponse = (SessionWithToken);
|
|
678
|
-
export type LoginByOAuthError = unknown;
|
|
679
|
-
export type LoginByEmailData = {
|
|
680
|
-
body: LoginByEmailDto;
|
|
681
|
-
};
|
|
682
|
-
export type LoginByEmailResponse = (SessionWithToken);
|
|
683
|
-
export type LoginByEmailError = unknown;
|
|
684
|
-
export type LoginByPhoneData = {
|
|
685
|
-
body: LoginByPhoneDto;
|
|
686
|
-
};
|
|
687
|
-
export type LoginByPhoneResponse = (SessionWithToken);
|
|
688
|
-
export type LoginByPhoneError = unknown;
|
|
689
|
-
export type LogoutData = {
|
|
690
|
-
body: LogoutDto;
|
|
691
|
-
};
|
|
692
|
-
export type LogoutResponse = (void);
|
|
693
|
-
export type LogoutError = unknown;
|
|
694
|
-
export type RegisterData = {
|
|
695
|
-
body: RegisterDto;
|
|
696
|
-
};
|
|
697
|
-
export type RegisterResponse = (User);
|
|
698
|
-
export type RegisterError = unknown;
|
|
699
|
-
export type RegisterByPhoneData = {
|
|
700
|
-
body: RegisterbyPhoneDto;
|
|
701
|
-
};
|
|
702
|
-
export type RegisterByPhoneResponse = (User);
|
|
703
|
-
export type RegisterByPhoneError = unknown;
|
|
704
|
-
export type RegisterByEmailData = {
|
|
705
|
-
body: RegisterByEmailDto;
|
|
706
|
-
};
|
|
707
|
-
export type RegisterByEmailResponse = (User);
|
|
708
|
-
export type RegisterByEmailError = unknown;
|
|
709
|
-
export type SignTokenData = {
|
|
710
|
-
body: SignTokenDto;
|
|
711
|
-
};
|
|
712
|
-
export type SignTokenResponse = (Token);
|
|
713
|
-
export type SignTokenError = unknown;
|
|
714
|
-
export type RefreshData = {
|
|
715
|
-
body: RefreshTokenDto;
|
|
716
|
-
};
|
|
717
|
-
export type RefreshResponse = (SessionWithToken);
|
|
718
|
-
export type RefreshError = unknown;
|
|
719
|
-
export type ResetPasswordByPhoneData = {
|
|
720
|
-
body: ResetPasswordByPhoneDto;
|
|
721
|
-
};
|
|
722
|
-
export type ResetPasswordByPhoneResponse = (void);
|
|
723
|
-
export type ResetPasswordByPhoneError = unknown;
|
|
724
|
-
export type ResetPasswordByEmailData = {
|
|
725
|
-
body: ResetPasswordByEmailDto;
|
|
726
|
-
};
|
|
727
|
-
export type ResetPasswordByEmailResponse = (void);
|
|
728
|
-
export type ResetPasswordByEmailError = unknown;
|
|
729
|
-
export type CreateCaptchaData = {
|
|
730
|
-
body: CreateCaptchaDto;
|
|
731
|
-
};
|
|
732
|
-
export type CreateCaptchaResponse = (Captcha);
|
|
733
|
-
export type CreateCaptchaError = unknown;
|
|
734
|
-
export type ListCaptchasData = {
|
|
735
|
-
query: {
|
|
736
|
-
ListCaptchasQuery: ListCaptchasQuery;
|
|
737
|
-
};
|
|
738
|
-
};
|
|
739
|
-
export type ListCaptchasResponse = (Array<Captcha>);
|
|
740
|
-
export type ListCaptchasError = unknown;
|
|
741
|
-
export type GetCaptchaData = {
|
|
742
|
-
path: {
|
|
743
|
-
captchaId: string;
|
|
744
|
-
};
|
|
745
|
-
};
|
|
746
|
-
export type GetCaptchaResponse = (Captcha);
|
|
747
|
-
export type GetCaptchaError = unknown;
|
|
748
|
-
export type UpdateCaptchaData = {
|
|
749
|
-
body: UpdateCaptchaDto;
|
|
750
|
-
path: {
|
|
751
|
-
captchaId: string;
|
|
752
|
-
};
|
|
753
|
-
};
|
|
754
|
-
export type UpdateCaptchaResponse = (Captcha);
|
|
755
|
-
export type UpdateCaptchaError = unknown;
|
|
756
|
-
export type DeleteCaptchaData = {
|
|
757
|
-
path: {
|
|
758
|
-
captchaId: string;
|
|
759
|
-
};
|
|
760
|
-
};
|
|
761
|
-
export type DeleteCaptchaResponse = (void);
|
|
762
|
-
export type DeleteCaptchaError = unknown;
|
|
763
|
-
export type VerifyCaptchaData = {
|
|
764
|
-
body: VerifyCaptchaDto;
|
|
765
|
-
};
|
|
766
|
-
export type VerifyCaptchaResponse = (VerifyCaptchaResultDto);
|
|
767
|
-
export type VerifyCaptchaError = unknown;
|
|
768
|
-
export type SendEmailData = {
|
|
769
|
-
body: SendEmailDto;
|
|
770
|
-
};
|
|
771
|
-
export type SendEmailResponse = (void);
|
|
772
|
-
export type SendEmailError = unknown;
|
|
773
|
-
export type CreateEmailRecordData = {
|
|
774
|
-
body: CreateEmailRecordDto;
|
|
775
|
-
};
|
|
776
|
-
export type CreateEmailRecordResponse = (EmailRecord);
|
|
777
|
-
export type CreateEmailRecordError = unknown;
|
|
778
|
-
export type ListEmailRecordsData = {
|
|
779
|
-
query: {
|
|
780
|
-
ListEmailRecordsQuery: ListEmailRecordsQuery;
|
|
781
|
-
};
|
|
782
|
-
};
|
|
783
|
-
export type ListEmailRecordsResponse = (Array<EmailRecord>);
|
|
784
|
-
export type ListEmailRecordsError = unknown;
|
|
785
|
-
export type GetEmailRecordData = {
|
|
786
|
-
path: {
|
|
787
|
-
emailRecordId: string;
|
|
788
|
-
};
|
|
789
|
-
};
|
|
790
|
-
export type GetEmailRecordResponse = (EmailRecord);
|
|
791
|
-
export type GetEmailRecordError = unknown;
|
|
792
|
-
export type UpdateEmailRecordData = {
|
|
793
|
-
body: UpdateEmailRecordDto;
|
|
794
|
-
path: {
|
|
795
|
-
emailRecordId: string;
|
|
796
|
-
};
|
|
797
|
-
};
|
|
798
|
-
export type UpdateEmailRecordResponse = (EmailRecord);
|
|
799
|
-
export type UpdateEmailRecordError = unknown;
|
|
800
|
-
export type DeleteEmailRecordData = {
|
|
801
|
-
path: {
|
|
802
|
-
emailRecordId: string;
|
|
803
|
-
};
|
|
804
|
-
};
|
|
805
|
-
export type DeleteEmailRecordResponse = (void);
|
|
806
|
-
export type DeleteEmailRecordError = unknown;
|
|
807
|
-
export type CreateGroupData = {
|
|
808
|
-
body: CreateGroupDto;
|
|
809
|
-
};
|
|
810
|
-
export type CreateGroupResponse = (Group);
|
|
811
|
-
export type CreateGroupError = unknown;
|
|
812
|
-
export type ListGroupsData = {
|
|
813
|
-
query: {
|
|
814
|
-
ListGroupsQuery: ListGroupsQuery;
|
|
815
|
-
};
|
|
816
|
-
};
|
|
817
|
-
export type ListGroupsResponse = (Array<Group>);
|
|
818
|
-
export type ListGroupsError = unknown;
|
|
819
|
-
export type GetGroupData = {
|
|
820
|
-
path: {
|
|
821
|
-
groupIdOrName: string;
|
|
822
|
-
};
|
|
823
|
-
};
|
|
824
|
-
export type GetGroupResponse = (Group);
|
|
825
|
-
export type GetGroupError = unknown;
|
|
826
|
-
export type UpdateGroupData = {
|
|
827
|
-
body: UpdateGroupDto;
|
|
828
|
-
path: {
|
|
829
|
-
groupId: string;
|
|
830
|
-
};
|
|
831
|
-
};
|
|
832
|
-
export type UpdateGroupResponse = (Group);
|
|
833
|
-
export type UpdateGroupError = unknown;
|
|
834
|
-
export type DeleteGroupData = {
|
|
835
|
-
path: {
|
|
836
|
-
groupId: string;
|
|
837
|
-
};
|
|
838
|
-
};
|
|
839
|
-
export type DeleteGroupResponse = (void);
|
|
840
|
-
export type DeleteGroupError = unknown;
|
|
841
|
-
export type UpsertGroupByNameData = {
|
|
842
|
-
body: CreateGroupDto;
|
|
843
|
-
path: {
|
|
844
|
-
groupName: string;
|
|
845
|
-
};
|
|
846
|
-
};
|
|
847
|
-
export type UpsertGroupByNameResponse = (Group | {
|
|
848
|
-
[key: string]: unknown;
|
|
849
|
-
});
|
|
850
|
-
export type UpsertGroupByNameError = unknown;
|
|
851
|
-
export type CreateNamespaceData = {
|
|
852
|
-
body: CreateNamespaceDto;
|
|
853
|
-
};
|
|
854
|
-
export type CreateNamespaceResponse = (Namespace);
|
|
855
|
-
export type CreateNamespaceError = unknown;
|
|
856
|
-
export type ListNamespacesData = {
|
|
857
|
-
query: {
|
|
858
|
-
ListNamespacesQuery: ListNamespacesQuery;
|
|
859
|
-
};
|
|
860
|
-
};
|
|
861
|
-
export type ListNamespacesResponse = (Array<Namespace>);
|
|
862
|
-
export type ListNamespacesError = unknown;
|
|
863
|
-
export type GetNamespaceData = {
|
|
864
|
-
path: {
|
|
865
|
-
namespaceIdOrKey: string;
|
|
866
|
-
};
|
|
867
|
-
};
|
|
868
|
-
export type GetNamespaceResponse = (Namespace);
|
|
869
|
-
export type GetNamespaceError = unknown;
|
|
870
|
-
export type UpdateNamespaceData = {
|
|
871
|
-
body: UpdateNamespaceDto;
|
|
872
|
-
path: {
|
|
873
|
-
namespaceIdOrKey: string;
|
|
874
|
-
};
|
|
875
|
-
};
|
|
876
|
-
export type UpdateNamespaceResponse = (Namespace);
|
|
877
|
-
export type UpdateNamespaceError = unknown;
|
|
878
|
-
export type DeleteNamespaceData = {
|
|
879
|
-
path: {
|
|
880
|
-
namespaceId: string;
|
|
881
|
-
};
|
|
882
|
-
};
|
|
883
|
-
export type DeleteNamespaceResponse = (void);
|
|
884
|
-
export type DeleteNamespaceError = unknown;
|
|
885
|
-
export type CreateSessionData = {
|
|
886
|
-
body: CreateSessionDto;
|
|
887
|
-
};
|
|
888
|
-
export type CreateSessionResponse = (Session);
|
|
889
|
-
export type CreateSessionError = unknown;
|
|
890
|
-
export type ListSessionsData = {
|
|
891
|
-
query: {
|
|
892
|
-
ListSessionsQuery: ListSessionsQuery;
|
|
893
|
-
};
|
|
894
|
-
};
|
|
895
|
-
export type ListSessionsResponse = (Array<Session>);
|
|
896
|
-
export type ListSessionsError = unknown;
|
|
897
|
-
export type GetSessionData = {
|
|
898
|
-
path: {
|
|
899
|
-
sessionId: string;
|
|
900
|
-
};
|
|
901
|
-
};
|
|
902
|
-
export type GetSessionResponse = (Session);
|
|
903
|
-
export type GetSessionError = unknown;
|
|
904
|
-
export type UpdateSessionData = {
|
|
905
|
-
body: UpdateSessionDto;
|
|
906
|
-
path: {
|
|
907
|
-
sessionId: string;
|
|
908
|
-
};
|
|
909
|
-
};
|
|
910
|
-
export type UpdateSessionResponse = (Session);
|
|
911
|
-
export type UpdateSessionError = unknown;
|
|
912
|
-
export type DeleteSessionData = {
|
|
913
|
-
path: {
|
|
914
|
-
sessionId: string;
|
|
915
|
-
};
|
|
916
|
-
};
|
|
917
|
-
export type DeleteSessionResponse = (void);
|
|
918
|
-
export type DeleteSessionError = unknown;
|
|
919
|
-
export type GetSessionByKeyData = {
|
|
920
|
-
path: {
|
|
921
|
-
key: string;
|
|
922
|
-
};
|
|
923
|
-
};
|
|
924
|
-
export type GetSessionByKeyResponse = (Session);
|
|
925
|
-
export type GetSessionByKeyError = unknown;
|
|
926
|
-
export type SendSmsData = {
|
|
927
|
-
body: SendSmsDto;
|
|
928
|
-
};
|
|
929
|
-
export type SendSmsResponse = (void);
|
|
930
|
-
export type SendSmsError = unknown;
|
|
931
|
-
export type CreateSmsRecordData = {
|
|
932
|
-
body: CreateSmsRecordDto;
|
|
933
|
-
};
|
|
934
|
-
export type CreateSmsRecordResponse = (SmsRecord);
|
|
935
|
-
export type CreateSmsRecordError = unknown;
|
|
936
|
-
export type ListSmsRecordsData = {
|
|
937
|
-
query: {
|
|
938
|
-
ListSmsRecordsQuery: ListSmsRecordsQuery;
|
|
939
|
-
};
|
|
940
|
-
};
|
|
941
|
-
export type ListSmsRecordsResponse = (Array<SmsRecord>);
|
|
942
|
-
export type ListSmsRecordsError = unknown;
|
|
943
|
-
export type GetSmsRecordData = {
|
|
944
|
-
path: {
|
|
945
|
-
smsRecordId: string;
|
|
946
|
-
};
|
|
947
|
-
};
|
|
948
|
-
export type GetSmsRecordResponse = (SmsRecord);
|
|
949
|
-
export type GetSmsRecordError = unknown;
|
|
950
|
-
export type UpdateSmsRecordData = {
|
|
951
|
-
body: UpdateSmsRecordDto;
|
|
952
|
-
path: {
|
|
953
|
-
smsRecordId: string;
|
|
954
|
-
};
|
|
955
|
-
};
|
|
956
|
-
export type UpdateSmsRecordResponse = (SmsRecord);
|
|
957
|
-
export type UpdateSmsRecordError = unknown;
|
|
958
|
-
export type DeleteSmsRecordData = {
|
|
959
|
-
path: {
|
|
960
|
-
smsRecordId: string;
|
|
961
|
-
};
|
|
962
|
-
};
|
|
963
|
-
export type DeleteSmsRecordResponse = (void);
|
|
964
|
-
export type DeleteSmsRecordError = unknown;
|
|
965
|
-
export type CreateThirdPartyData = {
|
|
966
|
-
body: createThirdPartyDto;
|
|
967
|
-
};
|
|
968
|
-
export type CreateThirdPartyResponse = (ThirdParty);
|
|
969
|
-
export type CreateThirdPartyError = unknown;
|
|
970
|
-
export type ListThirdPartyData = {
|
|
971
|
-
query: {
|
|
972
|
-
ListThirdPartyQuery: ListThirdPartyQuery;
|
|
973
|
-
};
|
|
974
|
-
};
|
|
975
|
-
export type ListThirdPartyResponse = (Array<{
|
|
976
|
-
[key: string]: unknown;
|
|
977
|
-
}> | Array<ThirdParty>);
|
|
978
|
-
export type ListThirdPartyError = unknown;
|
|
979
|
-
export type GetThirdPartyData = {
|
|
980
|
-
path: {
|
|
981
|
-
id: string;
|
|
982
|
-
};
|
|
983
|
-
};
|
|
984
|
-
export type GetThirdPartyResponse = ({
|
|
985
|
-
[key: string]: unknown;
|
|
986
|
-
} | ThirdParty);
|
|
987
|
-
export type GetThirdPartyError = unknown;
|
|
988
|
-
export type UpdateThirdPartyData = {
|
|
989
|
-
body: UpdateThirdPartyDto;
|
|
990
|
-
path: {
|
|
991
|
-
id: string;
|
|
992
|
-
};
|
|
993
|
-
};
|
|
994
|
-
export type UpdateThirdPartyResponse = ({
|
|
995
|
-
[key: string]: unknown;
|
|
996
|
-
} | ThirdParty);
|
|
997
|
-
export type UpdateThirdPartyError = unknown;
|
|
998
|
-
export type GetThirdPartyByUidData = {
|
|
999
|
-
path: {
|
|
1000
|
-
source: string;
|
|
1001
|
-
uid: string;
|
|
1002
|
-
};
|
|
1003
|
-
};
|
|
1004
|
-
export type GetThirdPartyByUidResponse = ({
|
|
1005
|
-
[key: string]: unknown;
|
|
1006
|
-
} | ThirdParty);
|
|
1007
|
-
export type GetThirdPartyByUidError = unknown;
|
|
1008
|
-
export type GetThirdPartyByTidData = {
|
|
1009
|
-
path: {
|
|
1010
|
-
source: string;
|
|
1011
|
-
tid: string;
|
|
1012
|
-
};
|
|
1013
|
-
};
|
|
1014
|
-
export type GetThirdPartyByTidResponse = ({
|
|
1015
|
-
[key: string]: unknown;
|
|
1016
|
-
} | ThirdParty);
|
|
1017
|
-
export type GetThirdPartyByTidError = unknown;
|
|
1018
|
-
export type BindThirdPartyData = {
|
|
1019
|
-
body: bindThirdPartyDto;
|
|
1020
|
-
};
|
|
1021
|
-
export type BindThirdPartyResponse = (ThirdParty);
|
|
1022
|
-
export type BindThirdPartyError = unknown;
|
|
1023
|
-
export type CreateUserData = {
|
|
1024
|
-
body: CreateUserDto;
|
|
1025
|
-
};
|
|
1026
|
-
export type CreateUserResponse = (User);
|
|
1027
|
-
export type CreateUserError = unknown;
|
|
1028
|
-
export type ListUsersData = {
|
|
1029
|
-
query: {
|
|
1030
|
-
ListUsersQuery: ListUsersQuery;
|
|
1031
|
-
};
|
|
1032
|
-
};
|
|
1033
|
-
export type ListUsersResponse = (Array<User>);
|
|
1034
|
-
export type ListUsersError = unknown;
|
|
1035
|
-
export type CountUsersData = {
|
|
1036
|
-
query: {
|
|
1037
|
-
ListUsersQuery: ListUsersQuery;
|
|
1038
|
-
};
|
|
1039
|
-
};
|
|
1040
|
-
export type CountUsersResponse = (CountResult);
|
|
1041
|
-
export type CountUsersError = unknown;
|
|
1042
|
-
export type GetUserData = {
|
|
1043
|
-
path: {
|
|
1044
|
-
userId: string;
|
|
1045
|
-
};
|
|
1046
|
-
};
|
|
1047
|
-
export type GetUserResponse = (User);
|
|
1048
|
-
export type GetUserError = unknown;
|
|
1049
|
-
export type UpdateUserData = {
|
|
1050
|
-
body: UpdateUserDto;
|
|
1051
|
-
path: {
|
|
1052
|
-
userId: string;
|
|
1053
|
-
};
|
|
1054
|
-
};
|
|
1055
|
-
export type UpdateUserResponse = (User);
|
|
1056
|
-
export type UpdateUserError = unknown;
|
|
1057
|
-
export type DeleteUserData = {
|
|
1058
|
-
path: {
|
|
1059
|
-
userId: string;
|
|
1060
|
-
};
|
|
1061
|
-
};
|
|
1062
|
-
export type DeleteUserResponse = (void);
|
|
1063
|
-
export type DeleteUserError = unknown;
|
|
1064
|
-
export type UpsertUserByEmployeeIdData = {
|
|
1065
|
-
body: CreateUserDto;
|
|
1066
|
-
path: {
|
|
1067
|
-
employeeId: string;
|
|
1068
|
-
};
|
|
1069
|
-
};
|
|
1070
|
-
export type UpsertUserByEmployeeIdResponse = (User | {
|
|
1071
|
-
[key: string]: unknown;
|
|
1072
|
-
});
|
|
1073
|
-
export type UpsertUserByEmployeeIdError = unknown;
|
|
1074
|
-
export type UpsertUserByUsernameData = {
|
|
1075
|
-
body: CreateUserDto;
|
|
1076
|
-
path: {
|
|
1077
|
-
username: string;
|
|
1078
|
-
};
|
|
1079
|
-
};
|
|
1080
|
-
export type UpsertUserByUsernameResponse = (User | {
|
|
1081
|
-
[key: string]: unknown;
|
|
1082
|
-
});
|
|
1083
|
-
export type UpsertUserByUsernameError = unknown;
|
|
1084
|
-
export type UpsertUserByEmailData = {
|
|
1085
|
-
body: CreateUserDto;
|
|
1086
|
-
path: {
|
|
1087
|
-
email: string;
|
|
1088
|
-
};
|
|
1089
|
-
};
|
|
1090
|
-
export type UpsertUserByEmailResponse = (User | {
|
|
1091
|
-
[key: string]: unknown;
|
|
1092
|
-
});
|
|
1093
|
-
export type UpsertUserByEmailError = unknown;
|
|
1094
|
-
export type UpsertUserByPhoneData = {
|
|
1095
|
-
body: CreateUserDto;
|
|
1096
|
-
path: {
|
|
1097
|
-
phone: string;
|
|
1098
|
-
};
|
|
1099
|
-
};
|
|
1100
|
-
export type UpsertUserByPhoneResponse = (User | {
|
|
1101
|
-
[key: string]: unknown;
|
|
1102
|
-
});
|
|
1103
|
-
export type UpsertUserByPhoneError = unknown;
|
|
1104
|
-
export type VerifyIdentityData = {
|
|
1105
|
-
path: {
|
|
1106
|
-
userId: string;
|
|
1107
|
-
};
|
|
1108
|
-
};
|
|
1109
|
-
export type VerifyIdentityResponse = (User);
|
|
1110
|
-
export type VerifyIdentityError = unknown;
|
|
1111
|
-
export type UpdatePasswordData = {
|
|
1112
|
-
body: UpdatePasswordDto;
|
|
1113
|
-
path: {
|
|
1114
|
-
userId: string;
|
|
1115
|
-
};
|
|
1116
|
-
};
|
|
1117
|
-
export type UpdatePasswordResponse = (void);
|
|
1118
|
-
export type UpdatePasswordError = unknown;
|
|
1119
|
-
export type AggregateUsersData = {
|
|
1120
|
-
body: AggregateUserDto;
|
|
1121
|
-
query: {
|
|
1122
|
-
ListUsersQuery: ListUsersQuery;
|
|
1123
|
-
};
|
|
1124
|
-
};
|
|
1125
|
-
export type AggregateUsersResponse = (Array<UserAggregateResult>);
|
|
1126
|
-
export type AggregateUsersError = unknown;
|
|
1127
|
-
export type ListIndustriesData = {
|
|
1128
|
-
query: {
|
|
1129
|
-
ListIndustriesQuery: ListIndustriesQuery;
|
|
1130
|
-
};
|
|
1131
|
-
};
|
|
1132
|
-
export type ListIndustriesResponse = (Array<Industry>);
|
|
1133
|
-
export type ListIndustriesError = unknown;
|
|
1134
|
-
export type ListRegionsResponse = (Array<Region>);
|
|
1135
|
-
export type ListRegionsError = unknown;
|
|
1136
|
-
export type CreateRoleData = {
|
|
1137
|
-
body: CreateRoleDto;
|
|
1138
|
-
};
|
|
1139
|
-
export type CreateRoleResponse = (Role);
|
|
1140
|
-
export type CreateRoleError = unknown;
|
|
1141
|
-
export type ListRolesData = {
|
|
1142
|
-
query?: {
|
|
1143
|
-
_limit?: number;
|
|
1144
|
-
_offset?: number;
|
|
1145
|
-
_sort?: 'createdAt' | '-createdAt' | 'updatedAt' | '-updatedAt';
|
|
1146
|
-
key?: string;
|
|
1147
|
-
name?: string;
|
|
1148
|
-
name_like?: string;
|
|
1149
|
-
};
|
|
1150
|
-
};
|
|
1151
|
-
export type ListRolesResponse = (Array<Role>);
|
|
1152
|
-
export type ListRolesError = unknown;
|
|
1153
|
-
export type GetRoleData = {
|
|
1154
|
-
path: {
|
|
1155
|
-
roleIdOrKey: string;
|
|
1156
|
-
};
|
|
1157
|
-
};
|
|
1158
|
-
export type GetRoleResponse = (Role);
|
|
1159
|
-
export type GetRoleError = unknown;
|
|
1160
|
-
export type UpdateRoleData = {
|
|
1161
|
-
body: UpdateRoleDto;
|
|
1162
|
-
path: {
|
|
1163
|
-
roleId: string;
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
export type UpdateRoleResponse = (Role);
|
|
1167
|
-
export type UpdateRoleError = unknown;
|
|
1168
|
-
export type DeleteRoleData = {
|
|
1169
|
-
path: {
|
|
1170
|
-
roleId: string;
|
|
1171
|
-
};
|
|
1172
|
-
};
|
|
1173
|
-
export type DeleteRoleResponse = (void);
|
|
1174
|
-
export type DeleteRoleError = unknown;
|
|
1175
|
-
export type LoginResponseTransformer = (data: any) => Promise<LoginResponse>;
|
|
1176
|
-
export type SessionWithTokenModelResponseTransformer = (data: any) => SessionWithToken;
|
|
1177
|
-
export declare const SessionWithTokenModelResponseTransformer: SessionWithTokenModelResponseTransformer;
|
|
1178
|
-
export declare const LoginResponseTransformer: LoginResponseTransformer;
|
|
1179
|
-
export type LoginByGithubResponseTransformer = (data: any) => Promise<LoginByGithubResponse>;
|
|
1180
|
-
export declare const LoginByGithubResponseTransformer: LoginByGithubResponseTransformer;
|
|
1181
|
-
export type LoginByOAuthResponseTransformer = (data: any) => Promise<LoginByOAuthResponse>;
|
|
1182
|
-
export declare const LoginByOAuthResponseTransformer: LoginByOAuthResponseTransformer;
|
|
1183
|
-
export type LoginByEmailResponseTransformer = (data: any) => Promise<LoginByEmailResponse>;
|
|
1184
|
-
export declare const LoginByEmailResponseTransformer: LoginByEmailResponseTransformer;
|
|
1185
|
-
export type LoginByPhoneResponseTransformer = (data: any) => Promise<LoginByPhoneResponse>;
|
|
1186
|
-
export declare const LoginByPhoneResponseTransformer: LoginByPhoneResponseTransformer;
|
|
1187
|
-
export type RegisterResponseTransformer = (data: any) => Promise<RegisterResponse>;
|
|
1188
|
-
export type UserModelResponseTransformer = (data: any) => User;
|
|
1189
|
-
export declare const UserModelResponseTransformer: UserModelResponseTransformer;
|
|
1190
|
-
export declare const RegisterResponseTransformer: RegisterResponseTransformer;
|
|
1191
|
-
export type RegisterByPhoneResponseTransformer = (data: any) => Promise<RegisterByPhoneResponse>;
|
|
1192
|
-
export declare const RegisterByPhoneResponseTransformer: RegisterByPhoneResponseTransformer;
|
|
1193
|
-
export type RegisterByEmailResponseTransformer = (data: any) => Promise<RegisterByEmailResponse>;
|
|
1194
|
-
export declare const RegisterByEmailResponseTransformer: RegisterByEmailResponseTransformer;
|
|
1195
|
-
export type SignTokenResponseTransformer = (data: any) => Promise<SignTokenResponse>;
|
|
1196
|
-
export type TokenModelResponseTransformer = (data: any) => Token;
|
|
1197
|
-
export declare const TokenModelResponseTransformer: TokenModelResponseTransformer;
|
|
1198
|
-
export declare const SignTokenResponseTransformer: SignTokenResponseTransformer;
|
|
1199
|
-
export type RefreshResponseTransformer = (data: any) => Promise<RefreshResponse>;
|
|
1200
|
-
export declare const RefreshResponseTransformer: RefreshResponseTransformer;
|
|
1201
|
-
export type CreateCaptchaResponseTransformer = (data: any) => Promise<CreateCaptchaResponse>;
|
|
1202
|
-
export type CaptchaModelResponseTransformer = (data: any) => Captcha;
|
|
1203
|
-
export declare const CaptchaModelResponseTransformer: CaptchaModelResponseTransformer;
|
|
1204
|
-
export declare const CreateCaptchaResponseTransformer: CreateCaptchaResponseTransformer;
|
|
1205
|
-
export type ListCaptchasResponseTransformer = (data: any) => Promise<ListCaptchasResponse>;
|
|
1206
|
-
export declare const ListCaptchasResponseTransformer: ListCaptchasResponseTransformer;
|
|
1207
|
-
export type GetCaptchaResponseTransformer = (data: any) => Promise<GetCaptchaResponse>;
|
|
1208
|
-
export declare const GetCaptchaResponseTransformer: GetCaptchaResponseTransformer;
|
|
1209
|
-
export type UpdateCaptchaResponseTransformer = (data: any) => Promise<UpdateCaptchaResponse>;
|
|
1210
|
-
export declare const UpdateCaptchaResponseTransformer: UpdateCaptchaResponseTransformer;
|
|
1211
|
-
export type CreateEmailRecordResponseTransformer = (data: any) => Promise<CreateEmailRecordResponse>;
|
|
1212
|
-
export type EmailRecordModelResponseTransformer = (data: any) => EmailRecord;
|
|
1213
|
-
export declare const EmailRecordModelResponseTransformer: EmailRecordModelResponseTransformer;
|
|
1214
|
-
export declare const CreateEmailRecordResponseTransformer: CreateEmailRecordResponseTransformer;
|
|
1215
|
-
export type ListEmailRecordsResponseTransformer = (data: any) => Promise<ListEmailRecordsResponse>;
|
|
1216
|
-
export declare const ListEmailRecordsResponseTransformer: ListEmailRecordsResponseTransformer;
|
|
1217
|
-
export type GetEmailRecordResponseTransformer = (data: any) => Promise<GetEmailRecordResponse>;
|
|
1218
|
-
export declare const GetEmailRecordResponseTransformer: GetEmailRecordResponseTransformer;
|
|
1219
|
-
export type UpdateEmailRecordResponseTransformer = (data: any) => Promise<UpdateEmailRecordResponse>;
|
|
1220
|
-
export declare const UpdateEmailRecordResponseTransformer: UpdateEmailRecordResponseTransformer;
|
|
1221
|
-
export type CreateGroupResponseTransformer = (data: any) => Promise<CreateGroupResponse>;
|
|
1222
|
-
export type GroupModelResponseTransformer = (data: any) => Group;
|
|
1223
|
-
export declare const GroupModelResponseTransformer: GroupModelResponseTransformer;
|
|
1224
|
-
export declare const CreateGroupResponseTransformer: CreateGroupResponseTransformer;
|
|
1225
|
-
export type ListGroupsResponseTransformer = (data: any) => Promise<ListGroupsResponse>;
|
|
1226
|
-
export declare const ListGroupsResponseTransformer: ListGroupsResponseTransformer;
|
|
1227
|
-
export type GetGroupResponseTransformer = (data: any) => Promise<GetGroupResponse>;
|
|
1228
|
-
export declare const GetGroupResponseTransformer: GetGroupResponseTransformer;
|
|
1229
|
-
export type UpdateGroupResponseTransformer = (data: any) => Promise<UpdateGroupResponse>;
|
|
1230
|
-
export declare const UpdateGroupResponseTransformer: UpdateGroupResponseTransformer;
|
|
1231
|
-
export type CreateNamespaceResponseTransformer = (data: any) => Promise<CreateNamespaceResponse>;
|
|
1232
|
-
export type NamespaceModelResponseTransformer = (data: any) => Namespace;
|
|
1233
|
-
export declare const NamespaceModelResponseTransformer: NamespaceModelResponseTransformer;
|
|
1234
|
-
export declare const CreateNamespaceResponseTransformer: CreateNamespaceResponseTransformer;
|
|
1235
|
-
export type ListNamespacesResponseTransformer = (data: any) => Promise<ListNamespacesResponse>;
|
|
1236
|
-
export declare const ListNamespacesResponseTransformer: ListNamespacesResponseTransformer;
|
|
1237
|
-
export type GetNamespaceResponseTransformer = (data: any) => Promise<GetNamespaceResponse>;
|
|
1238
|
-
export declare const GetNamespaceResponseTransformer: GetNamespaceResponseTransformer;
|
|
1239
|
-
export type UpdateNamespaceResponseTransformer = (data: any) => Promise<UpdateNamespaceResponse>;
|
|
1240
|
-
export declare const UpdateNamespaceResponseTransformer: UpdateNamespaceResponseTransformer;
|
|
1241
|
-
export type CreateSessionResponseTransformer = (data: any) => Promise<CreateSessionResponse>;
|
|
1242
|
-
export type SessionModelResponseTransformer = (data: any) => Session;
|
|
1243
|
-
export declare const SessionModelResponseTransformer: SessionModelResponseTransformer;
|
|
1244
|
-
export declare const CreateSessionResponseTransformer: CreateSessionResponseTransformer;
|
|
1245
|
-
export type ListSessionsResponseTransformer = (data: any) => Promise<ListSessionsResponse>;
|
|
1246
|
-
export declare const ListSessionsResponseTransformer: ListSessionsResponseTransformer;
|
|
1247
|
-
export type GetSessionResponseTransformer = (data: any) => Promise<GetSessionResponse>;
|
|
1248
|
-
export declare const GetSessionResponseTransformer: GetSessionResponseTransformer;
|
|
1249
|
-
export type UpdateSessionResponseTransformer = (data: any) => Promise<UpdateSessionResponse>;
|
|
1250
|
-
export declare const UpdateSessionResponseTransformer: UpdateSessionResponseTransformer;
|
|
1251
|
-
export type GetSessionByKeyResponseTransformer = (data: any) => Promise<GetSessionByKeyResponse>;
|
|
1252
|
-
export declare const GetSessionByKeyResponseTransformer: GetSessionByKeyResponseTransformer;
|
|
1253
|
-
export type CreateSmsRecordResponseTransformer = (data: any) => Promise<CreateSmsRecordResponse>;
|
|
1254
|
-
export type SmsRecordModelResponseTransformer = (data: any) => SmsRecord;
|
|
1255
|
-
export declare const SmsRecordModelResponseTransformer: SmsRecordModelResponseTransformer;
|
|
1256
|
-
export declare const CreateSmsRecordResponseTransformer: CreateSmsRecordResponseTransformer;
|
|
1257
|
-
export type ListSmsRecordsResponseTransformer = (data: any) => Promise<ListSmsRecordsResponse>;
|
|
1258
|
-
export declare const ListSmsRecordsResponseTransformer: ListSmsRecordsResponseTransformer;
|
|
1259
|
-
export type GetSmsRecordResponseTransformer = (data: any) => Promise<GetSmsRecordResponse>;
|
|
1260
|
-
export declare const GetSmsRecordResponseTransformer: GetSmsRecordResponseTransformer;
|
|
1261
|
-
export type UpdateSmsRecordResponseTransformer = (data: any) => Promise<UpdateSmsRecordResponse>;
|
|
1262
|
-
export declare const UpdateSmsRecordResponseTransformer: UpdateSmsRecordResponseTransformer;
|
|
1263
|
-
export type CreateThirdPartyResponseTransformer = (data: any) => Promise<CreateThirdPartyResponse>;
|
|
1264
|
-
export type ThirdPartyModelResponseTransformer = (data: any) => ThirdParty;
|
|
1265
|
-
export declare const ThirdPartyModelResponseTransformer: ThirdPartyModelResponseTransformer;
|
|
1266
|
-
export declare const CreateThirdPartyResponseTransformer: CreateThirdPartyResponseTransformer;
|
|
1267
|
-
export type BindThirdPartyResponseTransformer = (data: any) => Promise<BindThirdPartyResponse>;
|
|
1268
|
-
export declare const BindThirdPartyResponseTransformer: BindThirdPartyResponseTransformer;
|
|
1269
|
-
export type CreateUserResponseTransformer = (data: any) => Promise<CreateUserResponse>;
|
|
1270
|
-
export declare const CreateUserResponseTransformer: CreateUserResponseTransformer;
|
|
1271
|
-
export type ListUsersResponseTransformer = (data: any) => Promise<ListUsersResponse>;
|
|
1272
|
-
export declare const ListUsersResponseTransformer: ListUsersResponseTransformer;
|
|
1273
|
-
export type GetUserResponseTransformer = (data: any) => Promise<GetUserResponse>;
|
|
1274
|
-
export declare const GetUserResponseTransformer: GetUserResponseTransformer;
|
|
1275
|
-
export type UpdateUserResponseTransformer = (data: any) => Promise<UpdateUserResponse>;
|
|
1276
|
-
export declare const UpdateUserResponseTransformer: UpdateUserResponseTransformer;
|
|
1277
|
-
export type VerifyIdentityResponseTransformer = (data: any) => Promise<VerifyIdentityResponse>;
|
|
1278
|
-
export declare const VerifyIdentityResponseTransformer: VerifyIdentityResponseTransformer;
|
|
1279
|
-
export type ListIndustriesResponseTransformer = (data: any) => Promise<ListIndustriesResponse>;
|
|
1280
|
-
export type IndustryModelResponseTransformer = (data: any) => Industry;
|
|
1281
|
-
export declare const IndustryModelResponseTransformer: IndustryModelResponseTransformer;
|
|
1282
|
-
export declare const ListIndustriesResponseTransformer: ListIndustriesResponseTransformer;
|
|
1283
|
-
export type CreateRoleResponseTransformer = (data: any) => Promise<CreateRoleResponse>;
|
|
1284
|
-
export type RoleModelResponseTransformer = (data: any) => Role;
|
|
1285
|
-
export declare const RoleModelResponseTransformer: RoleModelResponseTransformer;
|
|
1286
|
-
export declare const CreateRoleResponseTransformer: CreateRoleResponseTransformer;
|
|
1287
|
-
export type ListRolesResponseTransformer = (data: any) => Promise<ListRolesResponse>;
|
|
1288
|
-
export declare const ListRolesResponseTransformer: ListRolesResponseTransformer;
|
|
1289
|
-
export type GetRoleResponseTransformer = (data: any) => Promise<GetRoleResponse>;
|
|
1290
|
-
export declare const GetRoleResponseTransformer: GetRoleResponseTransformer;
|
|
1291
|
-
export type UpdateRoleResponseTransformer = (data: any) => Promise<UpdateRoleResponse>;
|
|
1292
|
-
export declare const UpdateRoleResponseTransformer: UpdateRoleResponseTransformer;
|