@lumeweb/portal-sdk 0.0.2 → 0.1.0

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.
Files changed (54) hide show
  1. package/LICENSE +1 -1
  2. package/dist/cjs/account/generated/accountAPI.schemas.cjs +0 -0
  3. package/dist/cjs/account/generated/accountAPI.schemas.d.cts +239 -0
  4. package/dist/cjs/account/generated/default.cjs +676 -0
  5. package/dist/cjs/account/generated/default.cjs.map +1 -0
  6. package/dist/cjs/account/generated/default.d.cts +923 -0
  7. package/dist/cjs/account/generated/index.cjs +58 -0
  8. package/dist/cjs/account/generated/index.d.cts +3 -0
  9. package/dist/cjs/account.cjs +348 -0
  10. package/dist/cjs/account.cjs.map +1 -0
  11. package/dist/cjs/account.d.cts +200 -0
  12. package/dist/cjs/http-utils.cjs +87 -0
  13. package/dist/cjs/http-utils.cjs.map +1 -0
  14. package/dist/cjs/http-utils.d.cts +54 -0
  15. package/dist/cjs/index.cjs +75 -0
  16. package/dist/cjs/index.d.cts +8 -0
  17. package/dist/cjs/openapi.cjs +58 -0
  18. package/dist/cjs/openapi.d.cts +3 -0
  19. package/dist/cjs/query-utils.cjs +44 -0
  20. package/dist/cjs/query-utils.cjs.map +1 -0
  21. package/dist/cjs/query-utils.d.cts +65 -0
  22. package/dist/cjs/sdk.cjs +20 -0
  23. package/dist/cjs/sdk.cjs.map +1 -0
  24. package/dist/cjs/sdk.d.cts +12 -0
  25. package/dist/cjs/types.cjs +116 -0
  26. package/dist/cjs/types.cjs.map +1 -0
  27. package/dist/cjs/types.d.cts +58 -0
  28. package/dist/esm/account/generated/accountAPI.schemas.d.ts +239 -0
  29. package/dist/esm/account/generated/accountAPI.schemas.js +0 -0
  30. package/dist/esm/account/generated/default.d.ts +923 -0
  31. package/dist/esm/account/generated/default.js +620 -0
  32. package/dist/esm/account/generated/default.js.map +1 -0
  33. package/dist/esm/account/generated/index.d.ts +3 -0
  34. package/dist/esm/account/generated/index.js +3 -0
  35. package/dist/esm/account.d.ts +200 -0
  36. package/dist/esm/account.js +346 -0
  37. package/dist/esm/account.js.map +1 -0
  38. package/dist/esm/http-utils.d.ts +54 -0
  39. package/dist/esm/http-utils.js +83 -0
  40. package/dist/esm/http-utils.js.map +1 -0
  41. package/dist/esm/index.d.ts +8 -0
  42. package/dist/esm/index.js +8 -0
  43. package/dist/esm/openapi.d.ts +3 -0
  44. package/dist/esm/openapi.js +3 -0
  45. package/dist/esm/query-utils.d.ts +65 -0
  46. package/dist/esm/query-utils.js +44 -0
  47. package/dist/esm/query-utils.js.map +1 -0
  48. package/dist/esm/sdk.d.ts +12 -0
  49. package/dist/esm/sdk.js +20 -0
  50. package/dist/esm/sdk.js.map +1 -0
  51. package/dist/esm/types.d.ts +58 -0
  52. package/dist/esm/types.js +109 -0
  53. package/dist/esm/types.js.map +1 -0
  54. package/package.json +37 -14
@@ -0,0 +1,620 @@
1
+ //#region src/account/generated/default.ts
2
+ const getDeleteApiAccountUrl = () => {
3
+ return `/api/api/account`;
4
+ };
5
+ const deleteApiAccount = async (options) => {
6
+ const res = await fetch(getDeleteApiAccountUrl(), {
7
+ ...options,
8
+ method: "DELETE"
9
+ });
10
+ const body = [
11
+ 204,
12
+ 205,
13
+ 304
14
+ ].includes(res.status) ? null : await res.text();
15
+ return {
16
+ data: body ? JSON.parse(body) : {},
17
+ status: res.status,
18
+ headers: res.headers
19
+ };
20
+ };
21
+ const getGetApiAccountUrl = () => {
22
+ return `/api/api/account`;
23
+ };
24
+ const getApiAccount = async (options) => {
25
+ const res = await fetch(getGetApiAccountUrl(), {
26
+ ...options,
27
+ method: "GET"
28
+ });
29
+ const body = [
30
+ 204,
31
+ 205,
32
+ 304
33
+ ].includes(res.status) ? null : await res.text();
34
+ return {
35
+ data: body ? JSON.parse(body) : {},
36
+ status: res.status,
37
+ headers: res.headers
38
+ };
39
+ };
40
+ const getPatchApiAccountUrl = () => {
41
+ return `/api/api/account`;
42
+ };
43
+ const patchApiAccount = async (updateProfileRequest, options) => {
44
+ const res = await fetch(getPatchApiAccountUrl(), {
45
+ ...options,
46
+ method: "PATCH",
47
+ headers: {
48
+ "Content-Type": "application/json",
49
+ ...options?.headers
50
+ },
51
+ body: JSON.stringify(updateProfileRequest)
52
+ });
53
+ const body = [
54
+ 204,
55
+ 205,
56
+ 304
57
+ ].includes(res.status) ? null : await res.text();
58
+ return {
59
+ data: body ? JSON.parse(body) : {},
60
+ status: res.status,
61
+ headers: res.headers
62
+ };
63
+ };
64
+ const getGetApiAccountAvatarUrl = () => {
65
+ return `/api/api/account/avatar`;
66
+ };
67
+ const getApiAccountAvatar = async (options) => {
68
+ const res = await fetch(getGetApiAccountAvatarUrl(), {
69
+ ...options,
70
+ method: "GET"
71
+ });
72
+ const body = [
73
+ 204,
74
+ 205,
75
+ 304
76
+ ].includes(res.status) ? null : await res.text();
77
+ return {
78
+ data: body ? JSON.parse(body) : {},
79
+ status: res.status,
80
+ headers: res.headers
81
+ };
82
+ };
83
+ const getPostApiAccountAvatarUrl = () => {
84
+ return `/api/api/account/avatar`;
85
+ };
86
+ const postApiAccountAvatar = async (postApiAccountAvatarBody, options) => {
87
+ const formData = new FormData();
88
+ formData.append(`file`, postApiAccountAvatarBody.file);
89
+ const res = await fetch(getPostApiAccountAvatarUrl(), {
90
+ ...options,
91
+ method: "POST",
92
+ body: formData
93
+ });
94
+ const body = [
95
+ 204,
96
+ 205,
97
+ 304
98
+ ].includes(res.status) ? null : await res.text();
99
+ return {
100
+ data: body ? JSON.parse(body) : {},
101
+ status: res.status,
102
+ headers: res.headers
103
+ };
104
+ };
105
+ const getGetApiAccountKeysUrl = (params) => {
106
+ const normalizedParams = new URLSearchParams();
107
+ Object.entries(params || {}).forEach(([key, value]) => {
108
+ if (value !== void 0) normalizedParams.append(key, value === null ? "null" : value.toString());
109
+ });
110
+ const stringifiedParams = normalizedParams.toString();
111
+ return stringifiedParams.length > 0 ? `/api/api/account/keys?${stringifiedParams}` : `/api/api/account/keys`;
112
+ };
113
+ const getApiAccountKeys = async (params, options) => {
114
+ const res = await fetch(getGetApiAccountKeysUrl(params), {
115
+ ...options,
116
+ method: "GET"
117
+ });
118
+ const body = [
119
+ 204,
120
+ 205,
121
+ 304
122
+ ].includes(res.status) ? null : await res.text();
123
+ return {
124
+ data: body ? JSON.parse(body) : {},
125
+ status: res.status,
126
+ headers: res.headers
127
+ };
128
+ };
129
+ const getPostApiAccountKeysUrl = () => {
130
+ return `/api/api/account/keys`;
131
+ };
132
+ const postApiAccountKeys = async (aPIKeyCreateRequest, options) => {
133
+ const res = await fetch(getPostApiAccountKeysUrl(), {
134
+ ...options,
135
+ method: "POST",
136
+ headers: {
137
+ "Content-Type": "application/json",
138
+ ...options?.headers
139
+ },
140
+ body: JSON.stringify(aPIKeyCreateRequest)
141
+ });
142
+ const body = [
143
+ 204,
144
+ 205,
145
+ 304
146
+ ].includes(res.status) ? null : await res.text();
147
+ return {
148
+ data: body ? JSON.parse(body) : {},
149
+ status: res.status,
150
+ headers: res.headers
151
+ };
152
+ };
153
+ const getDeleteApiAccountKeysKeyIDUrl = (keyID) => {
154
+ return `/api/api/account/keys/${keyID}`;
155
+ };
156
+ const deleteApiAccountKeysKeyID = async (keyID, options) => {
157
+ const res = await fetch(getDeleteApiAccountKeysKeyIDUrl(keyID), {
158
+ ...options,
159
+ method: "DELETE"
160
+ });
161
+ const body = [
162
+ 204,
163
+ 205,
164
+ 304
165
+ ].includes(res.status) ? null : await res.text();
166
+ return {
167
+ data: body ? JSON.parse(body) : {},
168
+ status: res.status,
169
+ headers: res.headers
170
+ };
171
+ };
172
+ const getPostApiAccountPasswordResetConfirmUrl = () => {
173
+ return `/api/api/account/password-reset/confirm`;
174
+ };
175
+ const postApiAccountPasswordResetConfirm = async (passwordResetVerifyRequest, options) => {
176
+ const res = await fetch(getPostApiAccountPasswordResetConfirmUrl(), {
177
+ ...options,
178
+ method: "POST",
179
+ headers: {
180
+ "Content-Type": "application/json",
181
+ ...options?.headers
182
+ },
183
+ body: JSON.stringify(passwordResetVerifyRequest)
184
+ });
185
+ const body = [
186
+ 204,
187
+ 205,
188
+ 304
189
+ ].includes(res.status) ? null : await res.text();
190
+ return {
191
+ data: body ? JSON.parse(body) : {},
192
+ status: res.status,
193
+ headers: res.headers
194
+ };
195
+ };
196
+ const getPostApiAccountPasswordResetRequestUrl = () => {
197
+ return `/api/api/account/password-reset/request`;
198
+ };
199
+ const postApiAccountPasswordResetRequest = async (passwordResetRequest, options) => {
200
+ const res = await fetch(getPostApiAccountPasswordResetRequestUrl(), {
201
+ ...options,
202
+ method: "POST",
203
+ headers: {
204
+ "Content-Type": "application/json",
205
+ ...options?.headers
206
+ },
207
+ body: JSON.stringify(passwordResetRequest)
208
+ });
209
+ const body = [
210
+ 204,
211
+ 205,
212
+ 304
213
+ ].includes(res.status) ? null : await res.text();
214
+ return {
215
+ data: body ? JSON.parse(body) : {},
216
+ status: res.status,
217
+ headers: res.headers
218
+ };
219
+ };
220
+ const getGetApiAccountPermissionsUrl = () => {
221
+ return `/api/api/account/permissions`;
222
+ };
223
+ const getApiAccountPermissions = async (options) => {
224
+ const res = await fetch(getGetApiAccountPermissionsUrl(), {
225
+ ...options,
226
+ method: "GET"
227
+ });
228
+ const body = [
229
+ 204,
230
+ 205,
231
+ 304
232
+ ].includes(res.status) ? null : await res.text();
233
+ return {
234
+ data: body ? JSON.parse(body) : {},
235
+ status: res.status,
236
+ headers: res.headers
237
+ };
238
+ };
239
+ const getPostApiAccountUpdateEmailUrl = () => {
240
+ return `/api/api/account/update-email`;
241
+ };
242
+ const postApiAccountUpdateEmail = async (updateEmailRequest, options) => {
243
+ const res = await fetch(getPostApiAccountUpdateEmailUrl(), {
244
+ ...options,
245
+ method: "POST",
246
+ headers: {
247
+ "Content-Type": "application/json",
248
+ ...options?.headers
249
+ },
250
+ body: JSON.stringify(updateEmailRequest)
251
+ });
252
+ const body = [
253
+ 204,
254
+ 205,
255
+ 304
256
+ ].includes(res.status) ? null : await res.text();
257
+ return {
258
+ data: body ? JSON.parse(body) : {},
259
+ status: res.status,
260
+ headers: res.headers
261
+ };
262
+ };
263
+ const getPostApiAccountUpdatePasswordUrl = () => {
264
+ return `/api/api/account/update-password`;
265
+ };
266
+ const postApiAccountUpdatePassword = async (updatePasswordRequest, options) => {
267
+ const res = await fetch(getPostApiAccountUpdatePasswordUrl(), {
268
+ ...options,
269
+ method: "POST",
270
+ headers: {
271
+ "Content-Type": "application/json",
272
+ ...options?.headers
273
+ },
274
+ body: JSON.stringify(updatePasswordRequest)
275
+ });
276
+ const body = [
277
+ 204,
278
+ 205,
279
+ 304
280
+ ].includes(res.status) ? null : await res.text();
281
+ return {
282
+ data: body ? JSON.parse(body) : {},
283
+ status: res.status,
284
+ headers: res.headers
285
+ };
286
+ };
287
+ const getPostApiAccountVerifyEmailUrl = (params) => {
288
+ const normalizedParams = new URLSearchParams();
289
+ Object.entries(params || {}).forEach(([key, value]) => {
290
+ if (value !== void 0) normalizedParams.append(key, value === null ? "null" : value.toString());
291
+ });
292
+ const stringifiedParams = normalizedParams.toString();
293
+ return stringifiedParams.length > 0 ? `/api/api/account/verify-email?${stringifiedParams}` : `/api/api/account/verify-email`;
294
+ };
295
+ const postApiAccountVerifyEmail = async (verifyEmailRequest, params, options) => {
296
+ const res = await fetch(getPostApiAccountVerifyEmailUrl(params), {
297
+ ...options,
298
+ method: "POST",
299
+ headers: {
300
+ "Content-Type": "application/json",
301
+ ...options?.headers
302
+ },
303
+ body: JSON.stringify(verifyEmailRequest)
304
+ });
305
+ const body = [
306
+ 204,
307
+ 205,
308
+ 304
309
+ ].includes(res.status) ? null : await res.text();
310
+ return {
311
+ data: body ? JSON.parse(body) : {},
312
+ status: res.status,
313
+ headers: res.headers
314
+ };
315
+ };
316
+ const getPostApiAccountVerifyEmailResendUrl = () => {
317
+ return `/api/api/account/verify-email/resend`;
318
+ };
319
+ const postApiAccountVerifyEmailResend = async (resendVerifyEmailRequest, options) => {
320
+ const res = await fetch(getPostApiAccountVerifyEmailResendUrl(), {
321
+ ...options,
322
+ method: "POST",
323
+ headers: {
324
+ "Content-Type": "application/json",
325
+ ...options?.headers
326
+ },
327
+ body: JSON.stringify(resendVerifyEmailRequest)
328
+ });
329
+ const body = [
330
+ 204,
331
+ 205,
332
+ 304
333
+ ].includes(res.status) ? null : await res.text();
334
+ return {
335
+ data: body ? JSON.parse(body) : {},
336
+ status: res.status,
337
+ headers: res.headers
338
+ };
339
+ };
340
+ const getPostApiAuthKeyUrl = () => {
341
+ return `/api/api/auth/key`;
342
+ };
343
+ const postApiAuthKey = async (options) => {
344
+ const res = await fetch(getPostApiAuthKeyUrl(), {
345
+ ...options,
346
+ method: "POST"
347
+ });
348
+ const body = [
349
+ 204,
350
+ 205,
351
+ 304
352
+ ].includes(res.status) ? null : await res.text();
353
+ return {
354
+ data: body ? JSON.parse(body) : {},
355
+ status: res.status,
356
+ headers: res.headers
357
+ };
358
+ };
359
+ const getPostApiAuthLoginUrl = () => {
360
+ return `/api/api/auth/login`;
361
+ };
362
+ const postApiAuthLogin = async (loginRequest, options) => {
363
+ const res = await fetch(getPostApiAuthLoginUrl(), {
364
+ ...options,
365
+ method: "POST",
366
+ headers: {
367
+ "Content-Type": "application/json",
368
+ ...options?.headers
369
+ },
370
+ body: JSON.stringify(loginRequest)
371
+ });
372
+ const body = [
373
+ 204,
374
+ 205,
375
+ 304
376
+ ].includes(res.status) ? null : await res.text();
377
+ return {
378
+ data: body ? JSON.parse(body) : {},
379
+ status: res.status,
380
+ headers: res.headers
381
+ };
382
+ };
383
+ const getPostApiAuthLogoutUrl = () => {
384
+ return `/api/api/auth/logout`;
385
+ };
386
+ const postApiAuthLogout = async (options) => {
387
+ const res = await fetch(getPostApiAuthLogoutUrl(), {
388
+ ...options,
389
+ method: "POST"
390
+ });
391
+ const body = [
392
+ 204,
393
+ 205,
394
+ 304
395
+ ].includes(res.status) ? null : await res.text();
396
+ return {
397
+ data: body ? JSON.parse(body) : {},
398
+ status: res.status,
399
+ headers: res.headers
400
+ };
401
+ };
402
+ const getPostApiAuthOtpDisableUrl = () => {
403
+ return `/api/api/auth/otp/disable`;
404
+ };
405
+ const postApiAuthOtpDisable = async (oTPDisableRequest, options) => {
406
+ const res = await fetch(getPostApiAuthOtpDisableUrl(), {
407
+ ...options,
408
+ method: "POST",
409
+ headers: {
410
+ "Content-Type": "application/json",
411
+ ...options?.headers
412
+ },
413
+ body: JSON.stringify(oTPDisableRequest)
414
+ });
415
+ const body = [
416
+ 204,
417
+ 205,
418
+ 304
419
+ ].includes(res.status) ? null : await res.text();
420
+ return {
421
+ data: body ? JSON.parse(body) : {},
422
+ status: res.status,
423
+ headers: res.headers
424
+ };
425
+ };
426
+ const getPostApiAuthOtpGenerateUrl = () => {
427
+ return `/api/api/auth/otp/generate`;
428
+ };
429
+ const postApiAuthOtpGenerate = async (options) => {
430
+ const res = await fetch(getPostApiAuthOtpGenerateUrl(), {
431
+ ...options,
432
+ method: "POST"
433
+ });
434
+ const body = [
435
+ 204,
436
+ 205,
437
+ 304
438
+ ].includes(res.status) ? null : await res.text();
439
+ return {
440
+ data: body ? JSON.parse(body) : {},
441
+ status: res.status,
442
+ headers: res.headers
443
+ };
444
+ };
445
+ const getPostApiAuthOtpValidateUrl = () => {
446
+ return `/api/api/auth/otp/validate`;
447
+ };
448
+ const postApiAuthOtpValidate = async (oTPValidateRequest, options) => {
449
+ const res = await fetch(getPostApiAuthOtpValidateUrl(), {
450
+ ...options,
451
+ method: "POST",
452
+ headers: {
453
+ "Content-Type": "application/json",
454
+ ...options?.headers
455
+ },
456
+ body: JSON.stringify(oTPValidateRequest)
457
+ });
458
+ const body = [
459
+ 204,
460
+ 205,
461
+ 304
462
+ ].includes(res.status) ? null : await res.text();
463
+ return {
464
+ data: body ? JSON.parse(body) : {},
465
+ status: res.status,
466
+ headers: res.headers
467
+ };
468
+ };
469
+ const getPostApiAuthOtpVerifyUrl = () => {
470
+ return `/api/api/auth/otp/verify`;
471
+ };
472
+ const postApiAuthOtpVerify = async (oTPVerifyRequest, options) => {
473
+ const res = await fetch(getPostApiAuthOtpVerifyUrl(), {
474
+ ...options,
475
+ method: "POST",
476
+ headers: {
477
+ "Content-Type": "application/json",
478
+ ...options?.headers
479
+ },
480
+ body: JSON.stringify(oTPVerifyRequest)
481
+ });
482
+ const body = [
483
+ 204,
484
+ 205,
485
+ 304
486
+ ].includes(res.status) ? null : await res.text();
487
+ return {
488
+ data: body ? JSON.parse(body) : {},
489
+ status: res.status,
490
+ headers: res.headers
491
+ };
492
+ };
493
+ const getPostApiAuthPingUrl = () => {
494
+ return `/api/api/auth/ping`;
495
+ };
496
+ const postApiAuthPing = async (options) => {
497
+ const res = await fetch(getPostApiAuthPingUrl(), {
498
+ ...options,
499
+ method: "POST"
500
+ });
501
+ const body = [
502
+ 204,
503
+ 205,
504
+ 304
505
+ ].includes(res.status) ? null : await res.text();
506
+ return {
507
+ data: body ? JSON.parse(body) : {},
508
+ status: res.status,
509
+ headers: res.headers
510
+ };
511
+ };
512
+ const getPostApiAuthRegisterUrl = () => {
513
+ return `/api/api/auth/register`;
514
+ };
515
+ const postApiAuthRegister = async (registerRequest, options) => {
516
+ const res = await fetch(getPostApiAuthRegisterUrl(), {
517
+ ...options,
518
+ method: "POST",
519
+ headers: {
520
+ "Content-Type": "application/json",
521
+ ...options?.headers
522
+ },
523
+ body: JSON.stringify(registerRequest)
524
+ });
525
+ const body = [
526
+ 204,
527
+ 205,
528
+ 304
529
+ ].includes(res.status) ? null : await res.text();
530
+ return {
531
+ data: body ? JSON.parse(body) : {},
532
+ status: res.status,
533
+ headers: res.headers
534
+ };
535
+ };
536
+ const getGetApiOperationsUrl = (params) => {
537
+ const normalizedParams = new URLSearchParams();
538
+ Object.entries(params || {}).forEach(([key, value]) => {
539
+ if (value !== void 0) normalizedParams.append(key, value === null ? "null" : value.toString());
540
+ });
541
+ const stringifiedParams = normalizedParams.toString();
542
+ return stringifiedParams.length > 0 ? `/api/api/operations?${stringifiedParams}` : `/api/api/operations`;
543
+ };
544
+ const getApiOperations = async (params, options) => {
545
+ const res = await fetch(getGetApiOperationsUrl(params), {
546
+ ...options,
547
+ method: "GET"
548
+ });
549
+ const body = [
550
+ 204,
551
+ 205,
552
+ 304
553
+ ].includes(res.status) ? null : await res.text();
554
+ return {
555
+ data: body ? JSON.parse(body) : {},
556
+ status: res.status,
557
+ headers: res.headers
558
+ };
559
+ };
560
+ const getGetApiOperationsIdUrl = (id) => {
561
+ return `/api/api/operations/${id}`;
562
+ };
563
+ const getApiOperationsId = async (id, options) => {
564
+ const res = await fetch(getGetApiOperationsIdUrl(id), {
565
+ ...options,
566
+ method: "GET"
567
+ });
568
+ const body = [
569
+ 204,
570
+ 205,
571
+ 304
572
+ ].includes(res.status) ? null : await res.text();
573
+ return {
574
+ data: body ? JSON.parse(body) : {},
575
+ status: res.status,
576
+ headers: res.headers
577
+ };
578
+ };
579
+ const getGetApiOperationsFiltersUrl = () => {
580
+ return `/api/api/operations/filters`;
581
+ };
582
+ const getApiOperationsFilters = async (options) => {
583
+ const res = await fetch(getGetApiOperationsFiltersUrl(), {
584
+ ...options,
585
+ method: "GET"
586
+ });
587
+ const body = [
588
+ 204,
589
+ 205,
590
+ 304
591
+ ].includes(res.status) ? null : await res.text();
592
+ return {
593
+ data: body ? JSON.parse(body) : {},
594
+ status: res.status,
595
+ headers: res.headers
596
+ };
597
+ };
598
+ const getGetApiUploadLimitUrl = () => {
599
+ return `/api/api/upload-limit`;
600
+ };
601
+ const getApiUploadLimit = async (options) => {
602
+ const res = await fetch(getGetApiUploadLimitUrl(), {
603
+ ...options,
604
+ method: "GET"
605
+ });
606
+ const body = [
607
+ 204,
608
+ 205,
609
+ 304
610
+ ].includes(res.status) ? null : await res.text();
611
+ return {
612
+ data: body ? JSON.parse(body) : {},
613
+ status: res.status,
614
+ headers: res.headers
615
+ };
616
+ };
617
+
618
+ //#endregion
619
+ export { deleteApiAccount, deleteApiAccountKeysKeyID, getApiAccount, getApiAccountAvatar, getApiAccountKeys, getApiAccountPermissions, getApiOperations, getApiOperationsFilters, getApiOperationsId, getApiUploadLimit, getDeleteApiAccountKeysKeyIDUrl, getDeleteApiAccountUrl, getGetApiAccountAvatarUrl, getGetApiAccountKeysUrl, getGetApiAccountPermissionsUrl, getGetApiAccountUrl, getGetApiOperationsFiltersUrl, getGetApiOperationsIdUrl, getGetApiOperationsUrl, getGetApiUploadLimitUrl, getPatchApiAccountUrl, getPostApiAccountAvatarUrl, getPostApiAccountKeysUrl, getPostApiAccountPasswordResetConfirmUrl, getPostApiAccountPasswordResetRequestUrl, getPostApiAccountUpdateEmailUrl, getPostApiAccountUpdatePasswordUrl, getPostApiAccountVerifyEmailResendUrl, getPostApiAccountVerifyEmailUrl, getPostApiAuthKeyUrl, getPostApiAuthLoginUrl, getPostApiAuthLogoutUrl, getPostApiAuthOtpDisableUrl, getPostApiAuthOtpGenerateUrl, getPostApiAuthOtpValidateUrl, getPostApiAuthOtpVerifyUrl, getPostApiAuthPingUrl, getPostApiAuthRegisterUrl, patchApiAccount, postApiAccountAvatar, postApiAccountKeys, postApiAccountPasswordResetConfirm, postApiAccountPasswordResetRequest, postApiAccountUpdateEmail, postApiAccountUpdatePassword, postApiAccountVerifyEmail, postApiAccountVerifyEmailResend, postApiAuthKey, postApiAuthLogin, postApiAuthLogout, postApiAuthOtpDisable, postApiAuthOtpGenerate, postApiAuthOtpValidate, postApiAuthOtpVerify, postApiAuthPing, postApiAuthRegister };
620
+ //# sourceMappingURL=default.js.map