@djangocfg/api 1.2.0 → 1.2.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.
- package/dist/index.cjs +16 -356
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +181 -650
- package/dist/index.d.ts +181 -650
- package/dist/index.mjs +16 -356
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/client.ts +5 -8
- package/src/cfg/generated/schema.ts +0 -336
- package/src/cfg/services_deprecated/README.md +53 -0
- package/src/index.ts +2 -2
- /package/src/cfg/{services → services_deprecated}/auth/AuthService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/auth/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/leads/LeadsService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/leads/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/newsletter/BulkEmailService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/newsletter/CampaignsService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/newsletter/NewsletterService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/newsletter/NewslettersListService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/newsletter/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/payments/ApiKeysService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/payments/DashboardService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/payments/PaymentsService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/payments/SubscriptionsService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/payments/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/support/SupportService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/support/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/tasks/TasksService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/tasks/index.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/webhooks/WebhooksService.ts +0 -0
- /package/src/cfg/{services → services_deprecated}/webhooks/index.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -3923,7 +3923,9 @@ declare class APIClient {
|
|
|
3923
3923
|
retryConfig?: RetryConfig;
|
|
3924
3924
|
});
|
|
3925
3925
|
/**
|
|
3926
|
-
* Get CSRF token from cookies.
|
|
3926
|
+
* Get CSRF token from cookies (for SessionAuthentication).
|
|
3927
|
+
*
|
|
3928
|
+
* Returns null if cookie doesn't exist (JWT-only auth).
|
|
3927
3929
|
*/
|
|
3928
3930
|
getCsrfToken(): string | null;
|
|
3929
3931
|
/**
|
|
@@ -8783,13 +8785,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8783
8785
|
};
|
|
8784
8786
|
security: ({
|
|
8785
8787
|
jwtAuth: any[];
|
|
8786
|
-
cookieAuth?: undefined;
|
|
8787
|
-
} | {
|
|
8788
|
-
cookieAuth: any[];
|
|
8789
|
-
jwtAuth?: undefined;
|
|
8790
8788
|
} | {
|
|
8791
8789
|
jwtAuth?: undefined;
|
|
8792
|
-
cookieAuth?: undefined;
|
|
8793
8790
|
})[];
|
|
8794
8791
|
tags: string[];
|
|
8795
8792
|
"x-async-capable": boolean;
|
|
@@ -8853,13 +8850,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8853
8850
|
};
|
|
8854
8851
|
security: ({
|
|
8855
8852
|
jwtAuth: any[];
|
|
8856
|
-
cookieAuth?: undefined;
|
|
8857
|
-
} | {
|
|
8858
|
-
cookieAuth: any[];
|
|
8859
|
-
jwtAuth?: undefined;
|
|
8860
8853
|
} | {
|
|
8861
8854
|
jwtAuth?: undefined;
|
|
8862
|
-
cookieAuth?: undefined;
|
|
8863
8855
|
})[];
|
|
8864
8856
|
tags: string[];
|
|
8865
8857
|
"x-async-capable": boolean;
|
|
@@ -8891,13 +8883,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8891
8883
|
description: string;
|
|
8892
8884
|
};
|
|
8893
8885
|
};
|
|
8894
|
-
security:
|
|
8886
|
+
security: {
|
|
8895
8887
|
jwtAuth: any[];
|
|
8896
|
-
|
|
8897
|
-
} | {
|
|
8898
|
-
cookieAuth: any[];
|
|
8899
|
-
jwtAuth?: undefined;
|
|
8900
|
-
})[];
|
|
8888
|
+
}[];
|
|
8901
8889
|
summary: string;
|
|
8902
8890
|
tags: string[];
|
|
8903
8891
|
"x-async-capable": boolean;
|
|
@@ -8956,13 +8944,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
8956
8944
|
description: string;
|
|
8957
8945
|
};
|
|
8958
8946
|
};
|
|
8959
|
-
security:
|
|
8947
|
+
security: {
|
|
8960
8948
|
jwtAuth: any[];
|
|
8961
|
-
|
|
8962
|
-
} | {
|
|
8963
|
-
cookieAuth: any[];
|
|
8964
|
-
jwtAuth?: undefined;
|
|
8965
|
-
})[];
|
|
8949
|
+
}[];
|
|
8966
8950
|
summary: string;
|
|
8967
8951
|
tags: string[];
|
|
8968
8952
|
"x-async-capable": boolean;
|
|
@@ -9035,13 +9019,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9035
9019
|
description: string;
|
|
9036
9020
|
};
|
|
9037
9021
|
};
|
|
9038
|
-
security:
|
|
9022
|
+
security: {
|
|
9039
9023
|
jwtAuth: any[];
|
|
9040
|
-
|
|
9041
|
-
} | {
|
|
9042
|
-
cookieAuth: any[];
|
|
9043
|
-
jwtAuth?: undefined;
|
|
9044
|
-
})[];
|
|
9024
|
+
}[];
|
|
9045
9025
|
summary: string;
|
|
9046
9026
|
tags: string[];
|
|
9047
9027
|
"x-async-capable": boolean;
|
|
@@ -9112,13 +9092,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9112
9092
|
description: string;
|
|
9113
9093
|
};
|
|
9114
9094
|
};
|
|
9115
|
-
security:
|
|
9095
|
+
security: {
|
|
9116
9096
|
jwtAuth: any[];
|
|
9117
|
-
|
|
9118
|
-
} | {
|
|
9119
|
-
cookieAuth: any[];
|
|
9120
|
-
jwtAuth?: undefined;
|
|
9121
|
-
})[];
|
|
9097
|
+
}[];
|
|
9122
9098
|
summary: string;
|
|
9123
9099
|
tags: string[];
|
|
9124
9100
|
"x-async-capable": boolean;
|
|
@@ -9191,13 +9167,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9191
9167
|
description: string;
|
|
9192
9168
|
};
|
|
9193
9169
|
};
|
|
9194
|
-
security:
|
|
9170
|
+
security: {
|
|
9195
9171
|
jwtAuth: any[];
|
|
9196
|
-
|
|
9197
|
-
} | {
|
|
9198
|
-
cookieAuth: any[];
|
|
9199
|
-
jwtAuth?: undefined;
|
|
9200
|
-
})[];
|
|
9172
|
+
}[];
|
|
9201
9173
|
summary: string;
|
|
9202
9174
|
tags: string[];
|
|
9203
9175
|
"x-async-capable": boolean;
|
|
@@ -9268,13 +9240,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9268
9240
|
description: string;
|
|
9269
9241
|
};
|
|
9270
9242
|
};
|
|
9271
|
-
security:
|
|
9243
|
+
security: {
|
|
9272
9244
|
jwtAuth: any[];
|
|
9273
|
-
|
|
9274
|
-
} | {
|
|
9275
|
-
cookieAuth: any[];
|
|
9276
|
-
jwtAuth?: undefined;
|
|
9277
|
-
})[];
|
|
9245
|
+
}[];
|
|
9278
9246
|
summary: string;
|
|
9279
9247
|
tags: string[];
|
|
9280
9248
|
"x-async-capable": boolean;
|
|
@@ -9338,13 +9306,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9338
9306
|
};
|
|
9339
9307
|
security: ({
|
|
9340
9308
|
jwtAuth: any[];
|
|
9341
|
-
cookieAuth?: undefined;
|
|
9342
|
-
} | {
|
|
9343
|
-
cookieAuth: any[];
|
|
9344
|
-
jwtAuth?: undefined;
|
|
9345
9309
|
} | {
|
|
9346
9310
|
jwtAuth?: undefined;
|
|
9347
|
-
cookieAuth?: undefined;
|
|
9348
9311
|
})[];
|
|
9349
9312
|
tags: string[];
|
|
9350
9313
|
"x-async-capable": boolean;
|
|
@@ -9368,13 +9331,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9368
9331
|
};
|
|
9369
9332
|
security: ({
|
|
9370
9333
|
jwtAuth: any[];
|
|
9371
|
-
cookieAuth?: undefined;
|
|
9372
|
-
} | {
|
|
9373
|
-
cookieAuth: any[];
|
|
9374
|
-
jwtAuth?: undefined;
|
|
9375
9334
|
} | {
|
|
9376
9335
|
jwtAuth?: undefined;
|
|
9377
|
-
cookieAuth?: undefined;
|
|
9378
9336
|
})[];
|
|
9379
9337
|
tags: string[];
|
|
9380
9338
|
"x-async-capable": boolean;
|
|
@@ -9398,13 +9356,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9398
9356
|
};
|
|
9399
9357
|
security: ({
|
|
9400
9358
|
jwtAuth: any[];
|
|
9401
|
-
cookieAuth?: undefined;
|
|
9402
|
-
} | {
|
|
9403
|
-
cookieAuth: any[];
|
|
9404
|
-
jwtAuth?: undefined;
|
|
9405
9359
|
} | {
|
|
9406
9360
|
jwtAuth?: undefined;
|
|
9407
|
-
cookieAuth?: undefined;
|
|
9408
9361
|
})[];
|
|
9409
9362
|
tags: string[];
|
|
9410
9363
|
"x-async-capable": boolean;
|
|
@@ -9435,13 +9388,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9435
9388
|
description: string;
|
|
9436
9389
|
};
|
|
9437
9390
|
};
|
|
9438
|
-
security:
|
|
9391
|
+
security: {
|
|
9439
9392
|
jwtAuth: any[];
|
|
9440
|
-
|
|
9441
|
-
} | {
|
|
9442
|
-
cookieAuth: any[];
|
|
9443
|
-
jwtAuth?: undefined;
|
|
9444
|
-
})[];
|
|
9393
|
+
}[];
|
|
9445
9394
|
tags: string[];
|
|
9446
9395
|
"x-async-capable": boolean;
|
|
9447
9396
|
};
|
|
@@ -9480,13 +9429,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9480
9429
|
description: string;
|
|
9481
9430
|
};
|
|
9482
9431
|
};
|
|
9483
|
-
security:
|
|
9432
|
+
security: {
|
|
9484
9433
|
jwtAuth: any[];
|
|
9485
|
-
|
|
9486
|
-
} | {
|
|
9487
|
-
cookieAuth: any[];
|
|
9488
|
-
jwtAuth?: undefined;
|
|
9489
|
-
})[];
|
|
9434
|
+
}[];
|
|
9490
9435
|
tags: string[];
|
|
9491
9436
|
"x-async-capable": boolean;
|
|
9492
9437
|
};
|
|
@@ -9547,13 +9492,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9547
9492
|
description: string;
|
|
9548
9493
|
};
|
|
9549
9494
|
};
|
|
9550
|
-
security:
|
|
9495
|
+
security: {
|
|
9551
9496
|
jwtAuth: any[];
|
|
9552
|
-
|
|
9553
|
-
} | {
|
|
9554
|
-
cookieAuth: any[];
|
|
9555
|
-
jwtAuth?: undefined;
|
|
9556
|
-
})[];
|
|
9497
|
+
}[];
|
|
9557
9498
|
summary: string;
|
|
9558
9499
|
tags: string[];
|
|
9559
9500
|
"x-async-capable": boolean;
|
|
@@ -9578,13 +9519,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9578
9519
|
description: string;
|
|
9579
9520
|
};
|
|
9580
9521
|
};
|
|
9581
|
-
security:
|
|
9522
|
+
security: {
|
|
9582
9523
|
jwtAuth: any[];
|
|
9583
|
-
|
|
9584
|
-
} | {
|
|
9585
|
-
cookieAuth: any[];
|
|
9586
|
-
jwtAuth?: undefined;
|
|
9587
|
-
})[];
|
|
9524
|
+
}[];
|
|
9588
9525
|
tags: string[];
|
|
9589
9526
|
"x-async-capable": boolean;
|
|
9590
9527
|
};
|
|
@@ -9613,13 +9550,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9613
9550
|
description: string;
|
|
9614
9551
|
};
|
|
9615
9552
|
};
|
|
9616
|
-
security:
|
|
9553
|
+
security: {
|
|
9617
9554
|
jwtAuth: any[];
|
|
9618
|
-
|
|
9619
|
-
} | {
|
|
9620
|
-
cookieAuth: any[];
|
|
9621
|
-
jwtAuth?: undefined;
|
|
9622
|
-
})[];
|
|
9555
|
+
}[];
|
|
9623
9556
|
tags: string[];
|
|
9624
9557
|
"x-async-capable": boolean;
|
|
9625
9558
|
};
|
|
@@ -9667,13 +9600,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9667
9600
|
description: string;
|
|
9668
9601
|
};
|
|
9669
9602
|
};
|
|
9670
|
-
security:
|
|
9603
|
+
security: {
|
|
9671
9604
|
jwtAuth: any[];
|
|
9672
|
-
|
|
9673
|
-
} | {
|
|
9674
|
-
cookieAuth: any[];
|
|
9675
|
-
jwtAuth?: undefined;
|
|
9676
|
-
})[];
|
|
9605
|
+
}[];
|
|
9677
9606
|
tags: string[];
|
|
9678
9607
|
"x-async-capable": boolean;
|
|
9679
9608
|
};
|
|
@@ -9722,13 +9651,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9722
9651
|
description: string;
|
|
9723
9652
|
};
|
|
9724
9653
|
};
|
|
9725
|
-
security:
|
|
9654
|
+
security: {
|
|
9726
9655
|
jwtAuth: any[];
|
|
9727
|
-
|
|
9728
|
-
} | {
|
|
9729
|
-
cookieAuth: any[];
|
|
9730
|
-
jwtAuth?: undefined;
|
|
9731
|
-
})[];
|
|
9656
|
+
}[];
|
|
9732
9657
|
tags: string[];
|
|
9733
9658
|
"x-async-capable": boolean;
|
|
9734
9659
|
};
|
|
@@ -9759,13 +9684,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9759
9684
|
description: string;
|
|
9760
9685
|
};
|
|
9761
9686
|
};
|
|
9762
|
-
security:
|
|
9687
|
+
security: {
|
|
9763
9688
|
jwtAuth: any[];
|
|
9764
|
-
|
|
9765
|
-
} | {
|
|
9766
|
-
cookieAuth: any[];
|
|
9767
|
-
jwtAuth?: undefined;
|
|
9768
|
-
})[];
|
|
9689
|
+
}[];
|
|
9769
9690
|
summary: string;
|
|
9770
9691
|
tags: string[];
|
|
9771
9692
|
"x-async-capable": boolean;
|
|
@@ -9804,13 +9725,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9804
9725
|
description: string;
|
|
9805
9726
|
};
|
|
9806
9727
|
};
|
|
9807
|
-
security:
|
|
9728
|
+
security: {
|
|
9808
9729
|
jwtAuth: any[];
|
|
9809
|
-
|
|
9810
|
-
} | {
|
|
9811
|
-
cookieAuth: any[];
|
|
9812
|
-
jwtAuth?: undefined;
|
|
9813
|
-
})[];
|
|
9730
|
+
}[];
|
|
9814
9731
|
summary: string;
|
|
9815
9732
|
tags: string[];
|
|
9816
9733
|
"x-async-capable": boolean;
|
|
@@ -9879,13 +9796,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9879
9796
|
description: string;
|
|
9880
9797
|
};
|
|
9881
9798
|
};
|
|
9882
|
-
security:
|
|
9799
|
+
security: {
|
|
9883
9800
|
jwtAuth: any[];
|
|
9884
|
-
|
|
9885
|
-
} | {
|
|
9886
|
-
cookieAuth: any[];
|
|
9887
|
-
jwtAuth?: undefined;
|
|
9888
|
-
})[];
|
|
9801
|
+
}[];
|
|
9889
9802
|
summary: string;
|
|
9890
9803
|
tags: string[];
|
|
9891
9804
|
"x-async-capable": boolean;
|
|
@@ -9907,13 +9820,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9907
9820
|
description: string;
|
|
9908
9821
|
};
|
|
9909
9822
|
};
|
|
9910
|
-
security:
|
|
9823
|
+
security: {
|
|
9911
9824
|
jwtAuth: any[];
|
|
9912
|
-
|
|
9913
|
-
} | {
|
|
9914
|
-
cookieAuth: any[];
|
|
9915
|
-
jwtAuth?: undefined;
|
|
9916
|
-
})[];
|
|
9825
|
+
}[];
|
|
9917
9826
|
summary: string;
|
|
9918
9827
|
tags: string[];
|
|
9919
9828
|
"x-async-capable": boolean;
|
|
@@ -9941,13 +9850,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9941
9850
|
description: string;
|
|
9942
9851
|
};
|
|
9943
9852
|
};
|
|
9944
|
-
security:
|
|
9853
|
+
security: {
|
|
9945
9854
|
jwtAuth: any[];
|
|
9946
|
-
|
|
9947
|
-
} | {
|
|
9948
|
-
cookieAuth: any[];
|
|
9949
|
-
jwtAuth?: undefined;
|
|
9950
|
-
})[];
|
|
9855
|
+
}[];
|
|
9951
9856
|
summary: string;
|
|
9952
9857
|
tags: string[];
|
|
9953
9858
|
"x-async-capable": boolean;
|
|
@@ -9980,13 +9885,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
9980
9885
|
description: string;
|
|
9981
9886
|
};
|
|
9982
9887
|
};
|
|
9983
|
-
security:
|
|
9888
|
+
security: {
|
|
9984
9889
|
jwtAuth: any[];
|
|
9985
|
-
|
|
9986
|
-
} | {
|
|
9987
|
-
cookieAuth: any[];
|
|
9988
|
-
jwtAuth?: undefined;
|
|
9989
|
-
})[];
|
|
9890
|
+
}[];
|
|
9990
9891
|
summary: string;
|
|
9991
9892
|
tags: string[];
|
|
9992
9893
|
"x-async-capable": boolean;
|
|
@@ -10035,13 +9936,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10035
9936
|
description: string;
|
|
10036
9937
|
};
|
|
10037
9938
|
};
|
|
10038
|
-
security:
|
|
9939
|
+
security: {
|
|
10039
9940
|
jwtAuth: any[];
|
|
10040
|
-
|
|
10041
|
-
} | {
|
|
10042
|
-
cookieAuth: any[];
|
|
10043
|
-
jwtAuth?: undefined;
|
|
10044
|
-
})[];
|
|
9941
|
+
}[];
|
|
10045
9942
|
tags: string[];
|
|
10046
9943
|
"x-async-capable": boolean;
|
|
10047
9944
|
};
|
|
@@ -10090,13 +9987,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10090
9987
|
description: string;
|
|
10091
9988
|
};
|
|
10092
9989
|
};
|
|
10093
|
-
security:
|
|
9990
|
+
security: {
|
|
10094
9991
|
jwtAuth: any[];
|
|
10095
|
-
|
|
10096
|
-
} | {
|
|
10097
|
-
cookieAuth: any[];
|
|
10098
|
-
jwtAuth?: undefined;
|
|
10099
|
-
})[];
|
|
9992
|
+
}[];
|
|
10100
9993
|
tags: string[];
|
|
10101
9994
|
"x-async-capable": boolean;
|
|
10102
9995
|
};
|
|
@@ -10147,13 +10040,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10147
10040
|
description: string;
|
|
10148
10041
|
};
|
|
10149
10042
|
};
|
|
10150
|
-
security:
|
|
10043
|
+
security: {
|
|
10151
10044
|
jwtAuth: any[];
|
|
10152
|
-
|
|
10153
|
-
} | {
|
|
10154
|
-
cookieAuth: any[];
|
|
10155
|
-
jwtAuth?: undefined;
|
|
10156
|
-
})[];
|
|
10045
|
+
}[];
|
|
10157
10046
|
summary: string;
|
|
10158
10047
|
tags: string[];
|
|
10159
10048
|
"x-async-capable": boolean;
|
|
@@ -10185,13 +10074,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10185
10074
|
description: string;
|
|
10186
10075
|
};
|
|
10187
10076
|
};
|
|
10188
|
-
security:
|
|
10077
|
+
security: {
|
|
10189
10078
|
jwtAuth: any[];
|
|
10190
|
-
|
|
10191
|
-
} | {
|
|
10192
|
-
cookieAuth: any[];
|
|
10193
|
-
jwtAuth?: undefined;
|
|
10194
|
-
})[];
|
|
10079
|
+
}[];
|
|
10195
10080
|
summary: string;
|
|
10196
10081
|
tags: string[];
|
|
10197
10082
|
"x-async-capable": boolean;
|
|
@@ -10222,13 +10107,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10222
10107
|
description: string;
|
|
10223
10108
|
};
|
|
10224
10109
|
};
|
|
10225
|
-
security:
|
|
10110
|
+
security: {
|
|
10226
10111
|
jwtAuth: any[];
|
|
10227
|
-
|
|
10228
|
-
} | {
|
|
10229
|
-
cookieAuth: any[];
|
|
10230
|
-
jwtAuth?: undefined;
|
|
10231
|
-
})[];
|
|
10112
|
+
}[];
|
|
10232
10113
|
summary: string;
|
|
10233
10114
|
tags: string[];
|
|
10234
10115
|
"x-async-capable": boolean;
|
|
@@ -10267,13 +10148,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10267
10148
|
description: string;
|
|
10268
10149
|
};
|
|
10269
10150
|
};
|
|
10270
|
-
security:
|
|
10151
|
+
security: {
|
|
10271
10152
|
jwtAuth: any[];
|
|
10272
|
-
|
|
10273
|
-
} | {
|
|
10274
|
-
cookieAuth: any[];
|
|
10275
|
-
jwtAuth?: undefined;
|
|
10276
|
-
})[];
|
|
10153
|
+
}[];
|
|
10277
10154
|
summary: string;
|
|
10278
10155
|
tags: string[];
|
|
10279
10156
|
"x-async-capable": boolean;
|
|
@@ -10298,13 +10175,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10298
10175
|
description: string;
|
|
10299
10176
|
};
|
|
10300
10177
|
};
|
|
10301
|
-
security:
|
|
10178
|
+
security: {
|
|
10302
10179
|
jwtAuth: any[];
|
|
10303
|
-
|
|
10304
|
-
} | {
|
|
10305
|
-
cookieAuth: any[];
|
|
10306
|
-
jwtAuth?: undefined;
|
|
10307
|
-
})[];
|
|
10180
|
+
}[];
|
|
10308
10181
|
tags: string[];
|
|
10309
10182
|
"x-async-capable": boolean;
|
|
10310
10183
|
};
|
|
@@ -10333,13 +10206,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10333
10206
|
description: string;
|
|
10334
10207
|
};
|
|
10335
10208
|
};
|
|
10336
|
-
security:
|
|
10209
|
+
security: {
|
|
10337
10210
|
jwtAuth: any[];
|
|
10338
|
-
|
|
10339
|
-
} | {
|
|
10340
|
-
cookieAuth: any[];
|
|
10341
|
-
jwtAuth?: undefined;
|
|
10342
|
-
})[];
|
|
10211
|
+
}[];
|
|
10343
10212
|
tags: string[];
|
|
10344
10213
|
"x-async-capable": boolean;
|
|
10345
10214
|
};
|
|
@@ -10387,13 +10256,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10387
10256
|
description: string;
|
|
10388
10257
|
};
|
|
10389
10258
|
};
|
|
10390
|
-
security:
|
|
10259
|
+
security: {
|
|
10391
10260
|
jwtAuth: any[];
|
|
10392
|
-
|
|
10393
|
-
} | {
|
|
10394
|
-
cookieAuth: any[];
|
|
10395
|
-
jwtAuth?: undefined;
|
|
10396
|
-
})[];
|
|
10261
|
+
}[];
|
|
10397
10262
|
tags: string[];
|
|
10398
10263
|
"x-async-capable": boolean;
|
|
10399
10264
|
};
|
|
@@ -10441,13 +10306,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10441
10306
|
description: string;
|
|
10442
10307
|
};
|
|
10443
10308
|
};
|
|
10444
|
-
security:
|
|
10309
|
+
security: {
|
|
10445
10310
|
jwtAuth: any[];
|
|
10446
|
-
|
|
10447
|
-
} | {
|
|
10448
|
-
cookieAuth: any[];
|
|
10449
|
-
jwtAuth?: undefined;
|
|
10450
|
-
})[];
|
|
10311
|
+
}[];
|
|
10451
10312
|
tags: string[];
|
|
10452
10313
|
"x-async-capable": boolean;
|
|
10453
10314
|
};
|
|
@@ -10497,13 +10358,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10497
10358
|
description: string;
|
|
10498
10359
|
};
|
|
10499
10360
|
};
|
|
10500
|
-
security:
|
|
10361
|
+
security: {
|
|
10501
10362
|
jwtAuth: any[];
|
|
10502
|
-
|
|
10503
|
-
} | {
|
|
10504
|
-
cookieAuth: any[];
|
|
10505
|
-
jwtAuth?: undefined;
|
|
10506
|
-
})[];
|
|
10363
|
+
}[];
|
|
10507
10364
|
summary: string;
|
|
10508
10365
|
tags: string[];
|
|
10509
10366
|
"x-async-capable": boolean;
|
|
@@ -10554,13 +10411,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10554
10411
|
description: string;
|
|
10555
10412
|
};
|
|
10556
10413
|
};
|
|
10557
|
-
security:
|
|
10414
|
+
security: {
|
|
10558
10415
|
jwtAuth: any[];
|
|
10559
|
-
|
|
10560
|
-
} | {
|
|
10561
|
-
cookieAuth: any[];
|
|
10562
|
-
jwtAuth?: undefined;
|
|
10563
|
-
})[];
|
|
10416
|
+
}[];
|
|
10564
10417
|
summary: string;
|
|
10565
10418
|
tags: string[];
|
|
10566
10419
|
"x-async-capable": boolean;
|
|
@@ -10593,13 +10446,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10593
10446
|
};
|
|
10594
10447
|
security: ({
|
|
10595
10448
|
jwtAuth: any[];
|
|
10596
|
-
cookieAuth?: undefined;
|
|
10597
|
-
} | {
|
|
10598
|
-
cookieAuth: any[];
|
|
10599
|
-
jwtAuth?: undefined;
|
|
10600
10449
|
} | {
|
|
10601
10450
|
jwtAuth?: undefined;
|
|
10602
|
-
cookieAuth?: undefined;
|
|
10603
10451
|
})[];
|
|
10604
10452
|
summary: string;
|
|
10605
10453
|
tags: string[];
|
|
@@ -10637,13 +10485,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10637
10485
|
};
|
|
10638
10486
|
security: ({
|
|
10639
10487
|
jwtAuth: any[];
|
|
10640
|
-
cookieAuth?: undefined;
|
|
10641
|
-
} | {
|
|
10642
|
-
cookieAuth: any[];
|
|
10643
|
-
jwtAuth?: undefined;
|
|
10644
10488
|
} | {
|
|
10645
10489
|
jwtAuth?: undefined;
|
|
10646
|
-
cookieAuth?: undefined;
|
|
10647
10490
|
})[];
|
|
10648
10491
|
summary: string;
|
|
10649
10492
|
tags: string[];
|
|
@@ -10685,13 +10528,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10685
10528
|
};
|
|
10686
10529
|
security: ({
|
|
10687
10530
|
jwtAuth: any[];
|
|
10688
|
-
cookieAuth?: undefined;
|
|
10689
10531
|
} | {
|
|
10690
|
-
cookieAuth: any[];
|
|
10691
10532
|
jwtAuth?: undefined;
|
|
10692
|
-
} | {
|
|
10693
|
-
jwtAuth?: undefined;
|
|
10694
|
-
cookieAuth?: undefined;
|
|
10695
10533
|
})[];
|
|
10696
10534
|
summary: string;
|
|
10697
10535
|
tags: string[];
|
|
@@ -10729,13 +10567,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10729
10567
|
};
|
|
10730
10568
|
security: ({
|
|
10731
10569
|
jwtAuth: any[];
|
|
10732
|
-
cookieAuth?: undefined;
|
|
10733
|
-
} | {
|
|
10734
|
-
cookieAuth: any[];
|
|
10735
|
-
jwtAuth?: undefined;
|
|
10736
10570
|
} | {
|
|
10737
10571
|
jwtAuth?: undefined;
|
|
10738
|
-
cookieAuth?: undefined;
|
|
10739
10572
|
})[];
|
|
10740
10573
|
summary: string;
|
|
10741
10574
|
tags: string[];
|
|
@@ -10767,13 +10600,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10767
10600
|
description: string;
|
|
10768
10601
|
};
|
|
10769
10602
|
};
|
|
10770
|
-
security:
|
|
10603
|
+
security: {
|
|
10771
10604
|
jwtAuth: any[];
|
|
10772
|
-
|
|
10773
|
-
} | {
|
|
10774
|
-
cookieAuth: any[];
|
|
10775
|
-
jwtAuth?: undefined;
|
|
10776
|
-
})[];
|
|
10605
|
+
}[];
|
|
10777
10606
|
tags: string[];
|
|
10778
10607
|
"x-async-capable": boolean;
|
|
10779
10608
|
};
|
|
@@ -10834,13 +10663,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10834
10663
|
description: string;
|
|
10835
10664
|
};
|
|
10836
10665
|
};
|
|
10837
|
-
security:
|
|
10666
|
+
security: {
|
|
10838
10667
|
jwtAuth: any[];
|
|
10839
|
-
|
|
10840
|
-
} | {
|
|
10841
|
-
cookieAuth: any[];
|
|
10842
|
-
jwtAuth?: undefined;
|
|
10843
|
-
})[];
|
|
10668
|
+
}[];
|
|
10844
10669
|
summary: string;
|
|
10845
10670
|
tags: string[];
|
|
10846
10671
|
"x-async-capable": boolean;
|
|
@@ -10877,13 +10702,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10877
10702
|
description: string;
|
|
10878
10703
|
};
|
|
10879
10704
|
};
|
|
10880
|
-
security:
|
|
10705
|
+
security: {
|
|
10881
10706
|
jwtAuth: any[];
|
|
10882
|
-
|
|
10883
|
-
} | {
|
|
10884
|
-
cookieAuth: any[];
|
|
10885
|
-
jwtAuth?: undefined;
|
|
10886
|
-
})[];
|
|
10707
|
+
}[];
|
|
10887
10708
|
summary: string;
|
|
10888
10709
|
tags: string[];
|
|
10889
10710
|
"x-async-capable": boolean;
|
|
@@ -10905,13 +10726,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10905
10726
|
description: string;
|
|
10906
10727
|
};
|
|
10907
10728
|
};
|
|
10908
|
-
security:
|
|
10729
|
+
security: {
|
|
10909
10730
|
jwtAuth: any[];
|
|
10910
|
-
|
|
10911
|
-
} | {
|
|
10912
|
-
cookieAuth: any[];
|
|
10913
|
-
jwtAuth?: undefined;
|
|
10914
|
-
})[];
|
|
10731
|
+
}[];
|
|
10915
10732
|
summary: string;
|
|
10916
10733
|
tags: string[];
|
|
10917
10734
|
"x-async-capable": boolean;
|
|
@@ -10933,13 +10750,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10933
10750
|
description: string;
|
|
10934
10751
|
};
|
|
10935
10752
|
};
|
|
10936
|
-
security:
|
|
10753
|
+
security: {
|
|
10937
10754
|
jwtAuth: any[];
|
|
10938
|
-
|
|
10939
|
-
} | {
|
|
10940
|
-
cookieAuth: any[];
|
|
10941
|
-
jwtAuth?: undefined;
|
|
10942
|
-
})[];
|
|
10755
|
+
}[];
|
|
10943
10756
|
summary: string;
|
|
10944
10757
|
tags: string[];
|
|
10945
10758
|
"x-async-capable": boolean;
|
|
@@ -10964,13 +10777,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10964
10777
|
description: string;
|
|
10965
10778
|
};
|
|
10966
10779
|
};
|
|
10967
|
-
security:
|
|
10780
|
+
security: {
|
|
10968
10781
|
jwtAuth: any[];
|
|
10969
|
-
|
|
10970
|
-
} | {
|
|
10971
|
-
cookieAuth: any[];
|
|
10972
|
-
jwtAuth?: undefined;
|
|
10973
|
-
})[];
|
|
10782
|
+
}[];
|
|
10974
10783
|
tags: string[];
|
|
10975
10784
|
"x-async-capable": boolean;
|
|
10976
10785
|
};
|
|
@@ -10999,13 +10808,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
10999
10808
|
description: string;
|
|
11000
10809
|
};
|
|
11001
10810
|
};
|
|
11002
|
-
security:
|
|
10811
|
+
security: {
|
|
11003
10812
|
jwtAuth: any[];
|
|
11004
|
-
|
|
11005
|
-
} | {
|
|
11006
|
-
cookieAuth: any[];
|
|
11007
|
-
jwtAuth?: undefined;
|
|
11008
|
-
})[];
|
|
10813
|
+
}[];
|
|
11009
10814
|
tags: string[];
|
|
11010
10815
|
"x-async-capable": boolean;
|
|
11011
10816
|
};
|
|
@@ -11048,13 +10853,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11048
10853
|
description: string;
|
|
11049
10854
|
};
|
|
11050
10855
|
};
|
|
11051
|
-
security:
|
|
10856
|
+
security: {
|
|
11052
10857
|
jwtAuth: any[];
|
|
11053
|
-
|
|
11054
|
-
} | {
|
|
11055
|
-
cookieAuth: any[];
|
|
11056
|
-
jwtAuth?: undefined;
|
|
11057
|
-
})[];
|
|
10858
|
+
}[];
|
|
11058
10859
|
tags: string[];
|
|
11059
10860
|
"x-async-capable": boolean;
|
|
11060
10861
|
};
|
|
@@ -11098,13 +10899,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11098
10899
|
description: string;
|
|
11099
10900
|
};
|
|
11100
10901
|
};
|
|
11101
|
-
security:
|
|
10902
|
+
security: {
|
|
11102
10903
|
jwtAuth: any[];
|
|
11103
|
-
|
|
11104
|
-
} | {
|
|
11105
|
-
cookieAuth: any[];
|
|
11106
|
-
jwtAuth?: undefined;
|
|
11107
|
-
})[];
|
|
10904
|
+
}[];
|
|
11108
10905
|
tags: string[];
|
|
11109
10906
|
"x-async-capable": boolean;
|
|
11110
10907
|
};
|
|
@@ -11135,13 +10932,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11135
10932
|
description: string;
|
|
11136
10933
|
};
|
|
11137
10934
|
};
|
|
11138
|
-
security:
|
|
10935
|
+
security: {
|
|
11139
10936
|
jwtAuth: any[];
|
|
11140
|
-
|
|
11141
|
-
} | {
|
|
11142
|
-
cookieAuth: any[];
|
|
11143
|
-
jwtAuth?: undefined;
|
|
11144
|
-
})[];
|
|
10937
|
+
}[];
|
|
11145
10938
|
summary: string;
|
|
11146
10939
|
tags: string[];
|
|
11147
10940
|
"x-async-capable": boolean;
|
|
@@ -11182,13 +10975,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11182
10975
|
description: string;
|
|
11183
10976
|
};
|
|
11184
10977
|
};
|
|
11185
|
-
security:
|
|
10978
|
+
security: {
|
|
11186
10979
|
jwtAuth: any[];
|
|
11187
|
-
|
|
11188
|
-
} | {
|
|
11189
|
-
cookieAuth: any[];
|
|
11190
|
-
jwtAuth?: undefined;
|
|
11191
|
-
})[];
|
|
10980
|
+
}[];
|
|
11192
10981
|
summary: string;
|
|
11193
10982
|
tags: string[];
|
|
11194
10983
|
"x-async-capable": boolean;
|
|
@@ -11244,13 +11033,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11244
11033
|
description: string;
|
|
11245
11034
|
};
|
|
11246
11035
|
};
|
|
11247
|
-
security:
|
|
11036
|
+
security: {
|
|
11248
11037
|
jwtAuth: any[];
|
|
11249
|
-
|
|
11250
|
-
} | {
|
|
11251
|
-
cookieAuth: any[];
|
|
11252
|
-
jwtAuth?: undefined;
|
|
11253
|
-
})[];
|
|
11038
|
+
}[];
|
|
11254
11039
|
summary: string;
|
|
11255
11040
|
tags: string[];
|
|
11256
11041
|
"x-async-capable": boolean;
|
|
@@ -11281,13 +11066,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11281
11066
|
description: string;
|
|
11282
11067
|
};
|
|
11283
11068
|
};
|
|
11284
|
-
security:
|
|
11069
|
+
security: {
|
|
11285
11070
|
jwtAuth: any[];
|
|
11286
|
-
|
|
11287
|
-
} | {
|
|
11288
|
-
cookieAuth: any[];
|
|
11289
|
-
jwtAuth?: undefined;
|
|
11290
|
-
})[];
|
|
11071
|
+
}[];
|
|
11291
11072
|
tags: string[];
|
|
11292
11073
|
"x-async-capable": boolean;
|
|
11293
11074
|
};
|
|
@@ -11326,13 +11107,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11326
11107
|
description: string;
|
|
11327
11108
|
};
|
|
11328
11109
|
};
|
|
11329
|
-
security:
|
|
11110
|
+
security: {
|
|
11330
11111
|
jwtAuth: any[];
|
|
11331
|
-
|
|
11332
|
-
} | {
|
|
11333
|
-
cookieAuth: any[];
|
|
11334
|
-
jwtAuth?: undefined;
|
|
11335
|
-
})[];
|
|
11112
|
+
}[];
|
|
11336
11113
|
tags: string[];
|
|
11337
11114
|
"x-async-capable": boolean;
|
|
11338
11115
|
};
|
|
@@ -11356,13 +11133,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11356
11133
|
description: string;
|
|
11357
11134
|
};
|
|
11358
11135
|
};
|
|
11359
|
-
security:
|
|
11136
|
+
security: {
|
|
11360
11137
|
jwtAuth: any[];
|
|
11361
|
-
|
|
11362
|
-
} | {
|
|
11363
|
-
cookieAuth: any[];
|
|
11364
|
-
jwtAuth?: undefined;
|
|
11365
|
-
})[];
|
|
11138
|
+
}[];
|
|
11366
11139
|
tags: string[];
|
|
11367
11140
|
"x-async-capable": boolean;
|
|
11368
11141
|
};
|
|
@@ -11391,13 +11164,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11391
11164
|
description: string;
|
|
11392
11165
|
};
|
|
11393
11166
|
};
|
|
11394
|
-
security:
|
|
11167
|
+
security: {
|
|
11395
11168
|
jwtAuth: any[];
|
|
11396
|
-
|
|
11397
|
-
} | {
|
|
11398
|
-
cookieAuth: any[];
|
|
11399
|
-
jwtAuth?: undefined;
|
|
11400
|
-
})[];
|
|
11169
|
+
}[];
|
|
11401
11170
|
tags: string[];
|
|
11402
11171
|
"x-async-capable": boolean;
|
|
11403
11172
|
};
|
|
@@ -11445,13 +11214,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11445
11214
|
description: string;
|
|
11446
11215
|
};
|
|
11447
11216
|
};
|
|
11448
|
-
security:
|
|
11217
|
+
security: {
|
|
11449
11218
|
jwtAuth: any[];
|
|
11450
|
-
|
|
11451
|
-
} | {
|
|
11452
|
-
cookieAuth: any[];
|
|
11453
|
-
jwtAuth?: undefined;
|
|
11454
|
-
})[];
|
|
11219
|
+
}[];
|
|
11455
11220
|
tags: string[];
|
|
11456
11221
|
"x-async-capable": boolean;
|
|
11457
11222
|
};
|
|
@@ -11500,13 +11265,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11500
11265
|
description: string;
|
|
11501
11266
|
};
|
|
11502
11267
|
};
|
|
11503
|
-
security:
|
|
11268
|
+
security: {
|
|
11504
11269
|
jwtAuth: any[];
|
|
11505
|
-
|
|
11506
|
-
} | {
|
|
11507
|
-
cookieAuth: any[];
|
|
11508
|
-
jwtAuth?: undefined;
|
|
11509
|
-
})[];
|
|
11270
|
+
}[];
|
|
11510
11271
|
tags: string[];
|
|
11511
11272
|
"x-async-capable": boolean;
|
|
11512
11273
|
};
|
|
@@ -11537,13 +11298,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11537
11298
|
description: string;
|
|
11538
11299
|
};
|
|
11539
11300
|
};
|
|
11540
|
-
security:
|
|
11301
|
+
security: {
|
|
11541
11302
|
jwtAuth: any[];
|
|
11542
|
-
|
|
11543
|
-
} | {
|
|
11544
|
-
cookieAuth: any[];
|
|
11545
|
-
jwtAuth?: undefined;
|
|
11546
|
-
})[];
|
|
11303
|
+
}[];
|
|
11547
11304
|
summary: string;
|
|
11548
11305
|
tags: string[];
|
|
11549
11306
|
"x-async-capable": boolean;
|
|
@@ -11595,13 +11352,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11595
11352
|
description: string;
|
|
11596
11353
|
};
|
|
11597
11354
|
};
|
|
11598
|
-
security:
|
|
11355
|
+
security: {
|
|
11599
11356
|
jwtAuth: any[];
|
|
11600
|
-
|
|
11601
|
-
} | {
|
|
11602
|
-
cookieAuth: any[];
|
|
11603
|
-
jwtAuth?: undefined;
|
|
11604
|
-
})[];
|
|
11357
|
+
}[];
|
|
11605
11358
|
summary: string;
|
|
11606
11359
|
tags: string[];
|
|
11607
11360
|
"x-async-capable": boolean;
|
|
@@ -11632,13 +11385,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11632
11385
|
description: string;
|
|
11633
11386
|
};
|
|
11634
11387
|
};
|
|
11635
|
-
security:
|
|
11388
|
+
security: {
|
|
11636
11389
|
jwtAuth: any[];
|
|
11637
|
-
|
|
11638
|
-
} | {
|
|
11639
|
-
cookieAuth: any[];
|
|
11640
|
-
jwtAuth?: undefined;
|
|
11641
|
-
})[];
|
|
11390
|
+
}[];
|
|
11642
11391
|
tags: string[];
|
|
11643
11392
|
"x-async-capable": boolean;
|
|
11644
11393
|
};
|
|
@@ -11677,13 +11426,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11677
11426
|
description: string;
|
|
11678
11427
|
};
|
|
11679
11428
|
};
|
|
11680
|
-
security:
|
|
11429
|
+
security: {
|
|
11681
11430
|
jwtAuth: any[];
|
|
11682
|
-
|
|
11683
|
-
} | {
|
|
11684
|
-
cookieAuth: any[];
|
|
11685
|
-
jwtAuth?: undefined;
|
|
11686
|
-
})[];
|
|
11431
|
+
}[];
|
|
11687
11432
|
tags: string[];
|
|
11688
11433
|
"x-async-capable": boolean;
|
|
11689
11434
|
};
|
|
@@ -11707,13 +11452,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11707
11452
|
description: string;
|
|
11708
11453
|
};
|
|
11709
11454
|
};
|
|
11710
|
-
security:
|
|
11455
|
+
security: {
|
|
11711
11456
|
jwtAuth: any[];
|
|
11712
|
-
|
|
11713
|
-
} | {
|
|
11714
|
-
cookieAuth: any[];
|
|
11715
|
-
jwtAuth?: undefined;
|
|
11716
|
-
})[];
|
|
11457
|
+
}[];
|
|
11717
11458
|
tags: string[];
|
|
11718
11459
|
"x-async-capable": boolean;
|
|
11719
11460
|
};
|
|
@@ -11742,13 +11483,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11742
11483
|
description: string;
|
|
11743
11484
|
};
|
|
11744
11485
|
};
|
|
11745
|
-
security:
|
|
11486
|
+
security: {
|
|
11746
11487
|
jwtAuth: any[];
|
|
11747
|
-
|
|
11748
|
-
} | {
|
|
11749
|
-
cookieAuth: any[];
|
|
11750
|
-
jwtAuth?: undefined;
|
|
11751
|
-
})[];
|
|
11488
|
+
}[];
|
|
11752
11489
|
tags: string[];
|
|
11753
11490
|
"x-async-capable": boolean;
|
|
11754
11491
|
};
|
|
@@ -11796,13 +11533,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11796
11533
|
description: string;
|
|
11797
11534
|
};
|
|
11798
11535
|
};
|
|
11799
|
-
security:
|
|
11536
|
+
security: {
|
|
11800
11537
|
jwtAuth: any[];
|
|
11801
|
-
|
|
11802
|
-
} | {
|
|
11803
|
-
cookieAuth: any[];
|
|
11804
|
-
jwtAuth?: undefined;
|
|
11805
|
-
})[];
|
|
11538
|
+
}[];
|
|
11806
11539
|
tags: string[];
|
|
11807
11540
|
"x-async-capable": boolean;
|
|
11808
11541
|
};
|
|
@@ -11851,13 +11584,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11851
11584
|
description: string;
|
|
11852
11585
|
};
|
|
11853
11586
|
};
|
|
11854
|
-
security:
|
|
11587
|
+
security: {
|
|
11855
11588
|
jwtAuth: any[];
|
|
11856
|
-
|
|
11857
|
-
} | {
|
|
11858
|
-
cookieAuth: any[];
|
|
11859
|
-
jwtAuth?: undefined;
|
|
11860
|
-
})[];
|
|
11589
|
+
}[];
|
|
11861
11590
|
tags: string[];
|
|
11862
11591
|
"x-async-capable": boolean;
|
|
11863
11592
|
};
|
|
@@ -11897,13 +11626,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11897
11626
|
description: string;
|
|
11898
11627
|
};
|
|
11899
11628
|
};
|
|
11900
|
-
security:
|
|
11629
|
+
security: {
|
|
11901
11630
|
jwtAuth: any[];
|
|
11902
|
-
|
|
11903
|
-
} | {
|
|
11904
|
-
cookieAuth: any[];
|
|
11905
|
-
jwtAuth?: undefined;
|
|
11906
|
-
})[];
|
|
11631
|
+
}[];
|
|
11907
11632
|
summary: string;
|
|
11908
11633
|
tags: string[];
|
|
11909
11634
|
"x-async-capable": boolean;
|
|
@@ -11935,13 +11660,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11935
11660
|
description: string;
|
|
11936
11661
|
};
|
|
11937
11662
|
};
|
|
11938
|
-
security:
|
|
11663
|
+
security: {
|
|
11939
11664
|
jwtAuth: any[];
|
|
11940
|
-
|
|
11941
|
-
} | {
|
|
11942
|
-
cookieAuth: any[];
|
|
11943
|
-
jwtAuth?: undefined;
|
|
11944
|
-
})[];
|
|
11665
|
+
}[];
|
|
11945
11666
|
summary: string;
|
|
11946
11667
|
tags: string[];
|
|
11947
11668
|
"x-async-capable": boolean;
|
|
@@ -11974,13 +11695,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
11974
11695
|
};
|
|
11975
11696
|
security: ({
|
|
11976
11697
|
jwtAuth: any[];
|
|
11977
|
-
cookieAuth?: undefined;
|
|
11978
11698
|
} | {
|
|
11979
|
-
cookieAuth: any[];
|
|
11980
11699
|
jwtAuth?: undefined;
|
|
11981
|
-
} | {
|
|
11982
|
-
jwtAuth?: undefined;
|
|
11983
|
-
cookieAuth?: undefined;
|
|
11984
11700
|
})[];
|
|
11985
11701
|
tags: string[];
|
|
11986
11702
|
"x-async-capable": boolean;
|
|
@@ -12022,13 +11738,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12022
11738
|
};
|
|
12023
11739
|
security: ({
|
|
12024
11740
|
jwtAuth: any[];
|
|
12025
|
-
cookieAuth?: undefined;
|
|
12026
|
-
} | {
|
|
12027
|
-
cookieAuth: any[];
|
|
12028
|
-
jwtAuth?: undefined;
|
|
12029
11741
|
} | {
|
|
12030
11742
|
jwtAuth?: undefined;
|
|
12031
|
-
cookieAuth?: undefined;
|
|
12032
11743
|
})[];
|
|
12033
11744
|
tags: string[];
|
|
12034
11745
|
"x-async-capable": boolean;
|
|
@@ -12098,13 +11809,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12098
11809
|
};
|
|
12099
11810
|
security: ({
|
|
12100
11811
|
jwtAuth: any[];
|
|
12101
|
-
cookieAuth?: undefined;
|
|
12102
|
-
} | {
|
|
12103
|
-
cookieAuth: any[];
|
|
12104
|
-
jwtAuth?: undefined;
|
|
12105
11812
|
} | {
|
|
12106
11813
|
jwtAuth?: undefined;
|
|
12107
|
-
cookieAuth?: undefined;
|
|
12108
11814
|
})[];
|
|
12109
11815
|
summary: string;
|
|
12110
11816
|
tags: string[];
|
|
@@ -12131,13 +11837,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12131
11837
|
};
|
|
12132
11838
|
security: ({
|
|
12133
11839
|
jwtAuth: any[];
|
|
12134
|
-
cookieAuth?: undefined;
|
|
12135
11840
|
} | {
|
|
12136
|
-
cookieAuth: any[];
|
|
12137
11841
|
jwtAuth?: undefined;
|
|
12138
|
-
} | {
|
|
12139
|
-
jwtAuth?: undefined;
|
|
12140
|
-
cookieAuth?: undefined;
|
|
12141
11842
|
})[];
|
|
12142
11843
|
tags: string[];
|
|
12143
11844
|
"x-async-capable": boolean;
|
|
@@ -12168,13 +11869,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12168
11869
|
};
|
|
12169
11870
|
security: ({
|
|
12170
11871
|
jwtAuth: any[];
|
|
12171
|
-
cookieAuth?: undefined;
|
|
12172
|
-
} | {
|
|
12173
|
-
cookieAuth: any[];
|
|
12174
|
-
jwtAuth?: undefined;
|
|
12175
11872
|
} | {
|
|
12176
11873
|
jwtAuth?: undefined;
|
|
12177
|
-
cookieAuth?: undefined;
|
|
12178
11874
|
})[];
|
|
12179
11875
|
tags: string[];
|
|
12180
11876
|
"x-async-capable": boolean;
|
|
@@ -12224,13 +11920,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12224
11920
|
};
|
|
12225
11921
|
security: ({
|
|
12226
11922
|
jwtAuth: any[];
|
|
12227
|
-
cookieAuth?: undefined;
|
|
12228
|
-
} | {
|
|
12229
|
-
cookieAuth: any[];
|
|
12230
|
-
jwtAuth?: undefined;
|
|
12231
11923
|
} | {
|
|
12232
11924
|
jwtAuth?: undefined;
|
|
12233
|
-
cookieAuth?: undefined;
|
|
12234
11925
|
})[];
|
|
12235
11926
|
tags: string[];
|
|
12236
11927
|
"x-async-capable": boolean;
|
|
@@ -12281,13 +11972,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12281
11972
|
};
|
|
12282
11973
|
security: ({
|
|
12283
11974
|
jwtAuth: any[];
|
|
12284
|
-
cookieAuth?: undefined;
|
|
12285
11975
|
} | {
|
|
12286
|
-
cookieAuth: any[];
|
|
12287
11976
|
jwtAuth?: undefined;
|
|
12288
|
-
} | {
|
|
12289
|
-
jwtAuth?: undefined;
|
|
12290
|
-
cookieAuth?: undefined;
|
|
12291
11977
|
})[];
|
|
12292
11978
|
tags: string[];
|
|
12293
11979
|
"x-async-capable": boolean;
|
|
@@ -12339,13 +12025,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12339
12025
|
description: string;
|
|
12340
12026
|
};
|
|
12341
12027
|
};
|
|
12342
|
-
security:
|
|
12028
|
+
security: {
|
|
12343
12029
|
jwtAuth: any[];
|
|
12344
|
-
|
|
12345
|
-
} | {
|
|
12346
|
-
cookieAuth: any[];
|
|
12347
|
-
jwtAuth?: undefined;
|
|
12348
|
-
})[];
|
|
12030
|
+
}[];
|
|
12349
12031
|
summary: string;
|
|
12350
12032
|
tags: string[];
|
|
12351
12033
|
"x-async-capable": boolean;
|
|
@@ -12376,13 +12058,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12376
12058
|
description: string;
|
|
12377
12059
|
};
|
|
12378
12060
|
};
|
|
12379
|
-
security:
|
|
12061
|
+
security: {
|
|
12380
12062
|
jwtAuth: any[];
|
|
12381
|
-
|
|
12382
|
-
} | {
|
|
12383
|
-
cookieAuth: any[];
|
|
12384
|
-
jwtAuth?: undefined;
|
|
12385
|
-
})[];
|
|
12063
|
+
}[];
|
|
12386
12064
|
summary: string;
|
|
12387
12065
|
tags: string[];
|
|
12388
12066
|
"x-async-capable": boolean;
|
|
@@ -12422,13 +12100,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12422
12100
|
description: string;
|
|
12423
12101
|
};
|
|
12424
12102
|
};
|
|
12425
|
-
security:
|
|
12103
|
+
security: {
|
|
12426
12104
|
jwtAuth: any[];
|
|
12427
|
-
|
|
12428
|
-
} | {
|
|
12429
|
-
cookieAuth: any[];
|
|
12430
|
-
jwtAuth?: undefined;
|
|
12431
|
-
})[];
|
|
12105
|
+
}[];
|
|
12432
12106
|
summary: string;
|
|
12433
12107
|
tags: string[];
|
|
12434
12108
|
"x-async-capable": boolean;
|
|
@@ -12490,13 +12164,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12490
12164
|
description: string;
|
|
12491
12165
|
};
|
|
12492
12166
|
};
|
|
12493
|
-
security:
|
|
12167
|
+
security: {
|
|
12494
12168
|
jwtAuth: any[];
|
|
12495
|
-
|
|
12496
|
-
} | {
|
|
12497
|
-
cookieAuth: any[];
|
|
12498
|
-
jwtAuth?: undefined;
|
|
12499
|
-
})[];
|
|
12169
|
+
}[];
|
|
12500
12170
|
summary: string;
|
|
12501
12171
|
tags: string[];
|
|
12502
12172
|
"x-async-capable": boolean;
|
|
@@ -12519,13 +12189,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12519
12189
|
description: string;
|
|
12520
12190
|
};
|
|
12521
12191
|
};
|
|
12522
|
-
security:
|
|
12192
|
+
security: {
|
|
12523
12193
|
jwtAuth: any[];
|
|
12524
|
-
|
|
12525
|
-
} | {
|
|
12526
|
-
cookieAuth: any[];
|
|
12527
|
-
jwtAuth?: undefined;
|
|
12528
|
-
})[];
|
|
12194
|
+
}[];
|
|
12529
12195
|
summary: string;
|
|
12530
12196
|
tags: string[];
|
|
12531
12197
|
"x-async-capable": boolean;
|
|
@@ -12553,13 +12219,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12553
12219
|
description: string;
|
|
12554
12220
|
};
|
|
12555
12221
|
};
|
|
12556
|
-
security:
|
|
12222
|
+
security: {
|
|
12557
12223
|
jwtAuth: any[];
|
|
12558
|
-
|
|
12559
|
-
} | {
|
|
12560
|
-
cookieAuth: any[];
|
|
12561
|
-
jwtAuth?: undefined;
|
|
12562
|
-
})[];
|
|
12224
|
+
}[];
|
|
12563
12225
|
summary: string;
|
|
12564
12226
|
tags: string[];
|
|
12565
12227
|
"x-async-capable": boolean;
|
|
@@ -12606,13 +12268,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12606
12268
|
description: string;
|
|
12607
12269
|
};
|
|
12608
12270
|
};
|
|
12609
|
-
security:
|
|
12271
|
+
security: {
|
|
12610
12272
|
jwtAuth: any[];
|
|
12611
|
-
|
|
12612
|
-
} | {
|
|
12613
|
-
cookieAuth: any[];
|
|
12614
|
-
jwtAuth?: undefined;
|
|
12615
|
-
})[];
|
|
12273
|
+
}[];
|
|
12616
12274
|
tags: string[];
|
|
12617
12275
|
"x-async-capable": boolean;
|
|
12618
12276
|
};
|
|
@@ -12659,13 +12317,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12659
12317
|
description: string;
|
|
12660
12318
|
};
|
|
12661
12319
|
};
|
|
12662
|
-
security:
|
|
12320
|
+
security: {
|
|
12663
12321
|
jwtAuth: any[];
|
|
12664
|
-
|
|
12665
|
-
} | {
|
|
12666
|
-
cookieAuth: any[];
|
|
12667
|
-
jwtAuth?: undefined;
|
|
12668
|
-
})[];
|
|
12322
|
+
}[];
|
|
12669
12323
|
summary: string;
|
|
12670
12324
|
tags: string[];
|
|
12671
12325
|
"x-async-capable": boolean;
|
|
@@ -12696,13 +12350,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12696
12350
|
description: string;
|
|
12697
12351
|
};
|
|
12698
12352
|
};
|
|
12699
|
-
security:
|
|
12353
|
+
security: {
|
|
12700
12354
|
jwtAuth: any[];
|
|
12701
|
-
|
|
12702
|
-
} | {
|
|
12703
|
-
cookieAuth: any[];
|
|
12704
|
-
jwtAuth?: undefined;
|
|
12705
|
-
})[];
|
|
12355
|
+
}[];
|
|
12706
12356
|
summary: string;
|
|
12707
12357
|
tags: string[];
|
|
12708
12358
|
"x-async-capable": boolean;
|
|
@@ -12735,13 +12385,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12735
12385
|
};
|
|
12736
12386
|
security: ({
|
|
12737
12387
|
jwtAuth: any[];
|
|
12738
|
-
cookieAuth?: undefined;
|
|
12739
12388
|
} | {
|
|
12740
|
-
cookieAuth: any[];
|
|
12741
12389
|
jwtAuth?: undefined;
|
|
12742
|
-
} | {
|
|
12743
|
-
jwtAuth?: undefined;
|
|
12744
|
-
cookieAuth?: undefined;
|
|
12745
12390
|
})[];
|
|
12746
12391
|
summary: string;
|
|
12747
12392
|
tags: string[];
|
|
@@ -12774,13 +12419,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12774
12419
|
};
|
|
12775
12420
|
security: ({
|
|
12776
12421
|
jwtAuth: any[];
|
|
12777
|
-
cookieAuth?: undefined;
|
|
12778
|
-
} | {
|
|
12779
|
-
cookieAuth: any[];
|
|
12780
|
-
jwtAuth?: undefined;
|
|
12781
12422
|
} | {
|
|
12782
12423
|
jwtAuth?: undefined;
|
|
12783
|
-
cookieAuth?: undefined;
|
|
12784
12424
|
})[];
|
|
12785
12425
|
summary: string;
|
|
12786
12426
|
tags: string[];
|
|
@@ -12845,13 +12485,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12845
12485
|
};
|
|
12846
12486
|
security: ({
|
|
12847
12487
|
jwtAuth: any[];
|
|
12848
|
-
cookieAuth?: undefined;
|
|
12849
|
-
} | {
|
|
12850
|
-
cookieAuth: any[];
|
|
12851
|
-
jwtAuth?: undefined;
|
|
12852
12488
|
} | {
|
|
12853
12489
|
jwtAuth?: undefined;
|
|
12854
|
-
cookieAuth?: undefined;
|
|
12855
12490
|
})[];
|
|
12856
12491
|
summary: string;
|
|
12857
12492
|
tags: string[];
|
|
@@ -12883,13 +12518,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12883
12518
|
description: string;
|
|
12884
12519
|
};
|
|
12885
12520
|
};
|
|
12886
|
-
security:
|
|
12521
|
+
security: {
|
|
12887
12522
|
jwtAuth: any[];
|
|
12888
|
-
|
|
12889
|
-
} | {
|
|
12890
|
-
cookieAuth: any[];
|
|
12891
|
-
jwtAuth?: undefined;
|
|
12892
|
-
})[];
|
|
12523
|
+
}[];
|
|
12893
12524
|
summary: string;
|
|
12894
12525
|
tags: string[];
|
|
12895
12526
|
"x-async-capable": boolean;
|
|
@@ -12943,13 +12574,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12943
12574
|
};
|
|
12944
12575
|
security: ({
|
|
12945
12576
|
jwtAuth: any[];
|
|
12946
|
-
cookieAuth?: undefined;
|
|
12947
12577
|
} | {
|
|
12948
|
-
cookieAuth: any[];
|
|
12949
12578
|
jwtAuth?: undefined;
|
|
12950
|
-
} | {
|
|
12951
|
-
jwtAuth?: undefined;
|
|
12952
|
-
cookieAuth?: undefined;
|
|
12953
12579
|
})[];
|
|
12954
12580
|
summary: string;
|
|
12955
12581
|
tags: string[];
|
|
@@ -12993,13 +12619,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
12993
12619
|
};
|
|
12994
12620
|
security: ({
|
|
12995
12621
|
jwtAuth: any[];
|
|
12996
|
-
cookieAuth?: undefined;
|
|
12997
12622
|
} | {
|
|
12998
|
-
cookieAuth: any[];
|
|
12999
12623
|
jwtAuth?: undefined;
|
|
13000
|
-
} | {
|
|
13001
|
-
jwtAuth?: undefined;
|
|
13002
|
-
cookieAuth?: undefined;
|
|
13003
12624
|
})[];
|
|
13004
12625
|
tags: string[];
|
|
13005
12626
|
"x-async-capable": boolean;
|
|
@@ -13051,13 +12672,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13051
12672
|
};
|
|
13052
12673
|
security: ({
|
|
13053
12674
|
jwtAuth: any[];
|
|
13054
|
-
cookieAuth?: undefined;
|
|
13055
|
-
} | {
|
|
13056
|
-
cookieAuth: any[];
|
|
13057
|
-
jwtAuth?: undefined;
|
|
13058
12675
|
} | {
|
|
13059
12676
|
jwtAuth?: undefined;
|
|
13060
|
-
cookieAuth?: undefined;
|
|
13061
12677
|
})[];
|
|
13062
12678
|
summary: string;
|
|
13063
12679
|
tags: string[];
|
|
@@ -13100,13 +12716,8 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13100
12716
|
};
|
|
13101
12717
|
security: ({
|
|
13102
12718
|
jwtAuth: any[];
|
|
13103
|
-
cookieAuth?: undefined;
|
|
13104
12719
|
} | {
|
|
13105
|
-
cookieAuth: any[];
|
|
13106
12720
|
jwtAuth?: undefined;
|
|
13107
|
-
} | {
|
|
13108
|
-
jwtAuth?: undefined;
|
|
13109
|
-
cookieAuth?: undefined;
|
|
13110
12721
|
})[];
|
|
13111
12722
|
tags: string[];
|
|
13112
12723
|
"x-async-capable": boolean;
|
|
@@ -13128,13 +12739,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13128
12739
|
description: string;
|
|
13129
12740
|
};
|
|
13130
12741
|
};
|
|
13131
|
-
security:
|
|
12742
|
+
security: {
|
|
13132
12743
|
jwtAuth: any[];
|
|
13133
|
-
|
|
13134
|
-
} | {
|
|
13135
|
-
cookieAuth: any[];
|
|
13136
|
-
jwtAuth?: undefined;
|
|
13137
|
-
})[];
|
|
12744
|
+
}[];
|
|
13138
12745
|
summary: string;
|
|
13139
12746
|
tags: string[];
|
|
13140
12747
|
"x-async-capable": boolean;
|
|
@@ -13159,13 +12766,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13159
12766
|
description: string;
|
|
13160
12767
|
};
|
|
13161
12768
|
};
|
|
13162
|
-
security:
|
|
12769
|
+
security: {
|
|
13163
12770
|
jwtAuth: any[];
|
|
13164
|
-
|
|
13165
|
-
} | {
|
|
13166
|
-
cookieAuth: any[];
|
|
13167
|
-
jwtAuth?: undefined;
|
|
13168
|
-
})[];
|
|
12771
|
+
}[];
|
|
13169
12772
|
summary: string;
|
|
13170
12773
|
tags: string[];
|
|
13171
12774
|
"x-async-capable": boolean;
|
|
@@ -13196,13 +12799,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13196
12799
|
description: string;
|
|
13197
12800
|
};
|
|
13198
12801
|
};
|
|
13199
|
-
security:
|
|
12802
|
+
security: {
|
|
13200
12803
|
jwtAuth: any[];
|
|
13201
|
-
|
|
13202
|
-
} | {
|
|
13203
|
-
cookieAuth: any[];
|
|
13204
|
-
jwtAuth?: undefined;
|
|
13205
|
-
})[];
|
|
12804
|
+
}[];
|
|
13206
12805
|
tags: string[];
|
|
13207
12806
|
"x-async-capable": boolean;
|
|
13208
12807
|
};
|
|
@@ -13223,13 +12822,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13223
12822
|
description: string;
|
|
13224
12823
|
};
|
|
13225
12824
|
};
|
|
13226
|
-
security:
|
|
12825
|
+
security: {
|
|
13227
12826
|
jwtAuth: any[];
|
|
13228
|
-
|
|
13229
|
-
} | {
|
|
13230
|
-
cookieAuth: any[];
|
|
13231
|
-
jwtAuth?: undefined;
|
|
13232
|
-
})[];
|
|
12827
|
+
}[];
|
|
13233
12828
|
tags: string[];
|
|
13234
12829
|
"x-async-capable": boolean;
|
|
13235
12830
|
};
|
|
@@ -13258,13 +12853,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13258
12853
|
description: string;
|
|
13259
12854
|
};
|
|
13260
12855
|
};
|
|
13261
|
-
security:
|
|
12856
|
+
security: {
|
|
13262
12857
|
jwtAuth: any[];
|
|
13263
|
-
|
|
13264
|
-
} | {
|
|
13265
|
-
cookieAuth: any[];
|
|
13266
|
-
jwtAuth?: undefined;
|
|
13267
|
-
})[];
|
|
12858
|
+
}[];
|
|
13268
12859
|
tags: string[];
|
|
13269
12860
|
"x-async-capable": boolean;
|
|
13270
12861
|
};
|
|
@@ -13293,13 +12884,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13293
12884
|
description: string;
|
|
13294
12885
|
};
|
|
13295
12886
|
};
|
|
13296
|
-
security:
|
|
12887
|
+
security: {
|
|
13297
12888
|
jwtAuth: any[];
|
|
13298
|
-
|
|
13299
|
-
} | {
|
|
13300
|
-
cookieAuth: any[];
|
|
13301
|
-
jwtAuth?: undefined;
|
|
13302
|
-
})[];
|
|
12889
|
+
}[];
|
|
13303
12890
|
tags: string[];
|
|
13304
12891
|
"x-async-capable": boolean;
|
|
13305
12892
|
};
|
|
@@ -13328,13 +12915,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13328
12915
|
description: string;
|
|
13329
12916
|
};
|
|
13330
12917
|
};
|
|
13331
|
-
security:
|
|
12918
|
+
security: {
|
|
13332
12919
|
jwtAuth: any[];
|
|
13333
|
-
|
|
13334
|
-
} | {
|
|
13335
|
-
cookieAuth: any[];
|
|
13336
|
-
jwtAuth?: undefined;
|
|
13337
|
-
})[];
|
|
12920
|
+
}[];
|
|
13338
12921
|
tags: string[];
|
|
13339
12922
|
"x-async-capable": boolean;
|
|
13340
12923
|
};
|
|
@@ -13366,13 +12949,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13366
12949
|
description: string;
|
|
13367
12950
|
};
|
|
13368
12951
|
};
|
|
13369
|
-
security:
|
|
12952
|
+
security: {
|
|
13370
12953
|
jwtAuth: any[];
|
|
13371
|
-
|
|
13372
|
-
} | {
|
|
13373
|
-
cookieAuth: any[];
|
|
13374
|
-
jwtAuth?: undefined;
|
|
13375
|
-
})[];
|
|
12954
|
+
}[];
|
|
13376
12955
|
summary: string;
|
|
13377
12956
|
tags: string[];
|
|
13378
12957
|
"x-async-capable": boolean;
|
|
@@ -13403,13 +12982,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13403
12982
|
description: string;
|
|
13404
12983
|
};
|
|
13405
12984
|
};
|
|
13406
|
-
security:
|
|
12985
|
+
security: {
|
|
13407
12986
|
jwtAuth: any[];
|
|
13408
|
-
|
|
13409
|
-
} | {
|
|
13410
|
-
cookieAuth: any[];
|
|
13411
|
-
jwtAuth?: undefined;
|
|
13412
|
-
})[];
|
|
12987
|
+
}[];
|
|
13413
12988
|
tags: string[];
|
|
13414
12989
|
"x-async-capable": boolean;
|
|
13415
12990
|
};
|
|
@@ -13448,13 +13023,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13448
13023
|
description: string;
|
|
13449
13024
|
};
|
|
13450
13025
|
};
|
|
13451
|
-
security:
|
|
13026
|
+
security: {
|
|
13452
13027
|
jwtAuth: any[];
|
|
13453
|
-
|
|
13454
|
-
} | {
|
|
13455
|
-
cookieAuth: any[];
|
|
13456
|
-
jwtAuth?: undefined;
|
|
13457
|
-
})[];
|
|
13028
|
+
}[];
|
|
13458
13029
|
tags: string[];
|
|
13459
13030
|
"x-async-capable": boolean;
|
|
13460
13031
|
};
|
|
@@ -13494,13 +13065,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13494
13065
|
description: string;
|
|
13495
13066
|
};
|
|
13496
13067
|
};
|
|
13497
|
-
security:
|
|
13068
|
+
security: {
|
|
13498
13069
|
jwtAuth: any[];
|
|
13499
|
-
|
|
13500
|
-
} | {
|
|
13501
|
-
cookieAuth: any[];
|
|
13502
|
-
jwtAuth?: undefined;
|
|
13503
|
-
})[];
|
|
13070
|
+
}[];
|
|
13504
13071
|
tags: string[];
|
|
13505
13072
|
"x-async-capable": boolean;
|
|
13506
13073
|
};
|
|
@@ -13549,13 +13116,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13549
13116
|
description: string;
|
|
13550
13117
|
};
|
|
13551
13118
|
};
|
|
13552
|
-
security:
|
|
13119
|
+
security: {
|
|
13553
13120
|
jwtAuth: any[];
|
|
13554
|
-
|
|
13555
|
-
} | {
|
|
13556
|
-
cookieAuth: any[];
|
|
13557
|
-
jwtAuth?: undefined;
|
|
13558
|
-
})[];
|
|
13121
|
+
}[];
|
|
13559
13122
|
tags: string[];
|
|
13560
13123
|
"x-async-capable": boolean;
|
|
13561
13124
|
};
|
|
@@ -13579,13 +13142,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13579
13142
|
description: string;
|
|
13580
13143
|
};
|
|
13581
13144
|
};
|
|
13582
|
-
security:
|
|
13145
|
+
security: {
|
|
13583
13146
|
jwtAuth: any[];
|
|
13584
|
-
|
|
13585
|
-
} | {
|
|
13586
|
-
cookieAuth: any[];
|
|
13587
|
-
jwtAuth?: undefined;
|
|
13588
|
-
})[];
|
|
13147
|
+
}[];
|
|
13589
13148
|
tags: string[];
|
|
13590
13149
|
"x-async-capable": boolean;
|
|
13591
13150
|
};
|
|
@@ -13614,13 +13173,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13614
13173
|
description: string;
|
|
13615
13174
|
};
|
|
13616
13175
|
};
|
|
13617
|
-
security:
|
|
13176
|
+
security: {
|
|
13618
13177
|
jwtAuth: any[];
|
|
13619
|
-
|
|
13620
|
-
} | {
|
|
13621
|
-
cookieAuth: any[];
|
|
13622
|
-
jwtAuth?: undefined;
|
|
13623
|
-
})[];
|
|
13178
|
+
}[];
|
|
13624
13179
|
tags: string[];
|
|
13625
13180
|
"x-async-capable": boolean;
|
|
13626
13181
|
};
|
|
@@ -13668,13 +13223,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13668
13223
|
description: string;
|
|
13669
13224
|
};
|
|
13670
13225
|
};
|
|
13671
|
-
security:
|
|
13226
|
+
security: {
|
|
13672
13227
|
jwtAuth: any[];
|
|
13673
|
-
|
|
13674
|
-
} | {
|
|
13675
|
-
cookieAuth: any[];
|
|
13676
|
-
jwtAuth?: undefined;
|
|
13677
|
-
})[];
|
|
13228
|
+
}[];
|
|
13678
13229
|
tags: string[];
|
|
13679
13230
|
"x-async-capable": boolean;
|
|
13680
13231
|
};
|
|
@@ -13723,13 +13274,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13723
13274
|
description: string;
|
|
13724
13275
|
};
|
|
13725
13276
|
};
|
|
13726
|
-
security:
|
|
13277
|
+
security: {
|
|
13727
13278
|
jwtAuth: any[];
|
|
13728
|
-
|
|
13729
|
-
} | {
|
|
13730
|
-
cookieAuth: any[];
|
|
13731
|
-
jwtAuth?: undefined;
|
|
13732
|
-
})[];
|
|
13279
|
+
}[];
|
|
13733
13280
|
tags: string[];
|
|
13734
13281
|
"x-async-capable": boolean;
|
|
13735
13282
|
};
|
|
@@ -13753,13 +13300,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13753
13300
|
description: string;
|
|
13754
13301
|
};
|
|
13755
13302
|
};
|
|
13756
|
-
security:
|
|
13303
|
+
security: {
|
|
13757
13304
|
jwtAuth: any[];
|
|
13758
|
-
|
|
13759
|
-
} | {
|
|
13760
|
-
cookieAuth: any[];
|
|
13761
|
-
jwtAuth?: undefined;
|
|
13762
|
-
})[];
|
|
13305
|
+
}[];
|
|
13763
13306
|
tags: string[];
|
|
13764
13307
|
"x-async-capable": boolean;
|
|
13765
13308
|
};
|
|
@@ -13788,13 +13331,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13788
13331
|
description: string;
|
|
13789
13332
|
};
|
|
13790
13333
|
};
|
|
13791
|
-
security:
|
|
13334
|
+
security: {
|
|
13792
13335
|
jwtAuth: any[];
|
|
13793
|
-
|
|
13794
|
-
} | {
|
|
13795
|
-
cookieAuth: any[];
|
|
13796
|
-
jwtAuth?: undefined;
|
|
13797
|
-
})[];
|
|
13336
|
+
}[];
|
|
13798
13337
|
tags: string[];
|
|
13799
13338
|
"x-async-capable": boolean;
|
|
13800
13339
|
};
|
|
@@ -13842,13 +13381,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13842
13381
|
description: string;
|
|
13843
13382
|
};
|
|
13844
13383
|
};
|
|
13845
|
-
security:
|
|
13384
|
+
security: {
|
|
13846
13385
|
jwtAuth: any[];
|
|
13847
|
-
|
|
13848
|
-
} | {
|
|
13849
|
-
cookieAuth: any[];
|
|
13850
|
-
jwtAuth?: undefined;
|
|
13851
|
-
})[];
|
|
13386
|
+
}[];
|
|
13852
13387
|
tags: string[];
|
|
13853
13388
|
"x-async-capable": boolean;
|
|
13854
13389
|
};
|
|
@@ -13897,13 +13432,9 @@ declare const OPENAPI_SCHEMA: {
|
|
|
13897
13432
|
description: string;
|
|
13898
13433
|
};
|
|
13899
13434
|
};
|
|
13900
|
-
security:
|
|
13435
|
+
security: {
|
|
13901
13436
|
jwtAuth: any[];
|
|
13902
|
-
|
|
13903
|
-
} | {
|
|
13904
|
-
cookieAuth: any[];
|
|
13905
|
-
jwtAuth?: undefined;
|
|
13906
|
-
})[];
|
|
13437
|
+
}[];
|
|
13907
13438
|
tags: string[];
|
|
13908
13439
|
"x-async-capable": boolean;
|
|
13909
13440
|
};
|