yellowgrid-api-ts 3.0.110-dev.0 → 3.0.110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/.openapi-generator/FILES +195 -212
  2. package/README.md +7 -33
  3. package/api.ts +259 -1791
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/config.json +3 -3
  7. package/configuration.ts +1 -1
  8. package/dist/api.d.ts +150 -1304
  9. package/dist/api.js +208 -1060
  10. package/dist/base.d.ts +1 -1
  11. package/dist/base.js +1 -1
  12. package/dist/common.d.ts +1 -1
  13. package/dist/common.js +1 -1
  14. package/dist/configuration.d.ts +1 -1
  15. package/dist/configuration.js +1 -1
  16. package/dist/index.d.ts +1 -1
  17. package/dist/index.js +1 -1
  18. package/docs/AccountsApi.md +0 -103
  19. package/docs/Class3CXApi.md +55 -0
  20. package/docs/ClientDetailsModel.md +2 -0
  21. package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
  22. package/docs/ItemDTO.md +4 -12
  23. package/docs/ItemEntity.md +0 -2
  24. package/docs/OrderSummaryDTO.md +0 -8
  25. package/docs/OrderTotalModel.md +0 -2
  26. package/docs/OrdersApi.md +4 -301
  27. package/docs/ProductSearchResultsModel.md +1 -1
  28. package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
  29. package/docs/ProductsApi.md +43 -164
  30. package/docs/ProvisioningApi.md +4 -4
  31. package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
  32. package/docs/ShipmentEntity.md +2 -2
  33. package/docs/StockManagementApi.md +2 -2
  34. package/docs/TcxSbcModel.md +1 -1
  35. package/index.ts +1 -1
  36. package/package.json +1 -1
  37. package/docs/AbstractOrderRequestDTO.md +0 -33
  38. package/docs/AccountDetailedSummaryDTO.md +0 -39
  39. package/docs/AdminItemRequestDTO.md +0 -39
  40. package/docs/AdminOrderRequestDTO.md +0 -45
  41. package/docs/AdminUserModel.md +0 -29
  42. package/docs/BasicItemDTO.md +0 -23
  43. package/docs/BasicProductDTO.md +0 -23
  44. package/docs/CourierPriceEntity.md +0 -39
  45. package/docs/CustomerItemRequestDTO.md +0 -35
  46. package/docs/CustomerOrderRequestDTO.md +0 -33
  47. package/docs/LinkedOrderEntity.md +0 -23
  48. package/docs/PostGetProductForCustomerRequest.md +0 -24
  49. package/docs/ShippingApi.md +0 -63
  50. package/docs/ShippingConsignmentModel.md +0 -26
  51. package/docs/ShippingInformationDTO.md +0 -25
  52. package/docs/ShippingServiceDTO.md +0 -23
  53. package/docs/ShippingServiceModel.md +0 -31
  54. package/docs/TcxSbcDTO.md +0 -31
package/dist/api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Yellowgrid
3
- * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
3
+ * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
4
4
  *
5
5
  * The version of the OpenAPI document: 0
6
6
  *
@@ -13,55 +13,6 @@ 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
- * Order Request
18
- * @export
19
- * @interface AbstractOrderRequestDTO
20
- */
21
- export interface AbstractOrderRequestDTO {
22
- /**
23
- * Order Reference
24
- * @type {string}
25
- * @memberof AbstractOrderRequestDTO
26
- */
27
- 'orderReference'?: string | null;
28
- /**
29
- * Items
30
- * @type {Array<CustomerItemRequestDTO>}
31
- * @memberof AbstractOrderRequestDTO
32
- */
33
- 'items'?: Array<CustomerItemRequestDTO>;
34
- /**
35
- *
36
- * @type {ShippingServiceDTO}
37
- * @memberof AbstractOrderRequestDTO
38
- */
39
- 'shippingService'?: ShippingServiceDTO;
40
- /**
41
- * Provisioning URL
42
- * @type {string}
43
- * @memberof AbstractOrderRequestDTO
44
- */
45
- 'provisioningUrl'?: string | null;
46
- /**
47
- *
48
- * @type {AddressModel}
49
- * @memberof AbstractOrderRequestDTO
50
- */
51
- 'shippingAddress'?: AddressModel | null;
52
- /**
53
- * Part Ship Order
54
- * @type {boolean}
55
- * @memberof AbstractOrderRequestDTO
56
- */
57
- 'partShip'?: boolean;
58
- /**
59
- * Quote
60
- * @type {boolean}
61
- * @memberof AbstractOrderRequestDTO
62
- */
63
- 'quote'?: boolean;
64
- }
65
16
  /**
66
17
  * AccountContactsEntity
67
18
  * @export
@@ -293,73 +244,6 @@ export interface AccountContactRequestModel {
293
244
  */
294
245
  'despatchEmails'?: boolean;
295
246
  }
296
- /**
297
- * Account Details
298
- * @export
299
- * @interface AccountDetailedSummaryDTO
300
- */
301
- export interface AccountDetailedSummaryDTO {
302
- /**
303
- * ID
304
- * @type {number}
305
- * @memberof AccountDetailedSummaryDTO
306
- */
307
- 'id'?: number;
308
- /**
309
- * Xero ID
310
- * @type {string}
311
- * @memberof AccountDetailedSummaryDTO
312
- */
313
- 'xeroId'?: string;
314
- /**
315
- * Company
316
- * @type {string}
317
- * @memberof AccountDetailedSummaryDTO
318
- */
319
- 'company'?: string;
320
- /**
321
- * Credit Limit
322
- * @type {number}
323
- * @memberof AccountDetailedSummaryDTO
324
- */
325
- 'creditLimit'?: number;
326
- /**
327
- * Contacts
328
- * @type {Array<AccountContactModel>}
329
- * @memberof AccountDetailedSummaryDTO
330
- */
331
- 'contacts'?: Array<AccountContactModel>;
332
- /**
333
- *
334
- * @type {AddressModel}
335
- * @memberof AccountDetailedSummaryDTO
336
- */
337
- 'billingAddress'?: AddressModel;
338
- /**
339
- * Addresses
340
- * @type {Array<AddressModel>}
341
- * @memberof AccountDetailedSummaryDTO
342
- */
343
- 'addresses'?: Array<AddressModel>;
344
- /**
345
- * Provisioning URLs
346
- * @type {Array<ProvisioningModel>}
347
- * @memberof AccountDetailedSummaryDTO
348
- */
349
- 'provisioningUrls'?: Array<ProvisioningModel>;
350
- /**
351
- * On Hold
352
- * @type {boolean}
353
- * @memberof AccountDetailedSummaryDTO
354
- */
355
- 'onHold'?: boolean;
356
- /**
357
- * Balance (£)
358
- * @type {number}
359
- * @memberof AccountDetailedSummaryDTO
360
- */
361
- 'balance'?: number | null;
362
- }
363
247
  /**
364
248
  * New Account Request
365
249
  * @export
@@ -641,203 +525,6 @@ export interface AddressRequestModel {
641
525
  */
642
526
  'addressPostcode'?: string;
643
527
  }
644
- /**
645
- * Admin Order Item Request
646
- * @export
647
- * @interface AdminItemRequestDTO
648
- */
649
- export interface AdminItemRequestDTO {
650
- /**
651
- * SKU
652
- * @type {string}
653
- * @memberof AdminItemRequestDTO
654
- */
655
- 'sku'?: string;
656
- /**
657
- * Quantity
658
- * @type {number}
659
- * @memberof AdminItemRequestDTO
660
- */
661
- 'quantity'?: number;
662
- /**
663
- * ID
664
- * @type {number}
665
- * @memberof AdminItemRequestDTO
666
- */
667
- 'id'?: number | null;
668
- /**
669
- * 3CX Licence Key
670
- * @type {string}
671
- * @memberof AdminItemRequestDTO
672
- */
673
- 'licenceKey'?: string | null;
674
- /**
675
- * 3CX Hosting
676
- * @type {boolean}
677
- * @memberof AdminItemRequestDTO
678
- */
679
- 'hosting'?: boolean | null;
680
- /**
681
- * Date Time
682
- * @type {string}
683
- * @memberof AdminItemRequestDTO
684
- */
685
- 'processDate'?: string;
686
- /**
687
- * 3CX Sales Code
688
- * @type {string}
689
- * @memberof AdminItemRequestDTO
690
- */
691
- 'tcxSalesCode'?: string | null;
692
- /**
693
- * SBCS
694
- * @type {Array<TcxSbcDTO>}
695
- * @memberof AdminItemRequestDTO
696
- */
697
- 'sbcs'?: Array<TcxSbcDTO>;
698
- /**
699
- * Title
700
- * @type {string}
701
- * @memberof AdminItemRequestDTO
702
- */
703
- 'title'?: string | null;
704
- /**
705
- * Price (£)
706
- * @type {number}
707
- * @memberof AdminItemRequestDTO
708
- */
709
- 'itemPrice'?: number | null;
710
- }
711
- /**
712
- * Admin Order Request
713
- * @export
714
- * @interface AdminOrderRequestDTO
715
- */
716
- export interface AdminOrderRequestDTO {
717
- /**
718
- * Order Reference
719
- * @type {string}
720
- * @memberof AdminOrderRequestDTO
721
- */
722
- 'orderReference'?: string | null;
723
- /**
724
- * Items
725
- * @type {Array<AdminItemRequestDTO>}
726
- * @memberof AdminOrderRequestDTO
727
- */
728
- 'items'?: Array<AdminItemRequestDTO>;
729
- /**
730
- *
731
- * @type {ShippingServiceDTO}
732
- * @memberof AdminOrderRequestDTO
733
- */
734
- 'shippingService'?: ShippingServiceDTO;
735
- /**
736
- * Provisioning URL
737
- * @type {string}
738
- * @memberof AdminOrderRequestDTO
739
- */
740
- 'provisioningUrl'?: string | null;
741
- /**
742
- *
743
- * @type {AddressModel}
744
- * @memberof AdminOrderRequestDTO
745
- */
746
- 'shippingAddress'?: AddressModel;
747
- /**
748
- * Part Ship Order
749
- * @type {boolean}
750
- * @memberof AdminOrderRequestDTO
751
- */
752
- 'partShip'?: boolean;
753
- /**
754
- * Quote
755
- * @type {boolean}
756
- * @memberof AdminOrderRequestDTO
757
- */
758
- 'quote'?: boolean;
759
- /**
760
- * Customer ID
761
- * @type {number}
762
- * @memberof AdminOrderRequestDTO
763
- */
764
- 'customerId'?: number;
765
- /**
766
- * Contact
767
- * @type {string}
768
- * @memberof AdminOrderRequestDTO
769
- */
770
- 'contact'?: string;
771
- /**
772
- * Ignore Customer On Hold
773
- * @type {boolean}
774
- * @memberof AdminOrderRequestDTO
775
- */
776
- 'ignoreOnHold'?: boolean;
777
- /**
778
- * Ignore Customer Credit Limit
779
- * @type {boolean}
780
- * @memberof AdminOrderRequestDTO
781
- */
782
- 'ignoreCreditLimit'?: boolean;
783
- /**
784
- * Include NFR Promos
785
- * @type {boolean}
786
- * @memberof AdminOrderRequestDTO
787
- */
788
- 'includeNfrPromos'?: boolean;
789
- /**
790
- * Carriage Charge
791
- * @type {number}
792
- * @memberof AdminOrderRequestDTO
793
- */
794
- 'carriageCharge'?: number;
795
- }
796
- /**
797
- * Admin User
798
- * @export
799
- * @interface AdminUserModel
800
- */
801
- export interface AdminUserModel {
802
- /**
803
- * First Name
804
- * @type {string}
805
- * @memberof AdminUserModel
806
- */
807
- 'firstName'?: string;
808
- /**
809
- * Last Name
810
- * @type {string}
811
- * @memberof AdminUserModel
812
- */
813
- 'lastName'?: string;
814
- /**
815
- * Avatar
816
- * @type {string}
817
- * @memberof AdminUserModel
818
- */
819
- 'avatar'?: string | null;
820
- /**
821
- * Role
822
- * @type {number}
823
- * @memberof AdminUserModel
824
- */
825
- 'role'?: AdminUserModelRoleEnum;
826
- /**
827
- * Email
828
- * @type {string}
829
- * @memberof AdminUserModel
830
- */
831
- 'email'?: string | null;
832
- }
833
- export declare const AdminUserModelRoleEnum: {
834
- readonly NUMBER_0: 0;
835
- readonly NUMBER_1: 1;
836
- readonly NUMBER_2: 2;
837
- readonly NUMBER_3: 3;
838
- readonly NUMBER_4: 4;
839
- };
840
- export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
841
528
  /**
842
529
  * Agent Hours Graph
843
530
  * @export
@@ -1067,44 +754,6 @@ export interface AuthCodeResponseModel {
1067
754
  */
1068
755
  'redirect_uri'?: string | null;
1069
756
  }
1070
- /**
1071
- * Basic Order Item
1072
- * @export
1073
- * @interface BasicItemDTO
1074
- */
1075
- export interface BasicItemDTO {
1076
- /**
1077
- * SKU
1078
- * @type {string}
1079
- * @memberof BasicItemDTO
1080
- */
1081
- 'sku'?: string;
1082
- /**
1083
- * Quantity
1084
- * @type {number}
1085
- * @memberof BasicItemDTO
1086
- */
1087
- 'quantity'?: number;
1088
- }
1089
- /**
1090
- * Basic Product
1091
- * @export
1092
- * @interface BasicProductDTO
1093
- */
1094
- export interface BasicProductDTO {
1095
- /**
1096
- * SKU
1097
- * @type {string}
1098
- * @memberof BasicProductDTO
1099
- */
1100
- 'sku'?: string;
1101
- /**
1102
- * Title
1103
- * @type {string}
1104
- * @memberof BasicProductDTO
1105
- */
1106
- 'title'?: string;
1107
- }
1108
757
  /**
1109
758
  * BatchesEntity
1110
759
  * @export
@@ -1299,6 +948,12 @@ export interface ClientDetailsModel {
1299
948
  * @memberof ClientDetailsModel
1300
949
  */
1301
950
  'lastName'?: string;
951
+ /**
952
+ * User Profile Picture
953
+ * @type {string}
954
+ * @memberof ClientDetailsModel
955
+ */
956
+ 'image'?: string | null;
1302
957
  }
1303
958
  /**
1304
959
  * OAuth client details
@@ -1460,73 +1115,6 @@ export interface ConversationModel {
1460
1115
  */
1461
1116
  'attachments'?: Array<AttachmentModel>;
1462
1117
  }
1463
- /**
1464
- * CourierPricesEntity
1465
- * @export
1466
- * @interface CourierPriceEntity
1467
- */
1468
- export interface CourierPriceEntity {
1469
- /**
1470
- * id
1471
- * @type {number}
1472
- * @memberof CourierPriceEntity
1473
- */
1474
- 'id'?: number;
1475
- /**
1476
- * courier
1477
- * @type {string}
1478
- * @memberof CourierPriceEntity
1479
- */
1480
- 'courier'?: string;
1481
- /**
1482
- * destinationIso
1483
- * @type {string}
1484
- * @memberof CourierPriceEntity
1485
- */
1486
- 'destinationIso'?: string;
1487
- /**
1488
- * serviceDescription
1489
- * @type {string}
1490
- * @memberof CourierPriceEntity
1491
- */
1492
- 'serviceDescription'?: string;
1493
- /**
1494
- * flatRate
1495
- * @type {number}
1496
- * @memberof CourierPriceEntity
1497
- */
1498
- 'flatRate'?: number;
1499
- /**
1500
- * initialBox
1501
- * @type {number}
1502
- * @memberof CourierPriceEntity
1503
- */
1504
- 'initialBox'?: number;
1505
- /**
1506
- * initialKg
1507
- * @type {number}
1508
- * @memberof CourierPriceEntity
1509
- */
1510
- 'initialKg'?: number;
1511
- /**
1512
- * perBox
1513
- * @type {number}
1514
- * @memberof CourierPriceEntity
1515
- */
1516
- 'perBox'?: number;
1517
- /**
1518
- * perKg
1519
- * @type {number}
1520
- * @memberof CourierPriceEntity
1521
- */
1522
- 'perKg'?: number;
1523
- /**
1524
- * maxKg
1525
- * @type {number}
1526
- * @memberof CourierPriceEntity
1527
- */
1528
- 'maxKg'?: number;
1529
- }
1530
1118
  /**
1531
1119
  * Credit Account
1532
1120
  * @export
@@ -1709,110 +1297,6 @@ export interface CustomerInformationModel {
1709
1297
  */
1710
1298
  'contactLastName'?: string;
1711
1299
  }
1712
- /**
1713
- * Order Item Request
1714
- * @export
1715
- * @interface CustomerItemRequestDTO
1716
- */
1717
- export interface CustomerItemRequestDTO {
1718
- /**
1719
- * SKU
1720
- * @type {string}
1721
- * @memberof CustomerItemRequestDTO
1722
- */
1723
- 'sku'?: string;
1724
- /**
1725
- * Quantity
1726
- * @type {number}
1727
- * @memberof CustomerItemRequestDTO
1728
- */
1729
- 'quantity'?: number;
1730
- /**
1731
- * ID
1732
- * @type {number}
1733
- * @memberof CustomerItemRequestDTO
1734
- */
1735
- 'id'?: number | null;
1736
- /**
1737
- * 3CX Licence Key
1738
- * @type {string}
1739
- * @memberof CustomerItemRequestDTO
1740
- */
1741
- 'licenceKey'?: string | null;
1742
- /**
1743
- * 3CX Hosting
1744
- * @type {boolean}
1745
- * @memberof CustomerItemRequestDTO
1746
- */
1747
- 'hosting'?: boolean | null;
1748
- /**
1749
- * Date Time
1750
- * @type {string}
1751
- * @memberof CustomerItemRequestDTO
1752
- */
1753
- 'processDate'?: string;
1754
- /**
1755
- * 3CX Sales Code
1756
- * @type {string}
1757
- * @memberof CustomerItemRequestDTO
1758
- */
1759
- 'tcxSalesCode'?: string | null;
1760
- /**
1761
- * SBCS
1762
- * @type {Array<TcxSbcDTO>}
1763
- * @memberof CustomerItemRequestDTO
1764
- */
1765
- 'sbcs'?: Array<TcxSbcDTO>;
1766
- }
1767
- /**
1768
- * Order Request
1769
- * @export
1770
- * @interface CustomerOrderRequestDTO
1771
- */
1772
- export interface CustomerOrderRequestDTO {
1773
- /**
1774
- * Order Reference
1775
- * @type {string}
1776
- * @memberof CustomerOrderRequestDTO
1777
- */
1778
- 'orderReference'?: string | null;
1779
- /**
1780
- * Items
1781
- * @type {Array<CustomerItemRequestDTO>}
1782
- * @memberof CustomerOrderRequestDTO
1783
- */
1784
- 'items'?: Array<CustomerItemRequestDTO>;
1785
- /**
1786
- *
1787
- * @type {ShippingServiceDTO}
1788
- * @memberof CustomerOrderRequestDTO
1789
- */
1790
- 'shippingService'?: ShippingServiceDTO;
1791
- /**
1792
- * Provisioning URL
1793
- * @type {string}
1794
- * @memberof CustomerOrderRequestDTO
1795
- */
1796
- 'provisioningUrl'?: string | null;
1797
- /**
1798
- *
1799
- * @type {AddressModel}
1800
- * @memberof CustomerOrderRequestDTO
1801
- */
1802
- 'shippingAddress'?: AddressModel;
1803
- /**
1804
- * Part Ship Order
1805
- * @type {boolean}
1806
- * @memberof CustomerOrderRequestDTO
1807
- */
1808
- 'partShip'?: boolean;
1809
- /**
1810
- * Quote
1811
- * @type {boolean}
1812
- * @memberof CustomerOrderRequestDTO
1813
- */
1814
- 'quote'?: boolean;
1815
- }
1816
1300
  /**
1817
1301
  * Customer Price List
1818
1302
  * @export
@@ -2319,6 +1803,19 @@ export interface GenericFileModel {
2319
1803
  */
2320
1804
  'type'?: string;
2321
1805
  }
1806
+ /**
1807
+ *
1808
+ * @export
1809
+ * @interface GetGetPasswordHash200Response
1810
+ */
1811
+ export interface GetGetPasswordHash200Response {
1812
+ /**
1813
+ *
1814
+ * @type {string}
1815
+ * @memberof GetGetPasswordHash200Response
1816
+ */
1817
+ 'hash'?: string;
1818
+ }
2322
1819
  /**
2323
1820
  *
2324
1821
  * @export
@@ -2913,36 +2410,36 @@ export interface InstanceUserCredentialsEntity {
2913
2410
  * @interface ItemDTO
2914
2411
  */
2915
2412
  export interface ItemDTO {
2916
- /**
2917
- * SKU
2918
- * @type {string}
2919
- * @memberof ItemDTO
2920
- */
2921
- 'sku'?: string;
2922
- /**
2923
- * Quantity
2924
- * @type {number}
2925
- * @memberof ItemDTO
2926
- */
2927
- 'quantity'?: number;
2928
2413
  /**
2929
2414
  * ID
2930
2415
  * @type {number}
2931
2416
  * @memberof ItemDTO
2932
2417
  */
2933
- 'id'?: number | null;
2418
+ 'id'?: number;
2934
2419
  /**
2935
2420
  * Order ID
2936
2421
  * @type {number}
2937
2422
  * @memberof ItemDTO
2938
2423
  */
2939
- 'orderId'?: number | null;
2424
+ 'orderId'?: number;
2940
2425
  /**
2941
2426
  * Title
2942
2427
  * @type {string}
2943
2428
  * @memberof ItemDTO
2944
2429
  */
2945
2430
  'title'?: string;
2431
+ /**
2432
+ * SKU
2433
+ * @type {string}
2434
+ * @memberof ItemDTO
2435
+ */
2436
+ 'sku'?: string;
2437
+ /**
2438
+ * Quantity
2439
+ * @type {number}
2440
+ * @memberof ItemDTO
2441
+ */
2442
+ 'quantity'?: number;
2946
2443
  /**
2947
2444
  * Price
2948
2445
  * @type {number}
@@ -2967,12 +2464,6 @@ export interface ItemDTO {
2967
2464
  * @memberof ItemDTO
2968
2465
  */
2969
2466
  'processDate'?: string;
2970
- /**
2971
- * 3CX Hosting
2972
- * @type {boolean}
2973
- * @memberof ItemDTO
2974
- */
2975
- 'hosting'?: boolean | null;
2976
2467
  /**
2977
2468
  * Promo Item
2978
2469
  * @type {boolean}
@@ -2984,25 +2475,7 @@ export interface ItemDTO {
2984
2475
  * @type {number}
2985
2476
  * @memberof ItemDTO
2986
2477
  */
2987
- 'refunded'?: number | null;
2988
- /**
2989
- * SBCs
2990
- * @type {Array<TcxSbcDTO>}
2991
- * @memberof ItemDTO
2992
- */
2993
- 'sbcs'?: Array<TcxSbcDTO> | null;
2994
- /**
2995
- * Readonly
2996
- * @type {boolean}
2997
- * @memberof ItemDTO
2998
- */
2999
- 'readonly'?: boolean;
3000
- /**
3001
- * 3CX Sales Code
3002
- * @type {string}
3003
- * @memberof ItemDTO
3004
- */
3005
- 'tcxSalesCode'?: string | null;
2478
+ 'refunded'?: number;
3006
2479
  }
3007
2480
  /**
3008
2481
  * ItemsEntity
@@ -3136,31 +2609,6 @@ export interface ItemEntity {
3136
2609
  * @memberof ItemEntity
3137
2610
  */
3138
2611
  'promoItem'?: number;
3139
- /**
3140
- * 3CX Sales Code
3141
- * @type {string}
3142
- * @memberof ItemEntity
3143
- */
3144
- 'tcxSalesCode'?: string | null;
3145
- }
3146
- /**
3147
- * LinkedOrdersEntity
3148
- * @export
3149
- * @interface LinkedOrderEntity
3150
- */
3151
- export interface LinkedOrderEntity {
3152
- /**
3153
- * orderId
3154
- * @type {number}
3155
- * @memberof LinkedOrderEntity
3156
- */
3157
- 'orderId'?: number;
3158
- /**
3159
- * linkedOrderId
3160
- * @type {number}
3161
- * @memberof LinkedOrderEntity
3162
- */
3163
- 'linkedOrderId'?: number;
3164
2612
  }
3165
2613
  /**
3166
2614
  * MFA Required
@@ -3814,19 +3262,13 @@ export interface OrderSummaryDTO {
3814
3262
  * @type {string}
3815
3263
  * @memberof OrderSummaryDTO
3816
3264
  */
3817
- 'reference'?: string | null;
3265
+ 'reference'?: string;
3818
3266
  /**
3819
3267
  * Invoice Number
3820
3268
  * @type {string}
3821
3269
  * @memberof OrderSummaryDTO
3822
3270
  */
3823
3271
  'invoiceNumber'?: string;
3824
- /**
3825
- * Invoice ID
3826
- * @type {string}
3827
- * @memberof OrderSummaryDTO
3828
- */
3829
- 'invoiceId'?: string | null;
3830
3272
  /**
3831
3273
  * Date Time
3832
3274
  * @type {string}
@@ -3881,24 +3323,6 @@ export interface OrderSummaryDTO {
3881
3323
  * @memberof OrderSummaryDTO
3882
3324
  */
3883
3325
  'fulfillable'?: boolean | null;
3884
- /**
3885
- * Provisioning URL
3886
- * @type {string}
3887
- * @memberof OrderSummaryDTO
3888
- */
3889
- 'provisioningUrl'?: string | null;
3890
- /**
3891
- *
3892
- * @type {ShippingServiceDTO}
3893
- * @memberof OrderSummaryDTO
3894
- */
3895
- 'shippingService'?: ShippingServiceDTO | null;
3896
- /**
3897
- * Readonly
3898
- * @type {boolean}
3899
- * @memberof OrderSummaryDTO
3900
- */
3901
- 'readonly'?: boolean;
3902
3326
  }
3903
3327
  /**
3904
3328
  * Order Totals
@@ -3948,12 +3372,6 @@ export interface OrderTotalModel {
3948
3372
  * @memberof OrderTotalModel
3949
3373
  */
3950
3374
  'currency'?: OrderTotalModelCurrencyEnum;
3951
- /**
3952
- * Delivery
3953
- * @type {number}
3954
- * @memberof OrderTotalModel
3955
- */
3956
- 'delivery'?: number | null;
3957
3375
  }
3958
3376
  export declare const OrderTotalModelCurrencyEnum: {
3959
3377
  readonly Eur: "EUR";
@@ -4332,31 +3750,6 @@ export interface PostGetClientCredentialsRequest {
4332
3750
  */
4333
3751
  'scopes'?: Array<string>;
4334
3752
  }
4335
- /**
4336
- *
4337
- * @export
4338
- * @interface PostGetProductForCustomerRequest
4339
- */
4340
- export interface PostGetProductForCustomerRequest {
4341
- /**
4342
- * Quantity
4343
- * @type {number}
4344
- * @memberof PostGetProductForCustomerRequest
4345
- */
4346
- 'quantity'?: number | null;
4347
- /**
4348
- * 3CX Licence Key
4349
- * @type {string}
4350
- * @memberof PostGetProductForCustomerRequest
4351
- */
4352
- 'licenceKey'?: string | null;
4353
- /**
4354
- * 3CX Hosting
4355
- * @type {boolean}
4356
- * @memberof PostGetProductForCustomerRequest
4357
- */
4358
- 'hosting'?: boolean | null;
4359
- }
4360
3753
  /**
4361
3754
  * Price & Stock List
4362
3755
  * @export
@@ -4445,10 +3838,10 @@ export interface PrizesEntity {
4445
3838
  export interface ProductSearchResultsModel {
4446
3839
  /**
4447
3840
  * Results
4448
- * @type {Array<ProductSummaryDTO>}
3841
+ * @type {Array<ProductSummaryModel>}
4449
3842
  * @memberof ProductSearchResultsModel
4450
3843
  */
4451
- 'results'?: Array<ProductSummaryDTO>;
3844
+ 'results'?: Array<ProductSummaryModel>;
4452
3845
  }
4453
3846
  /**
4454
3847
  * Product Serial Info
@@ -4484,51 +3877,45 @@ export interface ProductSerialInfoModel {
4484
3877
  /**
4485
3878
  * Product Summary
4486
3879
  * @export
4487
- * @interface ProductSummaryDTO
3880
+ * @interface ProductSummaryModel
4488
3881
  */
4489
- export interface ProductSummaryDTO {
3882
+ export interface ProductSummaryModel {
4490
3883
  /**
4491
3884
  * SKU
4492
3885
  * @type {string}
4493
- * @memberof ProductSummaryDTO
3886
+ * @memberof ProductSummaryModel
4494
3887
  */
4495
3888
  'sku'?: string;
4496
3889
  /**
4497
3890
  * Title
4498
3891
  * @type {string}
4499
- * @memberof ProductSummaryDTO
3892
+ * @memberof ProductSummaryModel
4500
3893
  */
4501
3894
  'title'?: string;
4502
3895
  /**
4503
3896
  * Stock Quantity
4504
3897
  * @type {number}
4505
- * @memberof ProductSummaryDTO
3898
+ * @memberof ProductSummaryModel
4506
3899
  */
4507
3900
  'quantity'?: number | null;
4508
3901
  /**
4509
3902
  * Stock Product
4510
3903
  * @type {boolean}
4511
- * @memberof ProductSummaryDTO
3904
+ * @memberof ProductSummaryModel
4512
3905
  */
4513
3906
  'stockProduct'?: boolean;
4514
3907
  /**
4515
3908
  * Price
4516
3909
  * @type {number}
4517
- * @memberof ProductSummaryDTO
3910
+ * @memberof ProductSummaryModel
4518
3911
  */
4519
3912
  'price'?: number | null;
4520
3913
  /**
4521
3914
  * Carton Size
4522
3915
  * @type {number}
4523
- * @memberof ProductSummaryDTO
3916
+ * @memberof ProductSummaryModel
4524
3917
  */
4525
3918
  'cartonSize'?: number | null;
4526
- /**
4527
- * RRP Price
4528
- * @type {number}
4529
- * @memberof ProductSummaryDTO
4530
- */
4531
- 'rrp'?: number | null;
4532
3919
  }
4533
3920
  /**
4534
3921
  * PromoCodesEntity
@@ -4667,37 +4054,37 @@ export interface PromoItemsEntity {
4667
4054
  /**
4668
4055
  * Provisioning Group
4669
4056
  * @export
4670
- * @interface ProvisioningModel
4057
+ * @interface ProvisioningEntity
4671
4058
  */
4672
- export interface ProvisioningModel {
4059
+ export interface ProvisioningEntity {
4673
4060
  /**
4674
4061
  * Provisioning Group Name
4675
4062
  * @type {string}
4676
- * @memberof ProvisioningModel
4063
+ * @memberof ProvisioningEntity
4677
4064
  */
4678
4065
  'groupName'?: string;
4679
4066
  /**
4680
4067
  * Provisioning URL (Static Provisioning Server)
4681
4068
  * @type {string}
4682
- * @memberof ProvisioningModel
4069
+ * @memberof ProvisioningEntity
4683
4070
  */
4684
4071
  'provisioningUrl'?: string;
4685
4072
  /**
4686
4073
  * Additional Authentication Secret
4687
4074
  * @type {string}
4688
- * @memberof ProvisioningModel
4075
+ * @memberof ProvisioningEntity
4689
4076
  */
4690
4077
  'auth'?: string;
4691
4078
  /**
4692
4079
  * Provisioning Group ID
4693
4080
  * @type {number}
4694
- * @memberof ProvisioningModel
4081
+ * @memberof ProvisioningEntity
4695
4082
  */
4696
4083
  'id'?: number;
4697
4084
  /**
4698
4085
  * Owner ID
4699
4086
  * @type {number}
4700
- * @memberof ProvisioningModel
4087
+ * @memberof ProvisioningEntity
4701
4088
  */
4702
4089
  'customerId'?: number;
4703
4090
  }
@@ -5051,7 +4438,7 @@ export interface ShipmentEntity {
5051
4438
  * @type {string}
5052
4439
  * @memberof ShipmentEntity
5053
4440
  */
5054
- 'dateShipped'?: string;
4441
+ 'date'?: string;
5055
4442
  /**
5056
4443
  * requestDate
5057
4444
  * @type {string}
@@ -5102,149 +4489,6 @@ export interface ShipmentItemEntity {
5102
4489
  */
5103
4490
  'itemId'?: string;
5104
4491
  }
5105
- /**
5106
- *
5107
- * @export
5108
- * @interface ShippingConsignmentModel
5109
- */
5110
- export interface ShippingConsignmentModel {
5111
- /**
5112
- *
5113
- * @type {ShippingServiceModel}
5114
- * @memberof ShippingConsignmentModel
5115
- */
5116
- 'service'?: ShippingServiceModel;
5117
- /**
5118
- * ID/Number
5119
- * @type {string}
5120
- * @memberof ShippingConsignmentModel
5121
- */
5122
- 'id'?: string;
5123
- /**
5124
- * Tracking Number
5125
- * @type {string}
5126
- * @memberof ShippingConsignmentModel
5127
- */
5128
- 'trackingNumber'?: string;
5129
- /**
5130
- * Parcels
5131
- * @type {Array<string>}
5132
- * @memberof ShippingConsignmentModel
5133
- */
5134
- 'parcelIds'?: Array<string>;
5135
- }
5136
- /**
5137
- * Shipping Information
5138
- * @export
5139
- * @interface ShippingInformationDTO
5140
- */
5141
- export interface ShippingInformationDTO {
5142
- /**
5143
- * Items
5144
- * @type {Array<BasicItemDTO>}
5145
- * @memberof ShippingInformationDTO
5146
- */
5147
- 'items'?: Array<BasicItemDTO>;
5148
- /**
5149
- * Destination Post Code
5150
- * @type {string}
5151
- * @memberof ShippingInformationDTO
5152
- */
5153
- 'postalCode'?: string;
5154
- /**
5155
- * Destination ISO
5156
- * @type {string}
5157
- * @memberof ShippingInformationDTO
5158
- */
5159
- 'iso'?: string;
5160
- }
5161
- /**
5162
- * Shipping Service
5163
- * @export
5164
- * @interface ShippingServiceDTO
5165
- */
5166
- export interface ShippingServiceDTO {
5167
- /**
5168
- * Courier
5169
- * @type {string}
5170
- * @memberof ShippingServiceDTO
5171
- */
5172
- 'courier'?: ShippingServiceDTOCourierEnum;
5173
- /**
5174
- * Service Name
5175
- * @type {string}
5176
- * @memberof ShippingServiceDTO
5177
- */
5178
- 'serviceName'?: string;
5179
- }
5180
- export declare const ShippingServiceDTOCourierEnum: {
5181
- readonly Dpd: "DPD";
5182
- readonly ChorltonPallet: "Chorlton Pallet";
5183
- readonly Pops: "POPS";
5184
- };
5185
- export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
5186
- /**
5187
- * Shipping Service
5188
- * @export
5189
- * @interface ShippingServiceModel
5190
- */
5191
- export interface ShippingServiceModel {
5192
- /**
5193
- * Courier
5194
- * @type {string}
5195
- * @memberof ShippingServiceModel
5196
- */
5197
- 'courier'?: ShippingServiceModelCourierEnum;
5198
- /**
5199
- * Code
5200
- * @type {string}
5201
- * @memberof ShippingServiceModel
5202
- */
5203
- 'code'?: string;
5204
- /**
5205
- * Name
5206
- * @type {string}
5207
- * @memberof ShippingServiceModel
5208
- */
5209
- 'name'?: string;
5210
- /**
5211
- * Description
5212
- * @type {string}
5213
- * @memberof ShippingServiceModel
5214
- */
5215
- 'description'?: string;
5216
- /**
5217
- * Label
5218
- * @type {string}
5219
- * @memberof ShippingServiceModel
5220
- */
5221
- 'label'?: string | null;
5222
- /**
5223
- * Price
5224
- * @type {number}
5225
- * @memberof ShippingServiceModel
5226
- */
5227
- 'price'?: number | null;
5228
- }
5229
- export declare const ShippingServiceModelCourierEnum: {
5230
- readonly Dpd: "DPD";
5231
- readonly ChorltonPallet: "Chorlton Pallet";
5232
- readonly Pops: "POPS";
5233
- };
5234
- export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
5235
- /**
5236
- *
5237
- * @export
5238
- * @interface ShippingServicesModel
5239
- */
5240
- export interface ShippingServicesModel {
5241
- /**
5242
- * Services
5243
- * @type {Array<ShippingServiceModel>}
5244
- * @memberof ShippingServicesModel
5245
- */
5246
- 'services'?: Array<ShippingServiceModel>;
5247
- }
5248
4492
  /**
5249
4493
  * Change Response
5250
4494
  * @export
@@ -8064,49 +7308,6 @@ export interface TcxRemoteStorageModel {
8064
7308
  */
8065
7309
  'secretAccessKey'?: string;
8066
7310
  }
8067
- /**
8068
- * SBC Data
8069
- * @export
8070
- * @interface TcxSbcDTO
8071
- */
8072
- export interface TcxSbcDTO {
8073
- /**
8074
- * LAN IP Address
8075
- * @type {string}
8076
- * @memberof TcxSbcDTO
8077
- */
8078
- 'ipAddress'?: string;
8079
- /**
8080
- * LAN Default Gateway
8081
- * @type {string}
8082
- * @memberof TcxSbcDTO
8083
- */
8084
- 'defaultGateway'?: string;
8085
- /**
8086
- * LAN Subnet Mask
8087
- * @type {string}
8088
- * @memberof TcxSbcDTO
8089
- */
8090
- 'netmask'?: string;
8091
- /**
8092
- * DNS
8093
- * @type {string}
8094
- * @memberof TcxSbcDTO
8095
- */
8096
- 'dns'?: string;
8097
- /**
8098
- * 3CX URL
8099
- * @type {string}
8100
- * @memberof TcxSbcDTO
8101
- */
8102
- 'tcxUrl'?: string;
8103
- /**
8104
- * 3CX SBC Key
8105
- * @type {string}
8106
- * @memberof TcxSbcDTO
8107
- */
8108
- 'tcxKey'?: string;
8109
- }
8110
7311
  /**
8111
7312
  * 3CX Wizard SBC
8112
7313
  * @export
@@ -8211,7 +7412,7 @@ export interface TcxSbcEntity {
8211
7412
  'technicalContact'?: string;
8212
7413
  }
8213
7414
  /**
8214
- * 3CX Wizard SBC
7415
+ * 3CX SBC Model
8215
7416
  * @export
8216
7417
  * @interface TcxSbcModel
8217
7418
  */
@@ -9289,14 +8490,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
9289
8490
  * @throws {RequiredError}
9290
8491
  */
9291
8492
  getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9292
- /**
9293
- * Get Account Detailed Summary
9294
- * @summary Get Account Detailed Summary
9295
- * @param {number} id Customer ID
9296
- * @param {*} [options] Override http request option.
9297
- * @throws {RequiredError}
9298
- */
9299
- getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9300
8493
  /**
9301
8494
  * Get Accounts
9302
8495
  * @summary Get Accounts
@@ -9362,13 +8555,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
9362
8555
  * @throws {RequiredError}
9363
8556
  */
9364
8557
  postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9365
- /**
9366
- * Get Admin Account
9367
- * @summary Get Admin Account
9368
- * @param {*} [options] Override http request option.
9369
- * @throws {RequiredError}
9370
- */
9371
- postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9372
8558
  /**
9373
8559
  * Create client credentials
9374
8560
  * @summary Create client credentials
@@ -9449,14 +8635,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
9449
8635
  * @throws {RequiredError}
9450
8636
  */
9451
8637
  getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
9452
- /**
9453
- * Get Account Detailed Summary
9454
- * @summary Get Account Detailed Summary
9455
- * @param {number} id Customer ID
9456
- * @param {*} [options] Override http request option.
9457
- * @throws {RequiredError}
9458
- */
9459
- getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
9460
8638
  /**
9461
8639
  * Get Accounts
9462
8640
  * @summary Get Accounts
@@ -9522,13 +8700,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
9522
8700
  * @throws {RequiredError}
9523
8701
  */
9524
8702
  postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
9525
- /**
9526
- * Get Admin Account
9527
- * @summary Get Admin Account
9528
- * @param {*} [options] Override http request option.
9529
- * @throws {RequiredError}
9530
- */
9531
- postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
9532
8703
  /**
9533
8704
  * Create client credentials
9534
8705
  * @summary Create client credentials
@@ -9609,14 +8780,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
9609
8780
  * @throws {RequiredError}
9610
8781
  */
9611
8782
  getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
9612
- /**
9613
- * Get Account Detailed Summary
9614
- * @summary Get Account Detailed Summary
9615
- * @param {number} id Customer ID
9616
- * @param {*} [options] Override http request option.
9617
- * @throws {RequiredError}
9618
- */
9619
- getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
9620
8783
  /**
9621
8784
  * Get Accounts
9622
8785
  * @summary Get Accounts
@@ -9682,13 +8845,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
9682
8845
  * @throws {RequiredError}
9683
8846
  */
9684
8847
  postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
9685
- /**
9686
- * Get Admin Account
9687
- * @summary Get Admin Account
9688
- * @param {*} [options] Override http request option.
9689
- * @throws {RequiredError}
9690
- */
9691
- postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
9692
8848
  /**
9693
8849
  * Create client credentials
9694
8850
  * @summary Create client credentials
@@ -9767,23 +8923,14 @@ export declare class AccountsApi extends BaseAPI {
9767
8923
  */
9768
8924
  getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
9769
8925
  /**
9770
- * Get Account Contacts
9771
- * @summary Get Account Contacts
9772
- * @param {string} [email] Contact Email Address
9773
- * @param {*} [options] Override http request option.
9774
- * @throws {RequiredError}
9775
- * @memberof AccountsApi
9776
- */
9777
- getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
9778
- /**
9779
- * Get Account Detailed Summary
9780
- * @summary Get Account Detailed Summary
9781
- * @param {number} id Customer ID
8926
+ * Get Account Contacts
8927
+ * @summary Get Account Contacts
8928
+ * @param {string} [email] Contact Email Address
9782
8929
  * @param {*} [options] Override http request option.
9783
8930
  * @throws {RequiredError}
9784
8931
  * @memberof AccountsApi
9785
8932
  */
9786
- getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
8933
+ getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
9787
8934
  /**
9788
8935
  * Get Accounts
9789
8936
  * @summary Get Accounts
@@ -9857,14 +9004,6 @@ export declare class AccountsApi extends BaseAPI {
9857
9004
  * @memberof AccountsApi
9858
9005
  */
9859
9006
  postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
9860
- /**
9861
- * Get Admin Account
9862
- * @summary Get Admin Account
9863
- * @param {*} [options] Override http request option.
9864
- * @throws {RequiredError}
9865
- * @memberof AccountsApi
9866
- */
9867
- postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
9868
9007
  /**
9869
9008
  * Create client credentials
9870
9009
  * @summary Create client credentials
@@ -9927,6 +9066,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
9927
9066
  * @throws {RequiredError}
9928
9067
  */
9929
9068
  getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9069
+ /**
9070
+ * Generate a 3CX hashed password for 3CX installation
9071
+ * @summary Convert a password to a hashed 3CX password
9072
+ * @param {string} password Desired 3CX web access password
9073
+ * @param {*} [options] Override http request option.
9074
+ * @throws {RequiredError}
9075
+ */
9076
+ getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9930
9077
  /**
9931
9078
  * Get Bulk 3CX Licence Details
9932
9079
  * @summary Get bulk 3CX Licence Details
@@ -9949,6 +9096,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
9949
9096
  * @throws {RequiredError}
9950
9097
  */
9951
9098
  getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
9099
+ /**
9100
+ * Generate a 3CX hashed password for 3CX installation
9101
+ * @summary Convert a password to a hashed 3CX password
9102
+ * @param {string} password Desired 3CX web access password
9103
+ * @param {*} [options] Override http request option.
9104
+ * @throws {RequiredError}
9105
+ */
9106
+ getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
9952
9107
  /**
9953
9108
  * Get Bulk 3CX Licence Details
9954
9109
  * @summary Get bulk 3CX Licence Details
@@ -9971,6 +9126,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
9971
9126
  * @throws {RequiredError}
9972
9127
  */
9973
9128
  getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
9129
+ /**
9130
+ * Generate a 3CX hashed password for 3CX installation
9131
+ * @summary Convert a password to a hashed 3CX password
9132
+ * @param {string} password Desired 3CX web access password
9133
+ * @param {*} [options] Override http request option.
9134
+ * @throws {RequiredError}
9135
+ */
9136
+ getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
9974
9137
  /**
9975
9138
  * Get Bulk 3CX Licence Details
9976
9139
  * @summary Get bulk 3CX Licence Details
@@ -9996,6 +9159,15 @@ export declare class Class3CXApi extends BaseAPI {
9996
9159
  * @memberof Class3CXApi
9997
9160
  */
9998
9161
  getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
9162
+ /**
9163
+ * Generate a 3CX hashed password for 3CX installation
9164
+ * @summary Convert a password to a hashed 3CX password
9165
+ * @param {string} password Desired 3CX web access password
9166
+ * @param {*} [options] Override http request option.
9167
+ * @throws {RequiredError}
9168
+ * @memberof Class3CXApi
9169
+ */
9170
+ getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
9999
9171
  /**
10000
9172
  * Get Bulk 3CX Licence Details
10001
9173
  * @summary Get bulk 3CX Licence Details
@@ -12525,19 +11697,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
12525
11697
  export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
12526
11698
  /**
12527
11699
  * Delete Orders
12528
- * @summary Delete Orders
12529
- * @param {number} id Order ID
12530
- * @param {*} [options] Override http request option.
12531
- * @throws {RequiredError}
12532
- */
12533
- deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12534
- /**
12535
- * Get Editable Order
12536
11700
  * @param {number} id Order ID
12537
11701
  * @param {*} [options] Override http request option.
12538
11702
  * @throws {RequiredError}
12539
11703
  */
12540
- getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11704
+ deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12541
11705
  /**
12542
11706
  * Get Orders
12543
11707
  * @summary Get Orders
@@ -12552,44 +11716,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
12552
11716
  * @throws {RequiredError}
12553
11717
  */
12554
11718
  getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12555
- /**
12556
- * Create An Order (Admin)
12557
- * @summary Create An Order (Admin)
12558
- * @param {boolean} [readonly] Readonly Order
12559
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
12560
- * @param {*} [options] Override http request option.
12561
- * @throws {RequiredError}
12562
- */
12563
- postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12564
- /**
12565
- * Create An Order
12566
- * @summary Create An Order
12567
- * @param {boolean} [readonly] Readonly Order
12568
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12569
- * @param {*} [options] Override http request option.
12570
- * @throws {RequiredError}
12571
- */
12572
- postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12573
- /**
12574
- * Update An Order (Admin)
12575
- * @summary Update An Order (Admin)
12576
- * @param {number} id Order ID
12577
- * @param {boolean} [readonly] Readonly Order
12578
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
12579
- * @param {*} [options] Override http request option.
12580
- * @throws {RequiredError}
12581
- */
12582
- putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12583
- /**
12584
- * Update An Order
12585
- * @summary Update An Order
12586
- * @param {number} id Order ID
12587
- * @param {boolean} [readonly] Readonly Order
12588
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12589
- * @param {*} [options] Override http request option.
12590
- * @throws {RequiredError}
12591
- */
12592
- putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12593
11719
  };
12594
11720
  /**
12595
11721
  * OrdersApi - functional programming interface
@@ -12598,19 +11724,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
12598
11724
  export declare const OrdersApiFp: (configuration?: Configuration) => {
12599
11725
  /**
12600
11726
  * Delete Orders
12601
- * @summary Delete Orders
12602
- * @param {number} id Order ID
12603
- * @param {*} [options] Override http request option.
12604
- * @throws {RequiredError}
12605
- */
12606
- deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12607
- /**
12608
- * Get Editable Order
12609
11727
  * @param {number} id Order ID
12610
11728
  * @param {*} [options] Override http request option.
12611
11729
  * @throws {RequiredError}
12612
11730
  */
12613
- getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummaryDTO>>;
11731
+ deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
12614
11732
  /**
12615
11733
  * Get Orders
12616
11734
  * @summary Get Orders
@@ -12625,44 +11743,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
12625
11743
  * @throws {RequiredError}
12626
11744
  */
12627
11745
  getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummariesModel>>;
12628
- /**
12629
- * Create An Order (Admin)
12630
- * @summary Create An Order (Admin)
12631
- * @param {boolean} [readonly] Readonly Order
12632
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
12633
- * @param {*} [options] Override http request option.
12634
- * @throws {RequiredError}
12635
- */
12636
- postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
12637
- /**
12638
- * Create An Order
12639
- * @summary Create An Order
12640
- * @param {boolean} [readonly] Readonly Order
12641
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12642
- * @param {*} [options] Override http request option.
12643
- * @throws {RequiredError}
12644
- */
12645
- postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
12646
- /**
12647
- * Update An Order (Admin)
12648
- * @summary Update An Order (Admin)
12649
- * @param {number} id Order ID
12650
- * @param {boolean} [readonly] Readonly Order
12651
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
12652
- * @param {*} [options] Override http request option.
12653
- * @throws {RequiredError}
12654
- */
12655
- putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
12656
- /**
12657
- * Update An Order
12658
- * @summary Update An Order
12659
- * @param {number} id Order ID
12660
- * @param {boolean} [readonly] Readonly Order
12661
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12662
- * @param {*} [options] Override http request option.
12663
- * @throws {RequiredError}
12664
- */
12665
- putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
12666
11746
  };
12667
11747
  /**
12668
11748
  * OrdersApi - factory interface
@@ -12671,19 +11751,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
12671
11751
  export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
12672
11752
  /**
12673
11753
  * Delete Orders
12674
- * @summary Delete Orders
12675
11754
  * @param {number} id Order ID
12676
11755
  * @param {*} [options] Override http request option.
12677
11756
  * @throws {RequiredError}
12678
11757
  */
12679
- deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12680
- /**
12681
- * Get Editable Order
12682
- * @param {number} id Order ID
12683
- * @param {*} [options] Override http request option.
12684
- * @throws {RequiredError}
12685
- */
12686
- getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
11758
+ deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12687
11759
  /**
12688
11760
  * Get Orders
12689
11761
  * @summary Get Orders
@@ -12698,44 +11770,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
12698
11770
  * @throws {RequiredError}
12699
11771
  */
12700
11772
  getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
12701
- /**
12702
- * Create An Order (Admin)
12703
- * @summary Create An Order (Admin)
12704
- * @param {boolean} [readonly] Readonly Order
12705
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
12706
- * @param {*} [options] Override http request option.
12707
- * @throws {RequiredError}
12708
- */
12709
- postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
12710
- /**
12711
- * Create An Order
12712
- * @summary Create An Order
12713
- * @param {boolean} [readonly] Readonly Order
12714
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12715
- * @param {*} [options] Override http request option.
12716
- * @throws {RequiredError}
12717
- */
12718
- postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
12719
- /**
12720
- * Update An Order (Admin)
12721
- * @summary Update An Order (Admin)
12722
- * @param {number} id Order ID
12723
- * @param {boolean} [readonly] Readonly Order
12724
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
12725
- * @param {*} [options] Override http request option.
12726
- * @throws {RequiredError}
12727
- */
12728
- putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
12729
- /**
12730
- * Update An Order
12731
- * @summary Update An Order
12732
- * @param {number} id Order ID
12733
- * @param {boolean} [readonly] Readonly Order
12734
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12735
- * @param {*} [options] Override http request option.
12736
- * @throws {RequiredError}
12737
- */
12738
- putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
12739
11773
  };
12740
11774
  /**
12741
11775
  * OrdersApi - object-oriented interface
@@ -12746,21 +11780,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
12746
11780
  export declare class OrdersApi extends BaseAPI {
12747
11781
  /**
12748
11782
  * Delete Orders
12749
- * @summary Delete Orders
12750
- * @param {number} id Order ID
12751
- * @param {*} [options] Override http request option.
12752
- * @throws {RequiredError}
12753
- * @memberof OrdersApi
12754
- */
12755
- deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12756
- /**
12757
- * Get Editable Order
12758
11783
  * @param {number} id Order ID
12759
11784
  * @param {*} [options] Override http request option.
12760
11785
  * @throws {RequiredError}
12761
11786
  * @memberof OrdersApi
12762
11787
  */
12763
- getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO, any, {}>>;
11788
+ deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12764
11789
  /**
12765
11790
  * Get Orders
12766
11791
  * @summary Get Orders
@@ -12776,48 +11801,6 @@ export declare class OrdersApi extends BaseAPI {
12776
11801
  * @memberof OrdersApi
12777
11802
  */
12778
11803
  getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummariesModel, any, {}>>;
12779
- /**
12780
- * Create An Order (Admin)
12781
- * @summary Create An Order (Admin)
12782
- * @param {boolean} [readonly] Readonly Order
12783
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
12784
- * @param {*} [options] Override http request option.
12785
- * @throws {RequiredError}
12786
- * @memberof OrdersApi
12787
- */
12788
- postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
12789
- /**
12790
- * Create An Order
12791
- * @summary Create An Order
12792
- * @param {boolean} [readonly] Readonly Order
12793
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12794
- * @param {*} [options] Override http request option.
12795
- * @throws {RequiredError}
12796
- * @memberof OrdersApi
12797
- */
12798
- postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
12799
- /**
12800
- * Update An Order (Admin)
12801
- * @summary Update An Order (Admin)
12802
- * @param {number} id Order ID
12803
- * @param {boolean} [readonly] Readonly Order
12804
- * @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
12805
- * @param {*} [options] Override http request option.
12806
- * @throws {RequiredError}
12807
- * @memberof OrdersApi
12808
- */
12809
- putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
12810
- /**
12811
- * Update An Order
12812
- * @summary Update An Order
12813
- * @param {number} id Order ID
12814
- * @param {boolean} [readonly] Readonly Order
12815
- * @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
12816
- * @param {*} [options] Override http request option.
12817
- * @throws {RequiredError}
12818
- * @memberof OrdersApi
12819
- */
12820
- putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
12821
11804
  }
12822
11805
  /**
12823
11806
  * @export
@@ -13073,6 +12056,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
13073
12056
  * @throws {RequiredError}
13074
12057
  */
13075
12058
  getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12059
+ /**
12060
+ * Get Customer Price Lists
12061
+ * @summary Get Customer Price Lists
12062
+ * @param {*} [options] Override http request option.
12063
+ * @throws {RequiredError}
12064
+ */
12065
+ getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13076
12066
  /**
13077
12067
  * Get Current Stock & Pricing
13078
12068
  * @summary Get Current Stock & Pricing
@@ -13085,10 +12075,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
13085
12075
  /**
13086
12076
  * Get Products
13087
12077
  * @summary Get Products
12078
+ * @param {number} [pageSize] Number Of Results
12079
+ * @param {number} [page] Page Number
12080
+ * @param {string} [search] Search
13088
12081
  * @param {*} [options] Override http request option.
13089
12082
  * @throws {RequiredError}
13090
12083
  */
13091
- getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12084
+ getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13092
12085
  /**
13093
12086
  * Get Current Stock & Pricing
13094
12087
  * @summary Get Current Stock & Pricing
@@ -13103,35 +12096,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
13103
12096
  * @throws {RequiredError}
13104
12097
  */
13105
12098
  getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13106
- /**
13107
- * Search Products
13108
- * @summary Search Products
13109
- * @param {number} [pageSize] Number Of Results
13110
- * @param {number} [page] Page Number
13111
- * @param {string} [search] Search
13112
- * @param {*} [options] Override http request option.
13113
- * @throws {RequiredError}
13114
- */
13115
- getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13116
- /**
13117
- * Get Product
13118
- * @summary Get Product
13119
- * @param {string} sku Product SKU
13120
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13121
- * @param {*} [options] Override http request option.
13122
- * @throws {RequiredError}
13123
- */
13124
- postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13125
- /**
13126
- * Get Product For Customer
13127
- * @summary Get Product For Customer
13128
- * @param {number} customerId Customer ID
13129
- * @param {string} sku Product SKU
13130
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13131
- * @param {*} [options] Override http request option.
13132
- * @throws {RequiredError}
13133
- */
13134
- postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13135
12099
  };
13136
12100
  /**
13137
12101
  * ProductsApi - functional programming interface
@@ -13145,6 +12109,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
13145
12109
  * @throws {RequiredError}
13146
12110
  */
13147
12111
  getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
12112
+ /**
12113
+ * Get Customer Price Lists
12114
+ * @summary Get Customer Price Lists
12115
+ * @param {*} [options] Override http request option.
12116
+ * @throws {RequiredError}
12117
+ */
12118
+ getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
13148
12119
  /**
13149
12120
  * Get Current Stock & Pricing
13150
12121
  * @summary Get Current Stock & Pricing
@@ -13157,10 +12128,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
13157
12128
  /**
13158
12129
  * Get Products
13159
12130
  * @summary Get Products
12131
+ * @param {number} [pageSize] Number Of Results
12132
+ * @param {number} [page] Page Number
12133
+ * @param {string} [search] Search
13160
12134
  * @param {*} [options] Override http request option.
13161
12135
  * @throws {RequiredError}
13162
12136
  */
13163
- getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
12137
+ getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
13164
12138
  /**
13165
12139
  * Get Current Stock & Pricing
13166
12140
  * @summary Get Current Stock & Pricing
@@ -13175,35 +12149,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
13175
12149
  * @throws {RequiredError}
13176
12150
  */
13177
12151
  getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
13178
- /**
13179
- * Search Products
13180
- * @summary Search Products
13181
- * @param {number} [pageSize] Number Of Results
13182
- * @param {number} [page] Page Number
13183
- * @param {string} [search] Search
13184
- * @param {*} [options] Override http request option.
13185
- * @throws {RequiredError}
13186
- */
13187
- getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
13188
- /**
13189
- * Get Product
13190
- * @summary Get Product
13191
- * @param {string} sku Product SKU
13192
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13193
- * @param {*} [options] Override http request option.
13194
- * @throws {RequiredError}
13195
- */
13196
- postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
13197
- /**
13198
- * Get Product For Customer
13199
- * @summary Get Product For Customer
13200
- * @param {number} customerId Customer ID
13201
- * @param {string} sku Product SKU
13202
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13203
- * @param {*} [options] Override http request option.
13204
- * @throws {RequiredError}
13205
- */
13206
- postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
13207
12152
  };
13208
12153
  /**
13209
12154
  * ProductsApi - factory interface
@@ -13217,6 +12162,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
13217
12162
  * @throws {RequiredError}
13218
12163
  */
13219
12164
  getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
12165
+ /**
12166
+ * Get Customer Price Lists
12167
+ * @summary Get Customer Price Lists
12168
+ * @param {*} [options] Override http request option.
12169
+ * @throws {RequiredError}
12170
+ */
12171
+ getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
13220
12172
  /**
13221
12173
  * Get Current Stock & Pricing
13222
12174
  * @summary Get Current Stock & Pricing
@@ -13229,10 +12181,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
13229
12181
  /**
13230
12182
  * Get Products
13231
12183
  * @summary Get Products
12184
+ * @param {number} [pageSize] Number Of Results
12185
+ * @param {number} [page] Page Number
12186
+ * @param {string} [search] Search
13232
12187
  * @param {*} [options] Override http request option.
13233
12188
  * @throws {RequiredError}
13234
12189
  */
13235
- getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
12190
+ getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
13236
12191
  /**
13237
12192
  * Get Current Stock & Pricing
13238
12193
  * @summary Get Current Stock & Pricing
@@ -13247,35 +12202,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
13247
12202
  * @throws {RequiredError}
13248
12203
  */
13249
12204
  getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
13250
- /**
13251
- * Search Products
13252
- * @summary Search Products
13253
- * @param {number} [pageSize] Number Of Results
13254
- * @param {number} [page] Page Number
13255
- * @param {string} [search] Search
13256
- * @param {*} [options] Override http request option.
13257
- * @throws {RequiredError}
13258
- */
13259
- getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
13260
- /**
13261
- * Get Product
13262
- * @summary Get Product
13263
- * @param {string} sku Product SKU
13264
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13265
- * @param {*} [options] Override http request option.
13266
- * @throws {RequiredError}
13267
- */
13268
- postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
13269
- /**
13270
- * Get Product For Customer
13271
- * @summary Get Product For Customer
13272
- * @param {number} customerId Customer ID
13273
- * @param {string} sku Product SKU
13274
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13275
- * @param {*} [options] Override http request option.
13276
- * @throws {RequiredError}
13277
- */
13278
- postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
13279
12205
  };
13280
12206
  /**
13281
12207
  * ProductsApi - object-oriented interface
@@ -13292,6 +12218,14 @@ export declare class ProductsApi extends BaseAPI {
13292
12218
  * @memberof ProductsApi
13293
12219
  */
13294
12220
  getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
12221
+ /**
12222
+ * Get Customer Price Lists
12223
+ * @summary Get Customer Price Lists
12224
+ * @param {*} [options] Override http request option.
12225
+ * @throws {RequiredError}
12226
+ * @memberof ProductsApi
12227
+ */
12228
+ getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
13295
12229
  /**
13296
12230
  * Get Current Stock & Pricing
13297
12231
  * @summary Get Current Stock & Pricing
@@ -13305,11 +12239,14 @@ export declare class ProductsApi extends BaseAPI {
13305
12239
  /**
13306
12240
  * Get Products
13307
12241
  * @summary Get Products
12242
+ * @param {number} [pageSize] Number Of Results
12243
+ * @param {number} [page] Page Number
12244
+ * @param {string} [search] Search
13308
12245
  * @param {*} [options] Override http request option.
13309
12246
  * @throws {RequiredError}
13310
12247
  * @memberof ProductsApi
13311
12248
  */
13312
- getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
12249
+ getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
13313
12250
  /**
13314
12251
  * Get Current Stock & Pricing
13315
12252
  * @summary Get Current Stock & Pricing
@@ -13326,38 +12263,6 @@ export declare class ProductsApi extends BaseAPI {
13326
12263
  * @memberof ProductsApi
13327
12264
  */
13328
12265
  getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
13329
- /**
13330
- * Search Products
13331
- * @summary Search Products
13332
- * @param {number} [pageSize] Number Of Results
13333
- * @param {number} [page] Page Number
13334
- * @param {string} [search] Search
13335
- * @param {*} [options] Override http request option.
13336
- * @throws {RequiredError}
13337
- * @memberof ProductsApi
13338
- */
13339
- getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
13340
- /**
13341
- * Get Product
13342
- * @summary Get Product
13343
- * @param {string} sku Product SKU
13344
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13345
- * @param {*} [options] Override http request option.
13346
- * @throws {RequiredError}
13347
- * @memberof ProductsApi
13348
- */
13349
- postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
13350
- /**
13351
- * Get Product For Customer
13352
- * @summary Get Product For Customer
13353
- * @param {number} customerId Customer ID
13354
- * @param {string} sku Product SKU
13355
- * @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
13356
- * @param {*} [options] Override http request option.
13357
- * @throws {RequiredError}
13358
- * @memberof ProductsApi
13359
- */
13360
- postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
13361
12266
  }
13362
12267
  /**
13363
12268
  * @export
@@ -13478,7 +12383,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
13478
12383
  * @param {*} [options] Override http request option.
13479
12384
  * @throws {RequiredError}
13480
12385
  */
13481
- getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
12386
+ getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
13482
12387
  /**
13483
12388
  * Create a Fanvil provisioning group
13484
12389
  * @summary Add group to DB and FDPS
@@ -13486,7 +12391,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
13486
12391
  * @param {*} [options] Override http request option.
13487
12392
  * @throws {RequiredError}
13488
12393
  */
13489
- postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
12394
+ postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
13490
12395
  /**
13491
12396
  * Add MAC address to DB and FDPS group
13492
12397
  * @summary Add MAC address to DB and FDPS group
@@ -13543,7 +12448,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
13543
12448
  * @param {*} [options] Override http request option.
13544
12449
  * @throws {RequiredError}
13545
12450
  */
13546
- getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
12451
+ getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
13547
12452
  /**
13548
12453
  * Create a Fanvil provisioning group
13549
12454
  * @summary Add group to DB and FDPS
@@ -13551,7 +12456,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
13551
12456
  * @param {*} [options] Override http request option.
13552
12457
  * @throws {RequiredError}
13553
12458
  */
13554
- postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
12459
+ postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
13555
12460
  /**
13556
12461
  * Add MAC address to DB and FDPS group
13557
12462
  * @summary Add MAC address to DB and FDPS group
@@ -13615,7 +12520,7 @@ export declare class ProvisioningApi extends BaseAPI {
13615
12520
  * @throws {RequiredError}
13616
12521
  * @memberof ProvisioningApi
13617
12522
  */
13618
- getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
12523
+ getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
13619
12524
  /**
13620
12525
  * Create a Fanvil provisioning group
13621
12526
  * @summary Add group to DB and FDPS
@@ -13624,7 +12529,7 @@ export declare class ProvisioningApi extends BaseAPI {
13624
12529
  * @throws {RequiredError}
13625
12530
  * @memberof ProvisioningApi
13626
12531
  */
13627
- postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
12532
+ postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
13628
12533
  /**
13629
12534
  * Add MAC address to DB and FDPS group
13630
12535
  * @summary Add MAC address to DB and FDPS group
@@ -14499,65 +13404,6 @@ export declare class SMSApi extends BaseAPI {
14499
13404
  */
14500
13405
  postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
14501
13406
  }
14502
- /**
14503
- * ShippingApi - axios parameter creator
14504
- * @export
14505
- */
14506
- export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
14507
- /**
14508
- * Get Shipping Services
14509
- * @summary Get Shipping Services
14510
- * @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
14511
- * @param {*} [options] Override http request option.
14512
- * @throws {RequiredError}
14513
- */
14514
- postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14515
- };
14516
- /**
14517
- * ShippingApi - functional programming interface
14518
- * @export
14519
- */
14520
- export declare const ShippingApiFp: (configuration?: Configuration) => {
14521
- /**
14522
- * Get Shipping Services
14523
- * @summary Get Shipping Services
14524
- * @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
14525
- * @param {*} [options] Override http request option.
14526
- * @throws {RequiredError}
14527
- */
14528
- postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
14529
- };
14530
- /**
14531
- * ShippingApi - factory interface
14532
- * @export
14533
- */
14534
- export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14535
- /**
14536
- * Get Shipping Services
14537
- * @summary Get Shipping Services
14538
- * @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
14539
- * @param {*} [options] Override http request option.
14540
- * @throws {RequiredError}
14541
- */
14542
- postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
14543
- };
14544
- /**
14545
- * ShippingApi - object-oriented interface
14546
- * @export
14547
- * @class ShippingApi
14548
- * @extends {BaseAPI}
14549
- */
14550
- export declare class ShippingApi extends BaseAPI {
14551
- /**
14552
- * Get Shipping Services
14553
- * @summary Get Shipping Services
14554
- * @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
14555
- * @param {*} [options] Override http request option.
14556
- * @throws {RequiredError}
14557
- * @memberof ShippingApi
14558
- */
14559
- postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
14560
- }
14561
13407
  /**
14562
13408
  * StockManagementApi - axios parameter creator
14563
13409
  * @export
@@ -14887,7 +13733,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
14887
13733
  * @param {*} [options] Override http request option.
14888
13734
  * @throws {RequiredError}
14889
13735
  */
14890
- getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
13736
+ getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
14891
13737
  /**
14892
13738
  * Get Stock Order Supplier Invoice
14893
13739
  * @summary Get Stock Order Supplier Invoice
@@ -15102,7 +13948,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
15102
13948
  * @param {*} [options] Override http request option.
15103
13949
  * @throws {RequiredError}
15104
13950
  */
15105
- getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
13951
+ getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
15106
13952
  /**
15107
13953
  * Get Stock Order Supplier Invoice
15108
13954
  * @summary Get Stock Order Supplier Invoice
@@ -15332,7 +14178,7 @@ export declare class StockManagementApi extends BaseAPI {
15332
14178
  * @throws {RequiredError}
15333
14179
  * @memberof StockManagementApi
15334
14180
  */
15335
- getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
14181
+ getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
15336
14182
  /**
15337
14183
  * Get Stock Order Supplier Invoice
15338
14184
  * @summary Get Stock Order Supplier Invoice