moyan-api 1.2.2 → 1.3.2

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.
@@ -0,0 +1,455 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ApiAuditLogDeleteBeforeDate = exports.ApiAuditLogFindByOperatorId = exports.ApiAuditLogFindByTargetId = exports.ApiAuditLogFindById = exports.ApiAuditLogFindAll = exports.ApiMemberGetAvailableRoles = exports.ApiMemberRemoveMember = exports.ApiMemberUpdateRoles = exports.ApiMemberGetMembers = exports.ApiMemberAddMember = exports.ApiAppUpdateStatus = exports.ApiAppChangeOwner = exports.ApiAppDelete = exports.ApiAppUpdate = exports.ApiAppFindById = exports.ApiAppFindAll = exports.ApiAppCreate = exports.ApiAppTypeUpdateStatus = exports.ApiAppTypeDelete = exports.ApiAppTypeUpdate = exports.ApiAppTypeFindById = exports.ApiAppTypeFindAllList = exports.ApiAppTypeFindAll = exports.ApiAppTypeCreate = exports.ApiPermissionBatchCreate = exports.ApiPermissionDelete = exports.ApiPermissionUpdate = exports.ApiPermissionFindById = exports.ApiPermissionGetPermissionTree = exports.ApiPermissionFindAllTree = exports.ApiPermissionFindAll = exports.ApiPermissionCreate = exports.ApiRoleGetRolePermissions = exports.ApiRoleAssignPermissions = exports.ApiRoleDelete = exports.ApiRoleUpdate = exports.ApiRoleFindById = exports.ApiRoleFindAll = exports.ApiRoleCreate = exports.ApiUserResetPassword = exports.ApiUserUpdateStatus = exports.ApiUserDelete = exports.ApiUserUpdate = exports.ApiUserFindById = exports.ApiUserFindAll = exports.ApiUserCreate = exports.ApiAuthLogout = exports.ApiAuthGetCurrentUser = exports.ApiAuthRefreshToken = exports.ApiAuthLogin = void 0;
4
+ const moyan_api_1 = require("moyan-api");
5
+ class ApiAuthLogin extends moyan_api_1.ApiCall {
6
+ constructor() {
7
+ super(...arguments);
8
+ this.path = '/api/auth/login';
9
+ this.method = 'POST';
10
+ this.auth = false;
11
+ }
12
+ }
13
+ exports.ApiAuthLogin = ApiAuthLogin;
14
+ class ApiAuthRefreshToken extends moyan_api_1.ApiCall {
15
+ constructor() {
16
+ super(...arguments);
17
+ this.path = '/api/auth/refresh';
18
+ this.method = 'POST';
19
+ this.auth = false;
20
+ }
21
+ }
22
+ exports.ApiAuthRefreshToken = ApiAuthRefreshToken;
23
+ class ApiAuthGetCurrentUser extends moyan_api_1.ApiCall {
24
+ constructor() {
25
+ super(...arguments);
26
+ this.path = '/api/auth/userinfo';
27
+ this.method = 'POST';
28
+ this.auth = true;
29
+ }
30
+ }
31
+ exports.ApiAuthGetCurrentUser = ApiAuthGetCurrentUser;
32
+ class ApiAuthLogout extends moyan_api_1.ApiCall {
33
+ constructor() {
34
+ super(...arguments);
35
+ this.path = '/api/auth/logout';
36
+ this.method = 'POST';
37
+ this.auth = true;
38
+ }
39
+ }
40
+ exports.ApiAuthLogout = ApiAuthLogout;
41
+ class ApiUserCreate extends moyan_api_1.ApiCall {
42
+ constructor() {
43
+ super(...arguments);
44
+ this.path = '/api/users';
45
+ this.method = 'POST';
46
+ this.auth = true;
47
+ }
48
+ }
49
+ exports.ApiUserCreate = ApiUserCreate;
50
+ class ApiUserFindAll extends moyan_api_1.ApiCall {
51
+ constructor() {
52
+ super(...arguments);
53
+ this.path = '/api/users';
54
+ this.method = 'GET';
55
+ this.auth = true;
56
+ }
57
+ }
58
+ exports.ApiUserFindAll = ApiUserFindAll;
59
+ class ApiUserFindById extends moyan_api_1.ApiCall {
60
+ constructor() {
61
+ super(...arguments);
62
+ this.path = '/api/users/{id}';
63
+ this.method = 'GET';
64
+ this.auth = true;
65
+ }
66
+ }
67
+ exports.ApiUserFindById = ApiUserFindById;
68
+ class ApiUserUpdate extends moyan_api_1.ApiCall {
69
+ constructor() {
70
+ super(...arguments);
71
+ this.path = '/api/users/{id}';
72
+ this.method = 'PUT';
73
+ this.auth = true;
74
+ }
75
+ }
76
+ exports.ApiUserUpdate = ApiUserUpdate;
77
+ class ApiUserDelete extends moyan_api_1.ApiCall {
78
+ constructor() {
79
+ super(...arguments);
80
+ this.path = '/api/users/{id}';
81
+ this.method = 'DELETE';
82
+ this.auth = true;
83
+ }
84
+ }
85
+ exports.ApiUserDelete = ApiUserDelete;
86
+ class ApiUserUpdateStatus extends moyan_api_1.ApiCall {
87
+ constructor() {
88
+ super(...arguments);
89
+ this.path = '/api/users/{id}/status';
90
+ this.method = 'PUT';
91
+ this.auth = true;
92
+ }
93
+ }
94
+ exports.ApiUserUpdateStatus = ApiUserUpdateStatus;
95
+ class ApiUserResetPassword extends moyan_api_1.ApiCall {
96
+ constructor() {
97
+ super(...arguments);
98
+ this.path = '/api/users/{id}/reset-password';
99
+ this.method = 'POST';
100
+ this.auth = true;
101
+ }
102
+ }
103
+ exports.ApiUserResetPassword = ApiUserResetPassword;
104
+ class ApiRoleCreate extends moyan_api_1.ApiCall {
105
+ constructor() {
106
+ super(...arguments);
107
+ this.path = '/api/roles';
108
+ this.method = 'POST';
109
+ this.auth = true;
110
+ }
111
+ }
112
+ exports.ApiRoleCreate = ApiRoleCreate;
113
+ class ApiRoleFindAll extends moyan_api_1.ApiCall {
114
+ constructor() {
115
+ super(...arguments);
116
+ this.path = '/api/roles';
117
+ this.method = 'GET';
118
+ this.auth = true;
119
+ }
120
+ }
121
+ exports.ApiRoleFindAll = ApiRoleFindAll;
122
+ class ApiRoleFindById extends moyan_api_1.ApiCall {
123
+ constructor() {
124
+ super(...arguments);
125
+ this.path = '/api/roles/{id}';
126
+ this.method = 'GET';
127
+ this.auth = true;
128
+ }
129
+ }
130
+ exports.ApiRoleFindById = ApiRoleFindById;
131
+ class ApiRoleUpdate extends moyan_api_1.ApiCall {
132
+ constructor() {
133
+ super(...arguments);
134
+ this.path = '/api/roles/{id}';
135
+ this.method = 'PUT';
136
+ this.auth = true;
137
+ }
138
+ }
139
+ exports.ApiRoleUpdate = ApiRoleUpdate;
140
+ class ApiRoleDelete extends moyan_api_1.ApiCall {
141
+ constructor() {
142
+ super(...arguments);
143
+ this.path = '/api/roles/{id}';
144
+ this.method = 'DELETE';
145
+ this.auth = true;
146
+ }
147
+ }
148
+ exports.ApiRoleDelete = ApiRoleDelete;
149
+ class ApiRoleAssignPermissions extends moyan_api_1.ApiCall {
150
+ constructor() {
151
+ super(...arguments);
152
+ this.path = '/api/roles/{id}/permissions';
153
+ this.method = 'POST';
154
+ this.auth = true;
155
+ }
156
+ }
157
+ exports.ApiRoleAssignPermissions = ApiRoleAssignPermissions;
158
+ class ApiRoleGetRolePermissions extends moyan_api_1.ApiCall {
159
+ constructor() {
160
+ super(...arguments);
161
+ this.path = '/api/roles/{id}/permissions';
162
+ this.method = 'GET';
163
+ this.auth = true;
164
+ }
165
+ }
166
+ exports.ApiRoleGetRolePermissions = ApiRoleGetRolePermissions;
167
+ class ApiPermissionCreate extends moyan_api_1.ApiCall {
168
+ constructor() {
169
+ super(...arguments);
170
+ this.path = '/api/permissions';
171
+ this.method = 'POST';
172
+ this.auth = true;
173
+ }
174
+ }
175
+ exports.ApiPermissionCreate = ApiPermissionCreate;
176
+ class ApiPermissionFindAll extends moyan_api_1.ApiCall {
177
+ constructor() {
178
+ super(...arguments);
179
+ this.path = '/api/permissions';
180
+ this.method = 'GET';
181
+ this.auth = true;
182
+ }
183
+ }
184
+ exports.ApiPermissionFindAll = ApiPermissionFindAll;
185
+ class ApiPermissionFindAllTree extends moyan_api_1.ApiCall {
186
+ constructor() {
187
+ super(...arguments);
188
+ this.path = '/api/permissions/tree/all';
189
+ this.method = 'GET';
190
+ this.auth = true;
191
+ }
192
+ }
193
+ exports.ApiPermissionFindAllTree = ApiPermissionFindAllTree;
194
+ class ApiPermissionGetPermissionTree extends moyan_api_1.ApiCall {
195
+ constructor() {
196
+ super(...arguments);
197
+ this.path = '/api/permissions/tree';
198
+ this.method = 'GET';
199
+ this.auth = true;
200
+ }
201
+ }
202
+ exports.ApiPermissionGetPermissionTree = ApiPermissionGetPermissionTree;
203
+ class ApiPermissionFindById extends moyan_api_1.ApiCall {
204
+ constructor() {
205
+ super(...arguments);
206
+ this.path = '/api/permissions/{id}';
207
+ this.method = 'GET';
208
+ this.auth = true;
209
+ }
210
+ }
211
+ exports.ApiPermissionFindById = ApiPermissionFindById;
212
+ class ApiPermissionUpdate extends moyan_api_1.ApiCall {
213
+ constructor() {
214
+ super(...arguments);
215
+ this.path = '/api/permissions/{id}';
216
+ this.method = 'PUT';
217
+ this.auth = true;
218
+ }
219
+ }
220
+ exports.ApiPermissionUpdate = ApiPermissionUpdate;
221
+ class ApiPermissionDelete extends moyan_api_1.ApiCall {
222
+ constructor() {
223
+ super(...arguments);
224
+ this.path = '/api/permissions/{id}';
225
+ this.method = 'DELETE';
226
+ this.auth = true;
227
+ }
228
+ }
229
+ exports.ApiPermissionDelete = ApiPermissionDelete;
230
+ class ApiPermissionBatchCreate extends moyan_api_1.ApiCall {
231
+ constructor() {
232
+ super(...arguments);
233
+ this.path = '/api/permissions/batch';
234
+ this.method = 'POST';
235
+ this.auth = true;
236
+ }
237
+ }
238
+ exports.ApiPermissionBatchCreate = ApiPermissionBatchCreate;
239
+ class ApiAppTypeCreate extends moyan_api_1.ApiCall {
240
+ constructor() {
241
+ super(...arguments);
242
+ this.path = '/api/app-types';
243
+ this.method = 'POST';
244
+ this.auth = true;
245
+ }
246
+ }
247
+ exports.ApiAppTypeCreate = ApiAppTypeCreate;
248
+ class ApiAppTypeFindAll extends moyan_api_1.ApiCall {
249
+ constructor() {
250
+ super(...arguments);
251
+ this.path = '/api/app-types';
252
+ this.method = 'GET';
253
+ this.auth = true;
254
+ }
255
+ }
256
+ exports.ApiAppTypeFindAll = ApiAppTypeFindAll;
257
+ class ApiAppTypeFindAllList extends moyan_api_1.ApiCall {
258
+ constructor() {
259
+ super(...arguments);
260
+ this.path = '/api/app-types/all';
261
+ this.method = 'GET';
262
+ this.auth = true;
263
+ }
264
+ }
265
+ exports.ApiAppTypeFindAllList = ApiAppTypeFindAllList;
266
+ class ApiAppTypeFindById extends moyan_api_1.ApiCall {
267
+ constructor() {
268
+ super(...arguments);
269
+ this.path = '/api/app-types/{id}';
270
+ this.method = 'GET';
271
+ this.auth = true;
272
+ }
273
+ }
274
+ exports.ApiAppTypeFindById = ApiAppTypeFindById;
275
+ class ApiAppTypeUpdate extends moyan_api_1.ApiCall {
276
+ constructor() {
277
+ super(...arguments);
278
+ this.path = '/api/app-types/{id}';
279
+ this.method = 'PUT';
280
+ this.auth = true;
281
+ }
282
+ }
283
+ exports.ApiAppTypeUpdate = ApiAppTypeUpdate;
284
+ class ApiAppTypeDelete extends moyan_api_1.ApiCall {
285
+ constructor() {
286
+ super(...arguments);
287
+ this.path = '/api/app-types/{id}';
288
+ this.method = 'DELETE';
289
+ this.auth = true;
290
+ }
291
+ }
292
+ exports.ApiAppTypeDelete = ApiAppTypeDelete;
293
+ class ApiAppTypeUpdateStatus extends moyan_api_1.ApiCall {
294
+ constructor() {
295
+ super(...arguments);
296
+ this.path = '/api/app-types/{id}/status';
297
+ this.method = 'PUT';
298
+ this.auth = true;
299
+ }
300
+ }
301
+ exports.ApiAppTypeUpdateStatus = ApiAppTypeUpdateStatus;
302
+ class ApiAppCreate extends moyan_api_1.ApiCall {
303
+ constructor() {
304
+ super(...arguments);
305
+ this.path = '/api/apps';
306
+ this.method = 'POST';
307
+ this.auth = true;
308
+ }
309
+ }
310
+ exports.ApiAppCreate = ApiAppCreate;
311
+ class ApiAppFindAll extends moyan_api_1.ApiCall {
312
+ constructor() {
313
+ super(...arguments);
314
+ this.path = '/api/apps';
315
+ this.method = 'GET';
316
+ this.auth = true;
317
+ }
318
+ }
319
+ exports.ApiAppFindAll = ApiAppFindAll;
320
+ class ApiAppFindById extends moyan_api_1.ApiCall {
321
+ constructor() {
322
+ super(...arguments);
323
+ this.path = '/api/apps/{id}';
324
+ this.method = 'GET';
325
+ this.auth = true;
326
+ }
327
+ }
328
+ exports.ApiAppFindById = ApiAppFindById;
329
+ class ApiAppUpdate extends moyan_api_1.ApiCall {
330
+ constructor() {
331
+ super(...arguments);
332
+ this.path = '/api/apps/{id}';
333
+ this.method = 'PUT';
334
+ this.auth = true;
335
+ }
336
+ }
337
+ exports.ApiAppUpdate = ApiAppUpdate;
338
+ class ApiAppDelete extends moyan_api_1.ApiCall {
339
+ constructor() {
340
+ super(...arguments);
341
+ this.path = '/api/apps/{id}';
342
+ this.method = 'DELETE';
343
+ this.auth = true;
344
+ }
345
+ }
346
+ exports.ApiAppDelete = ApiAppDelete;
347
+ class ApiAppChangeOwner extends moyan_api_1.ApiCall {
348
+ constructor() {
349
+ super(...arguments);
350
+ this.path = '/api/apps/{id}/owner';
351
+ this.method = 'PUT';
352
+ this.auth = true;
353
+ }
354
+ }
355
+ exports.ApiAppChangeOwner = ApiAppChangeOwner;
356
+ class ApiAppUpdateStatus extends moyan_api_1.ApiCall {
357
+ constructor() {
358
+ super(...arguments);
359
+ this.path = '/api/apps/{id}/status';
360
+ this.method = 'PUT';
361
+ this.auth = true;
362
+ }
363
+ }
364
+ exports.ApiAppUpdateStatus = ApiAppUpdateStatus;
365
+ class ApiMemberAddMember extends moyan_api_1.ApiCall {
366
+ constructor() {
367
+ super(...arguments);
368
+ this.path = '/api/apps/{appId}/members';
369
+ this.method = 'POST';
370
+ this.auth = true;
371
+ }
372
+ }
373
+ exports.ApiMemberAddMember = ApiMemberAddMember;
374
+ class ApiMemberGetMembers extends moyan_api_1.ApiCall {
375
+ constructor() {
376
+ super(...arguments);
377
+ this.path = '/api/apps/{appId}/members';
378
+ this.method = 'GET';
379
+ this.auth = true;
380
+ }
381
+ }
382
+ exports.ApiMemberGetMembers = ApiMemberGetMembers;
383
+ class ApiMemberUpdateRoles extends moyan_api_1.ApiCall {
384
+ constructor() {
385
+ super(...arguments);
386
+ this.path = '/api/apps/{appId}/members/{userId}/roles';
387
+ this.method = 'PUT';
388
+ this.auth = true;
389
+ }
390
+ }
391
+ exports.ApiMemberUpdateRoles = ApiMemberUpdateRoles;
392
+ class ApiMemberRemoveMember extends moyan_api_1.ApiCall {
393
+ constructor() {
394
+ super(...arguments);
395
+ this.path = '/api/apps/{appId}/members/{userId}';
396
+ this.method = 'DELETE';
397
+ this.auth = true;
398
+ }
399
+ }
400
+ exports.ApiMemberRemoveMember = ApiMemberRemoveMember;
401
+ class ApiMemberGetAvailableRoles extends moyan_api_1.ApiCall {
402
+ constructor() {
403
+ super(...arguments);
404
+ this.path = '/api/apps/{appId}/members/available-roles';
405
+ this.method = 'GET';
406
+ this.auth = true;
407
+ }
408
+ }
409
+ exports.ApiMemberGetAvailableRoles = ApiMemberGetAvailableRoles;
410
+ class ApiAuditLogFindAll extends moyan_api_1.ApiCall {
411
+ constructor() {
412
+ super(...arguments);
413
+ this.path = '/api/audit-logs';
414
+ this.method = 'GET';
415
+ this.auth = true;
416
+ }
417
+ }
418
+ exports.ApiAuditLogFindAll = ApiAuditLogFindAll;
419
+ class ApiAuditLogFindById extends moyan_api_1.ApiCall {
420
+ constructor() {
421
+ super(...arguments);
422
+ this.path = '/api/audit-logs/{id}';
423
+ this.method = 'GET';
424
+ this.auth = true;
425
+ }
426
+ }
427
+ exports.ApiAuditLogFindById = ApiAuditLogFindById;
428
+ class ApiAuditLogFindByTargetId extends moyan_api_1.ApiCall {
429
+ constructor() {
430
+ super(...arguments);
431
+ this.path = '/api/audit-logs/target/{targetId}';
432
+ this.method = 'GET';
433
+ this.auth = true;
434
+ }
435
+ }
436
+ exports.ApiAuditLogFindByTargetId = ApiAuditLogFindByTargetId;
437
+ class ApiAuditLogFindByOperatorId extends moyan_api_1.ApiCall {
438
+ constructor() {
439
+ super(...arguments);
440
+ this.path = '/api/audit-logs/operator/{operatorId}';
441
+ this.method = 'GET';
442
+ this.auth = true;
443
+ }
444
+ }
445
+ exports.ApiAuditLogFindByOperatorId = ApiAuditLogFindByOperatorId;
446
+ class ApiAuditLogDeleteBeforeDate extends moyan_api_1.ApiCall {
447
+ constructor() {
448
+ super(...arguments);
449
+ this.path = '/api/audit-logs/before/{beforeDate}';
450
+ this.method = 'DELETE';
451
+ this.auth = true;
452
+ }
453
+ }
454
+ exports.ApiAuditLogDeleteBeforeDate = ApiAuditLogDeleteBeforeDate;
455
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../test/apis/sys/index.ts"],"names":[],"mappings":"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"}