@seekora-ai/admin-api 1.0.58 → 1.0.59

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/api.d.ts CHANGED
@@ -6133,6 +6133,718 @@ export interface BatchRecordResult {
6133
6133
  */
6134
6134
  'valid'?: boolean;
6135
6135
  }
6136
+ /**
6137
+ *
6138
+ * @export
6139
+ * @interface BillingServiceBillingOverview
6140
+ */
6141
+ export interface BillingServiceBillingOverview {
6142
+ /**
6143
+ *
6144
+ * @type {number}
6145
+ * @memberof BillingServiceBillingOverview
6146
+ */
6147
+ 'active_organizations': number;
6148
+ /**
6149
+ *
6150
+ * @type {{ [key: string]: number; }}
6151
+ * @memberof BillingServiceBillingOverview
6152
+ */
6153
+ 'currency_breakdown': {
6154
+ [key: string]: number;
6155
+ };
6156
+ /**
6157
+ *
6158
+ * @type {number}
6159
+ * @memberof BillingServiceBillingOverview
6160
+ */
6161
+ 'failed_payments': number;
6162
+ /**
6163
+ *
6164
+ * @type {number}
6165
+ * @memberof BillingServiceBillingOverview
6166
+ */
6167
+ 'successful_payments': number;
6168
+ /**
6169
+ *
6170
+ * @type {number}
6171
+ * @memberof BillingServiceBillingOverview
6172
+ */
6173
+ 'total_credits_consumed': number;
6174
+ /**
6175
+ *
6176
+ * @type {number}
6177
+ * @memberof BillingServiceBillingOverview
6178
+ */
6179
+ 'total_credits_sold': number;
6180
+ /**
6181
+ *
6182
+ * @type {number}
6183
+ * @memberof BillingServiceBillingOverview
6184
+ */
6185
+ 'total_revenue': number;
6186
+ /**
6187
+ *
6188
+ * @type {number}
6189
+ * @memberof BillingServiceBillingOverview
6190
+ */
6191
+ 'total_transactions': number;
6192
+ }
6193
+ /**
6194
+ *
6195
+ * @export
6196
+ * @interface BillingServiceCreditConsumptionSummary
6197
+ */
6198
+ export interface BillingServiceCreditConsumptionSummary {
6199
+ /**
6200
+ *
6201
+ * @type {string}
6202
+ * @memberof BillingServiceCreditConsumptionSummary
6203
+ */
6204
+ 'api_endpoint': string;
6205
+ /**
6206
+ *
6207
+ * @type {string}
6208
+ * @memberof BillingServiceCreditConsumptionSummary
6209
+ */
6210
+ 'consumed_at': string;
6211
+ /**
6212
+ *
6213
+ * @type {number}
6214
+ * @memberof BillingServiceCreditConsumptionSummary
6215
+ */
6216
+ 'consumption_id': number;
6217
+ /**
6218
+ *
6219
+ * @type {number}
6220
+ * @memberof BillingServiceCreditConsumptionSummary
6221
+ */
6222
+ 'credits_consumed': number;
6223
+ /**
6224
+ *
6225
+ * @type {string}
6226
+ * @memberof BillingServiceCreditConsumptionSummary
6227
+ */
6228
+ 'http_method': string;
6229
+ /**
6230
+ *
6231
+ * @type {number}
6232
+ * @memberof BillingServiceCreditConsumptionSummary
6233
+ */
6234
+ 'ledger_id': number;
6235
+ /**
6236
+ *
6237
+ * @type {number}
6238
+ * @memberof BillingServiceCreditConsumptionSummary
6239
+ */
6240
+ 'org_id': number;
6241
+ /**
6242
+ *
6243
+ * @type {string}
6244
+ * @memberof BillingServiceCreditConsumptionSummary
6245
+ */
6246
+ 'org_name': string;
6247
+ /**
6248
+ *
6249
+ * @type {string}
6250
+ * @memberof BillingServiceCreditConsumptionSummary
6251
+ */
6252
+ 'request_id': string;
6253
+ /**
6254
+ *
6255
+ * @type {number}
6256
+ * @memberof BillingServiceCreditConsumptionSummary
6257
+ */
6258
+ 'response_status': number;
6259
+ /**
6260
+ *
6261
+ * @type {number}
6262
+ * @memberof BillingServiceCreditConsumptionSummary
6263
+ */
6264
+ 'store_id': number;
6265
+ /**
6266
+ *
6267
+ * @type {string}
6268
+ * @memberof BillingServiceCreditConsumptionSummary
6269
+ */
6270
+ 'store_name': string;
6271
+ }
6272
+ /**
6273
+ *
6274
+ * @export
6275
+ * @interface BillingServiceCreditLedgerSummary
6276
+ */
6277
+ export interface BillingServiceCreditLedgerSummary {
6278
+ /**
6279
+ *
6280
+ * @type {number}
6281
+ * @memberof BillingServiceCreditLedgerSummary
6282
+ */
6283
+ 'created_by': number;
6284
+ /**
6285
+ *
6286
+ * @type {string}
6287
+ * @memberof BillingServiceCreditLedgerSummary
6288
+ */
6289
+ 'created_by_name': string;
6290
+ /**
6291
+ *
6292
+ * @type {number}
6293
+ * @memberof BillingServiceCreditLedgerSummary
6294
+ */
6295
+ 'credit_amount': number;
6296
+ /**
6297
+ *
6298
+ * @type {string}
6299
+ * @memberof BillingServiceCreditLedgerSummary
6300
+ */
6301
+ 'credit_type': string;
6302
+ /**
6303
+ *
6304
+ * @type {string}
6305
+ * @memberof BillingServiceCreditLedgerSummary
6306
+ */
6307
+ 'expires_at': string;
6308
+ /**
6309
+ *
6310
+ * @type {boolean}
6311
+ * @memberof BillingServiceCreditLedgerSummary
6312
+ */
6313
+ 'is_expired': boolean;
6314
+ /**
6315
+ *
6316
+ * @type {number}
6317
+ * @memberof BillingServiceCreditLedgerSummary
6318
+ */
6319
+ 'ledger_id': number;
6320
+ /**
6321
+ *
6322
+ * @type {number}
6323
+ * @memberof BillingServiceCreditLedgerSummary
6324
+ */
6325
+ 'org_id': number;
6326
+ /**
6327
+ *
6328
+ * @type {string}
6329
+ * @memberof BillingServiceCreditLedgerSummary
6330
+ */
6331
+ 'org_name': string;
6332
+ /**
6333
+ *
6334
+ * @type {number}
6335
+ * @memberof BillingServiceCreditLedgerSummary
6336
+ */
6337
+ 'payment_id': number;
6338
+ /**
6339
+ *
6340
+ * @type {number}
6341
+ * @memberof BillingServiceCreditLedgerSummary
6342
+ */
6343
+ 'plan_id': number;
6344
+ /**
6345
+ *
6346
+ * @type {string}
6347
+ * @memberof BillingServiceCreditLedgerSummary
6348
+ */
6349
+ 'plan_name': string;
6350
+ /**
6351
+ *
6352
+ * @type {string}
6353
+ * @memberof BillingServiceCreditLedgerSummary
6354
+ */
6355
+ 'purchase_date': string;
6356
+ /**
6357
+ *
6358
+ * @type {number}
6359
+ * @memberof BillingServiceCreditLedgerSummary
6360
+ */
6361
+ 'remaining_credits': number;
6362
+ }
6363
+ /**
6364
+ *
6365
+ * @export
6366
+ * @interface BillingServiceCreditPurchaseSummary
6367
+ */
6368
+ export interface BillingServiceCreditPurchaseSummary {
6369
+ /**
6370
+ *
6371
+ * @type {number}
6372
+ * @memberof BillingServiceCreditPurchaseSummary
6373
+ */
6374
+ 'amount_paid': number;
6375
+ /**
6376
+ *
6377
+ * @type {number}
6378
+ * @memberof BillingServiceCreditPurchaseSummary
6379
+ */
6380
+ 'created_by': number;
6381
+ /**
6382
+ *
6383
+ * @type {string}
6384
+ * @memberof BillingServiceCreditPurchaseSummary
6385
+ */
6386
+ 'created_by_name': string;
6387
+ /**
6388
+ *
6389
+ * @type {number}
6390
+ * @memberof BillingServiceCreditPurchaseSummary
6391
+ */
6392
+ 'credits_bonus': number;
6393
+ /**
6394
+ *
6395
+ * @type {number}
6396
+ * @memberof BillingServiceCreditPurchaseSummary
6397
+ */
6398
+ 'credits_purchased': number;
6399
+ /**
6400
+ *
6401
+ * @type {string}
6402
+ * @memberof BillingServiceCreditPurchaseSummary
6403
+ */
6404
+ 'currency': string;
6405
+ /**
6406
+ *
6407
+ * @type {string}
6408
+ * @memberof BillingServiceCreditPurchaseSummary
6409
+ */
6410
+ 'expiry_date': string;
6411
+ /**
6412
+ *
6413
+ * @type {number}
6414
+ * @memberof BillingServiceCreditPurchaseSummary
6415
+ */
6416
+ 'org_id': number;
6417
+ /**
6418
+ *
6419
+ * @type {string}
6420
+ * @memberof BillingServiceCreditPurchaseSummary
6421
+ */
6422
+ 'org_name': string;
6423
+ /**
6424
+ *
6425
+ * @type {number}
6426
+ * @memberof BillingServiceCreditPurchaseSummary
6427
+ */
6428
+ 'payment_id': number;
6429
+ /**
6430
+ *
6431
+ * @type {number}
6432
+ * @memberof BillingServiceCreditPurchaseSummary
6433
+ */
6434
+ 'plan_id': number;
6435
+ /**
6436
+ *
6437
+ * @type {string}
6438
+ * @memberof BillingServiceCreditPurchaseSummary
6439
+ */
6440
+ 'plan_name': string;
6441
+ /**
6442
+ *
6443
+ * @type {string}
6444
+ * @memberof BillingServiceCreditPurchaseSummary
6445
+ */
6446
+ 'purchase_date': string;
6447
+ /**
6448
+ *
6449
+ * @type {number}
6450
+ * @memberof BillingServiceCreditPurchaseSummary
6451
+ */
6452
+ 'purchase_id': number;
6453
+ /**
6454
+ *
6455
+ * @type {string}
6456
+ * @memberof BillingServiceCreditPurchaseSummary
6457
+ */
6458
+ 'status': string;
6459
+ /**
6460
+ *
6461
+ * @type {number}
6462
+ * @memberof BillingServiceCreditPurchaseSummary
6463
+ */
6464
+ 'total_credits': number;
6465
+ }
6466
+ /**
6467
+ *
6468
+ * @export
6469
+ * @interface BillingServiceCreditTransactionSummary
6470
+ */
6471
+ export interface BillingServiceCreditTransactionSummary {
6472
+ /**
6473
+ *
6474
+ * @type {number}
6475
+ * @memberof BillingServiceCreditTransactionSummary
6476
+ */
6477
+ 'amount': number;
6478
+ /**
6479
+ *
6480
+ * @type {number}
6481
+ * @memberof BillingServiceCreditTransactionSummary
6482
+ */
6483
+ 'balance_after': number;
6484
+ /**
6485
+ *
6486
+ * @type {number}
6487
+ * @memberof BillingServiceCreditTransactionSummary
6488
+ */
6489
+ 'balance_before': number;
6490
+ /**
6491
+ *
6492
+ * @type {string}
6493
+ * @memberof BillingServiceCreditTransactionSummary
6494
+ */
6495
+ 'created_at': string;
6496
+ /**
6497
+ *
6498
+ * @type {number}
6499
+ * @memberof BillingServiceCreditTransactionSummary
6500
+ */
6501
+ 'created_by': number;
6502
+ /**
6503
+ *
6504
+ * @type {string}
6505
+ * @memberof BillingServiceCreditTransactionSummary
6506
+ */
6507
+ 'created_by_name': string;
6508
+ /**
6509
+ *
6510
+ * @type {string}
6511
+ * @memberof BillingServiceCreditTransactionSummary
6512
+ */
6513
+ 'description': string;
6514
+ /**
6515
+ *
6516
+ * @type {{ [key: string]: any; }}
6517
+ * @memberof BillingServiceCreditTransactionSummary
6518
+ */
6519
+ 'metadata': {
6520
+ [key: string]: any;
6521
+ };
6522
+ /**
6523
+ *
6524
+ * @type {number}
6525
+ * @memberof BillingServiceCreditTransactionSummary
6526
+ */
6527
+ 'org_id': number;
6528
+ /**
6529
+ *
6530
+ * @type {string}
6531
+ * @memberof BillingServiceCreditTransactionSummary
6532
+ */
6533
+ 'org_name': string;
6534
+ /**
6535
+ *
6536
+ * @type {string}
6537
+ * @memberof BillingServiceCreditTransactionSummary
6538
+ */
6539
+ 'reference_id': string;
6540
+ /**
6541
+ *
6542
+ * @type {string}
6543
+ * @memberof BillingServiceCreditTransactionSummary
6544
+ */
6545
+ 'reference_type': string;
6546
+ /**
6547
+ *
6548
+ * @type {number}
6549
+ * @memberof BillingServiceCreditTransactionSummary
6550
+ */
6551
+ 'transaction_id': number;
6552
+ /**
6553
+ *
6554
+ * @type {string}
6555
+ * @memberof BillingServiceCreditTransactionSummary
6556
+ */
6557
+ 'transaction_type': string;
6558
+ }
6559
+ /**
6560
+ *
6561
+ * @export
6562
+ * @interface BillingServiceNullableInt64
6563
+ */
6564
+ export interface BillingServiceNullableInt64 {
6565
+ /**
6566
+ *
6567
+ * @type {boolean}
6568
+ * @memberof BillingServiceNullableInt64
6569
+ */
6570
+ 'valid': boolean;
6571
+ /**
6572
+ *
6573
+ * @type {number}
6574
+ * @memberof BillingServiceNullableInt64
6575
+ */
6576
+ 'value': number;
6577
+ }
6578
+ /**
6579
+ *
6580
+ * @export
6581
+ * @interface BillingServiceNullableString
6582
+ */
6583
+ export interface BillingServiceNullableString {
6584
+ /**
6585
+ *
6586
+ * @type {boolean}
6587
+ * @memberof BillingServiceNullableString
6588
+ */
6589
+ 'valid': boolean;
6590
+ /**
6591
+ *
6592
+ * @type {string}
6593
+ * @memberof BillingServiceNullableString
6594
+ */
6595
+ 'value': string;
6596
+ }
6597
+ /**
6598
+ *
6599
+ * @export
6600
+ * @interface BillingServiceOrderSummary
6601
+ */
6602
+ export interface BillingServiceOrderSummary {
6603
+ /**
6604
+ *
6605
+ * @type {number}
6606
+ * @memberof BillingServiceOrderSummary
6607
+ */
6608
+ 'amount': number;
6609
+ /**
6610
+ *
6611
+ * @type {string}
6612
+ * @memberof BillingServiceOrderSummary
6613
+ */
6614
+ 'created_at': string;
6615
+ /**
6616
+ *
6617
+ * @type {string}
6618
+ * @memberof BillingServiceOrderSummary
6619
+ */
6620
+ 'currency': string;
6621
+ /**
6622
+ *
6623
+ * @type {{ [key: string]: any; }}
6624
+ * @memberof BillingServiceOrderSummary
6625
+ */
6626
+ 'customer_info': {
6627
+ [key: string]: any;
6628
+ };
6629
+ /**
6630
+ *
6631
+ * @type {string}
6632
+ * @memberof BillingServiceOrderSummary
6633
+ */
6634
+ 'gateway': string;
6635
+ /**
6636
+ *
6637
+ * @type {string}
6638
+ * @memberof BillingServiceOrderSummary
6639
+ */
6640
+ 'gateway_order_id': string;
6641
+ /**
6642
+ *
6643
+ * @type {string}
6644
+ * @memberof BillingServiceOrderSummary
6645
+ */
6646
+ 'gateway_payment_id': string;
6647
+ /**
6648
+ *
6649
+ * @type {number}
6650
+ * @memberof BillingServiceOrderSummary
6651
+ */
6652
+ 'order_id': number;
6653
+ /**
6654
+ *
6655
+ * @type {number}
6656
+ * @memberof BillingServiceOrderSummary
6657
+ */
6658
+ 'org_id': number;
6659
+ /**
6660
+ *
6661
+ * @type {string}
6662
+ * @memberof BillingServiceOrderSummary
6663
+ */
6664
+ 'org_name': string;
6665
+ /**
6666
+ *
6667
+ * @type {string}
6668
+ * @memberof BillingServiceOrderSummary
6669
+ */
6670
+ 'payment_type': string;
6671
+ /**
6672
+ *
6673
+ * @type {string}
6674
+ * @memberof BillingServiceOrderSummary
6675
+ */
6676
+ 'status': string;
6677
+ /**
6678
+ *
6679
+ * @type {string}
6680
+ * @memberof BillingServiceOrderSummary
6681
+ */
6682
+ 'updated_at': string;
6683
+ /**
6684
+ *
6685
+ * @type {number}
6686
+ * @memberof BillingServiceOrderSummary
6687
+ */
6688
+ 'user_id': number;
6689
+ /**
6690
+ *
6691
+ * @type {string}
6692
+ * @memberof BillingServiceOrderSummary
6693
+ */
6694
+ 'user_name': string;
6695
+ }
6696
+ /**
6697
+ *
6698
+ * @export
6699
+ * @interface BillingServiceOrganizationBillingSummary
6700
+ */
6701
+ export interface BillingServiceOrganizationBillingSummary {
6702
+ /**
6703
+ *
6704
+ * @type {number}
6705
+ * @memberof BillingServiceOrganizationBillingSummary
6706
+ */
6707
+ 'active_subscriptions': number;
6708
+ /**
6709
+ *
6710
+ * @type {number}
6711
+ * @memberof BillingServiceOrganizationBillingSummary
6712
+ */
6713
+ 'current_balance': number;
6714
+ /**
6715
+ *
6716
+ * @type {string}
6717
+ * @memberof BillingServiceOrganizationBillingSummary
6718
+ */
6719
+ 'last_payment_date': string;
6720
+ /**
6721
+ *
6722
+ * @type {number}
6723
+ * @memberof BillingServiceOrganizationBillingSummary
6724
+ */
6725
+ 'org_id': number;
6726
+ /**
6727
+ *
6728
+ * @type {string}
6729
+ * @memberof BillingServiceOrganizationBillingSummary
6730
+ */
6731
+ 'org_name': string;
6732
+ /**
6733
+ *
6734
+ * @type {number}
6735
+ * @memberof BillingServiceOrganizationBillingSummary
6736
+ */
6737
+ 'payment_count': number;
6738
+ /**
6739
+ *
6740
+ * @type {number}
6741
+ * @memberof BillingServiceOrganizationBillingSummary
6742
+ */
6743
+ 'total_credits_consumed': number;
6744
+ /**
6745
+ *
6746
+ * @type {number}
6747
+ * @memberof BillingServiceOrganizationBillingSummary
6748
+ */
6749
+ 'total_credits_purchased': number;
6750
+ /**
6751
+ *
6752
+ * @type {number}
6753
+ * @memberof BillingServiceOrganizationBillingSummary
6754
+ */
6755
+ 'total_spent': number;
6756
+ }
6757
+ /**
6758
+ *
6759
+ * @export
6760
+ * @interface BillingServicePaymentTransactionSummary
6761
+ */
6762
+ export interface BillingServicePaymentTransactionSummary {
6763
+ /**
6764
+ *
6765
+ * @type {number}
6766
+ * @memberof BillingServicePaymentTransactionSummary
6767
+ */
6768
+ 'amount': number;
6769
+ /**
6770
+ *
6771
+ * @type {BillingServiceNullableInt64}
6772
+ * @memberof BillingServicePaymentTransactionSummary
6773
+ */
6774
+ 'created_by': BillingServiceNullableInt64;
6775
+ /**
6776
+ *
6777
+ * @type {string}
6778
+ * @memberof BillingServicePaymentTransactionSummary
6779
+ */
6780
+ 'created_by_name': string;
6781
+ /**
6782
+ *
6783
+ * @type {BillingServiceNullableString}
6784
+ * @memberof BillingServicePaymentTransactionSummary
6785
+ */
6786
+ 'currency': BillingServiceNullableString;
6787
+ /**
6788
+ *
6789
+ * @type {BillingServiceNullableString}
6790
+ * @memberof BillingServicePaymentTransactionSummary
6791
+ */
6792
+ 'gateway': BillingServiceNullableString;
6793
+ /**
6794
+ *
6795
+ * @type {BillingServiceNullableString}
6796
+ * @memberof BillingServicePaymentTransactionSummary
6797
+ */
6798
+ 'gateway_payment_id': BillingServiceNullableString;
6799
+ /**
6800
+ *
6801
+ * @type {number}
6802
+ * @memberof BillingServicePaymentTransactionSummary
6803
+ */
6804
+ 'org_id': number;
6805
+ /**
6806
+ *
6807
+ * @type {string}
6808
+ * @memberof BillingServicePaymentTransactionSummary
6809
+ */
6810
+ 'org_name': string;
6811
+ /**
6812
+ *
6813
+ * @type {string}
6814
+ * @memberof BillingServicePaymentTransactionSummary
6815
+ */
6816
+ 'payment_date': string;
6817
+ /**
6818
+ *
6819
+ * @type {number}
6820
+ * @memberof BillingServicePaymentTransactionSummary
6821
+ */
6822
+ 'payment_id': number;
6823
+ /**
6824
+ *
6825
+ * @type {BillingServiceNullableString}
6826
+ * @memberof BillingServicePaymentTransactionSummary
6827
+ */
6828
+ 'payment_method': BillingServiceNullableString;
6829
+ /**
6830
+ *
6831
+ * @type {BillingServiceNullableString}
6832
+ * @memberof BillingServicePaymentTransactionSummary
6833
+ */
6834
+ 'payment_status': BillingServiceNullableString;
6835
+ /**
6836
+ *
6837
+ * @type {number}
6838
+ * @memberof BillingServicePaymentTransactionSummary
6839
+ */
6840
+ 'refund_amount': number;
6841
+ /**
6842
+ *
6843
+ * @type {BillingServiceNullableString}
6844
+ * @memberof BillingServicePaymentTransactionSummary
6845
+ */
6846
+ 'refund_status': BillingServiceNullableString;
6847
+ }
6136
6848
  /**
6137
6849
  *
6138
6850
  * @export
@@ -6410,6 +7122,49 @@ export interface DataTypesAdminSearchRequest {
6410
7122
  */
6411
7123
  'widget_mode': boolean;
6412
7124
  }
7125
+ /**
7126
+ *
7127
+ * @export
7128
+ * @interface DataTypesApprovalStepDto
7129
+ */
7130
+ export interface DataTypesApprovalStepDto {
7131
+ /**
7132
+ *
7133
+ * @type {string}
7134
+ * @memberof DataTypesApprovalStepDto
7135
+ */
7136
+ 'approved_at': string;
7137
+ /**
7138
+ *
7139
+ * @type {string}
7140
+ * @memberof DataTypesApprovalStepDto
7141
+ */
7142
+ 'approver_role': string;
7143
+ /**
7144
+ *
7145
+ * @type {number}
7146
+ * @memberof DataTypesApprovalStepDto
7147
+ */
7148
+ 'approver_user_id': number;
7149
+ /**
7150
+ *
7151
+ * @type {string}
7152
+ * @memberof DataTypesApprovalStepDto
7153
+ */
7154
+ 'comments': string;
7155
+ /**
7156
+ *
7157
+ * @type {string}
7158
+ * @memberof DataTypesApprovalStepDto
7159
+ */
7160
+ 'status': string;
7161
+ /**
7162
+ *
7163
+ * @type {number}
7164
+ * @memberof DataTypesApprovalStepDto
7165
+ */
7166
+ 'step_order': number;
7167
+ }
6413
7168
  /**
6414
7169
  *
6415
7170
  * @export
@@ -6445,10 +7200,10 @@ export interface DataTypesAutocompleteSuggestion {
6445
7200
  export interface DataTypesBulkDocumentRequest {
6446
7201
  /**
6447
7202
  * Array of document operations
6448
- * @type {Array<object>}
7203
+ * @type {Array<DataTypesDocumentRequest>}
6449
7204
  * @memberof DataTypesBulkDocumentRequest
6450
7205
  */
6451
- 'documents': Array<object>;
7206
+ 'documents': Array<DataTypesDocumentRequest>;
6452
7207
  }
6453
7208
  /**
6454
7209
  *
@@ -6912,7 +7667,7 @@ export interface DataTypesCreateMenuRequestDto {
6912
7667
  */
6913
7668
  'sortOrder': number;
6914
7669
  /**
6915
- *
7670
+ * INT, not nullable
6916
7671
  * @type {number}
6917
7672
  * @memberof DataTypesCreateMenuRequestDto
6918
7673
  */
@@ -7115,7 +7870,7 @@ export type DataTypesCreatePaymentOrderRequestPaymentTypeEnum = typeof DataTypes
7115
7870
  */
7116
7871
  export interface DataTypesCreatePaymentOrderResponse {
7117
7872
  /**
7118
- *
7873
+ * Amount in currency units
7119
7874
  * @type {number}
7120
7875
  * @memberof DataTypesCreatePaymentOrderResponse
7121
7876
  */
@@ -7132,6 +7887,14 @@ export interface DataTypesCreatePaymentOrderResponse {
7132
7887
  * @memberof DataTypesCreatePaymentOrderResponse
7133
7888
  */
7134
7889
  'currency': string;
7890
+ /**
7891
+ * Customer prefill data for frontend
7892
+ * @type {{ [key: string]: any; }}
7893
+ * @memberof DataTypesCreatePaymentOrderResponse
7894
+ */
7895
+ 'customer_prefill': {
7896
+ [key: string]: any;
7897
+ };
7135
7898
  /**
7136
7899
  *
7137
7900
  * @type {string}
@@ -7153,13 +7916,13 @@ export interface DataTypesCreatePaymentOrderResponse {
7153
7916
  [key: string]: any;
7154
7917
  };
7155
7918
  /**
7156
- *
7919
+ * Internal order ID
7157
7920
  * @type {string}
7158
7921
  * @memberof DataTypesCreatePaymentOrderResponse
7159
7922
  */
7160
7923
  'order_id': string;
7161
7924
  /**
7162
- *
7925
+ * Gateway payment/order ID (razorpay_order_id)
7163
7926
  * @type {string}
7164
7927
  * @memberof DataTypesCreatePaymentOrderResponse
7165
7928
  */
@@ -7170,6 +7933,12 @@ export interface DataTypesCreatePaymentOrderResponse {
7170
7933
  * @memberof DataTypesCreatePaymentOrderResponse
7171
7934
  */
7172
7935
  'payment_url': string;
7936
+ /**
7937
+ * Frontend integration fields
7938
+ * @type {string}
7939
+ * @memberof DataTypesCreatePaymentOrderResponse
7940
+ */
7941
+ 'public_key': string;
7173
7942
  /**
7174
7943
  *
7175
7944
  * @type {string}
@@ -7238,6 +8007,75 @@ export declare const DataTypesCreatePluralDeclensionRequestTypeEnum: {
7238
8007
  readonly Default: "default";
7239
8008
  };
7240
8009
  export type DataTypesCreatePluralDeclensionRequestTypeEnum = typeof DataTypesCreatePluralDeclensionRequestTypeEnum[keyof typeof DataTypesCreatePluralDeclensionRequestTypeEnum];
8010
+ /**
8011
+ *
8012
+ * @export
8013
+ * @interface DataTypesCreateRefundRequestDto
8014
+ */
8015
+ export interface DataTypesCreateRefundRequestDto {
8016
+ /**
8017
+ *
8018
+ * @type {number}
8019
+ * @memberof DataTypesCreateRefundRequestDto
8020
+ */
8021
+ 'amount': number;
8022
+ /**
8023
+ * Auto-approve after this time
8024
+ * @type {string}
8025
+ * @memberof DataTypesCreateRefundRequestDto
8026
+ */
8027
+ 'auto_approve_after': string;
8028
+ /**
8029
+ *
8030
+ * @type {string}
8031
+ * @memberof DataTypesCreateRefundRequestDto
8032
+ */
8033
+ 'gateway': string;
8034
+ /**
8035
+ *
8036
+ * @type {{ [key: string]: any; }}
8037
+ * @memberof DataTypesCreateRefundRequestDto
8038
+ */
8039
+ 'metadata': {
8040
+ [key: string]: any;
8041
+ };
8042
+ /**
8043
+ *
8044
+ * @type {number}
8045
+ * @memberof DataTypesCreateRefundRequestDto
8046
+ */
8047
+ 'order_id': number;
8048
+ /**
8049
+ *
8050
+ * @type {string}
8051
+ * @memberof DataTypesCreateRefundRequestDto
8052
+ */
8053
+ 'payment_id': string;
8054
+ /**
8055
+ *
8056
+ * @type {string}
8057
+ * @memberof DataTypesCreateRefundRequestDto
8058
+ */
8059
+ 'reason': string;
8060
+ /**
8061
+ *
8062
+ * @type {string}
8063
+ * @memberof DataTypesCreateRefundRequestDto
8064
+ */
8065
+ 'refund_type': DataTypesCreateRefundRequestDtoRefundTypeEnum;
8066
+ /**
8067
+ * Whether manual approval is required
8068
+ * @type {boolean}
8069
+ * @memberof DataTypesCreateRefundRequestDto
8070
+ */
8071
+ 'require_approval': boolean;
8072
+ }
8073
+ export declare const DataTypesCreateRefundRequestDtoRefundTypeEnum: {
8074
+ readonly Full: "full";
8075
+ readonly Partial: "partial";
8076
+ readonly CreditOnly: "credit_only";
8077
+ };
8078
+ export type DataTypesCreateRefundRequestDtoRefundTypeEnum = typeof DataTypesCreateRefundRequestDtoRefundTypeEnum[keyof typeof DataTypesCreateRefundRequestDtoRefundTypeEnum];
7241
8079
  /**
7242
8080
  *
7243
8081
  * @export
@@ -7263,6 +8101,68 @@ export interface DataTypesCreateRoleRequestDto {
7263
8101
  */
7264
8102
  'roleName': string;
7265
8103
  }
8104
+ /**
8105
+ *
8106
+ * @export
8107
+ * @interface DataTypesCreateSourceRequest
8108
+ */
8109
+ export interface DataTypesCreateSourceRequest {
8110
+ /**
8111
+ *
8112
+ * @type {string}
8113
+ * @memberof DataTypesCreateSourceRequest
8114
+ */
8115
+ 'Config': string;
8116
+ /**
8117
+ *
8118
+ * @type {string}
8119
+ * @memberof DataTypesCreateSourceRequest
8120
+ */
8121
+ 'Name': string;
8122
+ /**
8123
+ * JSON schema
8124
+ * @type {string}
8125
+ * @memberof DataTypesCreateSourceRequest
8126
+ */
8127
+ 'Schema': string;
8128
+ /**
8129
+ *
8130
+ * @type {number}
8131
+ * @memberof DataTypesCreateSourceRequest
8132
+ */
8133
+ 'TemplateId': number;
8134
+ /**
8135
+ *
8136
+ * @type {string}
8137
+ * @memberof DataTypesCreateSourceRequest
8138
+ */
8139
+ 'Type': string;
8140
+ }
8141
+ /**
8142
+ *
8143
+ * @export
8144
+ * @interface DataTypesCreateSourceResponse
8145
+ */
8146
+ export interface DataTypesCreateSourceResponse {
8147
+ /**
8148
+ *
8149
+ * @type {DataTypesSource}
8150
+ * @memberof DataTypesCreateSourceResponse
8151
+ */
8152
+ 'data': DataTypesSource;
8153
+ /**
8154
+ *
8155
+ * @type {string}
8156
+ * @memberof DataTypesCreateSourceResponse
8157
+ */
8158
+ 'message': string;
8159
+ /**
8160
+ *
8161
+ * @type {number}
8162
+ * @memberof DataTypesCreateSourceResponse
8163
+ */
8164
+ 'status': number;
8165
+ }
7266
8166
  /**
7267
8167
  *
7268
8168
  * @export
@@ -7292,25 +8192,132 @@ export interface DataTypesCreateSubscriptionRequestDto {
7292
8192
  * @type {number}
7293
8193
  * @memberof DataTypesCreateSubscriptionRequestDto
7294
8194
  */
7295
- 'orgID': number;
8195
+ 'orgID': number;
8196
+ /**
8197
+ * Foreign key to mPlans
8198
+ * @type {number}
8199
+ * @memberof DataTypesCreateSubscriptionRequestDto
8200
+ */
8201
+ 'planID': number;
8202
+ /**
8203
+ * Subscription start date
8204
+ * @type {string}
8205
+ * @memberof DataTypesCreateSubscriptionRequestDto
8206
+ */
8207
+ 'startDate': string;
8208
+ /**
8209
+ * Status (e.g., Active, Expired, Canceled)
8210
+ * @type {string}
8211
+ * @memberof DataTypesCreateSubscriptionRequestDto
8212
+ */
8213
+ 'status': string;
8214
+ }
8215
+ /**
8216
+ *
8217
+ * @export
8218
+ * @interface DataTypesCreateTaskRequest
8219
+ */
8220
+ export interface DataTypesCreateTaskRequest {
8221
+ /**
8222
+ *
8223
+ * @type {string}
8224
+ * @memberof DataTypesCreateTaskRequest
8225
+ */
8226
+ 'config': string;
8227
+ /**
8228
+ *
8229
+ * @type {number}
8230
+ * @memberof DataTypesCreateTaskRequest
8231
+ */
8232
+ 'created_by': number;
8233
+ /**
8234
+ *
8235
+ * @type {number}
8236
+ * @memberof DataTypesCreateTaskRequest
8237
+ */
8238
+ 'destination_id': number;
8239
+ /**
8240
+ *
8241
+ * @type {string}
8242
+ * @memberof DataTypesCreateTaskRequest
8243
+ */
8244
+ 'frequency': DataTypesCreateTaskRequestFrequencyEnum;
8245
+ /**
8246
+ *
8247
+ * @type {string}
8248
+ * @memberof DataTypesCreateTaskRequest
8249
+ */
8250
+ 'indexing_strategy': DataTypesCreateTaskRequestIndexingStrategyEnum;
8251
+ /**
8252
+ *
8253
+ * @type {string}
8254
+ * @memberof DataTypesCreateTaskRequest
8255
+ */
8256
+ 'schedule_cron': string;
8257
+ /**
8258
+ *
8259
+ * @type {number}
8260
+ * @memberof DataTypesCreateTaskRequest
8261
+ */
8262
+ 'source_id': number;
8263
+ /**
8264
+ *
8265
+ * @type {string}
8266
+ * @memberof DataTypesCreateTaskRequest
8267
+ */
8268
+ 'transformer_script': string;
8269
+ /**
8270
+ *
8271
+ * @type {string}
8272
+ * @memberof DataTypesCreateTaskRequest
8273
+ */
8274
+ 'type': DataTypesCreateTaskRequestTypeEnum;
8275
+ }
8276
+ export declare const DataTypesCreateTaskRequestFrequencyEnum: {
8277
+ readonly Once: "once";
8278
+ readonly Hourly: "hourly";
8279
+ readonly Daily: "daily";
8280
+ readonly Weekly: "weekly";
8281
+ };
8282
+ export type DataTypesCreateTaskRequestFrequencyEnum = typeof DataTypesCreateTaskRequestFrequencyEnum[keyof typeof DataTypesCreateTaskRequestFrequencyEnum];
8283
+ export declare const DataTypesCreateTaskRequestIndexingStrategyEnum: {
8284
+ readonly Replace: "replace";
8285
+ readonly Upsert: "upsert";
8286
+ readonly InsertOnly: "insert_only";
8287
+ readonly UpdateOnly: "update_only";
8288
+ };
8289
+ export type DataTypesCreateTaskRequestIndexingStrategyEnum = typeof DataTypesCreateTaskRequestIndexingStrategyEnum[keyof typeof DataTypesCreateTaskRequestIndexingStrategyEnum];
8290
+ export declare const DataTypesCreateTaskRequestTypeEnum: {
8291
+ readonly UrlCsv: "url_csv";
8292
+ readonly Webhook: "webhook";
8293
+ readonly Manual: "manual";
8294
+ readonly PluginConnector: "plugin_connector";
8295
+ };
8296
+ export type DataTypesCreateTaskRequestTypeEnum = typeof DataTypesCreateTaskRequestTypeEnum[keyof typeof DataTypesCreateTaskRequestTypeEnum];
8297
+ /**
8298
+ *
8299
+ * @export
8300
+ * @interface DataTypesCreateTaskResponse
8301
+ */
8302
+ export interface DataTypesCreateTaskResponse {
7296
8303
  /**
7297
- * Foreign key to mPlans
7298
- * @type {number}
7299
- * @memberof DataTypesCreateSubscriptionRequestDto
8304
+ *
8305
+ * @type {DataTypesTask}
8306
+ * @memberof DataTypesCreateTaskResponse
7300
8307
  */
7301
- 'planID': number;
8308
+ 'data': DataTypesTask;
7302
8309
  /**
7303
- * Subscription start date
8310
+ *
7304
8311
  * @type {string}
7305
- * @memberof DataTypesCreateSubscriptionRequestDto
8312
+ * @memberof DataTypesCreateTaskResponse
7306
8313
  */
7307
- 'startDate': string;
8314
+ 'message': string;
7308
8315
  /**
7309
- * Status (e.g., Active, Expired, Canceled)
7310
- * @type {string}
7311
- * @memberof DataTypesCreateSubscriptionRequestDto
8316
+ *
8317
+ * @type {number}
8318
+ * @memberof DataTypesCreateTaskResponse
7312
8319
  */
7313
- 'status': string;
8320
+ 'status': number;
7314
8321
  }
7315
8322
  /**
7316
8323
  *
@@ -7490,6 +8497,55 @@ export interface DataTypesCreateUserResponseWrapper {
7490
8497
  */
7491
8498
  'status': number;
7492
8499
  }
8500
+ /**
8501
+ *
8502
+ * @export
8503
+ * @interface DataTypesCreditAdjustmentDto
8504
+ */
8505
+ export interface DataTypesCreditAdjustmentDto {
8506
+ /**
8507
+ *
8508
+ * @type {number}
8509
+ * @memberof DataTypesCreditAdjustmentDto
8510
+ */
8511
+ 'adjustment_id': number;
8512
+ /**
8513
+ *
8514
+ * @type {string}
8515
+ * @memberof DataTypesCreditAdjustmentDto
8516
+ */
8517
+ 'adjustment_type': string;
8518
+ /**
8519
+ *
8520
+ * @type {string}
8521
+ * @memberof DataTypesCreditAdjustmentDto
8522
+ */
8523
+ 'applied_at': string;
8524
+ /**
8525
+ *
8526
+ * @type {number}
8527
+ * @memberof DataTypesCreditAdjustmentDto
8528
+ */
8529
+ 'credits_removed': number;
8530
+ /**
8531
+ *
8532
+ * @type {number}
8533
+ * @memberof DataTypesCreditAdjustmentDto
8534
+ */
8535
+ 'credits_restored': number;
8536
+ /**
8537
+ *
8538
+ * @type {string}
8539
+ * @memberof DataTypesCreditAdjustmentDto
8540
+ */
8541
+ 'description': string;
8542
+ /**
8543
+ *
8544
+ * @type {string}
8545
+ * @memberof DataTypesCreditAdjustmentDto
8546
+ */
8547
+ 'status': string;
8548
+ }
7493
8549
  /**
7494
8550
  *
7495
8551
  * @export
@@ -7804,6 +8860,12 @@ export interface DataTypesCreditPlan {
7804
8860
  * @memberof DataTypesCreditPlan
7805
8861
  */
7806
8862
  'credit_amount': number;
8863
+ /**
8864
+ *
8865
+ * @type {string}
8866
+ * @memberof DataTypesCreditPlan
8867
+ */
8868
+ 'default_currency': string;
7807
8869
  /**
7808
8870
  *
7809
8871
  * @type {string}
@@ -8414,6 +9476,33 @@ export interface DataTypesDocumentListResponseWrapper {
8414
9476
  */
8415
9477
  'status': number;
8416
9478
  }
9479
+ /**
9480
+ *
9481
+ * @export
9482
+ * @interface DataTypesDocumentRequest
9483
+ */
9484
+ export interface DataTypesDocumentRequest {
9485
+ /**
9486
+ * Action: insert, update, upsert, delete (for bulk operations)
9487
+ * @type {string}
9488
+ * @memberof DataTypesDocumentRequest
9489
+ */
9490
+ 'action': string;
9491
+ /**
9492
+ * Document data
9493
+ * @type {{ [key: string]: any; }}
9494
+ * @memberof DataTypesDocumentRequest
9495
+ */
9496
+ 'data': {
9497
+ [key: string]: any;
9498
+ };
9499
+ /**
9500
+ * Optional ID, if not provided, will be hash-generated
9501
+ * @type {string}
9502
+ * @memberof DataTypesDocumentRequest
9503
+ */
9504
+ 'id': string;
9505
+ }
8417
9506
  /**
8418
9507
  *
8419
9508
  * @export
@@ -8787,60 +9876,316 @@ export interface DataTypesFieldMetadata {
8787
9876
  'options': Array<string>;
8788
9877
  /**
8789
9878
  *
8790
- * @type {boolean}
8791
- * @memberof DataTypesFieldMetadata
9879
+ * @type {boolean}
9880
+ * @memberof DataTypesFieldMetadata
9881
+ */
9882
+ 'required': boolean;
9883
+ /**
9884
+ * \"string\", \"int\", \"bool\", \"select\", \"multi-select\"
9885
+ * @type {string}
9886
+ * @memberof DataTypesFieldMetadata
9887
+ */
9888
+ 'type': string;
9889
+ }
9890
+ /**
9891
+ *
9892
+ * @export
9893
+ * @interface DataTypesFulfillmentInfo
9894
+ */
9895
+ export interface DataTypesFulfillmentInfo {
9896
+ /**
9897
+ *
9898
+ * @type {DataTypesFulfillmentInfoCredits}
9899
+ * @memberof DataTypesFulfillmentInfo
9900
+ */
9901
+ 'credits': DataTypesFulfillmentInfoCredits;
9902
+ /**
9903
+ *
9904
+ * @type {DataTypesFulfillmentInfoSubscription}
9905
+ * @memberof DataTypesFulfillmentInfo
9906
+ */
9907
+ 'subscription': DataTypesFulfillmentInfoSubscription;
9908
+ /**
9909
+ * \"subscription\", \"credit_topup\", \"generic\"
9910
+ * @type {string}
9911
+ * @memberof DataTypesFulfillmentInfo
9912
+ */
9913
+ 'type': string;
9914
+ }
9915
+ /**
9916
+ *
9917
+ * @export
9918
+ * @interface DataTypesFulfillmentInfoCredits
9919
+ */
9920
+ export interface DataTypesFulfillmentInfoCredits {
9921
+ /**
9922
+ *
9923
+ * @type {number}
9924
+ * @memberof DataTypesFulfillmentInfoCredits
9925
+ */
9926
+ 'amount': number;
9927
+ /**
9928
+ *
9929
+ * @type {number}
9930
+ * @memberof DataTypesFulfillmentInfoCredits
9931
+ */
9932
+ 'new_total': number;
9933
+ }
9934
+ /**
9935
+ *
9936
+ * @export
9937
+ * @interface DataTypesFulfillmentInfoSubscription
9938
+ */
9939
+ export interface DataTypesFulfillmentInfoSubscription {
9940
+ /**
9941
+ *
9942
+ * @type {boolean}
9943
+ * @memberof DataTypesFulfillmentInfoSubscription
9944
+ */
9945
+ 'auto_renewal': boolean;
9946
+ /**
9947
+ *
9948
+ * @type {number}
9949
+ * @memberof DataTypesFulfillmentInfoSubscription
9950
+ */
9951
+ 'credits_allocated': number;
9952
+ /**
9953
+ *
9954
+ * @type {number}
9955
+ * @memberof DataTypesFulfillmentInfoSubscription
9956
+ */
9957
+ 'id': number;
9958
+ /**
9959
+ *
9960
+ * @type {string}
9961
+ * @memberof DataTypesFulfillmentInfoSubscription
9962
+ */
9963
+ 'next_billing': string;
9964
+ /**
9965
+ *
9966
+ * @type {string}
9967
+ * @memberof DataTypesFulfillmentInfoSubscription
9968
+ */
9969
+ 'plan_name': string;
9970
+ }
9971
+ /**
9972
+ *
9973
+ * @export
9974
+ * @interface DataTypesGatewayInfo
9975
+ */
9976
+ export interface DataTypesGatewayInfo {
9977
+ /**
9978
+ *
9979
+ * @type {Array<string>}
9980
+ * @memberof DataTypesGatewayInfo
9981
+ */
9982
+ 'features': Array<string>;
9983
+ /**
9984
+ *
9985
+ * @type {boolean}
9986
+ * @memberof DataTypesGatewayInfo
9987
+ */
9988
+ 'is_active': boolean;
9989
+ /**
9990
+ *
9991
+ * @type {boolean}
9992
+ * @memberof DataTypesGatewayInfo
9993
+ */
9994
+ 'is_default': boolean;
9995
+ /**
9996
+ *
9997
+ * @type {string}
9998
+ * @memberof DataTypesGatewayInfo
9999
+ */
10000
+ 'name': string;
10001
+ }
10002
+ /**
10003
+ *
10004
+ * @export
10005
+ * @interface DataTypesGatewayListResponse
10006
+ */
10007
+ export interface DataTypesGatewayListResponse {
10008
+ /**
10009
+ *
10010
+ * @type {Array<DataTypesGatewayInfo>}
10011
+ * @memberof DataTypesGatewayListResponse
10012
+ */
10013
+ 'gateways': Array<DataTypesGatewayInfo>;
10014
+ }
10015
+ /**
10016
+ *
10017
+ * @export
10018
+ * @interface DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary
10019
+ */
10020
+ export interface DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary {
10021
+ /**
10022
+ *
10023
+ * @type {Array<BillingServiceCreditConsumptionSummary>}
10024
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary
10025
+ */
10026
+ 'data': Array<BillingServiceCreditConsumptionSummary>;
10027
+ /**
10028
+ *
10029
+ * @type {string}
10030
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary
10031
+ */
10032
+ 'message': string;
10033
+ /**
10034
+ *
10035
+ * @type {number}
10036
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary
10037
+ */
10038
+ 'status': number;
10039
+ }
10040
+ /**
10041
+ *
10042
+ * @export
10043
+ * @interface DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary
10044
+ */
10045
+ export interface DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary {
10046
+ /**
10047
+ *
10048
+ * @type {Array<BillingServiceCreditLedgerSummary>}
10049
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary
10050
+ */
10051
+ 'data': Array<BillingServiceCreditLedgerSummary>;
10052
+ /**
10053
+ *
10054
+ * @type {string}
10055
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary
10056
+ */
10057
+ 'message': string;
10058
+ /**
10059
+ *
10060
+ * @type {number}
10061
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary
10062
+ */
10063
+ 'status': number;
10064
+ }
10065
+ /**
10066
+ *
10067
+ * @export
10068
+ * @interface DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary
10069
+ */
10070
+ export interface DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary {
10071
+ /**
10072
+ *
10073
+ * @type {Array<BillingServiceCreditPurchaseSummary>}
10074
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary
10075
+ */
10076
+ 'data': Array<BillingServiceCreditPurchaseSummary>;
10077
+ /**
10078
+ *
10079
+ * @type {string}
10080
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary
10081
+ */
10082
+ 'message': string;
10083
+ /**
10084
+ *
10085
+ * @type {number}
10086
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary
10087
+ */
10088
+ 'status': number;
10089
+ }
10090
+ /**
10091
+ *
10092
+ * @export
10093
+ * @interface DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary
10094
+ */
10095
+ export interface DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary {
10096
+ /**
10097
+ *
10098
+ * @type {Array<BillingServiceCreditTransactionSummary>}
10099
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary
8792
10100
  */
8793
- 'required': boolean;
10101
+ 'data': Array<BillingServiceCreditTransactionSummary>;
8794
10102
  /**
8795
- * \"string\", \"int\", \"bool\", \"select\", \"multi-select\"
10103
+ *
8796
10104
  * @type {string}
8797
- * @memberof DataTypesFieldMetadata
10105
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary
8798
10106
  */
8799
- 'type': string;
10107
+ 'message': string;
10108
+ /**
10109
+ *
10110
+ * @type {number}
10111
+ * @memberof DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary
10112
+ */
10113
+ 'status': number;
8800
10114
  }
8801
10115
  /**
8802
10116
  *
8803
10117
  * @export
8804
- * @interface DataTypesGatewayInfo
10118
+ * @interface DataTypesGenericResponseArrayBillingServiceOrderSummary
8805
10119
  */
8806
- export interface DataTypesGatewayInfo {
10120
+ export interface DataTypesGenericResponseArrayBillingServiceOrderSummary {
8807
10121
  /**
8808
10122
  *
8809
- * @type {Array<string>}
8810
- * @memberof DataTypesGatewayInfo
10123
+ * @type {Array<BillingServiceOrderSummary>}
10124
+ * @memberof DataTypesGenericResponseArrayBillingServiceOrderSummary
8811
10125
  */
8812
- 'features': Array<string>;
10126
+ 'data': Array<BillingServiceOrderSummary>;
8813
10127
  /**
8814
10128
  *
8815
- * @type {boolean}
8816
- * @memberof DataTypesGatewayInfo
10129
+ * @type {string}
10130
+ * @memberof DataTypesGenericResponseArrayBillingServiceOrderSummary
8817
10131
  */
8818
- 'is_active': boolean;
10132
+ 'message': string;
8819
10133
  /**
8820
10134
  *
8821
- * @type {boolean}
8822
- * @memberof DataTypesGatewayInfo
10135
+ * @type {number}
10136
+ * @memberof DataTypesGenericResponseArrayBillingServiceOrderSummary
8823
10137
  */
8824
- 'is_default': boolean;
10138
+ 'status': number;
10139
+ }
10140
+ /**
10141
+ *
10142
+ * @export
10143
+ * @interface DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary
10144
+ */
10145
+ export interface DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary {
10146
+ /**
10147
+ *
10148
+ * @type {Array<BillingServiceOrganizationBillingSummary>}
10149
+ * @memberof DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary
10150
+ */
10151
+ 'data': Array<BillingServiceOrganizationBillingSummary>;
8825
10152
  /**
8826
10153
  *
8827
10154
  * @type {string}
8828
- * @memberof DataTypesGatewayInfo
10155
+ * @memberof DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary
8829
10156
  */
8830
- 'name': string;
10157
+ 'message': string;
10158
+ /**
10159
+ *
10160
+ * @type {number}
10161
+ * @memberof DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary
10162
+ */
10163
+ 'status': number;
8831
10164
  }
8832
10165
  /**
8833
10166
  *
8834
10167
  * @export
8835
- * @interface DataTypesGatewayListResponse
10168
+ * @interface DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary
8836
10169
  */
8837
- export interface DataTypesGatewayListResponse {
10170
+ export interface DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary {
8838
10171
  /**
8839
10172
  *
8840
- * @type {Array<DataTypesGatewayInfo>}
8841
- * @memberof DataTypesGatewayListResponse
10173
+ * @type {Array<BillingServicePaymentTransactionSummary>}
10174
+ * @memberof DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary
8842
10175
  */
8843
- 'gateways': Array<DataTypesGatewayInfo>;
10176
+ 'data': Array<BillingServicePaymentTransactionSummary>;
10177
+ /**
10178
+ *
10179
+ * @type {string}
10180
+ * @memberof DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary
10181
+ */
10182
+ 'message': string;
10183
+ /**
10184
+ *
10185
+ * @type {number}
10186
+ * @memberof DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary
10187
+ */
10188
+ 'status': number;
8844
10189
  }
8845
10190
  /**
8846
10191
  *
@@ -8892,6 +10237,31 @@ export interface DataTypesGenericResponseArrayString {
8892
10237
  */
8893
10238
  'status': number;
8894
10239
  }
10240
+ /**
10241
+ *
10242
+ * @export
10243
+ * @interface DataTypesGenericResponseBillingServiceBillingOverview
10244
+ */
10245
+ export interface DataTypesGenericResponseBillingServiceBillingOverview {
10246
+ /**
10247
+ *
10248
+ * @type {BillingServiceBillingOverview}
10249
+ * @memberof DataTypesGenericResponseBillingServiceBillingOverview
10250
+ */
10251
+ 'data': BillingServiceBillingOverview;
10252
+ /**
10253
+ *
10254
+ * @type {string}
10255
+ * @memberof DataTypesGenericResponseBillingServiceBillingOverview
10256
+ */
10257
+ 'message': string;
10258
+ /**
10259
+ *
10260
+ * @type {number}
10261
+ * @memberof DataTypesGenericResponseBillingServiceBillingOverview
10262
+ */
10263
+ 'status': number;
10264
+ }
8895
10265
  /**
8896
10266
  *
8897
10267
  * @export
@@ -11442,6 +12812,12 @@ export interface DataTypesPaymentStatusResponse {
11442
12812
  * @memberof DataTypesPaymentStatusResponse
11443
12813
  */
11444
12814
  'failure_reason': string;
12815
+ /**
12816
+ * Fulfillment information for frontend
12817
+ * @type {DataTypesFulfillmentInfo}
12818
+ * @memberof DataTypesPaymentStatusResponse
12819
+ */
12820
+ 'fulfillment': DataTypesFulfillmentInfo;
11445
12821
  /**
11446
12822
  *
11447
12823
  * @type {string}
@@ -12071,6 +13447,73 @@ export interface DataTypesQuerySuggestionsConfig {
12071
13447
  */
12072
13448
  'use_manual': boolean;
12073
13449
  }
13450
+ /**
13451
+ *
13452
+ * @export
13453
+ * @interface DataTypesRefundApprovalDto
13454
+ */
13455
+ export interface DataTypesRefundApprovalDto {
13456
+ /**
13457
+ *
13458
+ * @type {string}
13459
+ * @memberof DataTypesRefundApprovalDto
13460
+ */
13461
+ 'action': DataTypesRefundApprovalDtoActionEnum;
13462
+ /**
13463
+ *
13464
+ * @type {string}
13465
+ * @memberof DataTypesRefundApprovalDto
13466
+ */
13467
+ 'comments': string;
13468
+ /**
13469
+ *
13470
+ * @type {number}
13471
+ * @memberof DataTypesRefundApprovalDto
13472
+ */
13473
+ 'refund_request_id': number;
13474
+ }
13475
+ export declare const DataTypesRefundApprovalDtoActionEnum: {
13476
+ readonly Approve: "approve";
13477
+ readonly Reject: "reject";
13478
+ };
13479
+ export type DataTypesRefundApprovalDtoActionEnum = typeof DataTypesRefundApprovalDtoActionEnum[keyof typeof DataTypesRefundApprovalDtoActionEnum];
13480
+ /**
13481
+ *
13482
+ * @export
13483
+ * @interface DataTypesRefundListDto
13484
+ */
13485
+ export interface DataTypesRefundListDto {
13486
+ /**
13487
+ *
13488
+ * @type {number}
13489
+ * @memberof DataTypesRefundListDto
13490
+ */
13491
+ 'page': number;
13492
+ /**
13493
+ *
13494
+ * @type {number}
13495
+ * @memberof DataTypesRefundListDto
13496
+ */
13497
+ 'page_size': number;
13498
+ /**
13499
+ *
13500
+ * @type {Array<DataTypesRefundStatusDto>}
13501
+ * @memberof DataTypesRefundListDto
13502
+ */
13503
+ 'refunds': Array<DataTypesRefundStatusDto>;
13504
+ /**
13505
+ *
13506
+ * @type {number}
13507
+ * @memberof DataTypesRefundListDto
13508
+ */
13509
+ 'total': number;
13510
+ /**
13511
+ *
13512
+ * @type {number}
13513
+ * @memberof DataTypesRefundListDto
13514
+ */
13515
+ 'total_pages': number;
13516
+ }
12074
13517
  /**
12075
13518
  *
12076
13519
  * @export
@@ -12110,6 +13553,79 @@ export interface DataTypesRefundRequestDto {
12110
13553
  */
12111
13554
  'reason': string;
12112
13555
  }
13556
+ /**
13557
+ *
13558
+ * @export
13559
+ * @interface DataTypesRefundRequestResponseDto
13560
+ */
13561
+ export interface DataTypesRefundRequestResponseDto {
13562
+ /**
13563
+ *
13564
+ * @type {number}
13565
+ * @memberof DataTypesRefundRequestResponseDto
13566
+ */
13567
+ 'amount': number;
13568
+ /**
13569
+ *
13570
+ * @type {Array<DataTypesApprovalStepDto>}
13571
+ * @memberof DataTypesRefundRequestResponseDto
13572
+ */
13573
+ 'approval_workflow': Array<DataTypesApprovalStepDto>;
13574
+ /**
13575
+ *
13576
+ * @type {string}
13577
+ * @memberof DataTypesRefundRequestResponseDto
13578
+ */
13579
+ 'auto_approve_after': string;
13580
+ /**
13581
+ *
13582
+ * @type {string}
13583
+ * @memberof DataTypesRefundRequestResponseDto
13584
+ */
13585
+ 'created_at': string;
13586
+ /**
13587
+ *
13588
+ * @type {string}
13589
+ * @memberof DataTypesRefundRequestResponseDto
13590
+ */
13591
+ 'expires_at': string;
13592
+ /**
13593
+ *
13594
+ * @type {number}
13595
+ * @memberof DataTypesRefundRequestResponseDto
13596
+ */
13597
+ 'order_id': number;
13598
+ /**
13599
+ *
13600
+ * @type {string}
13601
+ * @memberof DataTypesRefundRequestResponseDto
13602
+ */
13603
+ 'payment_id': string;
13604
+ /**
13605
+ *
13606
+ * @type {number}
13607
+ * @memberof DataTypesRefundRequestResponseDto
13608
+ */
13609
+ 'refund_request_id': number;
13610
+ /**
13611
+ *
13612
+ * @type {string}
13613
+ * @memberof DataTypesRefundRequestResponseDto
13614
+ */
13615
+ 'refund_type': string;
13616
+ /**
13617
+ *
13618
+ * @type {boolean}
13619
+ * @memberof DataTypesRefundRequestResponseDto
13620
+ */
13621
+ 'require_approval': boolean;
13622
+ /**
13623
+ *
13624
+ * @type {string}
13625
+ * @memberof DataTypesRefundRequestResponseDto
13626
+ */
13627
+ 'status': string;
13628
+ }
12113
13629
  /**
12114
13630
  *
12115
13631
  * @export
@@ -12133,33 +13649,136 @@ export interface DataTypesRefundResponseDto {
12133
13649
  * @type {string}
12134
13650
  * @memberof DataTypesRefundResponseDto
12135
13651
  */
12136
- 'gateway': string;
13652
+ 'gateway': string;
13653
+ /**
13654
+ *
13655
+ * @type {{ [key: string]: any; }}
13656
+ * @memberof DataTypesRefundResponseDto
13657
+ */
13658
+ 'gateway_response': {
13659
+ [key: string]: any;
13660
+ };
13661
+ /**
13662
+ *
13663
+ * @type {string}
13664
+ * @memberof DataTypesRefundResponseDto
13665
+ */
13666
+ 'payment_id': string;
13667
+ /**
13668
+ *
13669
+ * @type {string}
13670
+ * @memberof DataTypesRefundResponseDto
13671
+ */
13672
+ 'refund_id': string;
13673
+ /**
13674
+ *
13675
+ * @type {string}
13676
+ * @memberof DataTypesRefundResponseDto
13677
+ */
13678
+ 'status': string;
13679
+ }
13680
+ /**
13681
+ *
13682
+ * @export
13683
+ * @interface DataTypesRefundStatusDto
13684
+ */
13685
+ export interface DataTypesRefundStatusDto {
13686
+ /**
13687
+ *
13688
+ * @type {number}
13689
+ * @memberof DataTypesRefundStatusDto
13690
+ */
13691
+ 'amount': number;
13692
+ /**
13693
+ *
13694
+ * @type {string}
13695
+ * @memberof DataTypesRefundStatusDto
13696
+ */
13697
+ 'approved_at': string;
13698
+ /**
13699
+ *
13700
+ * @type {number}
13701
+ * @memberof DataTypesRefundStatusDto
13702
+ */
13703
+ 'approved_by': number;
13704
+ /**
13705
+ * Timeline
13706
+ * @type {string}
13707
+ * @memberof DataTypesRefundStatusDto
13708
+ */
13709
+ 'created_at': string;
13710
+ /**
13711
+ * Credit adjustments
13712
+ * @type {Array<DataTypesCreditAdjustmentDto>}
13713
+ * @memberof DataTypesRefundStatusDto
13714
+ */
13715
+ 'credit_adjustments': Array<DataTypesCreditAdjustmentDto>;
13716
+ /**
13717
+ * Processing information
13718
+ * @type {string}
13719
+ * @memberof DataTypesRefundStatusDto
13720
+ */
13721
+ 'gateway_refund_id': string;
13722
+ /**
13723
+ *
13724
+ * @type {number}
13725
+ * @memberof DataTypesRefundStatusDto
13726
+ */
13727
+ 'order_id': number;
13728
+ /**
13729
+ *
13730
+ * @type {string}
13731
+ * @memberof DataTypesRefundStatusDto
13732
+ */
13733
+ 'payment_id': string;
13734
+ /**
13735
+ *
13736
+ * @type {string}
13737
+ * @memberof DataTypesRefundStatusDto
13738
+ */
13739
+ 'processed_at': string;
13740
+ /**
13741
+ *
13742
+ * @type {string}
13743
+ * @memberof DataTypesRefundStatusDto
13744
+ */
13745
+ 'reason': string;
13746
+ /**
13747
+ *
13748
+ * @type {number}
13749
+ * @memberof DataTypesRefundStatusDto
13750
+ */
13751
+ 'refund_request_id': number;
12137
13752
  /**
12138
13753
  *
12139
- * @type {{ [key: string]: any; }}
12140
- * @memberof DataTypesRefundResponseDto
13754
+ * @type {string}
13755
+ * @memberof DataTypesRefundStatusDto
12141
13756
  */
12142
- 'gateway_response': {
12143
- [key: string]: any;
12144
- };
13757
+ 'refund_type': string;
12145
13758
  /**
12146
13759
  *
12147
13760
  * @type {string}
12148
- * @memberof DataTypesRefundResponseDto
13761
+ * @memberof DataTypesRefundStatusDto
12149
13762
  */
12150
- 'payment_id': string;
13763
+ 'rejection_reason': string;
13764
+ /**
13765
+ * Approval information
13766
+ * @type {boolean}
13767
+ * @memberof DataTypesRefundStatusDto
13768
+ */
13769
+ 'require_approval': boolean;
12151
13770
  /**
12152
13771
  *
12153
13772
  * @type {string}
12154
- * @memberof DataTypesRefundResponseDto
13773
+ * @memberof DataTypesRefundStatusDto
12155
13774
  */
12156
- 'refund_id': string;
13775
+ 'status': string;
12157
13776
  /**
12158
13777
  *
12159
13778
  * @type {string}
12160
- * @memberof DataTypesRefundResponseDto
13779
+ * @memberof DataTypesRefundStatusDto
12161
13780
  */
12162
- 'status': string;
13781
+ 'updated_at': string;
12163
13782
  }
12164
13783
  /**
12165
13784
  *
@@ -12550,6 +14169,74 @@ export interface DataTypesRolesListResponse {
12550
14169
  */
12551
14170
  'status': number;
12552
14171
  }
14172
+ /**
14173
+ *
14174
+ * @export
14175
+ * @interface DataTypesSampleDatasetResponse
14176
+ */
14177
+ export interface DataTypesSampleDatasetResponse {
14178
+ /**
14179
+ *
14180
+ * @type {string}
14181
+ * @memberof DataTypesSampleDatasetResponse
14182
+ */
14183
+ 'datasetName': string;
14184
+ /**
14185
+ *
14186
+ * @type {string}
14187
+ * @memberof DataTypesSampleDatasetResponse
14188
+ */
14189
+ 'description': string;
14190
+ /**
14191
+ *
14192
+ * @type {string}
14193
+ * @memberof DataTypesSampleDatasetResponse
14194
+ */
14195
+ 'imageUrl': string;
14196
+ /**
14197
+ *
14198
+ * @type {number}
14199
+ * @memberof DataTypesSampleDatasetResponse
14200
+ */
14201
+ 'sampleDatasetId': number;
14202
+ /**
14203
+ *
14204
+ * @type {string}
14205
+ * @memberof DataTypesSampleDatasetResponse
14206
+ */
14207
+ 'storeName': string;
14208
+ /**
14209
+ *
14210
+ * @type {Array<string>}
14211
+ * @memberof DataTypesSampleDatasetResponse
14212
+ */
14213
+ 'tags': Array<string>;
14214
+ }
14215
+ /**
14216
+ *
14217
+ * @export
14218
+ * @interface DataTypesSampleDatasetsResponseWrapper
14219
+ */
14220
+ export interface DataTypesSampleDatasetsResponseWrapper {
14221
+ /**
14222
+ *
14223
+ * @type {Array<DataTypesSampleDatasetResponse>}
14224
+ * @memberof DataTypesSampleDatasetsResponseWrapper
14225
+ */
14226
+ 'data': Array<DataTypesSampleDatasetResponse>;
14227
+ /**
14228
+ *
14229
+ * @type {string}
14230
+ * @memberof DataTypesSampleDatasetsResponseWrapper
14231
+ */
14232
+ 'message': string;
14233
+ /**
14234
+ *
14235
+ * @type {number}
14236
+ * @memberof DataTypesSampleDatasetsResponseWrapper
14237
+ */
14238
+ 'status': number;
14239
+ }
12553
14240
  /**
12554
14241
  *
12555
14242
  * @export
@@ -12668,6 +14355,56 @@ export interface DataTypesSchemaOptionsResponseWrapper {
12668
14355
  */
12669
14356
  'status': number;
12670
14357
  }
14358
+ /**
14359
+ *
14360
+ * @export
14361
+ * @interface DataTypesSearchResult
14362
+ */
14363
+ export interface DataTypesSearchResult {
14364
+ /**
14365
+ *
14366
+ * @type {number}
14367
+ * @memberof DataTypesSearchResult
14368
+ */
14369
+ 'found': number;
14370
+ /**
14371
+ *
14372
+ * @type {Array<object>}
14373
+ * @memberof DataTypesSearchResult
14374
+ */
14375
+ 'results': Array<object>;
14376
+ /**
14377
+ *
14378
+ * @type {string}
14379
+ * @memberof DataTypesSearchResult
14380
+ */
14381
+ 'status': string;
14382
+ }
14383
+ /**
14384
+ *
14385
+ * @export
14386
+ * @interface DataTypesSearchResultResponse
14387
+ */
14388
+ export interface DataTypesSearchResultResponse {
14389
+ /**
14390
+ *
14391
+ * @type {DataTypesSearchResult}
14392
+ * @memberof DataTypesSearchResultResponse
14393
+ */
14394
+ 'data': DataTypesSearchResult;
14395
+ /**
14396
+ *
14397
+ * @type {string}
14398
+ * @memberof DataTypesSearchResultResponse
14399
+ */
14400
+ 'message': string;
14401
+ /**
14402
+ *
14403
+ * @type {number}
14404
+ * @memberof DataTypesSearchResultResponse
14405
+ */
14406
+ 'status': number;
14407
+ }
12671
14408
  /**
12672
14409
  *
12673
14410
  * @export
@@ -12889,6 +14626,97 @@ export interface DataTypesSortField {
12889
14626
  */
12890
14627
  'field': string;
12891
14628
  }
14629
+ /**
14630
+ *
14631
+ * @export
14632
+ * @interface DataTypesSource
14633
+ */
14634
+ export interface DataTypesSource {
14635
+ /**
14636
+ *
14637
+ * @type {string}
14638
+ * @memberof DataTypesSource
14639
+ */
14640
+ 'Config': string;
14641
+ /**
14642
+ *
14643
+ * @type {string}
14644
+ * @memberof DataTypesSource
14645
+ */
14646
+ 'CreatedAt': string;
14647
+ /**
14648
+ *
14649
+ * @type {number}
14650
+ * @memberof DataTypesSource
14651
+ */
14652
+ 'CreatedBy': number;
14653
+ /**
14654
+ * Index schema
14655
+ * @type {string}
14656
+ * @memberof DataTypesSource
14657
+ */
14658
+ 'IndexSchema': string;
14659
+ /**
14660
+ *
14661
+ * @type {boolean}
14662
+ * @memberof DataTypesSource
14663
+ */
14664
+ 'IsDeleted': boolean;
14665
+ /**
14666
+ *
14667
+ * @type {string}
14668
+ * @memberof DataTypesSource
14669
+ */
14670
+ 'ModifiedAt': string;
14671
+ /**
14672
+ *
14673
+ * @type {number}
14674
+ * @memberof DataTypesSource
14675
+ */
14676
+ 'ModifiedBy': number;
14677
+ /**
14678
+ *
14679
+ * @type {string}
14680
+ * @memberof DataTypesSource
14681
+ */
14682
+ 'Name': string;
14683
+ /**
14684
+ *
14685
+ * @type {string}
14686
+ * @memberof DataTypesSource
14687
+ */
14688
+ 'Schema': string;
14689
+ /**
14690
+ *
14691
+ * @type {number}
14692
+ * @memberof DataTypesSource
14693
+ */
14694
+ 'SourceID': number;
14695
+ /**
14696
+ *
14697
+ * @type {string}
14698
+ * @memberof DataTypesSource
14699
+ */
14700
+ 'Status': string;
14701
+ /**
14702
+ *
14703
+ * @type {number}
14704
+ * @memberof DataTypesSource
14705
+ */
14706
+ 'StoreId': number;
14707
+ /**
14708
+ *
14709
+ * @type {string}
14710
+ * @memberof DataTypesSource
14711
+ */
14712
+ 'Type': string;
14713
+ /**
14714
+ * *multipart.FileHeader
14715
+ * @type {File}
14716
+ * @memberof DataTypesSource
14717
+ */
14718
+ 'file': File;
14719
+ }
12892
14720
  /**
12893
14721
  *
12894
14722
  * @export
@@ -12897,10 +14725,10 @@ export interface DataTypesSortField {
12897
14725
  export interface DataTypesSourcesListResponse {
12898
14726
  /**
12899
14727
  *
12900
- * @type {Array<object>}
14728
+ * @type {Array<DataTypesSource>}
12901
14729
  * @memberof DataTypesSourcesListResponse
12902
14730
  */
12903
- 'data': Array<object>;
14731
+ 'data': Array<DataTypesSource>;
12904
14732
  /**
12905
14733
  *
12906
14734
  * @type {string}
@@ -13456,6 +15284,97 @@ export interface DataTypesSynonymEntry {
13456
15284
  */
13457
15285
  'synonyms': Array<string>;
13458
15286
  }
15287
+ /**
15288
+ *
15289
+ * @export
15290
+ * @interface DataTypesTask
15291
+ */
15292
+ export interface DataTypesTask {
15293
+ /**
15294
+ *
15295
+ * @type {string}
15296
+ * @memberof DataTypesTask
15297
+ */
15298
+ 'config': string;
15299
+ /**
15300
+ *
15301
+ * @type {string}
15302
+ * @memberof DataTypesTask
15303
+ */
15304
+ 'created_at': string;
15305
+ /**
15306
+ *
15307
+ * @type {number}
15308
+ * @memberof DataTypesTask
15309
+ */
15310
+ 'created_by': number;
15311
+ /**
15312
+ *
15313
+ * @type {number}
15314
+ * @memberof DataTypesTask
15315
+ */
15316
+ 'destination_id': number;
15317
+ /**
15318
+ * once, hourly, ...
15319
+ * @type {string}
15320
+ * @memberof DataTypesTask
15321
+ */
15322
+ 'frequency': string;
15323
+ /**
15324
+ * enum: replace, upsert, ...
15325
+ * @type {string}
15326
+ * @memberof DataTypesTask
15327
+ */
15328
+ 'indexing_strategy': string;
15329
+ /**
15330
+ *
15331
+ * @type {boolean}
15332
+ * @memberof DataTypesTask
15333
+ */
15334
+ 'is_deleted': boolean;
15335
+ /**
15336
+ *
15337
+ * @type {string}
15338
+ * @memberof DataTypesTask
15339
+ */
15340
+ 'modified_at': string;
15341
+ /**
15342
+ *
15343
+ * @type {number}
15344
+ * @memberof DataTypesTask
15345
+ */
15346
+ 'modified_by': number;
15347
+ /**
15348
+ *
15349
+ * @type {string}
15350
+ * @memberof DataTypesTask
15351
+ */
15352
+ 'schedule_cron': string;
15353
+ /**
15354
+ *
15355
+ * @type {number}
15356
+ * @memberof DataTypesTask
15357
+ */
15358
+ 'source_id': number;
15359
+ /**
15360
+ *
15361
+ * @type {number}
15362
+ * @memberof DataTypesTask
15363
+ */
15364
+ 'task_id': number;
15365
+ /**
15366
+ *
15367
+ * @type {string}
15368
+ * @memberof DataTypesTask
15369
+ */
15370
+ 'transformer_script': string;
15371
+ /**
15372
+ * enum: url_csv, webhook, ...
15373
+ * @type {string}
15374
+ * @memberof DataTypesTask
15375
+ */
15376
+ 'type': string;
15377
+ }
13459
15378
  /**
13460
15379
  *
13461
15380
  * @export
@@ -13827,7 +15746,32 @@ export interface DataTypesUpdateSchemaResponse {
13827
15746
  /**
13828
15747
  *
13829
15748
  * @type {number}
13830
- * @memberof DataTypesUpdateSchemaResponse
15749
+ * @memberof DataTypesUpdateSchemaResponse
15750
+ */
15751
+ 'status': number;
15752
+ }
15753
+ /**
15754
+ *
15755
+ * @export
15756
+ * @interface DataTypesUpdateSourceConfigResponseWrapper
15757
+ */
15758
+ export interface DataTypesUpdateSourceConfigResponseWrapper {
15759
+ /**
15760
+ *
15761
+ * @type {DataTypesSource}
15762
+ * @memberof DataTypesUpdateSourceConfigResponseWrapper
15763
+ */
15764
+ 'data': DataTypesSource;
15765
+ /**
15766
+ *
15767
+ * @type {string}
15768
+ * @memberof DataTypesUpdateSourceConfigResponseWrapper
15769
+ */
15770
+ 'message': string;
15771
+ /**
15772
+ *
15773
+ * @type {number}
15774
+ * @memberof DataTypesUpdateSourceConfigResponseWrapper
13831
15775
  */
13832
15776
  'status': number;
13833
15777
  }
@@ -13938,10 +15882,10 @@ export interface DataTypesUploadsourceDataResponse {
13938
15882
  'JobId': string;
13939
15883
  /**
13940
15884
  *
13941
- * @type {object}
15885
+ * @type {DataTypesSource}
13942
15886
  * @memberof DataTypesUploadsourceDataResponse
13943
15887
  */
13944
- 'Source': object;
15888
+ 'Source': DataTypesSource;
13945
15889
  }
13946
15890
  /**
13947
15891
  *
@@ -14287,7 +16231,7 @@ export interface DataTypesVerifyOTPResponseWrapper {
14287
16231
  */
14288
16232
  export interface DataTypesVerifyPaymentRequest {
14289
16233
  /**
14290
- *
16234
+ * Optional, defaults to razorpay
14291
16235
  * @type {string}
14292
16236
  * @memberof DataTypesVerifyPaymentRequest
14293
16237
  */
@@ -14297,7 +16241,19 @@ export interface DataTypesVerifyPaymentRequest {
14297
16241
  * @type {string}
14298
16242
  * @memberof DataTypesVerifyPaymentRequest
14299
16243
  */
14300
- 'payment_id': string;
16244
+ 'gateway_order_id': string;
16245
+ /**
16246
+ *
16247
+ * @type {string}
16248
+ * @memberof DataTypesVerifyPaymentRequest
16249
+ */
16250
+ 'gateway_payment_id': string;
16251
+ /**
16252
+ *
16253
+ * @type {string}
16254
+ * @memberof DataTypesVerifyPaymentRequest
16255
+ */
16256
+ 'gateway_signature': string;
14301
16257
  }
14302
16258
  /**
14303
16259
  *
@@ -17768,6 +19724,416 @@ export declare class AuthApi extends BaseAPI {
17768
19724
  */
17769
19725
  authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
17770
19726
  }
19727
+ /**
19728
+ * BillingDashboardApi - axios parameter creator
19729
+ * @export
19730
+ */
19731
+ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Configuration) => {
19732
+ /**
19733
+ * Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
19734
+ * @summary Get credit consumption
19735
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19736
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19737
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19738
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19739
+ * @param {number} [offset] Number of results to skip (default: 0)
19740
+ * @param {*} [options] Override http request option.
19741
+ * @throws {RequiredError}
19742
+ */
19743
+ adminBillingCreditConsumptionGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19744
+ /**
19745
+ * Retrieves paginated list of credit ledger entries with filtering options for the authenticated user\'s organization
19746
+ * @summary Get credit ledger
19747
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19748
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19749
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19750
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19751
+ * @param {number} [offset] Number of results to skip (default: 0)
19752
+ * @param {*} [options] Override http request option.
19753
+ * @throws {RequiredError}
19754
+ */
19755
+ adminBillingCreditLedgerGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19756
+ /**
19757
+ * Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization
19758
+ * @summary Get credit purchases
19759
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19760
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19761
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19762
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19763
+ * @param {number} [offset] Number of results to skip (default: 0)
19764
+ * @param {*} [options] Override http request option.
19765
+ * @throws {RequiredError}
19766
+ */
19767
+ adminBillingCreditPurchasesGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19768
+ /**
19769
+ * Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization
19770
+ * @summary Get credit transactions
19771
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19772
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19773
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19774
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19775
+ * @param {number} [offset] Number of results to skip (default: 0)
19776
+ * @param {*} [options] Override http request option.
19777
+ * @throws {RequiredError}
19778
+ */
19779
+ adminBillingCreditTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19780
+ /**
19781
+ * Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
19782
+ * @summary Get orders
19783
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19784
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19785
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19786
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19787
+ * @param {number} [offset] Number of results to skip (default: 0)
19788
+ * @param {*} [options] Override http request option.
19789
+ * @throws {RequiredError}
19790
+ */
19791
+ adminBillingOrdersGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19792
+ /**
19793
+ * Retrieves billing summary for all organizations with filtering options
19794
+ * @summary Get organization billing summary
19795
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19796
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19797
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19798
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19799
+ * @param {number} [offset] Number of results to skip (default: 0)
19800
+ * @param {*} [options] Override http request option.
19801
+ * @throws {RequiredError}
19802
+ */
19803
+ adminBillingOrganizationsGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19804
+ /**
19805
+ * Retrieves comprehensive billing overview with revenue, transaction counts, and currency breakdown for the authenticated user\'s organization
19806
+ * @summary Get billing overview
19807
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19808
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19809
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19810
+ * @param {*} [options] Override http request option.
19811
+ * @throws {RequiredError}
19812
+ */
19813
+ adminBillingOverviewGet: (orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19814
+ /**
19815
+ * Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
19816
+ * @summary Get payment transactions
19817
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19818
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19819
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19820
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19821
+ * @param {number} [offset] Number of results to skip (default: 0)
19822
+ * @param {*} [options] Override http request option.
19823
+ * @throws {RequiredError}
19824
+ */
19825
+ adminBillingPaymentTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19826
+ };
19827
+ /**
19828
+ * BillingDashboardApi - functional programming interface
19829
+ * @export
19830
+ */
19831
+ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
19832
+ /**
19833
+ * Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
19834
+ * @summary Get credit consumption
19835
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19836
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19837
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19838
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19839
+ * @param {number} [offset] Number of results to skip (default: 0)
19840
+ * @param {*} [options] Override http request option.
19841
+ * @throws {RequiredError}
19842
+ */
19843
+ adminBillingCreditConsumptionGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary>>;
19844
+ /**
19845
+ * Retrieves paginated list of credit ledger entries with filtering options for the authenticated user\'s organization
19846
+ * @summary Get credit ledger
19847
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19848
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19849
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19850
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19851
+ * @param {number} [offset] Number of results to skip (default: 0)
19852
+ * @param {*} [options] Override http request option.
19853
+ * @throws {RequiredError}
19854
+ */
19855
+ adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary>>;
19856
+ /**
19857
+ * Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization
19858
+ * @summary Get credit purchases
19859
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19860
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19861
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19862
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19863
+ * @param {number} [offset] Number of results to skip (default: 0)
19864
+ * @param {*} [options] Override http request option.
19865
+ * @throws {RequiredError}
19866
+ */
19867
+ adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary>>;
19868
+ /**
19869
+ * Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization
19870
+ * @summary Get credit transactions
19871
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19872
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19873
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19874
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19875
+ * @param {number} [offset] Number of results to skip (default: 0)
19876
+ * @param {*} [options] Override http request option.
19877
+ * @throws {RequiredError}
19878
+ */
19879
+ adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary>>;
19880
+ /**
19881
+ * Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
19882
+ * @summary Get orders
19883
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19884
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19885
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19886
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19887
+ * @param {number} [offset] Number of results to skip (default: 0)
19888
+ * @param {*} [options] Override http request option.
19889
+ * @throws {RequiredError}
19890
+ */
19891
+ adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceOrderSummary>>;
19892
+ /**
19893
+ * Retrieves billing summary for all organizations with filtering options
19894
+ * @summary Get organization billing summary
19895
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19896
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19897
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19898
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19899
+ * @param {number} [offset] Number of results to skip (default: 0)
19900
+ * @param {*} [options] Override http request option.
19901
+ * @throws {RequiredError}
19902
+ */
19903
+ adminBillingOrganizationsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary>>;
19904
+ /**
19905
+ * Retrieves comprehensive billing overview with revenue, transaction counts, and currency breakdown for the authenticated user\'s organization
19906
+ * @summary Get billing overview
19907
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19908
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19909
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19910
+ * @param {*} [options] Override http request option.
19911
+ * @throws {RequiredError}
19912
+ */
19913
+ adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseBillingServiceBillingOverview>>;
19914
+ /**
19915
+ * Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
19916
+ * @summary Get payment transactions
19917
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19918
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19919
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19920
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19921
+ * @param {number} [offset] Number of results to skip (default: 0)
19922
+ * @param {*} [options] Override http request option.
19923
+ * @throws {RequiredError}
19924
+ */
19925
+ adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary>>;
19926
+ };
19927
+ /**
19928
+ * BillingDashboardApi - factory interface
19929
+ * @export
19930
+ */
19931
+ export declare const BillingDashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
19932
+ /**
19933
+ * Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
19934
+ * @summary Get credit consumption
19935
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19936
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19937
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19938
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19939
+ * @param {number} [offset] Number of results to skip (default: 0)
19940
+ * @param {*} [options] Override http request option.
19941
+ * @throws {RequiredError}
19942
+ */
19943
+ adminBillingCreditConsumptionGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary>;
19944
+ /**
19945
+ * Retrieves paginated list of credit ledger entries with filtering options for the authenticated user\'s organization
19946
+ * @summary Get credit ledger
19947
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19948
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19949
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19950
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19951
+ * @param {number} [offset] Number of results to skip (default: 0)
19952
+ * @param {*} [options] Override http request option.
19953
+ * @throws {RequiredError}
19954
+ */
19955
+ adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary>;
19956
+ /**
19957
+ * Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization
19958
+ * @summary Get credit purchases
19959
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19960
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19961
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19962
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19963
+ * @param {number} [offset] Number of results to skip (default: 0)
19964
+ * @param {*} [options] Override http request option.
19965
+ * @throws {RequiredError}
19966
+ */
19967
+ adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary>;
19968
+ /**
19969
+ * Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization
19970
+ * @summary Get credit transactions
19971
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19972
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19973
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19974
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19975
+ * @param {number} [offset] Number of results to skip (default: 0)
19976
+ * @param {*} [options] Override http request option.
19977
+ * @throws {RequiredError}
19978
+ */
19979
+ adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary>;
19980
+ /**
19981
+ * Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
19982
+ * @summary Get orders
19983
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19984
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19985
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19986
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19987
+ * @param {number} [offset] Number of results to skip (default: 0)
19988
+ * @param {*} [options] Override http request option.
19989
+ * @throws {RequiredError}
19990
+ */
19991
+ adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceOrderSummary>;
19992
+ /**
19993
+ * Retrieves billing summary for all organizations with filtering options
19994
+ * @summary Get organization billing summary
19995
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
19996
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
19997
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
19998
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
19999
+ * @param {number} [offset] Number of results to skip (default: 0)
20000
+ * @param {*} [options] Override http request option.
20001
+ * @throws {RequiredError}
20002
+ */
20003
+ adminBillingOrganizationsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary>;
20004
+ /**
20005
+ * Retrieves comprehensive billing overview with revenue, transaction counts, and currency breakdown for the authenticated user\'s organization
20006
+ * @summary Get billing overview
20007
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20008
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20009
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20010
+ * @param {*} [options] Override http request option.
20011
+ * @throws {RequiredError}
20012
+ */
20013
+ adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseBillingServiceBillingOverview>;
20014
+ /**
20015
+ * Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
20016
+ * @summary Get payment transactions
20017
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20018
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20019
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20020
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20021
+ * @param {number} [offset] Number of results to skip (default: 0)
20022
+ * @param {*} [options] Override http request option.
20023
+ * @throws {RequiredError}
20024
+ */
20025
+ adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary>;
20026
+ };
20027
+ /**
20028
+ * BillingDashboardApi - object-oriented interface
20029
+ * @export
20030
+ * @class BillingDashboardApi
20031
+ * @extends {BaseAPI}
20032
+ */
20033
+ export declare class BillingDashboardApi extends BaseAPI {
20034
+ /**
20035
+ * Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
20036
+ * @summary Get credit consumption
20037
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20038
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20039
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20040
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20041
+ * @param {number} [offset] Number of results to skip (default: 0)
20042
+ * @param {*} [options] Override http request option.
20043
+ * @throws {RequiredError}
20044
+ * @memberof BillingDashboardApi
20045
+ */
20046
+ adminBillingCreditConsumptionGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceCreditConsumptionSummary, any, {}>>;
20047
+ /**
20048
+ * Retrieves paginated list of credit ledger entries with filtering options for the authenticated user\'s organization
20049
+ * @summary Get credit ledger
20050
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20051
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20052
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20053
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20054
+ * @param {number} [offset] Number of results to skip (default: 0)
20055
+ * @param {*} [options] Override http request option.
20056
+ * @throws {RequiredError}
20057
+ * @memberof BillingDashboardApi
20058
+ */
20059
+ adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceCreditLedgerSummary, any, {}>>;
20060
+ /**
20061
+ * Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization
20062
+ * @summary Get credit purchases
20063
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20064
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20065
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20066
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20067
+ * @param {number} [offset] Number of results to skip (default: 0)
20068
+ * @param {*} [options] Override http request option.
20069
+ * @throws {RequiredError}
20070
+ * @memberof BillingDashboardApi
20071
+ */
20072
+ adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceCreditPurchaseSummary, any, {}>>;
20073
+ /**
20074
+ * Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization
20075
+ * @summary Get credit transactions
20076
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20077
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20078
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20079
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20080
+ * @param {number} [offset] Number of results to skip (default: 0)
20081
+ * @param {*} [options] Override http request option.
20082
+ * @throws {RequiredError}
20083
+ * @memberof BillingDashboardApi
20084
+ */
20085
+ adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceCreditTransactionSummary, any, {}>>;
20086
+ /**
20087
+ * Retrieves paginated list of orders with filtering options for the authenticated user\'s organization
20088
+ * @summary Get orders
20089
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20090
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20091
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20092
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20093
+ * @param {number} [offset] Number of results to skip (default: 0)
20094
+ * @param {*} [options] Override http request option.
20095
+ * @throws {RequiredError}
20096
+ * @memberof BillingDashboardApi
20097
+ */
20098
+ adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceOrderSummary, any, {}>>;
20099
+ /**
20100
+ * Retrieves billing summary for all organizations with filtering options
20101
+ * @summary Get organization billing summary
20102
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20103
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20104
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20105
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20106
+ * @param {number} [offset] Number of results to skip (default: 0)
20107
+ * @param {*} [options] Override http request option.
20108
+ * @throws {RequiredError}
20109
+ * @memberof BillingDashboardApi
20110
+ */
20111
+ adminBillingOrganizationsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServiceOrganizationBillingSummary, any, {}>>;
20112
+ /**
20113
+ * Retrieves comprehensive billing overview with revenue, transaction counts, and currency breakdown for the authenticated user\'s organization
20114
+ * @summary Get billing overview
20115
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20116
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20117
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20118
+ * @param {*} [options] Override http request option.
20119
+ * @throws {RequiredError}
20120
+ * @memberof BillingDashboardApi
20121
+ */
20122
+ adminBillingOverviewGet(orgId?: number, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseBillingServiceBillingOverview, any, {}>>;
20123
+ /**
20124
+ * Retrieves paginated list of payment transactions with filtering options for the authenticated user\'s organization
20125
+ * @summary Get payment transactions
20126
+ * @param {number} [orgId] Organization ID (defaults to user\&#39;s org)
20127
+ * @param {string} [startDate] Start date (YYYY-MM-DD format)
20128
+ * @param {string} [endDate] End date (YYYY-MM-DD format)
20129
+ * @param {number} [limit] Number of results per page (default: 50, max: 100)
20130
+ * @param {number} [offset] Number of results to skip (default: 0)
20131
+ * @param {*} [options] Override http request option.
20132
+ * @throws {RequiredError}
20133
+ * @memberof BillingDashboardApi
20134
+ */
20135
+ adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary, any, {}>>;
20136
+ }
17771
20137
  /**
17772
20138
  * ConnectorsApi - axios parameter creator
17773
20139
  * @export
@@ -17792,11 +20158,11 @@ export declare const ConnectorsApiAxiosParamCreator: (configuration?: Configurat
17792
20158
  /**
17793
20159
  * Create source
17794
20160
  * @summary Create source
17795
- * @param {object} body Source
20161
+ * @param {DataTypesCreateSourceRequest} dataTypesCreateSourceRequest Source
17796
20162
  * @param {*} [options] Override http request option.
17797
20163
  * @throws {RequiredError}
17798
20164
  */
17799
- v1ConnectorsSourcesPost: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20165
+ v1ConnectorsSourcesPost: (dataTypesCreateSourceRequest: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17800
20166
  /**
17801
20167
  * Update source config by id
17802
20168
  * @summary Update source config by id
@@ -17835,11 +20201,11 @@ export declare const ConnectorsApiAxiosParamCreator: (configuration?: Configurat
17835
20201
  /**
17836
20202
  * Create task
17837
20203
  * @summary Create task
17838
- * @param {object} body Task
20204
+ * @param {DataTypesCreateTaskRequest} dataTypesCreateTaskRequest Task
17839
20205
  * @param {*} [options] Override http request option.
17840
20206
  * @throws {RequiredError}
17841
20207
  */
17842
- v1ConnectorsTasksPost: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20208
+ v1ConnectorsTasksPost: (dataTypesCreateTaskRequest: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17843
20209
  /**
17844
20210
  * Trigger task run
17845
20211
  * @summary Trigger task run
@@ -17863,7 +20229,7 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
17863
20229
  * @param {*} [options] Override http request option.
17864
20230
  * @throws {RequiredError}
17865
20231
  */
17866
- v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
20232
+ v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchResultResponse>>;
17867
20233
  /**
17868
20234
  * Get all sources
17869
20235
  * @summary Get all sources
@@ -17874,11 +20240,11 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
17874
20240
  /**
17875
20241
  * Create source
17876
20242
  * @summary Create source
17877
- * @param {object} body Source
20243
+ * @param {DataTypesCreateSourceRequest} dataTypesCreateSourceRequest Source
17878
20244
  * @param {*} [options] Override http request option.
17879
20245
  * @throws {RequiredError}
17880
20246
  */
17881
- v1ConnectorsSourcesPost(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
20247
+ v1ConnectorsSourcesPost(dataTypesCreateSourceRequest: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreateSourceResponse>>;
17882
20248
  /**
17883
20249
  * Update source config by id
17884
20250
  * @summary Update source config by id
@@ -17896,7 +20262,7 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
17896
20262
  * @param {*} [options] Override http request option.
17897
20263
  * @throws {RequiredError}
17898
20264
  */
17899
- v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
20265
+ v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUpdateSourceConfigResponseWrapper>>;
17900
20266
  /**
17901
20267
  * Update Index schema
17902
20268
  * @summary Update Index schema
@@ -17917,11 +20283,11 @@ export declare const ConnectorsApiFp: (configuration?: Configuration) => {
17917
20283
  /**
17918
20284
  * Create task
17919
20285
  * @summary Create task
17920
- * @param {object} body Task
20286
+ * @param {DataTypesCreateTaskRequest} dataTypesCreateTaskRequest Task
17921
20287
  * @param {*} [options] Override http request option.
17922
20288
  * @throws {RequiredError}
17923
20289
  */
17924
- v1ConnectorsTasksPost(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
20290
+ v1ConnectorsTasksPost(dataTypesCreateTaskRequest: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreateTaskResponse>>;
17925
20291
  /**
17926
20292
  * Trigger task run
17927
20293
  * @summary Trigger task run
@@ -17945,7 +20311,7 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
17945
20311
  * @param {*} [options] Override http request option.
17946
20312
  * @throws {RequiredError}
17947
20313
  */
17948
- v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
20314
+ v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchResultResponse>;
17949
20315
  /**
17950
20316
  * Get all sources
17951
20317
  * @summary Get all sources
@@ -17956,11 +20322,11 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
17956
20322
  /**
17957
20323
  * Create source
17958
20324
  * @summary Create source
17959
- * @param {object} body Source
20325
+ * @param {DataTypesCreateSourceRequest} dataTypesCreateSourceRequest Source
17960
20326
  * @param {*} [options] Override http request option.
17961
20327
  * @throws {RequiredError}
17962
20328
  */
17963
- v1ConnectorsSourcesPost(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
20329
+ v1ConnectorsSourcesPost(dataTypesCreateSourceRequest: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreateSourceResponse>;
17964
20330
  /**
17965
20331
  * Update source config by id
17966
20332
  * @summary Update source config by id
@@ -17978,7 +20344,7 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
17978
20344
  * @param {*} [options] Override http request option.
17979
20345
  * @throws {RequiredError}
17980
20346
  */
17981
- v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
20347
+ v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUpdateSourceConfigResponseWrapper>;
17982
20348
  /**
17983
20349
  * Update Index schema
17984
20350
  * @summary Update Index schema
@@ -17999,11 +20365,11 @@ export declare const ConnectorsApiFactory: (configuration?: Configuration, baseP
17999
20365
  /**
18000
20366
  * Create task
18001
20367
  * @summary Create task
18002
- * @param {object} body Task
20368
+ * @param {DataTypesCreateTaskRequest} dataTypesCreateTaskRequest Task
18003
20369
  * @param {*} [options] Override http request option.
18004
20370
  * @throws {RequiredError}
18005
20371
  */
18006
- v1ConnectorsTasksPost(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
20372
+ v1ConnectorsTasksPost(dataTypesCreateTaskRequest: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreateTaskResponse>;
18007
20373
  /**
18008
20374
  * Trigger task run
18009
20375
  * @summary Trigger task run
@@ -18030,7 +20396,7 @@ export declare class ConnectorsApi extends BaseAPI {
18030
20396
  * @throws {RequiredError}
18031
20397
  * @memberof ConnectorsApi
18032
20398
  */
18033
- v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
20399
+ v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any, {}>>;
18034
20400
  /**
18035
20401
  * Get all sources
18036
20402
  * @summary Get all sources
@@ -18042,12 +20408,12 @@ export declare class ConnectorsApi extends BaseAPI {
18042
20408
  /**
18043
20409
  * Create source
18044
20410
  * @summary Create source
18045
- * @param {object} body Source
20411
+ * @param {DataTypesCreateSourceRequest} dataTypesCreateSourceRequest Source
18046
20412
  * @param {*} [options] Override http request option.
18047
20413
  * @throws {RequiredError}
18048
20414
  * @memberof ConnectorsApi
18049
20415
  */
18050
- v1ConnectorsSourcesPost(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
20416
+ v1ConnectorsSourcesPost(dataTypesCreateSourceRequest: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any, {}>>;
18051
20417
  /**
18052
20418
  * Update source config by id
18053
20419
  * @summary Update source config by id
@@ -18067,7 +20433,7 @@ export declare class ConnectorsApi extends BaseAPI {
18067
20433
  * @throws {RequiredError}
18068
20434
  * @memberof ConnectorsApi
18069
20435
  */
18070
- v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
20436
+ v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any, {}>>;
18071
20437
  /**
18072
20438
  * Update Index schema
18073
20439
  * @summary Update Index schema
@@ -18090,12 +20456,12 @@ export declare class ConnectorsApi extends BaseAPI {
18090
20456
  /**
18091
20457
  * Create task
18092
20458
  * @summary Create task
18093
- * @param {object} body Task
20459
+ * @param {DataTypesCreateTaskRequest} dataTypesCreateTaskRequest Task
18094
20460
  * @param {*} [options] Override http request option.
18095
20461
  * @throws {RequiredError}
18096
20462
  * @memberof ConnectorsApi
18097
20463
  */
18098
- v1ConnectorsTasksPost(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
20464
+ v1ConnectorsTasksPost(dataTypesCreateTaskRequest: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any, {}>>;
18099
20465
  /**
18100
20466
  * Trigger task run
18101
20467
  * @summary Trigger task run
@@ -21099,7 +23465,7 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
21099
23465
  * @param {*} [options] Override http request option.
21100
23466
  * @throws {RequiredError}
21101
23467
  */
21102
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
23468
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSampleDatasetsResponseWrapper>>;
21103
23469
  };
21104
23470
  /**
21105
23471
  * OnboardingApi - factory interface
@@ -21173,7 +23539,7 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
21173
23539
  * @param {*} [options] Override http request option.
21174
23540
  * @throws {RequiredError}
21175
23541
  */
21176
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
23542
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSampleDatasetsResponseWrapper>;
21177
23543
  };
21178
23544
  /**
21179
23545
  * OnboardingApi - object-oriented interface
@@ -21258,7 +23624,7 @@ export declare class OnboardingApi extends BaseAPI {
21258
23624
  * @throws {RequiredError}
21259
23625
  * @memberof OnboardingApi
21260
23626
  */
21261
- adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
23627
+ adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any, {}>>;
21262
23628
  }
21263
23629
  /**
21264
23630
  * OrganizationsApi - axios parameter creator
@@ -23684,6 +26050,229 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
23684
26050
  */
23685
26051
  adminV1QuerySuggestionsXStoreIDTypesenseGet(xStoreID: string, query?: string, hitsPerPage?: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDTypesenseGet200Response, any, {}>>;
23686
26052
  }
26053
+ /**
26054
+ * RefundManagementApi - axios parameter creator
26055
+ * @export
26056
+ */
26057
+ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Configuration) => {
26058
+ /**
26059
+ * Approves or rejects a pending refund request
26060
+ * @summary Process refund approval or rejection
26061
+ * @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
26062
+ * @param {*} [options] Override http request option.
26063
+ * @throws {RequiredError}
26064
+ */
26065
+ paymentGatewayRefundApprovalPost: (dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26066
+ /**
26067
+ * Gets refund requests that require approval
26068
+ * @summary Get pending refund approvals
26069
+ * @param {*} [options] Override http request option.
26070
+ * @throws {RequiredError}
26071
+ */
26072
+ paymentGatewayRefundApprovalsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26073
+ /**
26074
+ * Creates a comprehensive refund request with approval workflow
26075
+ * @summary Create a new refund request
26076
+ * @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
26077
+ * @param {*} [options] Override http request option.
26078
+ * @throws {RequiredError}
26079
+ */
26080
+ paymentGatewayRefundRequestPost: (dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26081
+ /**
26082
+ * Gets the current status and details of a refund request
26083
+ * @summary Get refund request status
26084
+ * @param {number} id Refund Request ID
26085
+ * @param {*} [options] Override http request option.
26086
+ * @throws {RequiredError}
26087
+ */
26088
+ paymentGatewayRefundStatusIdGet: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26089
+ /**
26090
+ * Gets a paginated list of refund requests with filtering
26091
+ * @summary List refund requests
26092
+ * @param {string} dateFrom
26093
+ * @param {string} dateTo
26094
+ * @param {number} orderId
26095
+ * @param {number} page
26096
+ * @param {number} pageSize
26097
+ * @param {string} paymentId
26098
+ * @param {string} refundType
26099
+ * @param {number} requestedBy
26100
+ * @param {boolean} requireApproval
26101
+ * @param {string} status
26102
+ * @param {*} [options] Override http request option.
26103
+ * @throws {RequiredError}
26104
+ */
26105
+ paymentGatewayRefundsGet: (dateFrom: string, dateTo: string, orderId: number, page: number, pageSize: number, paymentId: string, refundType: string, requestedBy: number, requireApproval: boolean, status: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26106
+ };
26107
+ /**
26108
+ * RefundManagementApi - functional programming interface
26109
+ * @export
26110
+ */
26111
+ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
26112
+ /**
26113
+ * Approves or rejects a pending refund request
26114
+ * @summary Process refund approval or rejection
26115
+ * @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
26116
+ * @param {*} [options] Override http request option.
26117
+ * @throws {RequiredError}
26118
+ */
26119
+ paymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
26120
+ /**
26121
+ * Gets refund requests that require approval
26122
+ * @summary Get pending refund approvals
26123
+ * @param {*} [options] Override http request option.
26124
+ * @throws {RequiredError}
26125
+ */
26126
+ paymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundListDto>>;
26127
+ /**
26128
+ * Creates a comprehensive refund request with approval workflow
26129
+ * @summary Create a new refund request
26130
+ * @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
26131
+ * @param {*} [options] Override http request option.
26132
+ * @throws {RequiredError}
26133
+ */
26134
+ paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundRequestResponseDto>>;
26135
+ /**
26136
+ * Gets the current status and details of a refund request
26137
+ * @summary Get refund request status
26138
+ * @param {number} id Refund Request ID
26139
+ * @param {*} [options] Override http request option.
26140
+ * @throws {RequiredError}
26141
+ */
26142
+ paymentGatewayRefundStatusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundStatusDto>>;
26143
+ /**
26144
+ * Gets a paginated list of refund requests with filtering
26145
+ * @summary List refund requests
26146
+ * @param {string} dateFrom
26147
+ * @param {string} dateTo
26148
+ * @param {number} orderId
26149
+ * @param {number} page
26150
+ * @param {number} pageSize
26151
+ * @param {string} paymentId
26152
+ * @param {string} refundType
26153
+ * @param {number} requestedBy
26154
+ * @param {boolean} requireApproval
26155
+ * @param {string} status
26156
+ * @param {*} [options] Override http request option.
26157
+ * @throws {RequiredError}
26158
+ */
26159
+ paymentGatewayRefundsGet(dateFrom: string, dateTo: string, orderId: number, page: number, pageSize: number, paymentId: string, refundType: string, requestedBy: number, requireApproval: boolean, status: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundListDto>>;
26160
+ };
26161
+ /**
26162
+ * RefundManagementApi - factory interface
26163
+ * @export
26164
+ */
26165
+ export declare const RefundManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26166
+ /**
26167
+ * Approves or rejects a pending refund request
26168
+ * @summary Process refund approval or rejection
26169
+ * @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
26170
+ * @param {*} [options] Override http request option.
26171
+ * @throws {RequiredError}
26172
+ */
26173
+ paymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
26174
+ /**
26175
+ * Gets refund requests that require approval
26176
+ * @summary Get pending refund approvals
26177
+ * @param {*} [options] Override http request option.
26178
+ * @throws {RequiredError}
26179
+ */
26180
+ paymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
26181
+ /**
26182
+ * Creates a comprehensive refund request with approval workflow
26183
+ * @summary Create a new refund request
26184
+ * @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
26185
+ * @param {*} [options] Override http request option.
26186
+ * @throws {RequiredError}
26187
+ */
26188
+ paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundRequestResponseDto>;
26189
+ /**
26190
+ * Gets the current status and details of a refund request
26191
+ * @summary Get refund request status
26192
+ * @param {number} id Refund Request ID
26193
+ * @param {*} [options] Override http request option.
26194
+ * @throws {RequiredError}
26195
+ */
26196
+ paymentGatewayRefundStatusIdGet(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundStatusDto>;
26197
+ /**
26198
+ * Gets a paginated list of refund requests with filtering
26199
+ * @summary List refund requests
26200
+ * @param {string} dateFrom
26201
+ * @param {string} dateTo
26202
+ * @param {number} orderId
26203
+ * @param {number} page
26204
+ * @param {number} pageSize
26205
+ * @param {string} paymentId
26206
+ * @param {string} refundType
26207
+ * @param {number} requestedBy
26208
+ * @param {boolean} requireApproval
26209
+ * @param {string} status
26210
+ * @param {*} [options] Override http request option.
26211
+ * @throws {RequiredError}
26212
+ */
26213
+ paymentGatewayRefundsGet(dateFrom: string, dateTo: string, orderId: number, page: number, pageSize: number, paymentId: string, refundType: string, requestedBy: number, requireApproval: boolean, status: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
26214
+ };
26215
+ /**
26216
+ * RefundManagementApi - object-oriented interface
26217
+ * @export
26218
+ * @class RefundManagementApi
26219
+ * @extends {BaseAPI}
26220
+ */
26221
+ export declare class RefundManagementApi extends BaseAPI {
26222
+ /**
26223
+ * Approves or rejects a pending refund request
26224
+ * @summary Process refund approval or rejection
26225
+ * @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
26226
+ * @param {*} [options] Override http request option.
26227
+ * @throws {RequiredError}
26228
+ * @memberof RefundManagementApi
26229
+ */
26230
+ paymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
26231
+ /**
26232
+ * Gets refund requests that require approval
26233
+ * @summary Get pending refund approvals
26234
+ * @param {*} [options] Override http request option.
26235
+ * @throws {RequiredError}
26236
+ * @memberof RefundManagementApi
26237
+ */
26238
+ paymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
26239
+ /**
26240
+ * Creates a comprehensive refund request with approval workflow
26241
+ * @summary Create a new refund request
26242
+ * @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
26243
+ * @param {*} [options] Override http request option.
26244
+ * @throws {RequiredError}
26245
+ * @memberof RefundManagementApi
26246
+ */
26247
+ paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundRequestResponseDto, any, {}>>;
26248
+ /**
26249
+ * Gets the current status and details of a refund request
26250
+ * @summary Get refund request status
26251
+ * @param {number} id Refund Request ID
26252
+ * @param {*} [options] Override http request option.
26253
+ * @throws {RequiredError}
26254
+ * @memberof RefundManagementApi
26255
+ */
26256
+ paymentGatewayRefundStatusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundStatusDto, any, {}>>;
26257
+ /**
26258
+ * Gets a paginated list of refund requests with filtering
26259
+ * @summary List refund requests
26260
+ * @param {string} dateFrom
26261
+ * @param {string} dateTo
26262
+ * @param {number} orderId
26263
+ * @param {number} page
26264
+ * @param {number} pageSize
26265
+ * @param {string} paymentId
26266
+ * @param {string} refundType
26267
+ * @param {number} requestedBy
26268
+ * @param {boolean} requireApproval
26269
+ * @param {string} status
26270
+ * @param {*} [options] Override http request option.
26271
+ * @throws {RequiredError}
26272
+ * @memberof RefundManagementApi
26273
+ */
26274
+ paymentGatewayRefundsGet(dateFrom: string, dateTo: string, orderId: number, page: number, pageSize: number, paymentId: string, refundType: string, requestedBy: number, requireApproval: boolean, status: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
26275
+ }
23687
26276
  /**
23688
26277
  * RegisterApi - axios parameter creator
23689
26278
  * @export
@@ -25128,11 +27717,11 @@ export declare const StoreDocumentsApiAxiosParamCreator: (configuration?: Config
25128
27717
  * @summary Update document
25129
27718
  * @param {string} xStoreID X-Store ID
25130
27719
  * @param {string} documentID Document ID
25131
- * @param {object} body Document data
27720
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25132
27721
  * @param {*} [options] Override http request option.
25133
27722
  * @throws {RequiredError}
25134
27723
  */
25135
- adminStoresXStoreIDDocumentsDocumentIDPut: (xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27724
+ adminStoresXStoreIDDocumentsDocumentIDPut: (xStoreID: string, documentID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25136
27725
  /**
25137
27726
  * Retrieves documents from a store with pagination and optional filtering
25138
27727
  * @summary Get documents from store
@@ -25150,11 +27739,11 @@ export declare const StoreDocumentsApiAxiosParamCreator: (configuration?: Config
25150
27739
  * Inserts a new document into a store. If ID is provided, it will be used; otherwise, a hash-based ID will be generated. If a document with the same hash already exists, it will be updated.
25151
27740
  * @summary Insert document
25152
27741
  * @param {string} xStoreID X-Store ID
25153
- * @param {object} body Document data
27742
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25154
27743
  * @param {*} [options] Override http request option.
25155
27744
  * @throws {RequiredError}
25156
27745
  */
25157
- adminStoresXStoreIDDocumentsPost: (xStoreID: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27746
+ adminStoresXStoreIDDocumentsPost: (xStoreID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25158
27747
  };
25159
27748
  /**
25160
27749
  * StoreDocumentsApi - functional programming interface
@@ -25193,11 +27782,11 @@ export declare const StoreDocumentsApiFp: (configuration?: Configuration) => {
25193
27782
  * @summary Update document
25194
27783
  * @param {string} xStoreID X-Store ID
25195
27784
  * @param {string} documentID Document ID
25196
- * @param {object} body Document data
27785
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25197
27786
  * @param {*} [options] Override http request option.
25198
27787
  * @throws {RequiredError}
25199
27788
  */
25200
- adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesDocumentResponseWrapper>>;
27789
+ adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesDocumentResponseWrapper>>;
25201
27790
  /**
25202
27791
  * Retrieves documents from a store with pagination and optional filtering
25203
27792
  * @summary Get documents from store
@@ -25215,11 +27804,11 @@ export declare const StoreDocumentsApiFp: (configuration?: Configuration) => {
25215
27804
  * Inserts a new document into a store. If ID is provided, it will be used; otherwise, a hash-based ID will be generated. If a document with the same hash already exists, it will be updated.
25216
27805
  * @summary Insert document
25217
27806
  * @param {string} xStoreID X-Store ID
25218
- * @param {object} body Document data
27807
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25219
27808
  * @param {*} [options] Override http request option.
25220
27809
  * @throws {RequiredError}
25221
27810
  */
25222
- adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesDocumentResponseWrapper>>;
27811
+ adminStoresXStoreIDDocumentsPost(xStoreID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesDocumentResponseWrapper>>;
25223
27812
  };
25224
27813
  /**
25225
27814
  * StoreDocumentsApi - factory interface
@@ -25258,11 +27847,11 @@ export declare const StoreDocumentsApiFactory: (configuration?: Configuration, b
25258
27847
  * @summary Update document
25259
27848
  * @param {string} xStoreID X-Store ID
25260
27849
  * @param {string} documentID Document ID
25261
- * @param {object} body Document data
27850
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25262
27851
  * @param {*} [options] Override http request option.
25263
27852
  * @throws {RequiredError}
25264
27853
  */
25265
- adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesDocumentResponseWrapper>;
27854
+ adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesDocumentResponseWrapper>;
25266
27855
  /**
25267
27856
  * Retrieves documents from a store with pagination and optional filtering
25268
27857
  * @summary Get documents from store
@@ -25280,11 +27869,11 @@ export declare const StoreDocumentsApiFactory: (configuration?: Configuration, b
25280
27869
  * Inserts a new document into a store. If ID is provided, it will be used; otherwise, a hash-based ID will be generated. If a document with the same hash already exists, it will be updated.
25281
27870
  * @summary Insert document
25282
27871
  * @param {string} xStoreID X-Store ID
25283
- * @param {object} body Document data
27872
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25284
27873
  * @param {*} [options] Override http request option.
25285
27874
  * @throws {RequiredError}
25286
27875
  */
25287
- adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesDocumentResponseWrapper>;
27876
+ adminStoresXStoreIDDocumentsPost(xStoreID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesDocumentResponseWrapper>;
25288
27877
  };
25289
27878
  /**
25290
27879
  * StoreDocumentsApi - object-oriented interface
@@ -25328,12 +27917,12 @@ export declare class StoreDocumentsApi extends BaseAPI {
25328
27917
  * @summary Update document
25329
27918
  * @param {string} xStoreID X-Store ID
25330
27919
  * @param {string} documentID Document ID
25331
- * @param {object} body Document data
27920
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25332
27921
  * @param {*} [options] Override http request option.
25333
27922
  * @throws {RequiredError}
25334
27923
  * @memberof StoreDocumentsApi
25335
27924
  */
25336
- adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
27925
+ adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
25337
27926
  /**
25338
27927
  * Retrieves documents from a store with pagination and optional filtering
25339
27928
  * @summary Get documents from store
@@ -25352,12 +27941,12 @@ export declare class StoreDocumentsApi extends BaseAPI {
25352
27941
  * Inserts a new document into a store. If ID is provided, it will be used; otherwise, a hash-based ID will be generated. If a document with the same hash already exists, it will be updated.
25353
27942
  * @summary Insert document
25354
27943
  * @param {string} xStoreID X-Store ID
25355
- * @param {object} body Document data
27944
+ * @param {DataTypesDocumentRequest} dataTypesDocumentRequest Document data
25356
27945
  * @param {*} [options] Override http request option.
25357
27946
  * @throws {RequiredError}
25358
27947
  * @memberof StoreDocumentsApi
25359
27948
  */
25360
- adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
27949
+ adminStoresXStoreIDDocumentsPost(xStoreID: string, dataTypesDocumentRequest: DataTypesDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
25361
27950
  }
25362
27951
  /**
25363
27952
  * StoresApi - axios parameter creator