yellowgrid-api-ts 3.2.170-dev.0 → 3.2.171-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/.openapi-generator/FILES +25 -3
  2. package/README.md +54 -3
  3. package/api.ts +3303 -464
  4. package/dist/api.d.ts +1951 -213
  5. package/dist/api.js +2693 -273
  6. package/docs/AbstractItemDiscountModel.md +21 -0
  7. package/docs/AccountAddressesDTO.md +25 -0
  8. package/docs/AccountFinanceDTO.md +37 -0
  9. package/docs/AccountsApi.md +1427 -53
  10. package/docs/AddressDTO.md +31 -0
  11. package/docs/AdminUserModel.md +2 -0
  12. package/docs/CRMApi.md +120 -0
  13. package/docs/Class3CXApi.md +48 -0
  14. package/docs/Class3CXInstallationsApi.md +55 -0
  15. package/docs/CreateCrmNoteBody.md +20 -0
  16. package/docs/CreditAccountEntity.md +4 -0
  17. package/docs/CrmActivitiesResponseDTO.md +23 -0
  18. package/docs/CrmActivityDTO.md +33 -0
  19. package/docs/CrmDateActivitiesDTO.md +23 -0
  20. package/docs/CrmNoteEntity.md +39 -0
  21. package/docs/CrmNoteModel.md +39 -0
  22. package/docs/CustomerListAccountDTO.md +45 -0
  23. package/docs/NumberPortAdminNoteBody.md +20 -0
  24. package/docs/NumberPortingApi.md +5 -5
  25. package/docs/OAuth20Api.md +48 -0
  26. package/docs/PartnerDTO.md +39 -0
  27. package/docs/PatchUpdateAccountCnameRequest.md +20 -0
  28. package/docs/PatchUpdateAccountCompanyNumberRequest.md +20 -0
  29. package/docs/PatchUpdateAccountPhoneRequest.md +20 -0
  30. package/docs/PatchUpdateAccountVatNumberRequest.md +20 -0
  31. package/docs/PatchUpdateCreditLimitRequest.md +20 -0
  32. package/docs/PatchUpdatePriceListRequest.md +20 -0
  33. package/docs/PatchUpdateSipChannelCostRequest.md +20 -0
  34. package/docs/PatchUpdateTcxHostingPriceListRequest.md +20 -0
  35. package/docs/PatchUpdateTcxPartnerIdRequest.md +20 -0
  36. package/docs/PortalAccountModel.md +4 -2
  37. package/docs/PostSendWelcomeEmailRequest.md +20 -0
  38. package/docs/ProductSearchDTO.md +37 -0
  39. package/docs/ProductSummaryDTO.md +2 -0
  40. package/docs/ProductsApi.md +10 -10
  41. package/docs/ProspectDTO.md +2 -0
  42. package/docs/RecordingBackupAzureModel.md +2 -0
  43. package/docs/TableHistoryEntity.md +35 -0
  44. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -13,6 +13,19 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ /**
17
+ * Item Discount
18
+ * @export
19
+ * @interface AbstractItemDiscountModel
20
+ */
21
+ export interface AbstractItemDiscountModel {
22
+ /**
23
+ * Description
24
+ * @type {string}
25
+ * @memberof AbstractItemDiscountModel
26
+ */
27
+ 'description'?: string;
28
+ }
16
29
  /**
17
30
  * Order Request
18
31
  * @export
@@ -62,6 +75,31 @@ export interface AbstractOrderRequestDTO {
62
75
  */
63
76
  'quote'?: boolean;
64
77
  }
78
+ /**
79
+ * Account Addresses
80
+ * @export
81
+ * @interface AccountAddressesDTO
82
+ */
83
+ export interface AccountAddressesDTO {
84
+ /**
85
+ *
86
+ * @type {AddressDTO}
87
+ * @memberof AccountAddressesDTO
88
+ */
89
+ 'billingAddress'?: AddressDTO;
90
+ /**
91
+ *
92
+ * @type {AddressDTO}
93
+ * @memberof AccountAddressesDTO
94
+ */
95
+ 'shippingAddress'?: AddressDTO;
96
+ /**
97
+ * Addresses
98
+ * @type {Array<AddressDTO>}
99
+ * @memberof AccountAddressesDTO
100
+ */
101
+ 'previousShippingAddreses'?: Array<AddressDTO>;
102
+ }
65
103
  /**
66
104
  * AccountContactsEntity
67
105
  * @export
@@ -360,6 +398,67 @@ export interface AccountDetailedSummaryDTO {
360
398
  */
361
399
  'balance'?: number | null;
362
400
  }
401
+ /**
402
+ * Account Finance DTO
403
+ * @export
404
+ * @interface AccountFinanceDTO
405
+ */
406
+ export interface AccountFinanceDTO {
407
+ /**
408
+ * Account ID
409
+ * @type {number}
410
+ * @memberof AccountFinanceDTO
411
+ */
412
+ 'id'?: number;
413
+ /**
414
+ * Account Xero ID
415
+ * @type {string}
416
+ * @memberof AccountFinanceDTO
417
+ */
418
+ 'xeroId'?: string;
419
+ /**
420
+ * Account Number
421
+ * @type {string}
422
+ * @memberof AccountFinanceDTO
423
+ */
424
+ 'accountNumber'?: string;
425
+ /**
426
+ * Credit Limit
427
+ * @type {number}
428
+ * @memberof AccountFinanceDTO
429
+ */
430
+ 'creditLimit'?: number;
431
+ /**
432
+ * Balance Used
433
+ * @type {number}
434
+ * @memberof AccountFinanceDTO
435
+ */
436
+ 'balance'?: number;
437
+ /**
438
+ * Overdue Amount
439
+ * @type {number}
440
+ * @memberof AccountFinanceDTO
441
+ */
442
+ 'overdue'?: number;
443
+ /**
444
+ *
445
+ * @type {CustomerPriceListEnum}
446
+ * @memberof AccountFinanceDTO
447
+ */
448
+ 'priceList'?: CustomerPriceListEnum;
449
+ /**
450
+ * SIP Trunk Channel Cost
451
+ * @type {number}
452
+ * @memberof AccountFinanceDTO
453
+ */
454
+ 'sipChannelCost'?: number;
455
+ /**
456
+ * Xero Contact URL
457
+ * @type {string}
458
+ * @memberof AccountFinanceDTO
459
+ */
460
+ 'xeroUrl'?: string;
461
+ }
363
462
  /**
364
463
  * New Account Request
365
464
  * @export
@@ -525,6 +624,49 @@ export interface AccountsResponseModel {
525
624
  */
526
625
  'totalResults'?: number;
527
626
  }
627
+ /**
628
+ * Address
629
+ * @export
630
+ * @interface AddressDTO
631
+ */
632
+ export interface AddressDTO {
633
+ /**
634
+ * Address Line 1
635
+ * @type {string}
636
+ * @memberof AddressDTO
637
+ */
638
+ 'addressLine1'?: string;
639
+ /**
640
+ * Address Line 2
641
+ * @type {string}
642
+ * @memberof AddressDTO
643
+ */
644
+ 'addressLine2'?: string;
645
+ /**
646
+ * City
647
+ * @type {string}
648
+ * @memberof AddressDTO
649
+ */
650
+ 'city'?: string;
651
+ /**
652
+ * Region
653
+ * @type {string}
654
+ * @memberof AddressDTO
655
+ */
656
+ 'region'?: string;
657
+ /**
658
+ * Postal Code
659
+ * @type {string}
660
+ * @memberof AddressDTO
661
+ */
662
+ 'postalCode'?: string;
663
+ /**
664
+ * Country
665
+ * @type {string}
666
+ * @memberof AddressDTO
667
+ */
668
+ 'iso'?: string;
669
+ }
528
670
  /**
529
671
  * Order Address
530
672
  * @export
@@ -888,6 +1030,12 @@ export type AdminOrderRequestDTOPaymentMethodEnum = typeof AdminOrderRequestDTOP
888
1030
  * @interface AdminUserModel
889
1031
  */
890
1032
  export interface AdminUserModel {
1033
+ /**
1034
+ * ID
1035
+ * @type {number}
1036
+ * @memberof AdminUserModel
1037
+ */
1038
+ 'id'?: number;
891
1039
  /**
892
1040
  * First Name
893
1041
  * @type {string}
@@ -957,6 +1105,7 @@ export declare const AdminUserModelPermissionsEnum: {
957
1105
  readonly Technical: "Technical";
958
1106
  readonly Privileged: "Privileged";
959
1107
  readonly Development: "Development";
1108
+ readonly Finance: "Finance";
960
1109
  };
961
1110
  export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
962
1111
  /**
@@ -1238,6 +1387,7 @@ export declare const AuditLogEntityTypeEnum: {
1238
1387
  readonly ApiLog: "api_log";
1239
1388
  readonly PopsBatches: "pops_batches";
1240
1389
  readonly PopsCourierPrices: "pops_courier_prices";
1390
+ readonly PopsCrmNotes: "pops_crm_notes";
1241
1391
  readonly PopsCreditAccounts: "pops_credit_accounts";
1242
1392
  readonly PopsCreditNotes: "pops_credit_notes";
1243
1393
  readonly PopsCreditNotesItems: "pops_credit_notes_items";
@@ -1290,6 +1440,7 @@ export declare const AuditLogEntityTypeEnum: {
1290
1440
  readonly PopsStockTransactions: "pops_stock_transactions";
1291
1441
  readonly PopsSuppliers: "pops_suppliers";
1292
1442
  readonly PopsSupplierItems: "pops_supplier_items";
1443
+ readonly PopsTableAttribs: "pops_table_attribs";
1293
1444
  readonly Pops3cxBackup: "pops_3cx_backup";
1294
1445
  readonly Pops3cxBilling: "pops_3cx_billing";
1295
1446
  readonly PopsDeadLicences: "pops_dead_licences";
@@ -1923,6 +2074,19 @@ export interface CourierPriceEntity {
1923
2074
  */
1924
2075
  'maxKg'?: number;
1925
2076
  }
2077
+ /**
2078
+ *
2079
+ * @export
2080
+ * @interface CreateCrmNoteBody
2081
+ */
2082
+ export interface CreateCrmNoteBody {
2083
+ /**
2084
+ * Note
2085
+ * @type {string}
2086
+ * @memberof CreateCrmNoteBody
2087
+ */
2088
+ 'note'?: string;
2089
+ }
1926
2090
  /**
1927
2091
  * Credit Account
1928
2092
  * @export
@@ -2055,6 +2219,18 @@ export interface CreditAccountEntity {
2055
2219
  * @memberof CreditAccountEntity
2056
2220
  */
2057
2221
  'prizePromo'?: boolean;
2222
+ /**
2223
+ * Portal Access
2224
+ * @type {boolean}
2225
+ * @memberof CreditAccountEntity
2226
+ */
2227
+ 'portalAccess'?: boolean;
2228
+ /**
2229
+ * CNAME
2230
+ * @type {string}
2231
+ * @memberof CreditAccountEntity
2232
+ */
2233
+ 'cname'?: string;
2058
2234
  }
2059
2235
  /**
2060
2236
  * Credit Note
@@ -2248,6 +2424,74 @@ export interface CreditNoteModel {
2248
2424
  */
2249
2425
  'items'?: Array<CreditNoteItemModel>;
2250
2426
  }
2427
+ /**
2428
+ * CRM Activities Response
2429
+ * @export
2430
+ * @interface CrmActivitiesResponseDTO
2431
+ */
2432
+ export interface CrmActivitiesResponseDTO {
2433
+ /**
2434
+ * Dates
2435
+ * @type {Array<CrmDateActivitiesDTO>}
2436
+ * @memberof CrmActivitiesResponseDTO
2437
+ */
2438
+ 'dates'?: Array<CrmDateActivitiesDTO>;
2439
+ /**
2440
+ * Agents
2441
+ * @type {Array<AdminUserModel>}
2442
+ * @memberof CrmActivitiesResponseDTO
2443
+ */
2444
+ 'agents'?: Array<AdminUserModel>;
2445
+ }
2446
+ /**
2447
+ * CRM Activity
2448
+ * @export
2449
+ * @interface CrmActivityDTO
2450
+ */
2451
+ export interface CrmActivityDTO {
2452
+ /**
2453
+ * Activity Type
2454
+ * @type {string}
2455
+ * @memberof CrmActivityDTO
2456
+ */
2457
+ 'type'?: string;
2458
+ /**
2459
+ * Date Time
2460
+ * @type {string}
2461
+ * @memberof CrmActivityDTO
2462
+ */
2463
+ 'timestamp'?: string;
2464
+ /**
2465
+ * Activity Title
2466
+ * @type {string}
2467
+ * @memberof CrmActivityDTO
2468
+ */
2469
+ 'title'?: string;
2470
+ /**
2471
+ * Activity Description
2472
+ * @type {string}
2473
+ * @memberof CrmActivityDTO
2474
+ */
2475
+ 'description'?: string;
2476
+ /**
2477
+ * Activity URL
2478
+ * @type {string}
2479
+ * @memberof CrmActivityDTO
2480
+ */
2481
+ 'url'?: string | null;
2482
+ /**
2483
+ * Activity User Name
2484
+ * @type {string}
2485
+ * @memberof CrmActivityDTO
2486
+ */
2487
+ 'user'?: string | null;
2488
+ /**
2489
+ * Activity Contact Name
2490
+ * @type {string}
2491
+ * @memberof CrmActivityDTO
2492
+ */
2493
+ 'contact'?: string | null;
2494
+ }
2251
2495
  /**
2252
2496
  * CRM Contact
2253
2497
  * @export
@@ -2298,110 +2542,263 @@ export interface CrmContactDTO {
2298
2542
  'url'?: string;
2299
2543
  }
2300
2544
  /**
2301
- * SIP Trunk Customer
2545
+ * CRM Date Activities
2302
2546
  * @export
2303
- * @interface CustomerInformationModel
2547
+ * @interface CrmDateActivitiesDTO
2304
2548
  */
2305
- export interface CustomerInformationModel {
2549
+ export interface CrmDateActivitiesDTO {
2306
2550
  /**
2307
- * End User Address Line 1
2551
+ * Date Time
2308
2552
  * @type {string}
2309
- * @memberof CustomerInformationModel
2553
+ * @memberof CrmDateActivitiesDTO
2310
2554
  */
2311
- 'addressLine1'?: string;
2555
+ 'date'?: string;
2312
2556
  /**
2313
- * End User Address Line 2
2557
+ * Activities
2558
+ * @type {Array<CrmActivityDTO>}
2559
+ * @memberof CrmDateActivitiesDTO
2560
+ */
2561
+ 'activities'?: Array<CrmActivityDTO>;
2562
+ }
2563
+ /**
2564
+ * CrmNotesEntity
2565
+ * @export
2566
+ * @interface CrmNoteEntity
2567
+ */
2568
+ export interface CrmNoteEntity {
2569
+ /**
2570
+ * id
2571
+ * @type {number}
2572
+ * @memberof CrmNoteEntity
2573
+ */
2574
+ 'id'?: number;
2575
+ /**
2576
+ * customerId
2314
2577
  * @type {string}
2315
- * @memberof CustomerInformationModel
2578
+ * @memberof CrmNoteEntity
2316
2579
  */
2317
- 'addressLine2'?: string;
2580
+ 'customerId'?: string;
2318
2581
  /**
2319
- * End User Town/City
2582
+ * userId
2583
+ * @type {number}
2584
+ * @memberof CrmNoteEntity
2585
+ */
2586
+ 'userId'?: number;
2587
+ /**
2588
+ * type
2320
2589
  * @type {string}
2321
- * @memberof CustomerInformationModel
2590
+ * @memberof CrmNoteEntity
2322
2591
  */
2323
- 'addressCity'?: string;
2592
+ 'type'?: string;
2324
2593
  /**
2325
- * End User Postal Code
2594
+ * note
2326
2595
  * @type {string}
2327
- * @memberof CustomerInformationModel
2596
+ * @memberof CrmNoteEntity
2328
2597
  */
2329
- 'addressPostcode'?: string;
2598
+ 'note'?: string;
2330
2599
  /**
2331
- * End User Company Name
2600
+ * timestamp
2332
2601
  * @type {string}
2333
- * @memberof CustomerInformationModel
2602
+ * @memberof CrmNoteEntity
2334
2603
  */
2335
- 'companyName'?: string;
2604
+ 'timestamp'?: string;
2336
2605
  /**
2337
- * End User Contact First Name
2606
+ * journalTime
2338
2607
  * @type {string}
2339
- * @memberof CustomerInformationModel
2608
+ * @memberof CrmNoteEntity
2340
2609
  */
2341
- 'contactFirstName'?: string;
2610
+ 'journalTime'?: string;
2342
2611
  /**
2343
- * End User Contact Surname
2612
+ * duration
2344
2613
  * @type {string}
2345
- * @memberof CustomerInformationModel
2614
+ * @memberof CrmNoteEntity
2346
2615
  */
2347
- 'contactLastName'?: string;
2348
- }
2349
- /**
2350
- * Order Item Request
2351
- * @export
2352
- * @interface CustomerItemRequestDTO
2353
- */
2354
- export interface CustomerItemRequestDTO {
2616
+ 'duration'?: string;
2355
2617
  /**
2356
- * SKU
2618
+ * callType
2357
2619
  * @type {string}
2358
- * @memberof CustomerItemRequestDTO
2620
+ * @memberof CrmNoteEntity
2359
2621
  */
2360
- 'sku'?: string;
2622
+ 'callType'?: string;
2361
2623
  /**
2362
- * Quantity
2624
+ * callId
2363
2625
  * @type {number}
2364
- * @memberof CustomerItemRequestDTO
2626
+ * @memberof CrmNoteEntity
2365
2627
  */
2366
- 'quantity'?: number;
2628
+ 'callId'?: number;
2629
+ }
2630
+ /**
2631
+ * CrmNotesEntity
2632
+ * @export
2633
+ * @interface CrmNoteModel
2634
+ */
2635
+ export interface CrmNoteModel {
2367
2636
  /**
2368
- * ID
2637
+ * id
2369
2638
  * @type {number}
2370
- * @memberof CustomerItemRequestDTO
2639
+ * @memberof CrmNoteModel
2371
2640
  */
2372
- 'id'?: number | null;
2641
+ 'id'?: number;
2373
2642
  /**
2374
- * 3CX Licence Key
2643
+ * customerId
2375
2644
  * @type {string}
2376
- * @memberof CustomerItemRequestDTO
2377
- */
2378
- 'licenceKey'?: string | null;
2379
- /**
2380
- * 3CX Hosting
2381
- * @type {boolean}
2382
- * @memberof CustomerItemRequestDTO
2645
+ * @memberof CrmNoteModel
2383
2646
  */
2384
- 'hosting'?: boolean | null;
2647
+ 'customerId'?: string;
2385
2648
  /**
2386
- * 3CX Renewal Years (Upgrade only)
2649
+ * userId
2387
2650
  * @type {number}
2388
- * @memberof CustomerItemRequestDTO
2651
+ * @memberof CrmNoteModel
2389
2652
  */
2390
- 'renewalYears'?: number | null;
2653
+ 'userId'?: number;
2391
2654
  /**
2392
- * Date Time
2655
+ * type
2393
2656
  * @type {string}
2394
- * @memberof CustomerItemRequestDTO
2657
+ * @memberof CrmNoteModel
2395
2658
  */
2396
- 'processDate'?: string;
2659
+ 'type'?: string;
2397
2660
  /**
2398
- * 3CX Sales Code
2661
+ * note
2399
2662
  * @type {string}
2400
- * @memberof CustomerItemRequestDTO
2663
+ * @memberof CrmNoteModel
2401
2664
  */
2402
- 'tcxSalesCode'?: string | null;
2665
+ 'note'?: string;
2403
2666
  /**
2404
- * SBCS
2667
+ * timestamp
2668
+ * @type {string}
2669
+ * @memberof CrmNoteModel
2670
+ */
2671
+ 'timestamp'?: string;
2672
+ /**
2673
+ * journalTime
2674
+ * @type {string}
2675
+ * @memberof CrmNoteModel
2676
+ */
2677
+ 'journalTime'?: string;
2678
+ /**
2679
+ * duration
2680
+ * @type {string}
2681
+ * @memberof CrmNoteModel
2682
+ */
2683
+ 'duration'?: string;
2684
+ /**
2685
+ * callType
2686
+ * @type {string}
2687
+ * @memberof CrmNoteModel
2688
+ */
2689
+ 'callType'?: string;
2690
+ /**
2691
+ * callId
2692
+ * @type {number}
2693
+ * @memberof CrmNoteModel
2694
+ */
2695
+ 'callId'?: number;
2696
+ }
2697
+ /**
2698
+ * SIP Trunk Customer
2699
+ * @export
2700
+ * @interface CustomerInformationModel
2701
+ */
2702
+ export interface CustomerInformationModel {
2703
+ /**
2704
+ * End User Address Line 1
2705
+ * @type {string}
2706
+ * @memberof CustomerInformationModel
2707
+ */
2708
+ 'addressLine1'?: string;
2709
+ /**
2710
+ * End User Address Line 2
2711
+ * @type {string}
2712
+ * @memberof CustomerInformationModel
2713
+ */
2714
+ 'addressLine2'?: string;
2715
+ /**
2716
+ * End User Town/City
2717
+ * @type {string}
2718
+ * @memberof CustomerInformationModel
2719
+ */
2720
+ 'addressCity'?: string;
2721
+ /**
2722
+ * End User Postal Code
2723
+ * @type {string}
2724
+ * @memberof CustomerInformationModel
2725
+ */
2726
+ 'addressPostcode'?: string;
2727
+ /**
2728
+ * End User Company Name
2729
+ * @type {string}
2730
+ * @memberof CustomerInformationModel
2731
+ */
2732
+ 'companyName'?: string;
2733
+ /**
2734
+ * End User Contact First Name
2735
+ * @type {string}
2736
+ * @memberof CustomerInformationModel
2737
+ */
2738
+ 'contactFirstName'?: string;
2739
+ /**
2740
+ * End User Contact Surname
2741
+ * @type {string}
2742
+ * @memberof CustomerInformationModel
2743
+ */
2744
+ 'contactLastName'?: string;
2745
+ }
2746
+ /**
2747
+ * Order Item Request
2748
+ * @export
2749
+ * @interface CustomerItemRequestDTO
2750
+ */
2751
+ export interface CustomerItemRequestDTO {
2752
+ /**
2753
+ * SKU
2754
+ * @type {string}
2755
+ * @memberof CustomerItemRequestDTO
2756
+ */
2757
+ 'sku'?: string;
2758
+ /**
2759
+ * Quantity
2760
+ * @type {number}
2761
+ * @memberof CustomerItemRequestDTO
2762
+ */
2763
+ 'quantity'?: number;
2764
+ /**
2765
+ * ID
2766
+ * @type {number}
2767
+ * @memberof CustomerItemRequestDTO
2768
+ */
2769
+ 'id'?: number | null;
2770
+ /**
2771
+ * 3CX Licence Key
2772
+ * @type {string}
2773
+ * @memberof CustomerItemRequestDTO
2774
+ */
2775
+ 'licenceKey'?: string | null;
2776
+ /**
2777
+ * 3CX Hosting
2778
+ * @type {boolean}
2779
+ * @memberof CustomerItemRequestDTO
2780
+ */
2781
+ 'hosting'?: boolean | null;
2782
+ /**
2783
+ * 3CX Renewal Years (Upgrade only)
2784
+ * @type {number}
2785
+ * @memberof CustomerItemRequestDTO
2786
+ */
2787
+ 'renewalYears'?: number | null;
2788
+ /**
2789
+ * Date Time
2790
+ * @type {string}
2791
+ * @memberof CustomerItemRequestDTO
2792
+ */
2793
+ 'processDate'?: string;
2794
+ /**
2795
+ * 3CX Sales Code
2796
+ * @type {string}
2797
+ * @memberof CustomerItemRequestDTO
2798
+ */
2799
+ 'tcxSalesCode'?: string | null;
2800
+ /**
2801
+ * SBCS
2405
2802
  * @type {Array<TcxSbcDTO>}
2406
2803
  * @memberof CustomerItemRequestDTO
2407
2804
  */
@@ -2413,6 +2810,91 @@ export interface CustomerItemRequestDTO {
2413
2810
  */
2414
2811
  'readOnly'?: boolean;
2415
2812
  }
2813
+ /**
2814
+ * Customer List Account
2815
+ * @export
2816
+ * @interface CustomerListAccountDTO
2817
+ */
2818
+ export interface CustomerListAccountDTO {
2819
+ /**
2820
+ * ID
2821
+ * @type {number}
2822
+ * @memberof CustomerListAccountDTO
2823
+ */
2824
+ 'id'?: number;
2825
+ /**
2826
+ * Xero ID
2827
+ * @type {string}
2828
+ * @memberof CustomerListAccountDTO
2829
+ */
2830
+ 'xeroId'?: string;
2831
+ /**
2832
+ * Account Number
2833
+ * @type {string}
2834
+ * @memberof CustomerListAccountDTO
2835
+ */
2836
+ 'accountNumber'?: string;
2837
+ /**
2838
+ * Company Name
2839
+ * @type {string}
2840
+ * @memberof CustomerListAccountDTO
2841
+ */
2842
+ 'company'?: string;
2843
+ /**
2844
+ * Associated Email Domains
2845
+ * @type {Array<string>}
2846
+ * @memberof CustomerListAccountDTO
2847
+ */
2848
+ 'domains'?: Array<string>;
2849
+ /**
2850
+ * Telephone
2851
+ * @type {string}
2852
+ * @memberof CustomerListAccountDTO
2853
+ */
2854
+ 'telephone'?: string;
2855
+ /**
2856
+ * VAT Number
2857
+ * @type {string}
2858
+ * @memberof CustomerListAccountDTO
2859
+ */
2860
+ 'vatNumber'?: string;
2861
+ /**
2862
+ * Company Number
2863
+ * @type {string}
2864
+ * @memberof CustomerListAccountDTO
2865
+ */
2866
+ 'companyNumber'?: string;
2867
+ /**
2868
+ * Wizard CNAME
2869
+ * @type {string}
2870
+ * @memberof CustomerListAccountDTO
2871
+ */
2872
+ 'cname'?: string;
2873
+ /**
2874
+ * 3CX Reseller ID
2875
+ * @type {string}
2876
+ * @memberof CustomerListAccountDTO
2877
+ */
2878
+ 'partnerId'?: string;
2879
+ /**
2880
+ * Account Status
2881
+ * @type {boolean}
2882
+ * @memberof CustomerListAccountDTO
2883
+ */
2884
+ 'status'?: boolean;
2885
+ /**
2886
+ * Portal Access
2887
+ * @type {boolean}
2888
+ * @memberof CustomerListAccountDTO
2889
+ */
2890
+ 'portalAccess'?: boolean;
2891
+ /**
2892
+ * Prize Promo
2893
+ * @type {boolean}
2894
+ * @memberof CustomerListAccountDTO
2895
+ */
2896
+ 'prizePromo'?: boolean;
2897
+ }
2416
2898
  /**
2417
2899
  * Order Request
2418
2900
  * @export
@@ -4388,6 +4870,19 @@ export interface NavigationModel {
4388
4870
  */
4389
4871
  'openNewPage'?: boolean;
4390
4872
  }
4873
+ /**
4874
+ *
4875
+ * @export
4876
+ * @interface NumberPortAdminNoteBody
4877
+ */
4878
+ export interface NumberPortAdminNoteBody {
4879
+ /**
4880
+ * Note
4881
+ * @type {string}
4882
+ * @memberof NumberPortAdminNoteBody
4883
+ */
4884
+ 'note'?: string;
4885
+ }
4391
4886
  /**
4392
4887
  * Number Port Response
4393
4888
  * @export
@@ -5860,92 +6355,281 @@ export interface OrderedItemModel {
5860
6355
  'returnedStock'?: number;
5861
6356
  }
5862
6357
  /**
5863
- *
6358
+ * 3CX Partner Details
5864
6359
  * @export
5865
- * @interface PatchSetTcxWizardCnameRequest
6360
+ * @interface PartnerDTO
5866
6361
  */
5867
- export interface PatchSetTcxWizardCnameRequest {
6362
+ export interface PartnerDTO {
5868
6363
  /**
5869
- * CNAME
6364
+ * 3CX Partner ID
5870
6365
  * @type {string}
5871
- * @memberof PatchSetTcxWizardCnameRequest
6366
+ * @memberof PartnerDTO
5872
6367
  */
5873
- 'cname'?: string;
5874
- }
5875
- /**
5876
- *
5877
- * @export
5878
- * @interface PatchUpdateAccountContactPasswordRequest
5879
- */
5880
- export interface PatchUpdateAccountContactPasswordRequest {
6368
+ 'partnerId'?: string | null;
5881
6369
  /**
5882
- * Password
6370
+ * 3CX Partner Company Name
5883
6371
  * @type {string}
5884
- * @memberof PatchUpdateAccountContactPasswordRequest
6372
+ * @memberof PartnerDTO
5885
6373
  */
5886
- 'password'?: string;
5887
- }
5888
- /**
5889
- * Customer Account
5890
- * @export
5891
- * @interface PortalAccountModel
5892
- */
5893
- export interface PortalAccountModel {
6374
+ 'companyName'?: string;
5894
6375
  /**
5895
- * ID
5896
- * @type {number}
5897
- * @memberof PortalAccountModel
6376
+ * 3CX Partner Contact Name
6377
+ * @type {string}
6378
+ * @memberof PartnerDTO
5898
6379
  */
5899
- 'id'?: number;
6380
+ 'contactName'?: string;
5900
6381
  /**
5901
- * Contact Name
6382
+ * 3CX Partner Contact Phone
5902
6383
  * @type {string}
5903
- * @memberof PortalAccountModel
6384
+ * @memberof PartnerDTO
5904
6385
  */
5905
- 'name'?: string;
6386
+ 'contactPhone'?: string;
5906
6387
  /**
5907
- * Email
6388
+ * 3CX Partner Contact Email
5908
6389
  * @type {string}
5909
- * @memberof PortalAccountModel
6390
+ * @memberof PartnerDTO
5910
6391
  */
5911
- 'email'?: string;
6392
+ 'contactEmail'?: string;
5912
6393
  /**
5913
- * Phone Number
6394
+ * 3CX Partner Level
5914
6395
  * @type {string}
5915
- * @memberof PortalAccountModel
6396
+ * @memberof PartnerDTO
5916
6397
  */
5917
- 'phone'?: string;
6398
+ 'partnerLevel'?: string;
5918
6399
  /**
5919
- * Company Name
5920
- * @type {string}
5921
- * @memberof PortalAccountModel
6400
+ * 3CX Partner Licence Discount Percent
6401
+ * @type {number}
6402
+ * @memberof PartnerDTO
5922
6403
  */
5923
- 'company'?: string;
6404
+ 'licenceDiscountPercent'?: number;
5924
6405
  /**
5925
- * Company Registration Number
5926
- * @type {string}
5927
- * @memberof PortalAccountModel
6406
+ * 3CX Partner Hosting Discount Percent
6407
+ * @type {number}
6408
+ * @memberof PartnerDTO
5928
6409
  */
5929
- 'companyNumber'?: string;
6410
+ 'hostingDisountPercent'?: number;
5930
6411
  /**
5931
- * VAT Number
5932
- * @type {string}
5933
- * @memberof PortalAccountModel
6412
+ * 3CX Hosting Price List ID
6413
+ * @type {number}
6414
+ * @memberof PartnerDTO
5934
6415
  */
5935
- 'vatNumber'?: string;
6416
+ 'hostingPriceListId'?: number;
5936
6417
  /**
5937
- * Address Line 1
6418
+ * 3CX Installation URL
5938
6419
  * @type {string}
5939
- * @memberof PortalAccountModel
6420
+ * @memberof PartnerDTO
5940
6421
  */
5941
- 'addressLine1'?: string;
6422
+ 'installationUrl'?: string;
6423
+ }
6424
+ /**
6425
+ *
6426
+ * @export
6427
+ * @interface PatchUpdateAccountCnameRequest
6428
+ */
6429
+ export interface PatchUpdateAccountCnameRequest {
5942
6430
  /**
5943
- * Address Line 2
6431
+ * CNAME
5944
6432
  * @type {string}
5945
- * @memberof PortalAccountModel
6433
+ * @memberof PatchUpdateAccountCnameRequest
5946
6434
  */
5947
- 'addressLine2'?: string;
5948
- /**
6435
+ 'cname'?: string;
6436
+ }
6437
+ /**
6438
+ *
6439
+ * @export
6440
+ * @interface PatchUpdateAccountCompanyNumberRequest
6441
+ */
6442
+ export interface PatchUpdateAccountCompanyNumberRequest {
6443
+ /**
6444
+ * Company Number
6445
+ * @type {string}
6446
+ * @memberof PatchUpdateAccountCompanyNumberRequest
6447
+ */
6448
+ 'companyNumber'?: string;
6449
+ }
6450
+ /**
6451
+ *
6452
+ * @export
6453
+ * @interface PatchUpdateAccountContactPasswordRequest
6454
+ */
6455
+ export interface PatchUpdateAccountContactPasswordRequest {
6456
+ /**
6457
+ * Password
6458
+ * @type {string}
6459
+ * @memberof PatchUpdateAccountContactPasswordRequest
6460
+ */
6461
+ 'password'?: string;
6462
+ }
6463
+ /**
6464
+ *
6465
+ * @export
6466
+ * @interface PatchUpdateAccountPhoneRequest
6467
+ */
6468
+ export interface PatchUpdateAccountPhoneRequest {
6469
+ /**
6470
+ * Phone
6471
+ * @type {string}
6472
+ * @memberof PatchUpdateAccountPhoneRequest
6473
+ */
6474
+ 'phone'?: string;
6475
+ }
6476
+ /**
6477
+ *
6478
+ * @export
6479
+ * @interface PatchUpdateAccountVatNumberRequest
6480
+ */
6481
+ export interface PatchUpdateAccountVatNumberRequest {
6482
+ /**
6483
+ * VAT Number
6484
+ * @type {string}
6485
+ * @memberof PatchUpdateAccountVatNumberRequest
6486
+ */
6487
+ 'vatNumber'?: string;
6488
+ }
6489
+ /**
6490
+ *
6491
+ * @export
6492
+ * @interface PatchUpdateCreditLimitRequest
6493
+ */
6494
+ export interface PatchUpdateCreditLimitRequest {
6495
+ /**
6496
+ * Credit Limit
6497
+ * @type {number}
6498
+ * @memberof PatchUpdateCreditLimitRequest
6499
+ */
6500
+ 'creditLimit'?: number;
6501
+ }
6502
+ /**
6503
+ *
6504
+ * @export
6505
+ * @interface PatchUpdatePriceListRequest
6506
+ */
6507
+ export interface PatchUpdatePriceListRequest {
6508
+ /**
6509
+ * Price List
6510
+ * @type {string}
6511
+ * @memberof PatchUpdatePriceListRequest
6512
+ */
6513
+ 'priceList'?: PatchUpdatePriceListRequestPriceListEnum;
6514
+ }
6515
+ export declare const PatchUpdatePriceListRequestPriceListEnum: {
6516
+ readonly Rrp: "RRP";
6517
+ readonly Trade: "Trade";
6518
+ readonly Wholesale: "Wholesale";
6519
+ readonly Itsp: "ITSP";
6520
+ readonly SubDisti: "Sub Disti";
6521
+ readonly Distributor: "Distributor";
6522
+ readonly HotelDisti: "Hotel Disti";
6523
+ };
6524
+ export type PatchUpdatePriceListRequestPriceListEnum = typeof PatchUpdatePriceListRequestPriceListEnum[keyof typeof PatchUpdatePriceListRequestPriceListEnum];
6525
+ /**
6526
+ *
6527
+ * @export
6528
+ * @interface PatchUpdateSipChannelCostRequest
6529
+ */
6530
+ export interface PatchUpdateSipChannelCostRequest {
6531
+ /**
6532
+ * SIP Channel Cost
6533
+ * @type {number}
6534
+ * @memberof PatchUpdateSipChannelCostRequest
6535
+ */
6536
+ 'channelCost'?: number;
6537
+ }
6538
+ /**
6539
+ *
6540
+ * @export
6541
+ * @interface PatchUpdateTcxHostingPriceListRequest
6542
+ */
6543
+ export interface PatchUpdateTcxHostingPriceListRequest {
6544
+ /**
6545
+ * Price List
6546
+ * @type {string}
6547
+ * @memberof PatchUpdateTcxHostingPriceListRequest
6548
+ */
6549
+ 'priceList'?: PatchUpdateTcxHostingPriceListRequestPriceListEnum;
6550
+ }
6551
+ export declare const PatchUpdateTcxHostingPriceListRequestPriceListEnum: {
6552
+ readonly _1: "1";
6553
+ readonly _2: "2";
6554
+ readonly _3: "3";
6555
+ readonly _4: "4";
6556
+ readonly _5: "5";
6557
+ };
6558
+ export type PatchUpdateTcxHostingPriceListRequestPriceListEnum = typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum[keyof typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum];
6559
+ /**
6560
+ *
6561
+ * @export
6562
+ * @interface PatchUpdateTcxPartnerIdRequest
6563
+ */
6564
+ export interface PatchUpdateTcxPartnerIdRequest {
6565
+ /**
6566
+ * Set Account 3CX Partner ID
6567
+ * @type {string}
6568
+ * @memberof PatchUpdateTcxPartnerIdRequest
6569
+ */
6570
+ 'partnerId'?: string | null;
6571
+ }
6572
+ /**
6573
+ * Customer Account
6574
+ * @export
6575
+ * @interface PortalAccountModel
6576
+ */
6577
+ export interface PortalAccountModel {
6578
+ /**
6579
+ * ID
6580
+ * @type {number}
6581
+ * @memberof PortalAccountModel
6582
+ */
6583
+ 'id'?: number;
6584
+ /**
6585
+ * Contact Name
6586
+ * @type {string}
6587
+ * @memberof PortalAccountModel
6588
+ */
6589
+ 'name'?: string;
6590
+ /**
6591
+ * Email
6592
+ * @type {string}
6593
+ * @memberof PortalAccountModel
6594
+ */
6595
+ 'email'?: string;
6596
+ /**
6597
+ * Phone Number
6598
+ * @type {string}
6599
+ * @memberof PortalAccountModel
6600
+ */
6601
+ 'phone'?: string;
6602
+ /**
6603
+ * Company Name
6604
+ * @type {string}
6605
+ * @memberof PortalAccountModel
6606
+ */
6607
+ 'company'?: string;
6608
+ /**
6609
+ * Company Registration Number
6610
+ * @type {string}
6611
+ * @memberof PortalAccountModel
6612
+ */
6613
+ 'companyNumber'?: string;
6614
+ /**
6615
+ * VAT Number
6616
+ * @type {string}
6617
+ * @memberof PortalAccountModel
6618
+ */
6619
+ 'vatNumber'?: string;
6620
+ /**
6621
+ * Address Line 1
6622
+ * @type {string}
6623
+ * @memberof PortalAccountModel
6624
+ */
6625
+ 'addressLine1'?: string;
6626
+ /**
6627
+ * Address Line 2
6628
+ * @type {string}
6629
+ * @memberof PortalAccountModel
6630
+ */
6631
+ 'addressLine2'?: string;
6632
+ /**
5949
6633
  * City
5950
6634
  * @type {string}
5951
6635
  * @memberof PortalAccountModel
@@ -6017,6 +6701,18 @@ export interface PortalAccountModel {
6017
6701
  * @memberof PortalAccountModel
6018
6702
  */
6019
6703
  'prizePromo'?: boolean;
6704
+ /**
6705
+ * Portal Access
6706
+ * @type {boolean}
6707
+ * @memberof PortalAccountModel
6708
+ */
6709
+ 'portalAccess'?: boolean;
6710
+ /**
6711
+ * Wizard CNAME
6712
+ * @type {string}
6713
+ * @memberof PortalAccountModel
6714
+ */
6715
+ 'cname'?: string;
6020
6716
  /**
6021
6717
  * Active Direct Debit Mandate
6022
6718
  * @type {boolean}
@@ -6029,12 +6725,6 @@ export interface PortalAccountModel {
6029
6725
  * @memberof PortalAccountModel
6030
6726
  */
6031
6727
  'navigation'?: Array<NavigationModel>;
6032
- /**
6033
- * Wizard CNAME
6034
- * @type {string}
6035
- * @memberof PortalAccountModel
6036
- */
6037
- 'cname'?: string;
6038
6728
  }
6039
6729
  /**
6040
6730
  * Portal Login
@@ -6085,19 +6775,6 @@ export interface PortalLoginModel {
6085
6775
  */
6086
6776
  'redirect_uri'?: string;
6087
6777
  }
6088
- /**
6089
- *
6090
- * @export
6091
- * @interface PostAddAdminNoteRequest
6092
- */
6093
- export interface PostAddAdminNoteRequest {
6094
- /**
6095
- * Note
6096
- * @type {string}
6097
- * @memberof PostAddAdminNoteRequest
6098
- */
6099
- 'note'?: string;
6100
- }
6101
6778
  /**
6102
6779
  *
6103
6780
  * @export
@@ -6140,39 +6817,15 @@ export interface PostGetClientCredentialsRequest {
6140
6817
  /**
6141
6818
  *
6142
6819
  * @export
6143
- * @interface PostGetProductForCustomerRequest
6820
+ * @interface PostSendWelcomeEmailRequest
6144
6821
  */
6145
- export interface PostGetProductForCustomerRequest {
6822
+ export interface PostSendWelcomeEmailRequest {
6146
6823
  /**
6147
- * Quantity
6148
- * @type {number}
6149
- * @memberof PostGetProductForCustomerRequest
6150
- */
6151
- 'quantity'?: number | null;
6152
- /**
6153
- * 3CX Licence Key
6154
- * @type {string}
6155
- * @memberof PostGetProductForCustomerRequest
6156
- */
6157
- 'licenceKey'?: string | null;
6158
- /**
6159
- * 3CX Hosting
6160
- * @type {boolean}
6161
- * @memberof PostGetProductForCustomerRequest
6162
- */
6163
- 'hosting'?: boolean | null;
6164
- /**
6165
- * 3CX Sales Code
6824
+ * email
6166
6825
  * @type {string}
6167
- * @memberof PostGetProductForCustomerRequest
6168
- */
6169
- 'tcxSalesCode'?: string | null;
6170
- /**
6171
- * 3CX Renewal Years (Upgrade Only)
6172
- * @type {number}
6173
- * @memberof PostGetProductForCustomerRequest
6826
+ * @memberof PostSendWelcomeEmailRequest
6174
6827
  */
6175
- 'renewalYears'?: number | null;
6828
+ 'email'?: string;
6176
6829
  }
6177
6830
  /**
6178
6831
  *
@@ -6347,6 +7000,67 @@ export interface ProductPriceListItemModel {
6347
7000
  */
6348
7001
  'brand'?: string | null;
6349
7002
  }
7003
+ /**
7004
+ * Product Search
7005
+ * @export
7006
+ * @interface ProductSearchDTO
7007
+ */
7008
+ export interface ProductSearchDTO {
7009
+ /**
7010
+ * SKU
7011
+ * @type {string}
7012
+ * @memberof ProductSearchDTO
7013
+ */
7014
+ 'sku'?: string | null;
7015
+ /**
7016
+ * Quantity
7017
+ * @type {number}
7018
+ * @memberof ProductSearchDTO
7019
+ */
7020
+ 'quantity'?: number | null;
7021
+ /**
7022
+ * Licence Key
7023
+ * @type {string}
7024
+ * @memberof ProductSearchDTO
7025
+ */
7026
+ 'licenceKey'?: string | null;
7027
+ /**
7028
+ * Hosting
7029
+ * @type {boolean}
7030
+ * @memberof ProductSearchDTO
7031
+ */
7032
+ 'hosting'?: boolean | null;
7033
+ /**
7034
+ * 3CX Sales Code
7035
+ * @type {string}
7036
+ * @memberof ProductSearchDTO
7037
+ */
7038
+ 'tcxSalesCode'?: string | null;
7039
+ /**
7040
+ * 3CX Renewal Years
7041
+ * @type {number}
7042
+ * @memberof ProductSearchDTO
7043
+ */
7044
+ 'renewalYears'?: number | null;
7045
+ /**
7046
+ * Order ID
7047
+ * @type {number}
7048
+ * @memberof ProductSearchDTO
7049
+ */
7050
+ 'orderId'?: number | null;
7051
+ /**
7052
+ * Items
7053
+ * @type {Array<CustomerItemRequestDTO>}
7054
+ * @memberof ProductSearchDTO
7055
+ */
7056
+ 'items'?: Array<CustomerItemRequestDTO> | null;
7057
+ /**
7058
+ * Discount
7059
+ * @type {number}
7060
+ * @memberof ProductSearchDTO
7061
+ */
7062
+ 'discount'?: number | null;
7063
+ }
6350
7064
  /**
6351
7065
  * Product Search Results
6352
7066
  * @export
@@ -6457,6 +7171,12 @@ export interface ProductSummaryDTO {
6457
7171
  * @memberof ProductSummaryDTO
6458
7172
  */
6459
7173
  'hosting'?: boolean | null;
7174
+ /**
7175
+ * Applied Discounts
7176
+ * @type {Array<AbstractItemDiscountModel>}
7177
+ * @memberof ProductSummaryDTO
7178
+ */
7179
+ 'discounts'?: Array<AbstractItemDiscountModel>;
6460
7180
  }
6461
7181
  /**
6462
7182
  * PromoCodesEntity
@@ -6640,6 +7360,12 @@ export interface ProspectDTO {
6640
7360
  * @memberof ProspectDTO
6641
7361
  */
6642
7362
  'status'?: ProspectDTOStatusEnum;
7363
+ /**
7364
+ * Order Count
7365
+ * @type {number}
7366
+ * @memberof ProspectDTO
7367
+ */
7368
+ 'orderCount'?: number;
6643
7369
  }
6644
7370
  export declare const ProspectDTOStatusEnum: {
6645
7371
  readonly NoCallBackSet: "No Call Back Set";
@@ -6647,6 +7373,7 @@ export declare const ProspectDTOStatusEnum: {
6647
7373
  readonly NoOrdersPlaced: "No Orders Placed";
6648
7374
  readonly NoOrdersInTheLast4Months: "No Orders In The Last 4 Months";
6649
7375
  readonly NoActionRequired: "No Action Required";
7376
+ readonly DoNotCall: "Do Not Call";
6650
7377
  };
6651
7378
  export type ProspectDTOStatusEnum = typeof ProspectDTOStatusEnum[keyof typeof ProspectDTOStatusEnum];
6652
7379
  /**
@@ -6840,6 +7567,12 @@ export interface RecordingBackupAzureModel {
6840
7567
  * @memberof RecordingBackupAzureModel
6841
7568
  */
6842
7569
  'connection_string'?: string;
7570
+ /**
7571
+ * SAS Url
7572
+ * @type {string}
7573
+ * @memberof RecordingBackupAzureModel
7574
+ */
7575
+ 'sasUrl'?: string;
6843
7576
  /**
6844
7577
  * Recordings Path
6845
7578
  * @type {string}
@@ -9652,9 +10385,64 @@ export interface SupportTicketModel {
9652
10385
  'conversations'?: Array<ConversationModel>;
9653
10386
  }
9654
10387
  /**
9655
- * 3CX Wizard Restore From Backup
10388
+ * TableAttribsEntity
9656
10389
  * @export
9657
- * @interface TcxBackupEntity
10390
+ * @interface TableHistoryEntity
10391
+ */
10392
+ export interface TableHistoryEntity {
10393
+ /**
10394
+ * ownerId
10395
+ * @type {string}
10396
+ * @memberof TableHistoryEntity
10397
+ */
10398
+ 'ownerId'?: string;
10399
+ /**
10400
+ * table
10401
+ * @type {string}
10402
+ * @memberof TableHistoryEntity
10403
+ */
10404
+ 'dbTable'?: string;
10405
+ /**
10406
+ * orderingField
10407
+ * @type {string}
10408
+ * @memberof TableHistoryEntity
10409
+ */
10410
+ 'orderingField'?: string;
10411
+ /**
10412
+ * asc
10413
+ * @type {number}
10414
+ * @memberof TableHistoryEntity
10415
+ */
10416
+ 'asc'?: number;
10417
+ /**
10418
+ * perPage
10419
+ * @type {number}
10420
+ * @memberof TableHistoryEntity
10421
+ */
10422
+ 'perPage'?: number;
10423
+ /**
10424
+ * currPage
10425
+ * @type {number}
10426
+ * @memberof TableHistoryEntity
10427
+ */
10428
+ 'currPage'?: number;
10429
+ /**
10430
+ * filter
10431
+ * @type {string}
10432
+ * @memberof TableHistoryEntity
10433
+ */
10434
+ 'filter'?: string;
10435
+ /**
10436
+ * page
10437
+ * @type {number}
10438
+ * @memberof TableHistoryEntity
10439
+ */
10440
+ 'page'?: number;
10441
+ }
10442
+ /**
10443
+ * 3CX Wizard Restore From Backup
10444
+ * @export
10445
+ * @interface TcxBackupEntity
9658
10446
  */
9659
10447
  export interface TcxBackupEntity {
9660
10448
  /**
@@ -12035,6 +12823,21 @@ export interface XeroLogEntity {
12035
12823
  * @export
12036
12824
  */
12037
12825
  export declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
12826
+ /**
12827
+ * Delete Account Contact
12828
+ * @param {string} id Account Xero ID
12829
+ * @param {number} contactId Contact ID
12830
+ * @param {*} [options] Override http request option.
12831
+ * @throws {RequiredError}
12832
+ */
12833
+ deleteAdminUpdateAccountContact: (id: string, contactId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12834
+ /**
12835
+ * Delete Account
12836
+ * @param {string} id Account Xero ID
12837
+ * @param {*} [options] Override http request option.
12838
+ * @throws {RequiredError}
12839
+ */
12840
+ deleteArchiveAccount: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12038
12841
  /**
12039
12842
  * Delete client credentials
12040
12843
  * @summary Delete client credentials
@@ -12051,6 +12854,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12051
12854
  * @throws {RequiredError}
12052
12855
  */
12053
12856
  deleteUpdateAccountContact: (email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12857
+ /**
12858
+ * Get Account Contacts
12859
+ * @param {string} id Account Xero ID
12860
+ * @param {*} [options] Override http request option.
12861
+ * @throws {RequiredError}
12862
+ */
12863
+ getAdminCreateAccountContact: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12054
12864
  /**
12055
12865
  * Get Account
12056
12866
  * @summary Get Account
@@ -12058,6 +12868,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12058
12868
  * @throws {RequiredError}
12059
12869
  */
12060
12870
  getGetAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12871
+ /**
12872
+ * Get Account Addresses
12873
+ * @param {string} id Xero ID
12874
+ * @param {*} [options] Override http request option.
12875
+ * @throws {RequiredError}
12876
+ */
12877
+ getGetAccountAddresses: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12061
12878
  /**
12062
12879
  * Get Account Contacts
12063
12880
  * @summary Get Account Contacts
@@ -12092,6 +12909,12 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12092
12909
  * @throws {RequiredError}
12093
12910
  */
12094
12911
  getGetClientCredentials: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12912
+ /**
12913
+ * Get Customer Accounts List
12914
+ * @param {*} [options] Override http request option.
12915
+ * @throws {RequiredError}
12916
+ */
12917
+ getGetCustomerAccountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12095
12918
  /**
12096
12919
  * Get 3CX Keys
12097
12920
  * @summary Get 3CX Keys
@@ -12099,6 +12922,27 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12099
12922
  * @throws {RequiredError}
12100
12923
  */
12101
12924
  getGetCustomerKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12925
+ /**
12926
+ * Get Account Finance
12927
+ * @param {string} id Account Xero ID
12928
+ * @param {*} [options] Override http request option.
12929
+ * @throws {RequiredError}
12930
+ */
12931
+ getGetFinanceSettings: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12932
+ /**
12933
+ * Get Last Account
12934
+ * @summary Get Last Account
12935
+ * @param {*} [options] Override http request option.
12936
+ * @throws {RequiredError}
12937
+ */
12938
+ getGetLastAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12939
+ /**
12940
+ * Get Account 3CX Details
12941
+ * @param {string} id Xero ID
12942
+ * @param {*} [options] Override http request option.
12943
+ * @throws {RequiredError}
12944
+ */
12945
+ getGetTcxPartnerDetails: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12102
12946
  /**
12103
12947
  * Verify account email address
12104
12948
  * @summary Verify account email address
@@ -12107,13 +12951,45 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12107
12951
  * @throws {RequiredError}
12108
12952
  */
12109
12953
  getVerifyEmailAddress: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12954
+ /**
12955
+ * Set Account Portal Access
12956
+ * @param {string} id Xero ID
12957
+ * @param {PatchSetPortalAccessStateEnum} state Portal Access State
12958
+ * @param {*} [options] Override http request option.
12959
+ * @throws {RequiredError}
12960
+ */
12961
+ patchSetPortalAccess: (id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12962
+ /**
12963
+ * Set Account Prize Promo
12964
+ * @param {string} id Xero ID
12965
+ * @param {PatchSetPrizePromoStateEnum} state Prize Promo State
12966
+ * @param {*} [options] Override http request option.
12967
+ * @throws {RequiredError}
12968
+ */
12969
+ patchSetPrizePromo: (id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12110
12970
  /**
12111
12971
  * Set 3CX Wizard CNAME
12112
- * @param {PatchSetTcxWizardCnameRequest} [patchSetTcxWizardCnameRequest] CNAME Request
12972
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
12973
+ * @param {*} [options] Override http request option.
12974
+ * @throws {RequiredError}
12975
+ */
12976
+ patchSetTcxWizardCname: (patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12977
+ /**
12978
+ * Set Account CNAME
12979
+ * @param {string} id Xero ID
12980
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
12981
+ * @param {*} [options] Override http request option.
12982
+ * @throws {RequiredError}
12983
+ */
12984
+ patchUpdateAccountCname: (id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12985
+ /**
12986
+ * Set Account Company Number
12987
+ * @param {string} id Xero ID
12988
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
12113
12989
  * @param {*} [options] Override http request option.
12114
12990
  * @throws {RequiredError}
12115
12991
  */
12116
- patchSetTcxWizardCname: (patchSetTcxWizardCnameRequest?: PatchSetTcxWizardCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12992
+ patchUpdateAccountCompanyNumber: (id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12117
12993
  /**
12118
12994
  * Update Account Password
12119
12995
  * @summary Update Account Password
@@ -12123,6 +12999,70 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12123
12999
  * @throws {RequiredError}
12124
13000
  */
12125
13001
  patchUpdateAccountContactPassword: (token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13002
+ /**
13003
+ * Set Account Phone
13004
+ * @param {string} id Xero ID
13005
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
13006
+ * @param {*} [options] Override http request option.
13007
+ * @throws {RequiredError}
13008
+ */
13009
+ patchUpdateAccountPhone: (id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13010
+ /**
13011
+ * Set Account VAT Number
13012
+ * @param {string} id Xero ID
13013
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
13014
+ * @param {*} [options] Override http request option.
13015
+ * @throws {RequiredError}
13016
+ */
13017
+ patchUpdateAccountVatNumber: (id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13018
+ /**
13019
+ * Set Account Credit Limit
13020
+ * @param {string} id Xero ID
13021
+ * @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
13022
+ * @param {*} [options] Override http request option.
13023
+ * @throws {RequiredError}
13024
+ */
13025
+ patchUpdateCreditLimit: (id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13026
+ /**
13027
+ * Set Account Price List
13028
+ * @param {string} id Xero ID
13029
+ * @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
13030
+ * @param {*} [options] Override http request option.
13031
+ * @throws {RequiredError}
13032
+ */
13033
+ patchUpdatePriceList: (id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13034
+ /**
13035
+ * Set Account SIP Channel Cost
13036
+ * @param {string} id Xero ID
13037
+ * @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
13038
+ * @param {*} [options] Override http request option.
13039
+ * @throws {RequiredError}
13040
+ */
13041
+ patchUpdateSipChannelCost: (id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13042
+ /**
13043
+ * Set Account 3CX Hosting Price List
13044
+ * @param {string} id Xero ID
13045
+ * @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
13046
+ * @param {*} [options] Override http request option.
13047
+ * @throws {RequiredError}
13048
+ */
13049
+ patchUpdateTcxHostingPriceList: (id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13050
+ /**
13051
+ * Set Account 3CX Partner ID
13052
+ * @param {string} id Xero ID
13053
+ * @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
13054
+ * @param {*} [options] Override http request option.
13055
+ * @throws {RequiredError}
13056
+ */
13057
+ patchUpdateTcxPartnerId: (id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13058
+ /**
13059
+ * Create Account Contact
13060
+ * @param {string} id Account Xero ID
13061
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
13062
+ * @param {*} [options] Override http request option.
13063
+ * @throws {RequiredError}
13064
+ */
13065
+ postAdminCreateAccountContact: (id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12126
13066
  /**
12127
13067
  * Add Account Contacts
12128
13068
  * @summary Add Account Contact
@@ -12170,6 +13110,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12170
13110
  * @throws {RequiredError}
12171
13111
  */
12172
13112
  postSendPasswordReset: (email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13113
+ /**
13114
+ * Send Account Welcome Email
13115
+ * @param {string} id Xero ID
13116
+ * @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
13117
+ * @param {*} [options] Override http request option.
13118
+ * @throws {RequiredError}
13119
+ */
13120
+ postSendWelcomeEmail: (id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12173
13121
  /**
12174
13122
  * Submit reseller application
12175
13123
  * @summary Submit reseller application
@@ -12180,6 +13128,15 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12180
13128
  * @throws {RequiredError}
12181
13129
  */
12182
13130
  postSubmitResellerApplication: (creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13131
+ /**
13132
+ * Update Account Contact
13133
+ * @param {string} id Account Xero ID
13134
+ * @param {number} contactId Contact ID
13135
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
13136
+ * @param {*} [options] Override http request option.
13137
+ * @throws {RequiredError}
13138
+ */
13139
+ putAdminUpdateAccountContact: (id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12183
13140
  /**
12184
13141
  * Update Account Contacts
12185
13142
  * @summary Update Account Contact
@@ -12189,12 +13146,43 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12189
13146
  * @throws {RequiredError}
12190
13147
  */
12191
13148
  putUpdateAccountContact: (email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13149
+ /**
13150
+ * Update Account Billing Address
13151
+ * @param {string} id Xero ID
13152
+ * @param {AddressDTO} [addressDTO] Updated Billing Address
13153
+ * @param {*} [options] Override http request option.
13154
+ * @throws {RequiredError}
13155
+ */
13156
+ putUpdateBillingAddress: (id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13157
+ /**
13158
+ * Update Account Shipping Address
13159
+ * @param {string} id Xero ID
13160
+ * @param {AddressDTO} [addressDTO] Updated Shipping Address
13161
+ * @param {*} [options] Override http request option.
13162
+ * @throws {RequiredError}
13163
+ */
13164
+ putUpdateShippingAddress: (id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12192
13165
  };
12193
13166
  /**
12194
13167
  * AccountsApi - functional programming interface
12195
13168
  * @export
12196
13169
  */
12197
13170
  export declare const AccountsApiFp: (configuration?: Configuration) => {
13171
+ /**
13172
+ * Delete Account Contact
13173
+ * @param {string} id Account Xero ID
13174
+ * @param {number} contactId Contact ID
13175
+ * @param {*} [options] Override http request option.
13176
+ * @throws {RequiredError}
13177
+ */
13178
+ deleteAdminUpdateAccountContact(id: string, contactId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13179
+ /**
13180
+ * Delete Account
13181
+ * @param {string} id Account Xero ID
13182
+ * @param {*} [options] Override http request option.
13183
+ * @throws {RequiredError}
13184
+ */
13185
+ deleteArchiveAccount(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12198
13186
  /**
12199
13187
  * Delete client credentials
12200
13188
  * @summary Delete client credentials
@@ -12211,6 +13199,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12211
13199
  * @throws {RequiredError}
12212
13200
  */
12213
13201
  deleteUpdateAccountContact(email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13202
+ /**
13203
+ * Get Account Contacts
13204
+ * @param {string} id Account Xero ID
13205
+ * @param {*} [options] Override http request option.
13206
+ * @throws {RequiredError}
13207
+ */
13208
+ getAdminCreateAccountContact(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
12214
13209
  /**
12215
13210
  * Get Account
12216
13211
  * @summary Get Account
@@ -12218,6 +13213,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12218
13213
  * @throws {RequiredError}
12219
13214
  */
12220
13215
  getGetAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
13216
+ /**
13217
+ * Get Account Addresses
13218
+ * @param {string} id Xero ID
13219
+ * @param {*} [options] Override http request option.
13220
+ * @throws {RequiredError}
13221
+ */
13222
+ getGetAccountAddresses(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountAddressesDTO>>;
12221
13223
  /**
12222
13224
  * Get Account Contacts
12223
13225
  * @summary Get Account Contacts
@@ -12252,6 +13254,12 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12252
13254
  * @throws {RequiredError}
12253
13255
  */
12254
13256
  getGetClientCredentials(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ClientModel>>>;
13257
+ /**
13258
+ * Get Customer Accounts List
13259
+ * @param {*} [options] Override http request option.
13260
+ * @throws {RequiredError}
13261
+ */
13262
+ getGetCustomerAccountsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerListAccountDTO>>>;
12255
13263
  /**
12256
13264
  * Get 3CX Keys
12257
13265
  * @summary Get 3CX Keys
@@ -12259,6 +13267,27 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12259
13267
  * @throws {RequiredError}
12260
13268
  */
12261
13269
  getGetCustomerKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxKeySummaryDTO>>>;
13270
+ /**
13271
+ * Get Account Finance
13272
+ * @param {string} id Account Xero ID
13273
+ * @param {*} [options] Override http request option.
13274
+ * @throws {RequiredError}
13275
+ */
13276
+ getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
13277
+ /**
13278
+ * Get Last Account
13279
+ * @summary Get Last Account
13280
+ * @param {*} [options] Override http request option.
13281
+ * @throws {RequiredError}
13282
+ */
13283
+ getGetLastAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountSummaryDTO>>;
13284
+ /**
13285
+ * Get Account 3CX Details
13286
+ * @param {string} id Xero ID
13287
+ * @param {*} [options] Override http request option.
13288
+ * @throws {RequiredError}
13289
+ */
13290
+ getGetTcxPartnerDetails(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerDTO>>;
12262
13291
  /**
12263
13292
  * Verify account email address
12264
13293
  * @summary Verify account email address
@@ -12267,13 +13296,45 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12267
13296
  * @throws {RequiredError}
12268
13297
  */
12269
13298
  getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13299
+ /**
13300
+ * Set Account Portal Access
13301
+ * @param {string} id Xero ID
13302
+ * @param {PatchSetPortalAccessStateEnum} state Portal Access State
13303
+ * @param {*} [options] Override http request option.
13304
+ * @throws {RequiredError}
13305
+ */
13306
+ patchSetPortalAccess(id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13307
+ /**
13308
+ * Set Account Prize Promo
13309
+ * @param {string} id Xero ID
13310
+ * @param {PatchSetPrizePromoStateEnum} state Prize Promo State
13311
+ * @param {*} [options] Override http request option.
13312
+ * @throws {RequiredError}
13313
+ */
13314
+ patchSetPrizePromo(id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12270
13315
  /**
12271
13316
  * Set 3CX Wizard CNAME
12272
- * @param {PatchSetTcxWizardCnameRequest} [patchSetTcxWizardCnameRequest] CNAME Request
13317
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
12273
13318
  * @param {*} [options] Override http request option.
12274
13319
  * @throws {RequiredError}
12275
13320
  */
12276
- patchSetTcxWizardCname(patchSetTcxWizardCnameRequest?: PatchSetTcxWizardCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13321
+ patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13322
+ /**
13323
+ * Set Account CNAME
13324
+ * @param {string} id Xero ID
13325
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
13326
+ * @param {*} [options] Override http request option.
13327
+ * @throws {RequiredError}
13328
+ */
13329
+ patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13330
+ /**
13331
+ * Set Account Company Number
13332
+ * @param {string} id Xero ID
13333
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
13334
+ * @param {*} [options] Override http request option.
13335
+ * @throws {RequiredError}
13336
+ */
13337
+ patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12277
13338
  /**
12278
13339
  * Update Account Password
12279
13340
  * @summary Update Account Password
@@ -12283,6 +13344,70 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12283
13344
  * @throws {RequiredError}
12284
13345
  */
12285
13346
  patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13347
+ /**
13348
+ * Set Account Phone
13349
+ * @param {string} id Xero ID
13350
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
13351
+ * @param {*} [options] Override http request option.
13352
+ * @throws {RequiredError}
13353
+ */
13354
+ patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13355
+ /**
13356
+ * Set Account VAT Number
13357
+ * @param {string} id Xero ID
13358
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
13359
+ * @param {*} [options] Override http request option.
13360
+ * @throws {RequiredError}
13361
+ */
13362
+ patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13363
+ /**
13364
+ * Set Account Credit Limit
13365
+ * @param {string} id Xero ID
13366
+ * @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
13367
+ * @param {*} [options] Override http request option.
13368
+ * @throws {RequiredError}
13369
+ */
13370
+ patchUpdateCreditLimit(id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
13371
+ /**
13372
+ * Set Account Price List
13373
+ * @param {string} id Xero ID
13374
+ * @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
13375
+ * @param {*} [options] Override http request option.
13376
+ * @throws {RequiredError}
13377
+ */
13378
+ patchUpdatePriceList(id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
13379
+ /**
13380
+ * Set Account SIP Channel Cost
13381
+ * @param {string} id Xero ID
13382
+ * @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
13383
+ * @param {*} [options] Override http request option.
13384
+ * @throws {RequiredError}
13385
+ */
13386
+ patchUpdateSipChannelCost(id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
13387
+ /**
13388
+ * Set Account 3CX Hosting Price List
13389
+ * @param {string} id Xero ID
13390
+ * @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
13391
+ * @param {*} [options] Override http request option.
13392
+ * @throws {RequiredError}
13393
+ */
13394
+ patchUpdateTcxHostingPriceList(id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerDTO>>;
13395
+ /**
13396
+ * Set Account 3CX Partner ID
13397
+ * @param {string} id Xero ID
13398
+ * @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
13399
+ * @param {*} [options] Override http request option.
13400
+ * @throws {RequiredError}
13401
+ */
13402
+ patchUpdateTcxPartnerId(id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerDTO>>;
13403
+ /**
13404
+ * Create Account Contact
13405
+ * @param {string} id Account Xero ID
13406
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
13407
+ * @param {*} [options] Override http request option.
13408
+ * @throws {RequiredError}
13409
+ */
13410
+ postAdminCreateAccountContact(id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12286
13411
  /**
12287
13412
  * Add Account Contacts
12288
13413
  * @summary Add Account Contact
@@ -12330,6 +13455,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12330
13455
  * @throws {RequiredError}
12331
13456
  */
12332
13457
  postSendPasswordReset(email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13458
+ /**
13459
+ * Send Account Welcome Email
13460
+ * @param {string} id Xero ID
13461
+ * @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
13462
+ * @param {*} [options] Override http request option.
13463
+ * @throws {RequiredError}
13464
+ */
13465
+ postSendWelcomeEmail(id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12333
13466
  /**
12334
13467
  * Submit reseller application
12335
13468
  * @summary Submit reseller application
@@ -12340,6 +13473,15 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12340
13473
  * @throws {RequiredError}
12341
13474
  */
12342
13475
  postSubmitResellerApplication(creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13476
+ /**
13477
+ * Update Account Contact
13478
+ * @param {string} id Account Xero ID
13479
+ * @param {number} contactId Contact ID
13480
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
13481
+ * @param {*} [options] Override http request option.
13482
+ * @throws {RequiredError}
13483
+ */
13484
+ putAdminUpdateAccountContact(id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12343
13485
  /**
12344
13486
  * Update Account Contacts
12345
13487
  * @summary Update Account Contact
@@ -12349,12 +13491,43 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
12349
13491
  * @throws {RequiredError}
12350
13492
  */
12351
13493
  putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13494
+ /**
13495
+ * Update Account Billing Address
13496
+ * @param {string} id Xero ID
13497
+ * @param {AddressDTO} [addressDTO] Updated Billing Address
13498
+ * @param {*} [options] Override http request option.
13499
+ * @throws {RequiredError}
13500
+ */
13501
+ putUpdateBillingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
13502
+ /**
13503
+ * Update Account Shipping Address
13504
+ * @param {string} id Xero ID
13505
+ * @param {AddressDTO} [addressDTO] Updated Shipping Address
13506
+ * @param {*} [options] Override http request option.
13507
+ * @throws {RequiredError}
13508
+ */
13509
+ putUpdateShippingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12352
13510
  };
12353
13511
  /**
12354
13512
  * AccountsApi - factory interface
12355
13513
  * @export
12356
13514
  */
12357
13515
  export declare const AccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
13516
+ /**
13517
+ * Delete Account Contact
13518
+ * @param {string} id Account Xero ID
13519
+ * @param {number} contactId Contact ID
13520
+ * @param {*} [options] Override http request option.
13521
+ * @throws {RequiredError}
13522
+ */
13523
+ deleteAdminUpdateAccountContact(id: string, contactId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13524
+ /**
13525
+ * Delete Account
13526
+ * @param {string} id Account Xero ID
13527
+ * @param {*} [options] Override http request option.
13528
+ * @throws {RequiredError}
13529
+ */
13530
+ deleteArchiveAccount(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12358
13531
  /**
12359
13532
  * Delete client credentials
12360
13533
  * @summary Delete client credentials
@@ -12371,6 +13544,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12371
13544
  * @throws {RequiredError}
12372
13545
  */
12373
13546
  deleteUpdateAccountContact(email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13547
+ /**
13548
+ * Get Account Contacts
13549
+ * @param {string} id Account Xero ID
13550
+ * @param {*} [options] Override http request option.
13551
+ * @throws {RequiredError}
13552
+ */
13553
+ getAdminCreateAccountContact(id: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
12374
13554
  /**
12375
13555
  * Get Account
12376
13556
  * @summary Get Account
@@ -12378,6 +13558,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12378
13558
  * @throws {RequiredError}
12379
13559
  */
12380
13560
  getGetAccount(options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
13561
+ /**
13562
+ * Get Account Addresses
13563
+ * @param {string} id Xero ID
13564
+ * @param {*} [options] Override http request option.
13565
+ * @throws {RequiredError}
13566
+ */
13567
+ getGetAccountAddresses(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountAddressesDTO>;
12381
13568
  /**
12382
13569
  * Get Account Contacts
12383
13570
  * @summary Get Account Contacts
@@ -12404,45 +13591,168 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12404
13591
  * @param {*} [options] Override http request option.
12405
13592
  * @throws {RequiredError}
12406
13593
  */
12407
- getGetAccounts(pageSize?: number, page?: number, search?: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AccountsResponseModel>;
13594
+ getGetAccounts(pageSize?: number, page?: number, search?: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AccountsResponseModel>;
13595
+ /**
13596
+ * Get user\'s client credentials
13597
+ * @summary Get user\'s client credentials
13598
+ * @param {*} [options] Override http request option.
13599
+ * @throws {RequiredError}
13600
+ */
13601
+ getGetClientCredentials(options?: RawAxiosRequestConfig): AxiosPromise<Array<ClientModel>>;
13602
+ /**
13603
+ * Get Customer Accounts List
13604
+ * @param {*} [options] Override http request option.
13605
+ * @throws {RequiredError}
13606
+ */
13607
+ getGetCustomerAccountsList(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerListAccountDTO>>;
13608
+ /**
13609
+ * Get 3CX Keys
13610
+ * @summary Get 3CX Keys
13611
+ * @param {*} [options] Override http request option.
13612
+ * @throws {RequiredError}
13613
+ */
13614
+ getGetCustomerKeys(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxKeySummaryDTO>>;
13615
+ /**
13616
+ * Get Account Finance
13617
+ * @param {string} id Account Xero ID
13618
+ * @param {*} [options] Override http request option.
13619
+ * @throws {RequiredError}
13620
+ */
13621
+ getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
13622
+ /**
13623
+ * Get Last Account
13624
+ * @summary Get Last Account
13625
+ * @param {*} [options] Override http request option.
13626
+ * @throws {RequiredError}
13627
+ */
13628
+ getGetLastAccount(options?: RawAxiosRequestConfig): AxiosPromise<AccountSummaryDTO>;
13629
+ /**
13630
+ * Get Account 3CX Details
13631
+ * @param {string} id Xero ID
13632
+ * @param {*} [options] Override http request option.
13633
+ * @throws {RequiredError}
13634
+ */
13635
+ getGetTcxPartnerDetails(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PartnerDTO>;
13636
+ /**
13637
+ * Verify account email address
13638
+ * @summary Verify account email address
13639
+ * @param {string} token Verification Token
13640
+ * @param {*} [options] Override http request option.
13641
+ * @throws {RequiredError}
13642
+ */
13643
+ getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13644
+ /**
13645
+ * Set Account Portal Access
13646
+ * @param {string} id Xero ID
13647
+ * @param {PatchSetPortalAccessStateEnum} state Portal Access State
13648
+ * @param {*} [options] Override http request option.
13649
+ * @throws {RequiredError}
13650
+ */
13651
+ patchSetPortalAccess(id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13652
+ /**
13653
+ * Set Account Prize Promo
13654
+ * @param {string} id Xero ID
13655
+ * @param {PatchSetPrizePromoStateEnum} state Prize Promo State
13656
+ * @param {*} [options] Override http request option.
13657
+ * @throws {RequiredError}
13658
+ */
13659
+ patchSetPrizePromo(id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13660
+ /**
13661
+ * Set 3CX Wizard CNAME
13662
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
13663
+ * @param {*} [options] Override http request option.
13664
+ * @throws {RequiredError}
13665
+ */
13666
+ patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13667
+ /**
13668
+ * Set Account CNAME
13669
+ * @param {string} id Xero ID
13670
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
13671
+ * @param {*} [options] Override http request option.
13672
+ * @throws {RequiredError}
13673
+ */
13674
+ patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13675
+ /**
13676
+ * Set Account Company Number
13677
+ * @param {string} id Xero ID
13678
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
13679
+ * @param {*} [options] Override http request option.
13680
+ * @throws {RequiredError}
13681
+ */
13682
+ patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13683
+ /**
13684
+ * Update Account Password
13685
+ * @summary Update Account Password
13686
+ * @param {string} token Verification Token
13687
+ * @param {PatchUpdateAccountContactPasswordRequest} [patchUpdateAccountContactPasswordRequest] New account request
13688
+ * @param {*} [options] Override http request option.
13689
+ * @throws {RequiredError}
13690
+ */
13691
+ patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13692
+ /**
13693
+ * Set Account Phone
13694
+ * @param {string} id Xero ID
13695
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
13696
+ * @param {*} [options] Override http request option.
13697
+ * @throws {RequiredError}
13698
+ */
13699
+ patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13700
+ /**
13701
+ * Set Account VAT Number
13702
+ * @param {string} id Xero ID
13703
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
13704
+ * @param {*} [options] Override http request option.
13705
+ * @throws {RequiredError}
13706
+ */
13707
+ patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13708
+ /**
13709
+ * Set Account Credit Limit
13710
+ * @param {string} id Xero ID
13711
+ * @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
13712
+ * @param {*} [options] Override http request option.
13713
+ * @throws {RequiredError}
13714
+ */
13715
+ patchUpdateCreditLimit(id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
12408
13716
  /**
12409
- * Get user\'s client credentials
12410
- * @summary Get user\'s client credentials
13717
+ * Set Account Price List
13718
+ * @param {string} id Xero ID
13719
+ * @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
12411
13720
  * @param {*} [options] Override http request option.
12412
13721
  * @throws {RequiredError}
12413
13722
  */
12414
- getGetClientCredentials(options?: RawAxiosRequestConfig): AxiosPromise<Array<ClientModel>>;
13723
+ patchUpdatePriceList(id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
12415
13724
  /**
12416
- * Get 3CX Keys
12417
- * @summary Get 3CX Keys
13725
+ * Set Account SIP Channel Cost
13726
+ * @param {string} id Xero ID
13727
+ * @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
12418
13728
  * @param {*} [options] Override http request option.
12419
13729
  * @throws {RequiredError}
12420
13730
  */
12421
- getGetCustomerKeys(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxKeySummaryDTO>>;
13731
+ patchUpdateSipChannelCost(id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
12422
13732
  /**
12423
- * Verify account email address
12424
- * @summary Verify account email address
12425
- * @param {string} token Verification Token
13733
+ * Set Account 3CX Hosting Price List
13734
+ * @param {string} id Xero ID
13735
+ * @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
12426
13736
  * @param {*} [options] Override http request option.
12427
13737
  * @throws {RequiredError}
12428
13738
  */
12429
- getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13739
+ patchUpdateTcxHostingPriceList(id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<PartnerDTO>;
12430
13740
  /**
12431
- * Set 3CX Wizard CNAME
12432
- * @param {PatchSetTcxWizardCnameRequest} [patchSetTcxWizardCnameRequest] CNAME Request
13741
+ * Set Account 3CX Partner ID
13742
+ * @param {string} id Xero ID
13743
+ * @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
12433
13744
  * @param {*} [options] Override http request option.
12434
13745
  * @throws {RequiredError}
12435
13746
  */
12436
- patchSetTcxWizardCname(patchSetTcxWizardCnameRequest?: PatchSetTcxWizardCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13747
+ patchUpdateTcxPartnerId(id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<PartnerDTO>;
12437
13748
  /**
12438
- * Update Account Password
12439
- * @summary Update Account Password
12440
- * @param {string} token Verification Token
12441
- * @param {PatchUpdateAccountContactPasswordRequest} [patchUpdateAccountContactPasswordRequest] New account request
13749
+ * Create Account Contact
13750
+ * @param {string} id Account Xero ID
13751
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
12442
13752
  * @param {*} [options] Override http request option.
12443
13753
  * @throws {RequiredError}
12444
13754
  */
12445
- patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13755
+ postAdminCreateAccountContact(id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12446
13756
  /**
12447
13757
  * Add Account Contacts
12448
13758
  * @summary Add Account Contact
@@ -12490,6 +13800,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12490
13800
  * @throws {RequiredError}
12491
13801
  */
12492
13802
  postSendPasswordReset(email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13803
+ /**
13804
+ * Send Account Welcome Email
13805
+ * @param {string} id Xero ID
13806
+ * @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
13807
+ * @param {*} [options] Override http request option.
13808
+ * @throws {RequiredError}
13809
+ */
13810
+ postSendWelcomeEmail(id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12493
13811
  /**
12494
13812
  * Submit reseller application
12495
13813
  * @summary Submit reseller application
@@ -12500,6 +13818,15 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12500
13818
  * @throws {RequiredError}
12501
13819
  */
12502
13820
  postSubmitResellerApplication(creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13821
+ /**
13822
+ * Update Account Contact
13823
+ * @param {string} id Account Xero ID
13824
+ * @param {number} contactId Contact ID
13825
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
13826
+ * @param {*} [options] Override http request option.
13827
+ * @throws {RequiredError}
13828
+ */
13829
+ putAdminUpdateAccountContact(id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12503
13830
  /**
12504
13831
  * Update Account Contacts
12505
13832
  * @summary Update Account Contact
@@ -12509,6 +13836,22 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12509
13836
  * @throws {RequiredError}
12510
13837
  */
12511
13838
  putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13839
+ /**
13840
+ * Update Account Billing Address
13841
+ * @param {string} id Xero ID
13842
+ * @param {AddressDTO} [addressDTO] Updated Billing Address
13843
+ * @param {*} [options] Override http request option.
13844
+ * @throws {RequiredError}
13845
+ */
13846
+ putUpdateBillingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
13847
+ /**
13848
+ * Update Account Shipping Address
13849
+ * @param {string} id Xero ID
13850
+ * @param {AddressDTO} [addressDTO] Updated Shipping Address
13851
+ * @param {*} [options] Override http request option.
13852
+ * @throws {RequiredError}
13853
+ */
13854
+ putUpdateShippingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12512
13855
  };
12513
13856
  /**
12514
13857
  * AccountsApi - object-oriented interface
@@ -12517,6 +13860,23 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
12517
13860
  * @extends {BaseAPI}
12518
13861
  */
12519
13862
  export declare class AccountsApi extends BaseAPI {
13863
+ /**
13864
+ * Delete Account Contact
13865
+ * @param {string} id Account Xero ID
13866
+ * @param {number} contactId Contact ID
13867
+ * @param {*} [options] Override http request option.
13868
+ * @throws {RequiredError}
13869
+ * @memberof AccountsApi
13870
+ */
13871
+ deleteAdminUpdateAccountContact(id: string, contactId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
13872
+ /**
13873
+ * Delete Account
13874
+ * @param {string} id Account Xero ID
13875
+ * @param {*} [options] Override http request option.
13876
+ * @throws {RequiredError}
13877
+ * @memberof AccountsApi
13878
+ */
13879
+ deleteArchiveAccount(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12520
13880
  /**
12521
13881
  * Delete client credentials
12522
13882
  * @summary Delete client credentials
@@ -12535,6 +13895,14 @@ export declare class AccountsApi extends BaseAPI {
12535
13895
  * @memberof AccountsApi
12536
13896
  */
12537
13897
  deleteUpdateAccountContact(email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
13898
+ /**
13899
+ * Get Account Contacts
13900
+ * @param {string} id Account Xero ID
13901
+ * @param {*} [options] Override http request option.
13902
+ * @throws {RequiredError}
13903
+ * @memberof AccountsApi
13904
+ */
13905
+ getAdminCreateAccountContact(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
12538
13906
  /**
12539
13907
  * Get Account
12540
13908
  * @summary Get Account
@@ -12543,6 +13911,14 @@ export declare class AccountsApi extends BaseAPI {
12543
13911
  * @memberof AccountsApi
12544
13912
  */
12545
13913
  getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
13914
+ /**
13915
+ * Get Account Addresses
13916
+ * @param {string} id Xero ID
13917
+ * @param {*} [options] Override http request option.
13918
+ * @throws {RequiredError}
13919
+ * @memberof AccountsApi
13920
+ */
13921
+ getGetAccountAddresses(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountAddressesDTO, any, {}>>;
12546
13922
  /**
12547
13923
  * Get Account Contacts
12548
13924
  * @summary Get Account Contacts
@@ -12581,6 +13957,13 @@ export declare class AccountsApi extends BaseAPI {
12581
13957
  * @memberof AccountsApi
12582
13958
  */
12583
13959
  getGetClientCredentials(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientModel[], any, {}>>;
13960
+ /**
13961
+ * Get Customer Accounts List
13962
+ * @param {*} [options] Override http request option.
13963
+ * @throws {RequiredError}
13964
+ * @memberof AccountsApi
13965
+ */
13966
+ getGetCustomerAccountsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerListAccountDTO[], any, {}>>;
12584
13967
  /**
12585
13968
  * Get 3CX Keys
12586
13969
  * @summary Get 3CX Keys
@@ -12589,6 +13972,30 @@ export declare class AccountsApi extends BaseAPI {
12589
13972
  * @memberof AccountsApi
12590
13973
  */
12591
13974
  getGetCustomerKeys(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxKeySummaryDTO[], any, {}>>;
13975
+ /**
13976
+ * Get Account Finance
13977
+ * @param {string} id Account Xero ID
13978
+ * @param {*} [options] Override http request option.
13979
+ * @throws {RequiredError}
13980
+ * @memberof AccountsApi
13981
+ */
13982
+ getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
13983
+ /**
13984
+ * Get Last Account
13985
+ * @summary Get Last Account
13986
+ * @param {*} [options] Override http request option.
13987
+ * @throws {RequiredError}
13988
+ * @memberof AccountsApi
13989
+ */
13990
+ getGetLastAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountSummaryDTO, any, {}>>;
13991
+ /**
13992
+ * Get Account 3CX Details
13993
+ * @param {string} id Xero ID
13994
+ * @param {*} [options] Override http request option.
13995
+ * @throws {RequiredError}
13996
+ * @memberof AccountsApi
13997
+ */
13998
+ getGetTcxPartnerDetails(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerDTO, any, {}>>;
12592
13999
  /**
12593
14000
  * Verify account email address
12594
14001
  * @summary Verify account email address
@@ -12598,14 +14005,50 @@ export declare class AccountsApi extends BaseAPI {
12598
14005
  * @memberof AccountsApi
12599
14006
  */
12600
14007
  getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14008
+ /**
14009
+ * Set Account Portal Access
14010
+ * @param {string} id Xero ID
14011
+ * @param {PatchSetPortalAccessStateEnum} state Portal Access State
14012
+ * @param {*} [options] Override http request option.
14013
+ * @throws {RequiredError}
14014
+ * @memberof AccountsApi
14015
+ */
14016
+ patchSetPortalAccess(id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14017
+ /**
14018
+ * Set Account Prize Promo
14019
+ * @param {string} id Xero ID
14020
+ * @param {PatchSetPrizePromoStateEnum} state Prize Promo State
14021
+ * @param {*} [options] Override http request option.
14022
+ * @throws {RequiredError}
14023
+ * @memberof AccountsApi
14024
+ */
14025
+ patchSetPrizePromo(id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12601
14026
  /**
12602
14027
  * Set 3CX Wizard CNAME
12603
- * @param {PatchSetTcxWizardCnameRequest} [patchSetTcxWizardCnameRequest] CNAME Request
14028
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
14029
+ * @param {*} [options] Override http request option.
14030
+ * @throws {RequiredError}
14031
+ * @memberof AccountsApi
14032
+ */
14033
+ patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14034
+ /**
14035
+ * Set Account CNAME
14036
+ * @param {string} id Xero ID
14037
+ * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
14038
+ * @param {*} [options] Override http request option.
14039
+ * @throws {RequiredError}
14040
+ * @memberof AccountsApi
14041
+ */
14042
+ patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14043
+ /**
14044
+ * Set Account Company Number
14045
+ * @param {string} id Xero ID
14046
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
12604
14047
  * @param {*} [options] Override http request option.
12605
14048
  * @throws {RequiredError}
12606
14049
  * @memberof AccountsApi
12607
14050
  */
12608
- patchSetTcxWizardCname(patchSetTcxWizardCnameRequest?: PatchSetTcxWizardCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14051
+ patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12609
14052
  /**
12610
14053
  * Update Account Password
12611
14054
  * @summary Update Account Password
@@ -12616,6 +14059,78 @@ export declare class AccountsApi extends BaseAPI {
12616
14059
  * @memberof AccountsApi
12617
14060
  */
12618
14061
  patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14062
+ /**
14063
+ * Set Account Phone
14064
+ * @param {string} id Xero ID
14065
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
14066
+ * @param {*} [options] Override http request option.
14067
+ * @throws {RequiredError}
14068
+ * @memberof AccountsApi
14069
+ */
14070
+ patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14071
+ /**
14072
+ * Set Account VAT Number
14073
+ * @param {string} id Xero ID
14074
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
14075
+ * @param {*} [options] Override http request option.
14076
+ * @throws {RequiredError}
14077
+ * @memberof AccountsApi
14078
+ */
14079
+ patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14080
+ /**
14081
+ * Set Account Credit Limit
14082
+ * @param {string} id Xero ID
14083
+ * @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
14084
+ * @param {*} [options] Override http request option.
14085
+ * @throws {RequiredError}
14086
+ * @memberof AccountsApi
14087
+ */
14088
+ patchUpdateCreditLimit(id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
14089
+ /**
14090
+ * Set Account Price List
14091
+ * @param {string} id Xero ID
14092
+ * @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
14093
+ * @param {*} [options] Override http request option.
14094
+ * @throws {RequiredError}
14095
+ * @memberof AccountsApi
14096
+ */
14097
+ patchUpdatePriceList(id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
14098
+ /**
14099
+ * Set Account SIP Channel Cost
14100
+ * @param {string} id Xero ID
14101
+ * @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
14102
+ * @param {*} [options] Override http request option.
14103
+ * @throws {RequiredError}
14104
+ * @memberof AccountsApi
14105
+ */
14106
+ patchUpdateSipChannelCost(id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
14107
+ /**
14108
+ * Set Account 3CX Hosting Price List
14109
+ * @param {string} id Xero ID
14110
+ * @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
14111
+ * @param {*} [options] Override http request option.
14112
+ * @throws {RequiredError}
14113
+ * @memberof AccountsApi
14114
+ */
14115
+ patchUpdateTcxHostingPriceList(id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerDTO, any, {}>>;
14116
+ /**
14117
+ * Set Account 3CX Partner ID
14118
+ * @param {string} id Xero ID
14119
+ * @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
14120
+ * @param {*} [options] Override http request option.
14121
+ * @throws {RequiredError}
14122
+ * @memberof AccountsApi
14123
+ */
14124
+ patchUpdateTcxPartnerId(id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerDTO, any, {}>>;
14125
+ /**
14126
+ * Create Account Contact
14127
+ * @param {string} id Account Xero ID
14128
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
14129
+ * @param {*} [options] Override http request option.
14130
+ * @throws {RequiredError}
14131
+ * @memberof AccountsApi
14132
+ */
14133
+ postAdminCreateAccountContact(id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12619
14134
  /**
12620
14135
  * Add Account Contacts
12621
14136
  * @summary Add Account Contact
@@ -12669,6 +14184,15 @@ export declare class AccountsApi extends BaseAPI {
12669
14184
  * @memberof AccountsApi
12670
14185
  */
12671
14186
  postSendPasswordReset(email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14187
+ /**
14188
+ * Send Account Welcome Email
14189
+ * @param {string} id Xero ID
14190
+ * @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
14191
+ * @param {*} [options] Override http request option.
14192
+ * @throws {RequiredError}
14193
+ * @memberof AccountsApi
14194
+ */
14195
+ postSendWelcomeEmail(id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12672
14196
  /**
12673
14197
  * Submit reseller application
12674
14198
  * @summary Submit reseller application
@@ -12680,6 +14204,16 @@ export declare class AccountsApi extends BaseAPI {
12680
14204
  * @memberof AccountsApi
12681
14205
  */
12682
14206
  postSubmitResellerApplication(creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14207
+ /**
14208
+ * Update Account Contact
14209
+ * @param {string} id Account Xero ID
14210
+ * @param {number} contactId Contact ID
14211
+ * @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
14212
+ * @param {*} [options] Override http request option.
14213
+ * @throws {RequiredError}
14214
+ * @memberof AccountsApi
14215
+ */
14216
+ putAdminUpdateAccountContact(id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12683
14217
  /**
12684
14218
  * Update Account Contacts
12685
14219
  * @summary Update Account Contact
@@ -12690,7 +14224,41 @@ export declare class AccountsApi extends BaseAPI {
12690
14224
  * @memberof AccountsApi
12691
14225
  */
12692
14226
  putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14227
+ /**
14228
+ * Update Account Billing Address
14229
+ * @param {string} id Xero ID
14230
+ * @param {AddressDTO} [addressDTO] Updated Billing Address
14231
+ * @param {*} [options] Override http request option.
14232
+ * @throws {RequiredError}
14233
+ * @memberof AccountsApi
14234
+ */
14235
+ putUpdateBillingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
14236
+ /**
14237
+ * Update Account Shipping Address
14238
+ * @param {string} id Xero ID
14239
+ * @param {AddressDTO} [addressDTO] Updated Shipping Address
14240
+ * @param {*} [options] Override http request option.
14241
+ * @throws {RequiredError}
14242
+ * @memberof AccountsApi
14243
+ */
14244
+ putUpdateShippingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12693
14245
  }
14246
+ /**
14247
+ * @export
14248
+ */
14249
+ export declare const PatchSetPortalAccessStateEnum: {
14250
+ readonly Enable: "enable";
14251
+ readonly Disable: "disable";
14252
+ };
14253
+ export type PatchSetPortalAccessStateEnum = typeof PatchSetPortalAccessStateEnum[keyof typeof PatchSetPortalAccessStateEnum];
14254
+ /**
14255
+ * @export
14256
+ */
14257
+ export declare const PatchSetPrizePromoStateEnum: {
14258
+ readonly Enable: "enable";
14259
+ readonly Disable: "disable";
14260
+ };
14261
+ export type PatchSetPrizePromoStateEnum = typeof PatchSetPrizePromoStateEnum[keyof typeof PatchSetPrizePromoStateEnum];
12694
14262
  /**
12695
14263
  * BillingApi - axios parameter creator
12696
14264
  * @export
@@ -12763,36 +14331,87 @@ export declare class BillingApi extends BaseAPI {
12763
14331
  * @export
12764
14332
  */
12765
14333
  export declare const CRMApiAxiosParamCreator: (configuration?: Configuration) => {
14334
+ /**
14335
+ * Get Customer CRM Activities
14336
+ * @param {number} id Account ID
14337
+ * @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
14338
+ * @param {number} [userId] Activity Created By
14339
+ * @param {*} [options] Override http request option.
14340
+ * @throws {RequiredError}
14341
+ */
14342
+ getGetCrmActivities: (id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12766
14343
  /**
12767
14344
  * Search for contacts by phone number
12768
14345
  * @param {*} [options] Override http request option.
12769
14346
  * @throws {RequiredError}
12770
14347
  */
12771
14348
  getSearchByPhone: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14349
+ /**
14350
+ * Create CRM Note
14351
+ * @param {number} id Account ID
14352
+ * @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
14353
+ * @param {*} [options] Override http request option.
14354
+ * @throws {RequiredError}
14355
+ */
14356
+ postCreateCrmNote: (id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12772
14357
  };
12773
14358
  /**
12774
14359
  * CRMApi - functional programming interface
12775
14360
  * @export
12776
14361
  */
12777
14362
  export declare const CRMApiFp: (configuration?: Configuration) => {
14363
+ /**
14364
+ * Get Customer CRM Activities
14365
+ * @param {number} id Account ID
14366
+ * @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
14367
+ * @param {number} [userId] Activity Created By
14368
+ * @param {*} [options] Override http request option.
14369
+ * @throws {RequiredError}
14370
+ */
14371
+ getGetCrmActivities(id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmActivitiesResponseDTO>>;
12778
14372
  /**
12779
14373
  * Search for contacts by phone number
12780
14374
  * @param {*} [options] Override http request option.
12781
14375
  * @throws {RequiredError}
12782
14376
  */
12783
14377
  getSearchByPhone(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmContactDTO>>;
14378
+ /**
14379
+ * Create CRM Note
14380
+ * @param {number} id Account ID
14381
+ * @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
14382
+ * @param {*} [options] Override http request option.
14383
+ * @throws {RequiredError}
14384
+ */
14385
+ postCreateCrmNote(id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmActivityDTO>>;
12784
14386
  };
12785
14387
  /**
12786
14388
  * CRMApi - factory interface
12787
14389
  * @export
12788
14390
  */
12789
14391
  export declare const CRMApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14392
+ /**
14393
+ * Get Customer CRM Activities
14394
+ * @param {number} id Account ID
14395
+ * @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
14396
+ * @param {number} [userId] Activity Created By
14397
+ * @param {*} [options] Override http request option.
14398
+ * @throws {RequiredError}
14399
+ */
14400
+ getGetCrmActivities(id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig): AxiosPromise<CrmActivitiesResponseDTO>;
12790
14401
  /**
12791
14402
  * Search for contacts by phone number
12792
14403
  * @param {*} [options] Override http request option.
12793
14404
  * @throws {RequiredError}
12794
14405
  */
12795
14406
  getSearchByPhone(options?: RawAxiosRequestConfig): AxiosPromise<CrmContactDTO>;
14407
+ /**
14408
+ * Create CRM Note
14409
+ * @param {number} id Account ID
14410
+ * @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
14411
+ * @param {*} [options] Override http request option.
14412
+ * @throws {RequiredError}
14413
+ */
14414
+ postCreateCrmNote(id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig): AxiosPromise<CrmActivityDTO>;
12796
14415
  };
12797
14416
  /**
12798
14417
  * CRMApi - object-oriented interface
@@ -12801,6 +14420,16 @@ export declare const CRMApiFactory: (configuration?: Configuration, basePath?: s
12801
14420
  * @extends {BaseAPI}
12802
14421
  */
12803
14422
  export declare class CRMApi extends BaseAPI {
14423
+ /**
14424
+ * Get Customer CRM Activities
14425
+ * @param {number} id Account ID
14426
+ * @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
14427
+ * @param {number} [userId] Activity Created By
14428
+ * @param {*} [options] Override http request option.
14429
+ * @throws {RequiredError}
14430
+ * @memberof CRMApi
14431
+ */
14432
+ getGetCrmActivities(id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmActivitiesResponseDTO, any, {}>>;
12804
14433
  /**
12805
14434
  * Search for contacts by phone number
12806
14435
  * @param {*} [options] Override http request option.
@@ -12808,7 +14437,29 @@ export declare class CRMApi extends BaseAPI {
12808
14437
  * @memberof CRMApi
12809
14438
  */
12810
14439
  getSearchByPhone(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmContactDTO, any, {}>>;
14440
+ /**
14441
+ * Create CRM Note
14442
+ * @param {number} id Account ID
14443
+ * @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
14444
+ * @param {*} [options] Override http request option.
14445
+ * @throws {RequiredError}
14446
+ * @memberof CRMApi
14447
+ */
14448
+ postCreateCrmNote(id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmActivityDTO, any, {}>>;
12811
14449
  }
14450
+ /**
14451
+ * @export
14452
+ */
14453
+ export declare const GetGetCrmActivitiesTypeEnum: {
14454
+ readonly Alert: "alert";
14455
+ readonly Call: "call";
14456
+ readonly Email: "email";
14457
+ readonly Note: "note";
14458
+ readonly Order: "order";
14459
+ readonly Quote: "quote";
14460
+ readonly TcxOrder: "tcx_order";
14461
+ };
14462
+ export type GetGetCrmActivitiesTypeEnum = typeof GetGetCrmActivitiesTypeEnum[keyof typeof GetGetCrmActivitiesTypeEnum];
12812
14463
  /**
12813
14464
  * Class3CXApi - axios parameter creator
12814
14465
  * @export
@@ -12822,6 +14473,13 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
12822
14473
  * @throws {RequiredError}
12823
14474
  */
12824
14475
  getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14476
+ /**
14477
+ * Get 3CX Expiring Keys
14478
+ * @summary Get 3CX Expiring Keys
14479
+ * @param {*} [options] Override http request option.
14480
+ * @throws {RequiredError}
14481
+ */
14482
+ getGetTcxExpiringKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12825
14483
  /**
12826
14484
  * Get Bulk 3CX Licence Details
12827
14485
  * @summary Get bulk 3CX Licence Details
@@ -12844,6 +14502,13 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
12844
14502
  * @throws {RequiredError}
12845
14503
  */
12846
14504
  getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
14505
+ /**
14506
+ * Get 3CX Expiring Keys
14507
+ * @summary Get 3CX Expiring Keys
14508
+ * @param {*} [options] Override http request option.
14509
+ * @throws {RequiredError}
14510
+ */
14511
+ getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
12847
14512
  /**
12848
14513
  * Get Bulk 3CX Licence Details
12849
14514
  * @summary Get bulk 3CX Licence Details
@@ -12866,6 +14531,13 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
12866
14531
  * @throws {RequiredError}
12867
14532
  */
12868
14533
  getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
14534
+ /**
14535
+ * Get 3CX Expiring Keys
14536
+ * @summary Get 3CX Expiring Keys
14537
+ * @param {*} [options] Override http request option.
14538
+ * @throws {RequiredError}
14539
+ */
14540
+ getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): AxiosPromise<string>;
12869
14541
  /**
12870
14542
  * Get Bulk 3CX Licence Details
12871
14543
  * @summary Get bulk 3CX Licence Details
@@ -12891,6 +14563,14 @@ export declare class Class3CXApi extends BaseAPI {
12891
14563
  * @memberof Class3CXApi
12892
14564
  */
12893
14565
  getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
14566
+ /**
14567
+ * Get 3CX Expiring Keys
14568
+ * @summary Get 3CX Expiring Keys
14569
+ * @param {*} [options] Override http request option.
14570
+ * @throws {RequiredError}
14571
+ * @memberof Class3CXApi
14572
+ */
14573
+ getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
12894
14574
  /**
12895
14575
  * Get Bulk 3CX Licence Details
12896
14576
  * @summary Get bulk 3CX Licence Details
@@ -14092,6 +15772,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
14092
15772
  * @throws {RequiredError}
14093
15773
  */
14094
15774
  getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15775
+ /**
15776
+ * Get Recording Backup Storage
15777
+ * @summary Get Recording Backup Storage
15778
+ * @param {string} instanceId Instance ID
15779
+ * @param {*} [options] Override http request option.
15780
+ * @throws {RequiredError}
15781
+ */
15782
+ getGetRecordingBackupStorage: (instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14095
15783
  /**
14096
15784
  * Change instance owner
14097
15785
  * @summary Change instance owner
@@ -14271,6 +15959,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
14271
15959
  * @throws {RequiredError}
14272
15960
  */
14273
15961
  getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
15962
+ /**
15963
+ * Get Recording Backup Storage
15964
+ * @summary Get Recording Backup Storage
15965
+ * @param {string} instanceId Instance ID
15966
+ * @param {*} [options] Override http request option.
15967
+ * @throws {RequiredError}
15968
+ */
15969
+ getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordingBackupAzureModel>>;
14274
15970
  /**
14275
15971
  * Change instance owner
14276
15972
  * @summary Change instance owner
@@ -14450,6 +16146,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
14450
16146
  * @throws {RequiredError}
14451
16147
  */
14452
16148
  getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
16149
+ /**
16150
+ * Get Recording Backup Storage
16151
+ * @summary Get Recording Backup Storage
16152
+ * @param {string} instanceId Instance ID
16153
+ * @param {*} [options] Override http request option.
16154
+ * @throws {RequiredError}
16155
+ */
16156
+ getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<RecordingBackupAzureModel>;
14453
16157
  /**
14454
16158
  * Change instance owner
14455
16159
  * @summary Change instance owner
@@ -14633,6 +16337,15 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
14633
16337
  * @memberof Class3CXInstallationsApi
14634
16338
  */
14635
16339
  getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
16340
+ /**
16341
+ * Get Recording Backup Storage
16342
+ * @summary Get Recording Backup Storage
16343
+ * @param {string} instanceId Instance ID
16344
+ * @param {*} [options] Override http request option.
16345
+ * @throws {RequiredError}
16346
+ * @memberof Class3CXInstallationsApi
16347
+ */
16348
+ getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecordingBackupAzureModel, any, {}>>;
14636
16349
  /**
14637
16350
  * Change instance owner
14638
16351
  * @summary Change instance owner
@@ -15519,11 +17232,11 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
15519
17232
  /**
15520
17233
  *
15521
17234
  * @param {number} id Number Port ID
15522
- * @param {PostAddAdminNoteRequest} postAddAdminNoteRequest
17235
+ * @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
15523
17236
  * @param {*} [options] Override http request option.
15524
17237
  * @throws {RequiredError}
15525
17238
  */
15526
- postAddAdminNote: (id: number, postAddAdminNoteRequest: PostAddAdminNoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17239
+ postAddAdminNote: (id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15527
17240
  /**
15528
17241
  *
15529
17242
  * @param {string | null} [companyName] Company Name
@@ -15650,11 +17363,11 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
15650
17363
  /**
15651
17364
  *
15652
17365
  * @param {number} id Number Port ID
15653
- * @param {PostAddAdminNoteRequest} postAddAdminNoteRequest
17366
+ * @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
15654
17367
  * @param {*} [options] Override http request option.
15655
17368
  * @throws {RequiredError}
15656
17369
  */
15657
- postAddAdminNote(id: number, postAddAdminNoteRequest: PostAddAdminNoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
17370
+ postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
15658
17371
  /**
15659
17372
  *
15660
17373
  * @param {string | null} [companyName] Company Name
@@ -15781,11 +17494,11 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
15781
17494
  /**
15782
17495
  *
15783
17496
  * @param {number} id Number Port ID
15784
- * @param {PostAddAdminNoteRequest} postAddAdminNoteRequest
17497
+ * @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
15785
17498
  * @param {*} [options] Override http request option.
15786
17499
  * @throws {RequiredError}
15787
17500
  */
15788
- postAddAdminNote(id: number, postAddAdminNoteRequest: PostAddAdminNoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
17501
+ postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
15789
17502
  /**
15790
17503
  *
15791
17504
  * @param {string | null} [companyName] Company Name
@@ -15921,12 +17634,12 @@ export declare class NumberPortingApi extends BaseAPI {
15921
17634
  /**
15922
17635
  *
15923
17636
  * @param {number} id Number Port ID
15924
- * @param {PostAddAdminNoteRequest} postAddAdminNoteRequest
17637
+ * @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
15925
17638
  * @param {*} [options] Override http request option.
15926
17639
  * @throws {RequiredError}
15927
17640
  * @memberof NumberPortingApi
15928
17641
  */
15929
- postAddAdminNote(id: number, postAddAdminNoteRequest: PostAddAdminNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
17642
+ postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
15930
17643
  /**
15931
17644
  *
15932
17645
  * @param {string | null} [companyName] Company Name
@@ -16055,6 +17768,12 @@ export declare const OAuth20ApiAxiosParamCreator: (configuration?: Configuration
16055
17768
  * @throws {RequiredError}
16056
17769
  */
16057
17770
  postGetIdentity: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17771
+ /**
17772
+ * Remove Oauth 2.0 Cookies
17773
+ * @param {*} [options] Override http request option.
17774
+ * @throws {RequiredError}
17775
+ */
17776
+ postLogout: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16058
17777
  /**
16059
17778
  * Portal Login
16060
17779
  * @summary Portal Login
@@ -16123,6 +17842,12 @@ export declare const OAuth20ApiFp: (configuration?: Configuration) => {
16123
17842
  * @throws {RequiredError}
16124
17843
  */
16125
17844
  postGetIdentity(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientDetailsModel>>;
17845
+ /**
17846
+ * Remove Oauth 2.0 Cookies
17847
+ * @param {*} [options] Override http request option.
17848
+ * @throws {RequiredError}
17849
+ */
17850
+ postLogout(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
16126
17851
  /**
16127
17852
  * Portal Login
16128
17853
  * @summary Portal Login
@@ -16191,6 +17916,12 @@ export declare const OAuth20ApiFactory: (configuration?: Configuration, basePath
16191
17916
  * @throws {RequiredError}
16192
17917
  */
16193
17918
  postGetIdentity(options?: RawAxiosRequestConfig): AxiosPromise<ClientDetailsModel>;
17919
+ /**
17920
+ * Remove Oauth 2.0 Cookies
17921
+ * @param {*} [options] Override http request option.
17922
+ * @throws {RequiredError}
17923
+ */
17924
+ postLogout(options?: RawAxiosRequestConfig): AxiosPromise<void>;
16194
17925
  /**
16195
17926
  * Portal Login
16196
17927
  * @summary Portal Login
@@ -16266,6 +17997,13 @@ export declare class OAuth20Api extends BaseAPI {
16266
17997
  * @memberof OAuth20Api
16267
17998
  */
16268
17999
  postGetIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientDetailsModel, any, {}>>;
18000
+ /**
18001
+ * Remove Oauth 2.0 Cookies
18002
+ * @param {*} [options] Override http request option.
18003
+ * @throws {RequiredError}
18004
+ * @memberof OAuth20Api
18005
+ */
18006
+ postLogout(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16269
18007
  /**
16270
18008
  * Portal Login
16271
18009
  * @summary Portal Login
@@ -17903,21 +19641,21 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
17903
19641
  * Get Product
17904
19642
  * @summary Get Product
17905
19643
  * @param {string} sku Product SKU
17906
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19644
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
17907
19645
  * @param {*} [options] Override http request option.
17908
19646
  * @throws {RequiredError}
17909
19647
  */
17910
- postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19648
+ postGetProduct: (sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17911
19649
  /**
17912
19650
  * Get Product For Customer
17913
19651
  * @summary Get Product For Customer
17914
19652
  * @param {number} customerId Customer ID
17915
19653
  * @param {string} sku Product SKU
17916
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19654
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
17917
19655
  * @param {*} [options] Override http request option.
17918
19656
  * @throws {RequiredError}
17919
19657
  */
17920
- postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19658
+ postGetProductForCustomer: (customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17921
19659
  };
17922
19660
  /**
17923
19661
  * ProductsApi - functional programming interface
@@ -17991,21 +19729,21 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
17991
19729
  * Get Product
17992
19730
  * @summary Get Product
17993
19731
  * @param {string} sku Product SKU
17994
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19732
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
17995
19733
  * @param {*} [options] Override http request option.
17996
19734
  * @throws {RequiredError}
17997
19735
  */
17998
- postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
19736
+ postGetProduct(sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
17999
19737
  /**
18000
19738
  * Get Product For Customer
18001
19739
  * @summary Get Product For Customer
18002
19740
  * @param {number} customerId Customer ID
18003
19741
  * @param {string} sku Product SKU
18004
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19742
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
18005
19743
  * @param {*} [options] Override http request option.
18006
19744
  * @throws {RequiredError}
18007
19745
  */
18008
- postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
19746
+ postGetProductForCustomer(customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
18009
19747
  };
18010
19748
  /**
18011
19749
  * ProductsApi - factory interface
@@ -18079,21 +19817,21 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
18079
19817
  * Get Product
18080
19818
  * @summary Get Product
18081
19819
  * @param {string} sku Product SKU
18082
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19820
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
18083
19821
  * @param {*} [options] Override http request option.
18084
19822
  * @throws {RequiredError}
18085
19823
  */
18086
- postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
19824
+ postGetProduct(sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
18087
19825
  /**
18088
19826
  * Get Product For Customer
18089
19827
  * @summary Get Product For Customer
18090
19828
  * @param {number} customerId Customer ID
18091
19829
  * @param {string} sku Product SKU
18092
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19830
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
18093
19831
  * @param {*} [options] Override http request option.
18094
19832
  * @throws {RequiredError}
18095
19833
  */
18096
- postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
19834
+ postGetProductForCustomer(customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
18097
19835
  };
18098
19836
  /**
18099
19837
  * ProductsApi - object-oriented interface
@@ -18177,23 +19915,23 @@ export declare class ProductsApi extends BaseAPI {
18177
19915
  * Get Product
18178
19916
  * @summary Get Product
18179
19917
  * @param {string} sku Product SKU
18180
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19918
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
18181
19919
  * @param {*} [options] Override http request option.
18182
19920
  * @throws {RequiredError}
18183
19921
  * @memberof ProductsApi
18184
19922
  */
18185
- postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
19923
+ postGetProduct(sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
18186
19924
  /**
18187
19925
  * Get Product For Customer
18188
19926
  * @summary Get Product For Customer
18189
19927
  * @param {number} customerId Customer ID
18190
19928
  * @param {string} sku Product SKU
18191
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
19929
+ * @param {ProductSearchDTO} [productSearchDTO] Product Search Info
18192
19930
  * @param {*} [options] Override http request option.
18193
19931
  * @throws {RequiredError}
18194
19932
  * @memberof ProductsApi
18195
19933
  */
18196
- postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
19934
+ postGetProductForCustomer(customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
18197
19935
  }
18198
19936
  /**
18199
19937
  * @export