@djangocfg/api 1.1.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -735,6 +735,51 @@ export const OPENAPI_SCHEMA = {
735
735
  ],
736
736
  "type": "object"
737
737
  },
738
+ "Balance": {
739
+ "description": "User balance serializer.",
740
+ "properties": {
741
+ "balance_display": {
742
+ "readOnly": true,
743
+ "type": "string"
744
+ },
745
+ "balance_usd": {
746
+ "description": "Current balance in USD",
747
+ "format": "decimal",
748
+ "pattern": "^-?\\d{0,8}(?:\\.\\d{0,2})?$",
749
+ "readOnly": true,
750
+ "type": "string"
751
+ },
752
+ "last_transaction_at": {
753
+ "description": "When the last transaction occurred",
754
+ "format": "date-time",
755
+ "nullable": true,
756
+ "readOnly": true,
757
+ "type": "string"
758
+ },
759
+ "total_deposited": {
760
+ "description": "Total amount deposited (lifetime)",
761
+ "format": "decimal",
762
+ "pattern": "^-?\\d{0,8}(?:\\.\\d{0,2})?$",
763
+ "readOnly": true,
764
+ "type": "string"
765
+ },
766
+ "total_withdrawn": {
767
+ "description": "Total amount withdrawn (lifetime)",
768
+ "format": "decimal",
769
+ "pattern": "^-?\\d{0,8}(?:\\.\\d{0,2})?$",
770
+ "readOnly": true,
771
+ "type": "string"
772
+ }
773
+ },
774
+ "required": [
775
+ "balance_display",
776
+ "balance_usd",
777
+ "last_transaction_at",
778
+ "total_deposited",
779
+ "total_withdrawn"
780
+ ],
781
+ "type": "object"
782
+ },
738
783
  "BulkEmailRequest": {
739
784
  "description": "Simple serializer for bulk email.",
740
785
  "properties": {
@@ -1220,6 +1265,76 @@ export const OPENAPI_SCHEMA = {
1220
1265
  ],
1221
1266
  "type": "object"
1222
1267
  },
1268
+ "Currency": {
1269
+ "description": "Currency list serializer.",
1270
+ "properties": {
1271
+ "code": {
1272
+ "description": "Currency code from provider (e.g., USDTTRC20, BTC, ETH)",
1273
+ "readOnly": true,
1274
+ "type": "string"
1275
+ },
1276
+ "decimal_places": {
1277
+ "description": "Number of decimal places for this currency",
1278
+ "readOnly": true,
1279
+ "type": "integer"
1280
+ },
1281
+ "display_name": {
1282
+ "readOnly": true,
1283
+ "type": "string"
1284
+ },
1285
+ "is_active": {
1286
+ "description": "Whether this currency is available for payments",
1287
+ "readOnly": true,
1288
+ "type": "boolean"
1289
+ },
1290
+ "min_amount_usd": {
1291
+ "description": "Minimum payment amount in USD",
1292
+ "format": "decimal",
1293
+ "pattern": "^-?\\d{0,8}(?:\\.\\d{0,2})?$",
1294
+ "readOnly": true,
1295
+ "type": "string"
1296
+ },
1297
+ "name": {
1298
+ "description": "Full currency name (e.g., USDT (TRC20), Bitcoin)",
1299
+ "readOnly": true,
1300
+ "type": "string"
1301
+ },
1302
+ "network": {
1303
+ "description": "Network name (e.g., TRC20, ERC20, Bitcoin)",
1304
+ "nullable": true,
1305
+ "readOnly": true,
1306
+ "type": "string"
1307
+ },
1308
+ "sort_order": {
1309
+ "description": "Sort order for currency list (lower = higher priority)",
1310
+ "readOnly": true,
1311
+ "type": "integer"
1312
+ },
1313
+ "symbol": {
1314
+ "description": "Currency symbol (e.g., \u20ae, \u20bf, \u039e)",
1315
+ "readOnly": true,
1316
+ "type": "string"
1317
+ },
1318
+ "token": {
1319
+ "description": "Token symbol (e.g., USDT, BTC, ETH)",
1320
+ "readOnly": true,
1321
+ "type": "string"
1322
+ }
1323
+ },
1324
+ "required": [
1325
+ "code",
1326
+ "decimal_places",
1327
+ "display_name",
1328
+ "is_active",
1329
+ "min_amount_usd",
1330
+ "name",
1331
+ "network",
1332
+ "sort_order",
1333
+ "symbol",
1334
+ "token"
1335
+ ],
1336
+ "type": "object"
1337
+ },
1223
1338
  "Document": {
1224
1339
  "description": "Document response serializer.",
1225
1340
  "properties": {
@@ -4391,6 +4506,8 @@ export const OPENAPI_SCHEMA = {
4391
4506
  "type": "string"
4392
4507
  },
4393
4508
  "explorer_link": {
4509
+ "description": "Get blockchain explorer link.",
4510
+ "nullable": true,
4394
4511
  "readOnly": true,
4395
4512
  "type": "string"
4396
4513
  },
@@ -4439,6 +4556,8 @@ export const OPENAPI_SCHEMA = {
4439
4556
  "type": "string"
4440
4557
  },
4441
4558
  "qr_code_url": {
4559
+ "description": "Get QR code URL.",
4560
+ "nullable": true,
4442
4561
  "readOnly": true,
4443
4562
  "type": "string"
4444
4563
  },
@@ -5101,6 +5220,83 @@ export const OPENAPI_SCHEMA = {
5101
5220
  ],
5102
5221
  "type": "object"
5103
5222
  },
5223
+ "Transaction": {
5224
+ "description": "Transaction serializer.",
5225
+ "properties": {
5226
+ "amount_display": {
5227
+ "readOnly": true,
5228
+ "type": "string"
5229
+ },
5230
+ "amount_usd": {
5231
+ "description": "Transaction amount in USD (positive=credit, negative=debit)",
5232
+ "format": "decimal",
5233
+ "pattern": "^-?\\d{0,8}(?:\\.\\d{0,2})?$",
5234
+ "readOnly": true,
5235
+ "type": "string"
5236
+ },
5237
+ "balance_after": {
5238
+ "description": "User balance after this transaction",
5239
+ "format": "decimal",
5240
+ "pattern": "^-?\\d{0,8}(?:\\.\\d{0,2})?$",
5241
+ "readOnly": true,
5242
+ "type": "string"
5243
+ },
5244
+ "created_at": {
5245
+ "description": "When this record was created",
5246
+ "format": "date-time",
5247
+ "readOnly": true,
5248
+ "type": "string"
5249
+ },
5250
+ "description": {
5251
+ "description": "Transaction description",
5252
+ "readOnly": true,
5253
+ "type": "string"
5254
+ },
5255
+ "id": {
5256
+ "description": "Unique identifier for this record",
5257
+ "format": "uuid",
5258
+ "readOnly": true,
5259
+ "type": "string"
5260
+ },
5261
+ "payment_id": {
5262
+ "description": "Related payment ID (if applicable)",
5263
+ "nullable": true,
5264
+ "readOnly": true,
5265
+ "type": "string"
5266
+ },
5267
+ "transaction_type": {
5268
+ "description": "Type of transaction\n\n* `deposit` - Deposit\n* `withdrawal` - Withdrawal\n* `payment` - Payment\n* `refund` - Refund\n* `fee` - Fee\n* `bonus` - Bonus\n* `adjustment` - Adjustment",
5269
+ "enum": [
5270
+ "deposit",
5271
+ "withdrawal",
5272
+ "payment",
5273
+ "refund",
5274
+ "fee",
5275
+ "bonus",
5276
+ "adjustment"
5277
+ ],
5278
+ "readOnly": true,
5279
+ "type": "string",
5280
+ "x-spec-enum-id": "25d1662d4db37694"
5281
+ },
5282
+ "type_display": {
5283
+ "readOnly": true,
5284
+ "type": "string"
5285
+ }
5286
+ },
5287
+ "required": [
5288
+ "amount_display",
5289
+ "amount_usd",
5290
+ "balance_after",
5291
+ "created_at",
5292
+ "description",
5293
+ "id",
5294
+ "payment_id",
5295
+ "transaction_type",
5296
+ "type_display"
5297
+ ],
5298
+ "type": "object"
5299
+ },
5104
5300
  "Unsubscribe": {
5105
5301
  "description": "Simple serializer for unsubscribe.",
5106
5302
  "properties": {
@@ -5428,8 +5624,8 @@ export const OPENAPI_SCHEMA = {
5428
5624
  }
5429
5625
  },
5430
5626
  "info": {
5431
- "description": "Complete API documentation for Django CFG sample project",
5432
- "title": "Django CFG Sample API",
5627
+ "description": "Complete API documentation for Django CFG Demo Project",
5628
+ "title": "Django CFG API",
5433
5629
  "version": "1.0.0",
5434
5630
  "x-django-metadata": {
5435
5631
  "apps": [
@@ -5509,9 +5705,6 @@ export const OPENAPI_SCHEMA = {
5509
5705
  {
5510
5706
  "jwtAuth": []
5511
5707
  },
5512
- {
5513
- "cookieAuth": []
5514
- },
5515
5708
  {}
5516
5709
  ],
5517
5710
  "tags": [
@@ -5580,9 +5773,6 @@ export const OPENAPI_SCHEMA = {
5580
5773
  {
5581
5774
  "jwtAuth": []
5582
5775
  },
5583
- {
5584
- "cookieAuth": []
5585
- },
5586
5776
  {}
5587
5777
  ],
5588
5778
  "tags": [
@@ -5620,9 +5810,6 @@ export const OPENAPI_SCHEMA = {
5620
5810
  "security": [
5621
5811
  {
5622
5812
  "jwtAuth": []
5623
- },
5624
- {
5625
- "cookieAuth": []
5626
5813
  }
5627
5814
  ],
5628
5815
  "summary": "Get current user profile",
@@ -5690,9 +5877,6 @@ export const OPENAPI_SCHEMA = {
5690
5877
  "security": [
5691
5878
  {
5692
5879
  "jwtAuth": []
5693
- },
5694
- {
5695
- "cookieAuth": []
5696
5880
  }
5697
5881
  ],
5698
5882
  "summary": "Upload user avatar",
@@ -5772,9 +5956,6 @@ export const OPENAPI_SCHEMA = {
5772
5956
  "security": [
5773
5957
  {
5774
5958
  "jwtAuth": []
5775
- },
5776
- {
5777
- "cookieAuth": []
5778
5959
  }
5779
5960
  ],
5780
5961
  "summary": "Partial update user profile",
@@ -5852,9 +6033,6 @@ export const OPENAPI_SCHEMA = {
5852
6033
  "security": [
5853
6034
  {
5854
6035
  "jwtAuth": []
5855
- },
5856
- {
5857
- "cookieAuth": []
5858
6036
  }
5859
6037
  ],
5860
6038
  "summary": "Partial update user profile",
@@ -5934,9 +6112,6 @@ export const OPENAPI_SCHEMA = {
5934
6112
  "security": [
5935
6113
  {
5936
6114
  "jwtAuth": []
5937
- },
5938
- {
5939
- "cookieAuth": []
5940
6115
  }
5941
6116
  ],
5942
6117
  "summary": "Update user profile",
@@ -6014,9 +6189,6 @@ export const OPENAPI_SCHEMA = {
6014
6189
  "security": [
6015
6190
  {
6016
6191
  "jwtAuth": []
6017
- },
6018
- {
6019
- "cookieAuth": []
6020
6192
  }
6021
6193
  ],
6022
6194
  "summary": "Update user profile",
@@ -6088,9 +6260,6 @@ export const OPENAPI_SCHEMA = {
6088
6260
  {
6089
6261
  "jwtAuth": []
6090
6262
  },
6091
- {
6092
- "cookieAuth": []
6093
- },
6094
6263
  {}
6095
6264
  ],
6096
6265
  "tags": [
@@ -6119,9 +6288,6 @@ export const OPENAPI_SCHEMA = {
6119
6288
  {
6120
6289
  "jwtAuth": []
6121
6290
  },
6122
- {
6123
- "cookieAuth": []
6124
- },
6125
6291
  {}
6126
6292
  ],
6127
6293
  "tags": [
@@ -6150,9 +6316,6 @@ export const OPENAPI_SCHEMA = {
6150
6316
  {
6151
6317
  "jwtAuth": []
6152
6318
  },
6153
- {
6154
- "cookieAuth": []
6155
- },
6156
6319
  {}
6157
6320
  ],
6158
6321
  "tags": [
@@ -6200,9 +6363,6 @@ export const OPENAPI_SCHEMA = {
6200
6363
  "security": [
6201
6364
  {
6202
6365
  "jwtAuth": []
6203
- },
6204
- {
6205
- "cookieAuth": []
6206
6366
  }
6207
6367
  ],
6208
6368
  "tags": [
@@ -6248,9 +6408,6 @@ export const OPENAPI_SCHEMA = {
6248
6408
  "security": [
6249
6409
  {
6250
6410
  "jwtAuth": []
6251
- },
6252
- {
6253
- "cookieAuth": []
6254
6411
  }
6255
6412
  ],
6256
6413
  "tags": [
@@ -6318,9 +6475,6 @@ export const OPENAPI_SCHEMA = {
6318
6475
  "security": [
6319
6476
  {
6320
6477
  "jwtAuth": []
6321
- },
6322
- {
6323
- "cookieAuth": []
6324
6478
  }
6325
6479
  ],
6326
6480
  "summary": "Process chat query with RAG",
@@ -6354,9 +6508,6 @@ export const OPENAPI_SCHEMA = {
6354
6508
  "security": [
6355
6509
  {
6356
6510
  "jwtAuth": []
6357
- },
6358
- {
6359
- "cookieAuth": []
6360
6511
  }
6361
6512
  ],
6362
6513
  "tags": [
@@ -6394,9 +6545,6 @@ export const OPENAPI_SCHEMA = {
6394
6545
  "security": [
6395
6546
  {
6396
6547
  "jwtAuth": []
6397
- },
6398
- {
6399
- "cookieAuth": []
6400
6548
  }
6401
6549
  ],
6402
6550
  "tags": [
@@ -6453,9 +6601,6 @@ export const OPENAPI_SCHEMA = {
6453
6601
  "security": [
6454
6602
  {
6455
6603
  "jwtAuth": []
6456
- },
6457
- {
6458
- "cookieAuth": []
6459
6604
  }
6460
6605
  ],
6461
6606
  "tags": [
@@ -6513,9 +6658,6 @@ export const OPENAPI_SCHEMA = {
6513
6658
  "security": [
6514
6659
  {
6515
6660
  "jwtAuth": []
6516
- },
6517
- {
6518
- "cookieAuth": []
6519
6661
  }
6520
6662
  ],
6521
6663
  "tags": [
@@ -6555,9 +6697,6 @@ export const OPENAPI_SCHEMA = {
6555
6697
  "security": [
6556
6698
  {
6557
6699
  "jwtAuth": []
6558
- },
6559
- {
6560
- "cookieAuth": []
6561
6700
  }
6562
6701
  ],
6563
6702
  "summary": "Get chat history",
@@ -6614,9 +6753,6 @@ export const OPENAPI_SCHEMA = {
6614
6753
  "security": [
6615
6754
  {
6616
6755
  "jwtAuth": []
6617
- },
6618
- {
6619
- "cookieAuth": []
6620
6756
  }
6621
6757
  ],
6622
6758
  "summary": "List user documents",
@@ -6680,48 +6816,18 @@ export const OPENAPI_SCHEMA = {
6680
6816
  "description": ""
6681
6817
  },
6682
6818
  "400": {
6683
- "content": {
6684
- "application/json": {
6685
- "schema": {
6686
- "additionalProperties": {},
6687
- "description": "Unspecified response body",
6688
- "type": "object"
6689
- }
6690
- }
6691
- },
6692
- "description": ""
6819
+ "description": "Validation errors"
6693
6820
  },
6694
6821
  "413": {
6695
- "content": {
6696
- "application/json": {
6697
- "schema": {
6698
- "additionalProperties": {},
6699
- "description": "Unspecified response body",
6700
- "type": "object"
6701
- }
6702
- }
6703
- },
6704
- "description": ""
6822
+ "description": "File too large"
6705
6823
  },
6706
6824
  "429": {
6707
- "content": {
6708
- "application/json": {
6709
- "schema": {
6710
- "additionalProperties": {},
6711
- "description": "Unspecified response body",
6712
- "type": "object"
6713
- }
6714
- }
6715
- },
6716
- "description": ""
6825
+ "description": "Rate limit exceeded"
6717
6826
  }
6718
6827
  },
6719
6828
  "security": [
6720
6829
  {
6721
6830
  "jwtAuth": []
6722
- },
6723
- {
6724
- "cookieAuth": []
6725
6831
  }
6726
6832
  ],
6727
6833
  "summary": "Upload new document",
@@ -6750,9 +6856,6 @@ export const OPENAPI_SCHEMA = {
6750
6856
  "security": [
6751
6857
  {
6752
6858
  "jwtAuth": []
6753
- },
6754
- {
6755
- "cookieAuth": []
6756
6859
  }
6757
6860
  ],
6758
6861
  "summary": "Get processing statistics",
@@ -6780,36 +6883,15 @@ export const OPENAPI_SCHEMA = {
6780
6883
  ],
6781
6884
  "responses": {
6782
6885
  "204": {
6783
- "content": {
6784
- "application/json": {
6785
- "schema": {
6786
- "additionalProperties": {},
6787
- "description": "Unspecified response body",
6788
- "type": "object"
6789
- }
6790
- }
6791
- },
6792
- "description": ""
6886
+ "description": "Document deleted successfully"
6793
6887
  },
6794
6888
  "404": {
6795
- "content": {
6796
- "application/json": {
6797
- "schema": {
6798
- "additionalProperties": {},
6799
- "description": "Unspecified response body",
6800
- "type": "object"
6801
- }
6802
- }
6803
- },
6804
- "description": ""
6889
+ "description": "Document not found"
6805
6890
  }
6806
6891
  },
6807
6892
  "security": [
6808
6893
  {
6809
6894
  "jwtAuth": []
6810
- },
6811
- {
6812
- "cookieAuth": []
6813
6895
  }
6814
6896
  ],
6815
6897
  "summary": "Delete document",
@@ -6845,24 +6927,12 @@ export const OPENAPI_SCHEMA = {
6845
6927
  "description": ""
6846
6928
  },
6847
6929
  "404": {
6848
- "content": {
6849
- "application/json": {
6850
- "schema": {
6851
- "additionalProperties": {},
6852
- "description": "Unspecified response body",
6853
- "type": "object"
6854
- }
6855
- }
6856
- },
6857
- "description": ""
6930
+ "description": "Document not found"
6858
6931
  }
6859
6932
  },
6860
6933
  "security": [
6861
6934
  {
6862
6935
  "jwtAuth": []
6863
- },
6864
- {
6865
- "cookieAuth": []
6866
6936
  }
6867
6937
  ],
6868
6938
  "summary": "Get document details",
@@ -6920,9 +6990,6 @@ export const OPENAPI_SCHEMA = {
6920
6990
  "security": [
6921
6991
  {
6922
6992
  "jwtAuth": []
6923
- },
6924
- {
6925
- "cookieAuth": []
6926
6993
  }
6927
6994
  ],
6928
6995
  "tags": [
@@ -6980,9 +7047,6 @@ export const OPENAPI_SCHEMA = {
6980
7047
  "security": [
6981
7048
  {
6982
7049
  "jwtAuth": []
6983
- },
6984
- {
6985
- "cookieAuth": []
6986
7050
  }
6987
7051
  ],
6988
7052
  "tags": [
@@ -7042,9 +7106,6 @@ export const OPENAPI_SCHEMA = {
7042
7106
  "security": [
7043
7107
  {
7044
7108
  "jwtAuth": []
7045
- },
7046
- {
7047
- "cookieAuth": []
7048
7109
  }
7049
7110
  ],
7050
7111
  "summary": "Reprocess document",
@@ -7085,9 +7146,6 @@ export const OPENAPI_SCHEMA = {
7085
7146
  "security": [
7086
7147
  {
7087
7148
  "jwtAuth": []
7088
- },
7089
- {
7090
- "cookieAuth": []
7091
7149
  }
7092
7150
  ],
7093
7151
  "summary": "Get document processing status",
@@ -7136,9 +7194,6 @@ export const OPENAPI_SCHEMA = {
7136
7194
  "security": [
7137
7195
  {
7138
7196
  "jwtAuth": []
7139
- },
7140
- {
7141
- "cookieAuth": []
7142
7197
  }
7143
7198
  ],
7144
7199
  "summary": "List user chat sessions",
@@ -7184,9 +7239,6 @@ export const OPENAPI_SCHEMA = {
7184
7239
  "security": [
7185
7240
  {
7186
7241
  "jwtAuth": []
7187
- },
7188
- {
7189
- "cookieAuth": []
7190
7242
  }
7191
7243
  ],
7192
7244
  "summary": "Create new chat session",
@@ -7220,9 +7272,6 @@ export const OPENAPI_SCHEMA = {
7220
7272
  "security": [
7221
7273
  {
7222
7274
  "jwtAuth": []
7223
- },
7224
- {
7225
- "cookieAuth": []
7226
7275
  }
7227
7276
  ],
7228
7277
  "tags": [
@@ -7260,9 +7309,6 @@ export const OPENAPI_SCHEMA = {
7260
7309
  "security": [
7261
7310
  {
7262
7311
  "jwtAuth": []
7263
- },
7264
- {
7265
- "cookieAuth": []
7266
7312
  }
7267
7313
  ],
7268
7314
  "tags": [
@@ -7319,9 +7365,6 @@ export const OPENAPI_SCHEMA = {
7319
7365
  "security": [
7320
7366
  {
7321
7367
  "jwtAuth": []
7322
- },
7323
- {
7324
- "cookieAuth": []
7325
7368
  }
7326
7369
  ],
7327
7370
  "tags": [
@@ -7378,9 +7421,6 @@ export const OPENAPI_SCHEMA = {
7378
7421
  "security": [
7379
7422
  {
7380
7423
  "jwtAuth": []
7381
- },
7382
- {
7383
- "cookieAuth": []
7384
7424
  }
7385
7425
  ],
7386
7426
  "tags": [
@@ -7439,9 +7479,6 @@ export const OPENAPI_SCHEMA = {
7439
7479
  "security": [
7440
7480
  {
7441
7481
  "jwtAuth": []
7442
- },
7443
- {
7444
- "cookieAuth": []
7445
7482
  }
7446
7483
  ],
7447
7484
  "summary": "Activate chat session",
@@ -7501,9 +7538,6 @@ export const OPENAPI_SCHEMA = {
7501
7538
  "security": [
7502
7539
  {
7503
7540
  "jwtAuth": []
7504
- },
7505
- {
7506
- "cookieAuth": []
7507
7541
  }
7508
7542
  ],
7509
7543
  "summary": "Archive chat session",
@@ -7553,9 +7587,6 @@ export const OPENAPI_SCHEMA = {
7553
7587
  {
7554
7588
  "jwtAuth": []
7555
7589
  },
7556
- {
7557
- "cookieAuth": []
7558
- },
7559
7590
  {}
7560
7591
  ],
7561
7592
  "summary": "List public categories",
@@ -7593,25 +7624,13 @@ export const OPENAPI_SCHEMA = {
7593
7624
  "description": ""
7594
7625
  },
7595
7626
  "404": {
7596
- "content": {
7597
- "application/json": {
7598
- "schema": {
7599
- "additionalProperties": {},
7600
- "description": "Unspecified response body",
7601
- "type": "object"
7602
- }
7603
- }
7604
- },
7605
- "description": ""
7627
+ "description": "Category not found"
7606
7628
  }
7607
7629
  },
7608
7630
  "security": [
7609
7631
  {
7610
7632
  "jwtAuth": []
7611
7633
  },
7612
- {
7613
- "cookieAuth": []
7614
- },
7615
7634
  {}
7616
7635
  ],
7617
7636
  "summary": "Get public category details",
@@ -7677,9 +7696,6 @@ export const OPENAPI_SCHEMA = {
7677
7696
  {
7678
7697
  "jwtAuth": []
7679
7698
  },
7680
- {
7681
- "cookieAuth": []
7682
- },
7683
7699
  {}
7684
7700
  ],
7685
7701
  "summary": "List public documents",
@@ -7717,25 +7733,13 @@ export const OPENAPI_SCHEMA = {
7717
7733
  "description": ""
7718
7734
  },
7719
7735
  "404": {
7720
- "content": {
7721
- "application/json": {
7722
- "schema": {
7723
- "additionalProperties": {},
7724
- "description": "Unspecified response body",
7725
- "type": "object"
7726
- }
7727
- }
7728
- },
7729
- "description": ""
7736
+ "description": "Document not found"
7730
7737
  }
7731
7738
  },
7732
7739
  "security": [
7733
7740
  {
7734
7741
  "jwtAuth": []
7735
7742
  },
7736
- {
7737
- "cookieAuth": []
7738
- },
7739
7743
  {}
7740
7744
  ],
7741
7745
  "summary": "Get public document details",
@@ -7784,9 +7788,6 @@ export const OPENAPI_SCHEMA = {
7784
7788
  "security": [
7785
7789
  {
7786
7790
  "jwtAuth": []
7787
- },
7788
- {
7789
- "cookieAuth": []
7790
7791
  }
7791
7792
  ],
7792
7793
  "tags": [
@@ -7842,48 +7843,18 @@ export const OPENAPI_SCHEMA = {
7842
7843
  "description": ""
7843
7844
  },
7844
7845
  "400": {
7845
- "content": {
7846
- "application/json": {
7847
- "schema": {
7848
- "additionalProperties": {},
7849
- "description": "Unspecified response body",
7850
- "type": "object"
7851
- }
7852
- }
7853
- },
7854
- "description": ""
7846
+ "description": "Validation errors"
7855
7847
  },
7856
7848
  "413": {
7857
- "content": {
7858
- "application/json": {
7859
- "schema": {
7860
- "additionalProperties": {},
7861
- "description": "Unspecified response body",
7862
- "type": "object"
7863
- }
7864
- }
7865
- },
7866
- "description": ""
7849
+ "description": "File too large"
7867
7850
  },
7868
7851
  "429": {
7869
- "content": {
7870
- "application/json": {
7871
- "schema": {
7872
- "additionalProperties": {},
7873
- "description": "Unspecified response body",
7874
- "type": "object"
7875
- }
7876
- }
7877
- },
7878
- "description": ""
7852
+ "description": "Rate limit exceeded"
7879
7853
  }
7880
7854
  },
7881
7855
  "security": [
7882
7856
  {
7883
7857
  "jwtAuth": []
7884
- },
7885
- {
7886
- "cookieAuth": []
7887
7858
  }
7888
7859
  ],
7889
7860
  "summary": "Upload and process archive",
@@ -7927,9 +7898,6 @@ export const OPENAPI_SCHEMA = {
7927
7898
  "security": [
7928
7899
  {
7929
7900
  "jwtAuth": []
7930
- },
7931
- {
7932
- "cookieAuth": []
7933
7901
  }
7934
7902
  ],
7935
7903
  "summary": "Re-vectorize chunks",
@@ -7958,9 +7926,6 @@ export const OPENAPI_SCHEMA = {
7958
7926
  "security": [
7959
7927
  {
7960
7928
  "jwtAuth": []
7961
- },
7962
- {
7963
- "cookieAuth": []
7964
7929
  }
7965
7930
  ],
7966
7931
  "summary": "Get archive statistics",
@@ -7989,9 +7954,6 @@ export const OPENAPI_SCHEMA = {
7989
7954
  "security": [
7990
7955
  {
7991
7956
  "jwtAuth": []
7992
- },
7993
- {
7994
- "cookieAuth": []
7995
7957
  }
7996
7958
  ],
7997
7959
  "summary": "Get vectorization statistics",
@@ -8025,9 +7987,6 @@ export const OPENAPI_SCHEMA = {
8025
7987
  "security": [
8026
7988
  {
8027
7989
  "jwtAuth": []
8028
- },
8029
- {
8030
- "cookieAuth": []
8031
7990
  }
8032
7991
  ],
8033
7992
  "tags": [
@@ -8065,9 +8024,6 @@ export const OPENAPI_SCHEMA = {
8065
8024
  "security": [
8066
8025
  {
8067
8026
  "jwtAuth": []
8068
- },
8069
- {
8070
- "cookieAuth": []
8071
8027
  }
8072
8028
  ],
8073
8029
  "tags": [
@@ -8119,9 +8075,6 @@ export const OPENAPI_SCHEMA = {
8119
8075
  "security": [
8120
8076
  {
8121
8077
  "jwtAuth": []
8122
- },
8123
- {
8124
- "cookieAuth": []
8125
8078
  }
8126
8079
  ],
8127
8080
  "tags": [
@@ -8174,9 +8127,6 @@ export const OPENAPI_SCHEMA = {
8174
8127
  "security": [
8175
8128
  {
8176
8129
  "jwtAuth": []
8177
- },
8178
- {
8179
- "cookieAuth": []
8180
8130
  }
8181
8131
  ],
8182
8132
  "tags": [
@@ -8216,9 +8166,6 @@ export const OPENAPI_SCHEMA = {
8216
8166
  "security": [
8217
8167
  {
8218
8168
  "jwtAuth": []
8219
- },
8220
- {
8221
- "cookieAuth": []
8222
8169
  }
8223
8170
  ],
8224
8171
  "summary": "Get archive file tree",
@@ -8277,9 +8224,6 @@ export const OPENAPI_SCHEMA = {
8277
8224
  "security": [
8278
8225
  {
8279
8226
  "jwtAuth": []
8280
- },
8281
- {
8282
- "cookieAuth": []
8283
8227
  }
8284
8228
  ],
8285
8229
  "summary": "Get archive items",
@@ -8353,9 +8297,6 @@ export const OPENAPI_SCHEMA = {
8353
8297
  "security": [
8354
8298
  {
8355
8299
  "jwtAuth": []
8356
- },
8357
- {
8358
- "cookieAuth": []
8359
8300
  }
8360
8301
  ],
8361
8302
  "summary": "Search archive chunks",
@@ -8404,9 +8345,6 @@ export const OPENAPI_SCHEMA = {
8404
8345
  "security": [
8405
8346
  {
8406
8347
  "jwtAuth": []
8407
- },
8408
- {
8409
- "cookieAuth": []
8410
8348
  }
8411
8349
  ],
8412
8350
  "tags": [
@@ -8452,9 +8390,6 @@ export const OPENAPI_SCHEMA = {
8452
8390
  "security": [
8453
8391
  {
8454
8392
  "jwtAuth": []
8455
- },
8456
- {
8457
- "cookieAuth": []
8458
8393
  }
8459
8394
  ],
8460
8395
  "tags": [
@@ -8487,9 +8422,6 @@ export const OPENAPI_SCHEMA = {
8487
8422
  "security": [
8488
8423
  {
8489
8424
  "jwtAuth": []
8490
- },
8491
- {
8492
- "cookieAuth": []
8493
8425
  }
8494
8426
  ],
8495
8427
  "tags": [
@@ -8527,9 +8459,6 @@ export const OPENAPI_SCHEMA = {
8527
8459
  "security": [
8528
8460
  {
8529
8461
  "jwtAuth": []
8530
- },
8531
- {
8532
- "cookieAuth": []
8533
8462
  }
8534
8463
  ],
8535
8464
  "tags": [
@@ -8586,9 +8515,6 @@ export const OPENAPI_SCHEMA = {
8586
8515
  "security": [
8587
8516
  {
8588
8517
  "jwtAuth": []
8589
- },
8590
- {
8591
- "cookieAuth": []
8592
8518
  }
8593
8519
  ],
8594
8520
  "tags": [
@@ -8646,9 +8572,6 @@ export const OPENAPI_SCHEMA = {
8646
8572
  "security": [
8647
8573
  {
8648
8574
  "jwtAuth": []
8649
- },
8650
- {
8651
- "cookieAuth": []
8652
8575
  }
8653
8576
  ],
8654
8577
  "tags": [
@@ -8688,9 +8611,6 @@ export const OPENAPI_SCHEMA = {
8688
8611
  "security": [
8689
8612
  {
8690
8613
  "jwtAuth": []
8691
- },
8692
- {
8693
- "cookieAuth": []
8694
8614
  }
8695
8615
  ],
8696
8616
  "summary": "Get chunk context",
@@ -8751,9 +8671,6 @@ export const OPENAPI_SCHEMA = {
8751
8671
  "security": [
8752
8672
  {
8753
8673
  "jwtAuth": []
8754
- },
8755
- {
8756
- "cookieAuth": []
8757
8674
  }
8758
8675
  ],
8759
8676
  "summary": "Vectorize chunk",
@@ -8802,9 +8719,6 @@ export const OPENAPI_SCHEMA = {
8802
8719
  "security": [
8803
8720
  {
8804
8721
  "jwtAuth": []
8805
- },
8806
- {
8807
- "cookieAuth": []
8808
8722
  }
8809
8723
  ],
8810
8724
  "tags": [
@@ -8850,9 +8764,6 @@ export const OPENAPI_SCHEMA = {
8850
8764
  "security": [
8851
8765
  {
8852
8766
  "jwtAuth": []
8853
- },
8854
- {
8855
- "cookieAuth": []
8856
8767
  }
8857
8768
  ],
8858
8769
  "tags": [
@@ -8885,9 +8796,6 @@ export const OPENAPI_SCHEMA = {
8885
8796
  "security": [
8886
8797
  {
8887
8798
  "jwtAuth": []
8888
- },
8889
- {
8890
- "cookieAuth": []
8891
8799
  }
8892
8800
  ],
8893
8801
  "tags": [
@@ -8925,9 +8833,6 @@ export const OPENAPI_SCHEMA = {
8925
8833
  "security": [
8926
8834
  {
8927
8835
  "jwtAuth": []
8928
- },
8929
- {
8930
- "cookieAuth": []
8931
8836
  }
8932
8837
  ],
8933
8838
  "tags": [
@@ -8984,9 +8889,6 @@ export const OPENAPI_SCHEMA = {
8984
8889
  "security": [
8985
8890
  {
8986
8891
  "jwtAuth": []
8987
- },
8988
- {
8989
- "cookieAuth": []
8990
8892
  }
8991
8893
  ],
8992
8894
  "tags": [
@@ -9044,9 +8946,6 @@ export const OPENAPI_SCHEMA = {
9044
8946
  "security": [
9045
8947
  {
9046
8948
  "jwtAuth": []
9047
- },
9048
- {
9049
- "cookieAuth": []
9050
8949
  }
9051
8950
  ],
9052
8951
  "tags": [
@@ -9104,9 +9003,6 @@ export const OPENAPI_SCHEMA = {
9104
9003
  "security": [
9105
9004
  {
9106
9005
  "jwtAuth": []
9107
- },
9108
- {
9109
- "cookieAuth": []
9110
9006
  }
9111
9007
  ],
9112
9008
  "summary": "Get item chunks",
@@ -9147,9 +9043,6 @@ export const OPENAPI_SCHEMA = {
9147
9043
  "security": [
9148
9044
  {
9149
9045
  "jwtAuth": []
9150
- },
9151
- {
9152
- "cookieAuth": []
9153
9046
  }
9154
9047
  ],
9155
9048
  "summary": "Get item content",
@@ -9199,9 +9092,6 @@ export const OPENAPI_SCHEMA = {
9199
9092
  {
9200
9093
  "jwtAuth": []
9201
9094
  },
9202
- {
9203
- "cookieAuth": []
9204
- },
9205
9095
  {}
9206
9096
  ],
9207
9097
  "tags": [
@@ -9248,9 +9138,6 @@ export const OPENAPI_SCHEMA = {
9248
9138
  {
9249
9139
  "jwtAuth": []
9250
9140
  },
9251
- {
9252
- "cookieAuth": []
9253
- },
9254
9141
  {}
9255
9142
  ],
9256
9143
  "tags": [
@@ -9325,9 +9212,6 @@ export const OPENAPI_SCHEMA = {
9325
9212
  {
9326
9213
  "jwtAuth": []
9327
9214
  },
9328
- {
9329
- "cookieAuth": []
9330
- },
9331
9215
  {}
9332
9216
  ],
9333
9217
  "summary": "Submit Lead Form",
@@ -9361,9 +9245,6 @@ export const OPENAPI_SCHEMA = {
9361
9245
  {
9362
9246
  "jwtAuth": []
9363
9247
  },
9364
- {
9365
- "cookieAuth": []
9366
- },
9367
9248
  {}
9368
9249
  ],
9369
9250
  "tags": [
@@ -9401,9 +9282,6 @@ export const OPENAPI_SCHEMA = {
9401
9282
  {
9402
9283
  "jwtAuth": []
9403
9284
  },
9404
- {
9405
- "cookieAuth": []
9406
- },
9407
9285
  {}
9408
9286
  ],
9409
9287
  "tags": [
@@ -9460,9 +9338,6 @@ export const OPENAPI_SCHEMA = {
9460
9338
  {
9461
9339
  "jwtAuth": []
9462
9340
  },
9463
- {
9464
- "cookieAuth": []
9465
- },
9466
9341
  {}
9467
9342
  ],
9468
9343
  "tags": [
@@ -9520,9 +9395,6 @@ export const OPENAPI_SCHEMA = {
9520
9395
  {
9521
9396
  "jwtAuth": []
9522
9397
  },
9523
- {
9524
- "cookieAuth": []
9525
- },
9526
9398
  {}
9527
9399
  ],
9528
9400
  "tags": [
@@ -9580,9 +9452,6 @@ export const OPENAPI_SCHEMA = {
9580
9452
  "security": [
9581
9453
  {
9582
9454
  "jwtAuth": []
9583
- },
9584
- {
9585
- "cookieAuth": []
9586
9455
  }
9587
9456
  ],
9588
9457
  "summary": "Send Bulk Email",
@@ -9631,9 +9500,6 @@ export const OPENAPI_SCHEMA = {
9631
9500
  "security": [
9632
9501
  {
9633
9502
  "jwtAuth": []
9634
- },
9635
- {
9636
- "cookieAuth": []
9637
9503
  }
9638
9504
  ],
9639
9505
  "summary": "List Newsletter Campaigns",
@@ -9680,9 +9546,6 @@ export const OPENAPI_SCHEMA = {
9680
9546
  "security": [
9681
9547
  {
9682
9548
  "jwtAuth": []
9683
- },
9684
- {
9685
- "cookieAuth": []
9686
9549
  }
9687
9550
  ],
9688
9551
  "summary": "Create Newsletter Campaign",
@@ -9751,9 +9614,6 @@ export const OPENAPI_SCHEMA = {
9751
9614
  "security": [
9752
9615
  {
9753
9616
  "jwtAuth": []
9754
- },
9755
- {
9756
- "cookieAuth": []
9757
9617
  }
9758
9618
  ],
9759
9619
  "summary": "Send Newsletter Campaign",
@@ -9785,9 +9645,6 @@ export const OPENAPI_SCHEMA = {
9785
9645
  "security": [
9786
9646
  {
9787
9647
  "jwtAuth": []
9788
- },
9789
- {
9790
- "cookieAuth": []
9791
9648
  }
9792
9649
  ],
9793
9650
  "summary": "Delete Campaign",
@@ -9824,9 +9681,6 @@ export const OPENAPI_SCHEMA = {
9824
9681
  "security": [
9825
9682
  {
9826
9683
  "jwtAuth": []
9827
- },
9828
- {
9829
- "cookieAuth": []
9830
9684
  }
9831
9685
  ],
9832
9686
  "summary": "Get Campaign Details",
@@ -9882,9 +9736,6 @@ export const OPENAPI_SCHEMA = {
9882
9736
  "security": [
9883
9737
  {
9884
9738
  "jwtAuth": []
9885
- },
9886
- {
9887
- "cookieAuth": []
9888
9739
  }
9889
9740
  ],
9890
9741
  "tags": [
@@ -9940,9 +9791,6 @@ export const OPENAPI_SCHEMA = {
9940
9791
  "security": [
9941
9792
  {
9942
9793
  "jwtAuth": []
9943
- },
9944
- {
9945
- "cookieAuth": []
9946
9794
  }
9947
9795
  ],
9948
9796
  "summary": "Update Campaign",
@@ -9991,9 +9839,6 @@ export const OPENAPI_SCHEMA = {
9991
9839
  "security": [
9992
9840
  {
9993
9841
  "jwtAuth": []
9994
- },
9995
- {
9996
- "cookieAuth": []
9997
9842
  }
9998
9843
  ],
9999
9844
  "summary": "List Email Logs",
@@ -10043,9 +9888,6 @@ export const OPENAPI_SCHEMA = {
10043
9888
  {
10044
9889
  "jwtAuth": []
10045
9890
  },
10046
- {
10047
- "cookieAuth": []
10048
- },
10049
9891
  {}
10050
9892
  ],
10051
9893
  "summary": "List Active Newsletters",
@@ -10085,9 +9927,6 @@ export const OPENAPI_SCHEMA = {
10085
9927
  {
10086
9928
  "jwtAuth": []
10087
9929
  },
10088
- {
10089
- "cookieAuth": []
10090
- },
10091
9930
  {}
10092
9931
  ],
10093
9932
  "summary": "Get Newsletter Details",
@@ -10157,9 +9996,6 @@ export const OPENAPI_SCHEMA = {
10157
9996
  {
10158
9997
  "jwtAuth": []
10159
9998
  },
10160
- {
10161
- "cookieAuth": []
10162
- },
10163
9999
  {}
10164
10000
  ],
10165
10001
  "summary": "Subscribe to Newsletter",
@@ -10208,9 +10044,6 @@ export const OPENAPI_SCHEMA = {
10208
10044
  "security": [
10209
10045
  {
10210
10046
  "jwtAuth": []
10211
- },
10212
- {
10213
- "cookieAuth": []
10214
10047
  }
10215
10048
  ],
10216
10049
  "summary": "List User Subscriptions",
@@ -10270,9 +10103,6 @@ export const OPENAPI_SCHEMA = {
10270
10103
  {
10271
10104
  "jwtAuth": []
10272
10105
  },
10273
- {
10274
- "cookieAuth": []
10275
- },
10276
10106
  {}
10277
10107
  ],
10278
10108
  "summary": "Test Email Sending",
@@ -10321,9 +10151,6 @@ export const OPENAPI_SCHEMA = {
10321
10151
  {
10322
10152
  "jwtAuth": []
10323
10153
  },
10324
- {
10325
- "cookieAuth": []
10326
- },
10327
10154
  {}
10328
10155
  ],
10329
10156
  "tags": [
@@ -10380,9 +10207,6 @@ export const OPENAPI_SCHEMA = {
10380
10207
  {
10381
10208
  "jwtAuth": []
10382
10209
  },
10383
- {
10384
- "cookieAuth": []
10385
- },
10386
10210
  {}
10387
10211
  ],
10388
10212
  "summary": "Unsubscribe from Newsletter",
@@ -10430,9 +10254,6 @@ export const OPENAPI_SCHEMA = {
10430
10254
  {
10431
10255
  "jwtAuth": []
10432
10256
  },
10433
- {
10434
- "cookieAuth": []
10435
- },
10436
10257
  {}
10437
10258
  ],
10438
10259
  "tags": [
@@ -10443,21 +10264,26 @@ export const OPENAPI_SCHEMA = {
10443
10264
  },
10444
10265
  "/cfg/payments/balance/": {
10445
10266
  "get": {
10446
- "description": "Get current user balance.",
10267
+ "description": "Get current user balance and transaction statistics",
10447
10268
  "operationId": "cfg_payments_balance_retrieve",
10448
10269
  "responses": {
10449
10270
  "200": {
10450
- "description": "No response body"
10271
+ "content": {
10272
+ "application/json": {
10273
+ "schema": {
10274
+ "$ref": "#/components/schemas/Balance"
10275
+ }
10276
+ }
10277
+ },
10278
+ "description": ""
10451
10279
  }
10452
10280
  },
10453
10281
  "security": [
10454
10282
  {
10455
10283
  "jwtAuth": []
10456
- },
10457
- {
10458
- "cookieAuth": []
10459
10284
  }
10460
10285
  ],
10286
+ "summary": "Get user balance",
10461
10287
  "tags": [
10462
10288
  "payments"
10463
10289
  ],
@@ -10466,21 +10292,29 @@ export const OPENAPI_SCHEMA = {
10466
10292
  },
10467
10293
  "/cfg/payments/currencies/": {
10468
10294
  "get": {
10469
- "description": "GET /api/v1/payments/currencies/\n\nReturns list of available currencies with token+network info.",
10470
- "operationId": "cfg_payments_currencies_retrieve",
10295
+ "description": "Returns list of available currencies with token+network info",
10296
+ "operationId": "cfg_payments_currencies_list",
10471
10297
  "responses": {
10472
10298
  "200": {
10473
- "description": "No response body"
10299
+ "content": {
10300
+ "application/json": {
10301
+ "schema": {
10302
+ "items": {
10303
+ "$ref": "#/components/schemas/Currency"
10304
+ },
10305
+ "type": "array"
10306
+ }
10307
+ }
10308
+ },
10309
+ "description": ""
10474
10310
  }
10475
10311
  },
10476
10312
  "security": [
10477
10313
  {
10478
10314
  "jwtAuth": []
10479
- },
10480
- {
10481
- "cookieAuth": []
10482
10315
  }
10483
10316
  ],
10317
+ "summary": "Get available currencies",
10484
10318
  "tags": [
10485
10319
  "payments"
10486
10320
  ],
@@ -10526,9 +10360,6 @@ export const OPENAPI_SCHEMA = {
10526
10360
  "security": [
10527
10361
  {
10528
10362
  "jwtAuth": []
10529
- },
10530
- {
10531
- "cookieAuth": []
10532
10363
  }
10533
10364
  ],
10534
10365
  "tags": [
@@ -10556,9 +10387,6 @@ export const OPENAPI_SCHEMA = {
10556
10387
  "security": [
10557
10388
  {
10558
10389
  "jwtAuth": []
10559
- },
10560
- {
10561
- "cookieAuth": []
10562
10390
  }
10563
10391
  ],
10564
10392
  "tags": [
@@ -10596,9 +10424,6 @@ export const OPENAPI_SCHEMA = {
10596
10424
  "security": [
10597
10425
  {
10598
10426
  "jwtAuth": []
10599
- },
10600
- {
10601
- "cookieAuth": []
10602
10427
  }
10603
10428
  ],
10604
10429
  "tags": [
@@ -10636,9 +10461,6 @@ export const OPENAPI_SCHEMA = {
10636
10461
  "security": [
10637
10462
  {
10638
10463
  "jwtAuth": []
10639
- },
10640
- {
10641
- "cookieAuth": []
10642
10464
  }
10643
10465
  ],
10644
10466
  "tags": [
@@ -10676,9 +10498,6 @@ export const OPENAPI_SCHEMA = {
10676
10498
  "security": [
10677
10499
  {
10678
10500
  "jwtAuth": []
10679
- },
10680
- {
10681
- "cookieAuth": []
10682
10501
  }
10683
10502
  ],
10684
10503
  "tags": [
@@ -10689,21 +10508,55 @@ export const OPENAPI_SCHEMA = {
10689
10508
  },
10690
10509
  "/cfg/payments/transactions/": {
10691
10510
  "get": {
10692
- "description": "Get user transactions with pagination.",
10693
- "operationId": "cfg_payments_transactions_retrieve",
10511
+ "description": "Get user transactions with pagination and filtering",
10512
+ "operationId": "cfg_payments_transactions_list",
10513
+ "parameters": [
10514
+ {
10515
+ "description": "Number of transactions to return (max 100)",
10516
+ "in": "query",
10517
+ "name": "limit",
10518
+ "schema": {
10519
+ "type": "integer"
10520
+ }
10521
+ },
10522
+ {
10523
+ "description": "Offset for pagination",
10524
+ "in": "query",
10525
+ "name": "offset",
10526
+ "schema": {
10527
+ "type": "integer"
10528
+ }
10529
+ },
10530
+ {
10531
+ "description": "Filter by transaction type (deposit/withdrawal)",
10532
+ "in": "query",
10533
+ "name": "type",
10534
+ "schema": {
10535
+ "type": "string"
10536
+ }
10537
+ }
10538
+ ],
10694
10539
  "responses": {
10695
10540
  "200": {
10696
- "description": "No response body"
10541
+ "content": {
10542
+ "application/json": {
10543
+ "schema": {
10544
+ "items": {
10545
+ "$ref": "#/components/schemas/Transaction"
10546
+ },
10547
+ "type": "array"
10548
+ }
10549
+ }
10550
+ },
10551
+ "description": ""
10697
10552
  }
10698
10553
  },
10699
10554
  "security": [
10700
10555
  {
10701
10556
  "jwtAuth": []
10702
- },
10703
- {
10704
- "cookieAuth": []
10705
10557
  }
10706
10558
  ],
10559
+ "summary": "Get user transactions",
10707
10560
  "tags": [
10708
10561
  "payments"
10709
10562
  ],
@@ -10749,9 +10602,6 @@ export const OPENAPI_SCHEMA = {
10749
10602
  "security": [
10750
10603
  {
10751
10604
  "jwtAuth": []
10752
- },
10753
- {
10754
- "cookieAuth": []
10755
10605
  }
10756
10606
  ],
10757
10607
  "tags": [
@@ -10797,9 +10647,6 @@ export const OPENAPI_SCHEMA = {
10797
10647
  "security": [
10798
10648
  {
10799
10649
  "jwtAuth": []
10800
- },
10801
- {
10802
- "cookieAuth": []
10803
10650
  }
10804
10651
  ],
10805
10652
  "tags": [
@@ -10857,9 +10704,6 @@ export const OPENAPI_SCHEMA = {
10857
10704
  "security": [
10858
10705
  {
10859
10706
  "jwtAuth": []
10860
- },
10861
- {
10862
- "cookieAuth": []
10863
10707
  }
10864
10708
  ],
10865
10709
  "tags": [
@@ -10917,9 +10761,6 @@ export const OPENAPI_SCHEMA = {
10917
10761
  "security": [
10918
10762
  {
10919
10763
  "jwtAuth": []
10920
- },
10921
- {
10922
- "cookieAuth": []
10923
10764
  }
10924
10765
  ],
10925
10766
  "tags": [
@@ -10962,9 +10803,6 @@ export const OPENAPI_SCHEMA = {
10962
10803
  "security": [
10963
10804
  {
10964
10805
  "jwtAuth": []
10965
- },
10966
- {
10967
- "cookieAuth": []
10968
10806
  }
10969
10807
  ],
10970
10808
  "tags": [
@@ -11012,9 +10850,6 @@ export const OPENAPI_SCHEMA = {
11012
10850
  "security": [
11013
10851
  {
11014
10852
  "jwtAuth": []
11015
- },
11016
- {
11017
- "cookieAuth": []
11018
10853
  }
11019
10854
  ],
11020
10855
  "tags": [
@@ -11081,9 +10916,6 @@ export const OPENAPI_SCHEMA = {
11081
10916
  "security": [
11082
10917
  {
11083
10918
  "jwtAuth": []
11084
- },
11085
- {
11086
- "cookieAuth": []
11087
10919
  }
11088
10920
  ],
11089
10921
  "tags": [
@@ -11151,9 +10983,6 @@ export const OPENAPI_SCHEMA = {
11151
10983
  "security": [
11152
10984
  {
11153
10985
  "jwtAuth": []
11154
- },
11155
- {
11156
- "cookieAuth": []
11157
10986
  }
11158
10987
  ],
11159
10988
  "tags": [
@@ -11186,9 +11015,6 @@ export const OPENAPI_SCHEMA = {
11186
11015
  "security": [
11187
11016
  {
11188
11017
  "jwtAuth": []
11189
- },
11190
- {
11191
- "cookieAuth": []
11192
11018
  }
11193
11019
  ],
11194
11020
  "tags": [
@@ -11226,9 +11052,6 @@ export const OPENAPI_SCHEMA = {
11226
11052
  "security": [
11227
11053
  {
11228
11054
  "jwtAuth": []
11229
- },
11230
- {
11231
- "cookieAuth": []
11232
11055
  }
11233
11056
  ],
11234
11057
  "tags": [
@@ -11285,9 +11108,6 @@ export const OPENAPI_SCHEMA = {
11285
11108
  "security": [
11286
11109
  {
11287
11110
  "jwtAuth": []
11288
- },
11289
- {
11290
- "cookieAuth": []
11291
11111
  }
11292
11112
  ],
11293
11113
  "tags": [
@@ -11345,9 +11165,6 @@ export const OPENAPI_SCHEMA = {
11345
11165
  "security": [
11346
11166
  {
11347
11167
  "jwtAuth": []
11348
- },
11349
- {
11350
- "cookieAuth": []
11351
11168
  }
11352
11169
  ],
11353
11170
  "tags": [