yellowgrid-api-ts 3.0.79 → 3.0.80-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.
- package/.openapi-generator/FILES +209 -189
- package/README.md +34 -7
- package/api.ts +1819 -276
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1379 -170
- package/dist/api.js +1013 -254
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AbstractOrderRequestDTO.md +33 -0
- package/docs/AccountDetailedSummaryDTO.md +35 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AdminItemRequestDTO.md +37 -0
- package/docs/AdminOrderRequestDTO.md +41 -0
- package/docs/AdminUserModel.md +31 -0
- package/docs/BasicItemDTO.md +23 -0
- package/docs/BasicProductDTO.md +23 -0
- package/docs/Class3CXApi.md +0 -55
- package/docs/Class3CXInstallationWizardApi.md +13 -13
- package/docs/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CustomerItemRequestDTO.md +33 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +10 -4
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/NavigationItemModel.md +27 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +301 -4
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +5 -3
- package/docs/ProductsApi.md +97 -36
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningEntity.md → ProvisioningModel.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/ShippingApi.md +63 -0
- package/docs/ShippingConsignmentModel.md +26 -0
- package/docs/ShippingInformationDTO.md +25 -0
- package/docs/ShippingServiceDTO.md +23 -0
- package/docs/ShippingServiceModel.md +31 -0
- package/docs/{GetGetPasswordHash200Response.md → ShippingServicesModel.md} +5 -5
- package/docs/StockManagementApi.md +2 -2
- package/docs/SubNavigationItemModel.md +25 -0
- package/docs/TcxSbcDTO.md +31 -0
- package/docs/TcxSbcModel.md +51 -0
- package/docs/TcxWizardModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
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,6 +13,55 @@ 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;
|
|
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
|
+
}
|
|
16
65
|
/**
|
|
17
66
|
* AccountContactsEntity
|
|
18
67
|
* @export
|
|
@@ -244,6 +293,61 @@ export interface AccountContactRequestModel {
|
|
|
244
293
|
*/
|
|
245
294
|
'despatchEmails'?: boolean;
|
|
246
295
|
}
|
|
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
|
+
}
|
|
247
351
|
/**
|
|
248
352
|
* New Account Request
|
|
249
353
|
* @export
|
|
@@ -525,6 +629,191 @@ export interface AddressRequestModel {
|
|
|
525
629
|
*/
|
|
526
630
|
'addressPostcode'?: string;
|
|
527
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* Admin Order Item Request
|
|
634
|
+
* @export
|
|
635
|
+
* @interface AdminItemRequestDTO
|
|
636
|
+
*/
|
|
637
|
+
export interface AdminItemRequestDTO {
|
|
638
|
+
/**
|
|
639
|
+
* SKU
|
|
640
|
+
* @type {string}
|
|
641
|
+
* @memberof AdminItemRequestDTO
|
|
642
|
+
*/
|
|
643
|
+
'sku'?: string;
|
|
644
|
+
/**
|
|
645
|
+
* Quantity
|
|
646
|
+
* @type {number}
|
|
647
|
+
* @memberof AdminItemRequestDTO
|
|
648
|
+
*/
|
|
649
|
+
'quantity'?: number;
|
|
650
|
+
/**
|
|
651
|
+
* ID
|
|
652
|
+
* @type {number}
|
|
653
|
+
* @memberof AdminItemRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
'id'?: number | null;
|
|
656
|
+
/**
|
|
657
|
+
* 3CX Licence Key
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof AdminItemRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'licenceKey'?: string | null;
|
|
662
|
+
/**
|
|
663
|
+
* 3CX Hosting
|
|
664
|
+
* @type {boolean}
|
|
665
|
+
* @memberof AdminItemRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'hosting'?: boolean | null;
|
|
668
|
+
/**
|
|
669
|
+
* Date Time
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof AdminItemRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'processDate'?: string;
|
|
674
|
+
/**
|
|
675
|
+
* SBCS
|
|
676
|
+
* @type {Array<TcxSbcDTO>}
|
|
677
|
+
* @memberof AdminItemRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
680
|
+
/**
|
|
681
|
+
* Title
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof AdminItemRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'title'?: string | null;
|
|
686
|
+
/**
|
|
687
|
+
* Price (£)
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'itemPrice'?: number | null;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* Admin Order Request
|
|
695
|
+
* @export
|
|
696
|
+
* @interface AdminOrderRequestDTO
|
|
697
|
+
*/
|
|
698
|
+
export interface AdminOrderRequestDTO {
|
|
699
|
+
/**
|
|
700
|
+
* Order Reference
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof AdminOrderRequestDTO
|
|
703
|
+
*/
|
|
704
|
+
'orderReference'?: string;
|
|
705
|
+
/**
|
|
706
|
+
* Items
|
|
707
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
708
|
+
* @memberof AdminOrderRequestDTO
|
|
709
|
+
*/
|
|
710
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {ShippingServiceDTO}
|
|
714
|
+
* @memberof AdminOrderRequestDTO
|
|
715
|
+
*/
|
|
716
|
+
'shippingService'?: ShippingServiceDTO;
|
|
717
|
+
/**
|
|
718
|
+
* Provisioning URL
|
|
719
|
+
* @type {string}
|
|
720
|
+
* @memberof AdminOrderRequestDTO
|
|
721
|
+
*/
|
|
722
|
+
'provisioningUrl'?: string | null;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {AddressModel}
|
|
726
|
+
* @memberof AdminOrderRequestDTO
|
|
727
|
+
*/
|
|
728
|
+
'shippingAddress'?: AddressModel;
|
|
729
|
+
/**
|
|
730
|
+
* Part Ship Order
|
|
731
|
+
* @type {boolean}
|
|
732
|
+
* @memberof AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
'partShip'?: boolean;
|
|
735
|
+
/**
|
|
736
|
+
* Quote
|
|
737
|
+
* @type {boolean}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'quote'?: boolean;
|
|
741
|
+
/**
|
|
742
|
+
* Customer ID
|
|
743
|
+
* @type {number}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'customerId'?: number;
|
|
747
|
+
/**
|
|
748
|
+
* Ignore Customer On Hold
|
|
749
|
+
* @type {boolean}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'ignoreOnHold'?: boolean;
|
|
753
|
+
/**
|
|
754
|
+
* Ignore Customer Credit Limit
|
|
755
|
+
* @type {boolean}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'ignoreCreditLimit'?: boolean;
|
|
759
|
+
/**
|
|
760
|
+
* Include NFR Promos
|
|
761
|
+
* @type {boolean}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'includeNfrPromos'?: boolean;
|
|
765
|
+
}
|
|
766
|
+
/**
|
|
767
|
+
* Admin User
|
|
768
|
+
* @export
|
|
769
|
+
* @interface AdminUserModel
|
|
770
|
+
*/
|
|
771
|
+
export interface AdminUserModel {
|
|
772
|
+
/**
|
|
773
|
+
* First Name
|
|
774
|
+
* @type {string}
|
|
775
|
+
* @memberof AdminUserModel
|
|
776
|
+
*/
|
|
777
|
+
'firstName'?: string;
|
|
778
|
+
/**
|
|
779
|
+
* Last Name
|
|
780
|
+
* @type {string}
|
|
781
|
+
* @memberof AdminUserModel
|
|
782
|
+
*/
|
|
783
|
+
'lastName'?: string;
|
|
784
|
+
/**
|
|
785
|
+
* Avatar
|
|
786
|
+
* @type {string}
|
|
787
|
+
* @memberof AdminUserModel
|
|
788
|
+
*/
|
|
789
|
+
'avatar'?: string | null;
|
|
790
|
+
/**
|
|
791
|
+
* Role
|
|
792
|
+
* @type {number}
|
|
793
|
+
* @memberof AdminUserModel
|
|
794
|
+
*/
|
|
795
|
+
'role'?: AdminUserModelRoleEnum;
|
|
796
|
+
/**
|
|
797
|
+
* Navigation
|
|
798
|
+
* @type {Array<NavigationItemModel>}
|
|
799
|
+
* @memberof AdminUserModel
|
|
800
|
+
*/
|
|
801
|
+
'navigation'?: Array<NavigationItemModel>;
|
|
802
|
+
/**
|
|
803
|
+
* Email
|
|
804
|
+
* @type {string}
|
|
805
|
+
* @memberof AdminUserModel
|
|
806
|
+
*/
|
|
807
|
+
'email'?: string | null;
|
|
808
|
+
}
|
|
809
|
+
export declare const AdminUserModelRoleEnum: {
|
|
810
|
+
readonly NUMBER_0: 0;
|
|
811
|
+
readonly NUMBER_1: 1;
|
|
812
|
+
readonly NUMBER_2: 2;
|
|
813
|
+
readonly NUMBER_3: 3;
|
|
814
|
+
readonly NUMBER_4: 4;
|
|
815
|
+
};
|
|
816
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
817
|
/**
|
|
529
818
|
* Agent Hours Graph
|
|
530
819
|
* @export
|
|
@@ -754,6 +1043,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1043
|
*/
|
|
755
1044
|
'redirect_uri'?: string | null;
|
|
756
1045
|
}
|
|
1046
|
+
/**
|
|
1047
|
+
* Basic Order Item
|
|
1048
|
+
* @export
|
|
1049
|
+
* @interface BasicItemDTO
|
|
1050
|
+
*/
|
|
1051
|
+
export interface BasicItemDTO {
|
|
1052
|
+
/**
|
|
1053
|
+
* SKU
|
|
1054
|
+
* @type {string}
|
|
1055
|
+
* @memberof BasicItemDTO
|
|
1056
|
+
*/
|
|
1057
|
+
'sku'?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* Quantity
|
|
1060
|
+
* @type {number}
|
|
1061
|
+
* @memberof BasicItemDTO
|
|
1062
|
+
*/
|
|
1063
|
+
'quantity'?: number;
|
|
1064
|
+
}
|
|
1065
|
+
/**
|
|
1066
|
+
* Basic Product
|
|
1067
|
+
* @export
|
|
1068
|
+
* @interface BasicProductDTO
|
|
1069
|
+
*/
|
|
1070
|
+
export interface BasicProductDTO {
|
|
1071
|
+
/**
|
|
1072
|
+
* SKU
|
|
1073
|
+
* @type {string}
|
|
1074
|
+
* @memberof BasicProductDTO
|
|
1075
|
+
*/
|
|
1076
|
+
'sku'?: string;
|
|
1077
|
+
/**
|
|
1078
|
+
* Title
|
|
1079
|
+
* @type {string}
|
|
1080
|
+
* @memberof BasicProductDTO
|
|
1081
|
+
*/
|
|
1082
|
+
'title'?: string;
|
|
1083
|
+
}
|
|
757
1084
|
/**
|
|
758
1085
|
* BatchesEntity
|
|
759
1086
|
* @export
|
|
@@ -948,12 +1275,6 @@ export interface ClientDetailsModel {
|
|
|
948
1275
|
* @memberof ClientDetailsModel
|
|
949
1276
|
*/
|
|
950
1277
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1278
|
}
|
|
958
1279
|
/**
|
|
959
1280
|
* OAuth client details
|
|
@@ -1115,6 +1436,73 @@ export interface ConversationModel {
|
|
|
1115
1436
|
*/
|
|
1116
1437
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* CourierPricesEntity
|
|
1441
|
+
* @export
|
|
1442
|
+
* @interface CourierPriceEntity
|
|
1443
|
+
*/
|
|
1444
|
+
export interface CourierPriceEntity {
|
|
1445
|
+
/**
|
|
1446
|
+
* id
|
|
1447
|
+
* @type {number}
|
|
1448
|
+
* @memberof CourierPriceEntity
|
|
1449
|
+
*/
|
|
1450
|
+
'id'?: number;
|
|
1451
|
+
/**
|
|
1452
|
+
* courier
|
|
1453
|
+
* @type {string}
|
|
1454
|
+
* @memberof CourierPriceEntity
|
|
1455
|
+
*/
|
|
1456
|
+
'courier'?: string;
|
|
1457
|
+
/**
|
|
1458
|
+
* destinationIso
|
|
1459
|
+
* @type {string}
|
|
1460
|
+
* @memberof CourierPriceEntity
|
|
1461
|
+
*/
|
|
1462
|
+
'destinationIso'?: string;
|
|
1463
|
+
/**
|
|
1464
|
+
* serviceDescription
|
|
1465
|
+
* @type {string}
|
|
1466
|
+
* @memberof CourierPriceEntity
|
|
1467
|
+
*/
|
|
1468
|
+
'serviceDescription'?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* flatRate
|
|
1471
|
+
* @type {number}
|
|
1472
|
+
* @memberof CourierPriceEntity
|
|
1473
|
+
*/
|
|
1474
|
+
'flatRate'?: number;
|
|
1475
|
+
/**
|
|
1476
|
+
* initialBox
|
|
1477
|
+
* @type {number}
|
|
1478
|
+
* @memberof CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
'initialBox'?: number;
|
|
1481
|
+
/**
|
|
1482
|
+
* initialKg
|
|
1483
|
+
* @type {number}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'initialKg'?: number;
|
|
1487
|
+
/**
|
|
1488
|
+
* perBox
|
|
1489
|
+
* @type {number}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'perBox'?: number;
|
|
1493
|
+
/**
|
|
1494
|
+
* perKg
|
|
1495
|
+
* @type {number}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'perKg'?: number;
|
|
1499
|
+
/**
|
|
1500
|
+
* maxKg
|
|
1501
|
+
* @type {number}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'maxKg'?: number;
|
|
1505
|
+
}
|
|
1118
1506
|
/**
|
|
1119
1507
|
* Credit Account
|
|
1120
1508
|
* @export
|
|
@@ -1297,6 +1685,104 @@ export interface CustomerInformationModel {
|
|
|
1297
1685
|
*/
|
|
1298
1686
|
'contactLastName'?: string;
|
|
1299
1687
|
}
|
|
1688
|
+
/**
|
|
1689
|
+
* Order Item Request
|
|
1690
|
+
* @export
|
|
1691
|
+
* @interface CustomerItemRequestDTO
|
|
1692
|
+
*/
|
|
1693
|
+
export interface CustomerItemRequestDTO {
|
|
1694
|
+
/**
|
|
1695
|
+
* SKU
|
|
1696
|
+
* @type {string}
|
|
1697
|
+
* @memberof CustomerItemRequestDTO
|
|
1698
|
+
*/
|
|
1699
|
+
'sku'?: string;
|
|
1700
|
+
/**
|
|
1701
|
+
* Quantity
|
|
1702
|
+
* @type {number}
|
|
1703
|
+
* @memberof CustomerItemRequestDTO
|
|
1704
|
+
*/
|
|
1705
|
+
'quantity'?: number;
|
|
1706
|
+
/**
|
|
1707
|
+
* ID
|
|
1708
|
+
* @type {number}
|
|
1709
|
+
* @memberof CustomerItemRequestDTO
|
|
1710
|
+
*/
|
|
1711
|
+
'id'?: number | null;
|
|
1712
|
+
/**
|
|
1713
|
+
* 3CX Licence Key
|
|
1714
|
+
* @type {string}
|
|
1715
|
+
* @memberof CustomerItemRequestDTO
|
|
1716
|
+
*/
|
|
1717
|
+
'licenceKey'?: string | null;
|
|
1718
|
+
/**
|
|
1719
|
+
* 3CX Hosting
|
|
1720
|
+
* @type {boolean}
|
|
1721
|
+
* @memberof CustomerItemRequestDTO
|
|
1722
|
+
*/
|
|
1723
|
+
'hosting'?: boolean | null;
|
|
1724
|
+
/**
|
|
1725
|
+
* Date Time
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof CustomerItemRequestDTO
|
|
1728
|
+
*/
|
|
1729
|
+
'processDate'?: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* SBCS
|
|
1732
|
+
* @type {Array<TcxSbcDTO>}
|
|
1733
|
+
* @memberof CustomerItemRequestDTO
|
|
1734
|
+
*/
|
|
1735
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1736
|
+
}
|
|
1737
|
+
/**
|
|
1738
|
+
* Order Request
|
|
1739
|
+
* @export
|
|
1740
|
+
* @interface CustomerOrderRequestDTO
|
|
1741
|
+
*/
|
|
1742
|
+
export interface CustomerOrderRequestDTO {
|
|
1743
|
+
/**
|
|
1744
|
+
* Order Reference
|
|
1745
|
+
* @type {string}
|
|
1746
|
+
* @memberof CustomerOrderRequestDTO
|
|
1747
|
+
*/
|
|
1748
|
+
'orderReference'?: string;
|
|
1749
|
+
/**
|
|
1750
|
+
* Items
|
|
1751
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1752
|
+
* @memberof CustomerOrderRequestDTO
|
|
1753
|
+
*/
|
|
1754
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {ShippingServiceDTO}
|
|
1758
|
+
* @memberof CustomerOrderRequestDTO
|
|
1759
|
+
*/
|
|
1760
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1761
|
+
/**
|
|
1762
|
+
* Provisioning URL
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof CustomerOrderRequestDTO
|
|
1765
|
+
*/
|
|
1766
|
+
'provisioningUrl'?: string | null;
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @type {AddressModel}
|
|
1770
|
+
* @memberof CustomerOrderRequestDTO
|
|
1771
|
+
*/
|
|
1772
|
+
'shippingAddress'?: AddressModel;
|
|
1773
|
+
/**
|
|
1774
|
+
* Part Ship Order
|
|
1775
|
+
* @type {boolean}
|
|
1776
|
+
* @memberof CustomerOrderRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
'partShip'?: boolean;
|
|
1779
|
+
/**
|
|
1780
|
+
* Quote
|
|
1781
|
+
* @type {boolean}
|
|
1782
|
+
* @memberof CustomerOrderRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'quote'?: boolean;
|
|
1785
|
+
}
|
|
1300
1786
|
/**
|
|
1301
1787
|
* Customer Price List
|
|
1302
1788
|
* @export
|
|
@@ -1803,19 +2289,6 @@ export interface GenericFileModel {
|
|
|
1803
2289
|
*/
|
|
1804
2290
|
'type'?: string;
|
|
1805
2291
|
}
|
|
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
|
-
}
|
|
1819
2292
|
/**
|
|
1820
2293
|
*
|
|
1821
2294
|
* @export
|
|
@@ -2374,35 +2847,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2374
2847
|
*/
|
|
2375
2848
|
export interface ItemDTO {
|
|
2376
2849
|
/**
|
|
2377
|
-
*
|
|
2378
|
-
* @type {
|
|
2850
|
+
* SKU
|
|
2851
|
+
* @type {string}
|
|
2379
2852
|
* @memberof ItemDTO
|
|
2380
2853
|
*/
|
|
2381
|
-
'
|
|
2854
|
+
'sku'?: string;
|
|
2382
2855
|
/**
|
|
2383
|
-
*
|
|
2856
|
+
* Quantity
|
|
2384
2857
|
* @type {number}
|
|
2385
2858
|
* @memberof ItemDTO
|
|
2386
2859
|
*/
|
|
2387
|
-
'
|
|
2860
|
+
'quantity'?: number;
|
|
2388
2861
|
/**
|
|
2389
|
-
*
|
|
2390
|
-
* @type {
|
|
2862
|
+
* ID
|
|
2863
|
+
* @type {number}
|
|
2391
2864
|
* @memberof ItemDTO
|
|
2392
2865
|
*/
|
|
2393
|
-
'
|
|
2866
|
+
'id'?: number | null;
|
|
2394
2867
|
/**
|
|
2395
|
-
*
|
|
2396
|
-
* @type {
|
|
2868
|
+
* Order ID
|
|
2869
|
+
* @type {number}
|
|
2397
2870
|
* @memberof ItemDTO
|
|
2398
2871
|
*/
|
|
2399
|
-
'
|
|
2872
|
+
'orderId'?: number | null;
|
|
2400
2873
|
/**
|
|
2401
|
-
*
|
|
2402
|
-
* @type {
|
|
2874
|
+
* Title
|
|
2875
|
+
* @type {string}
|
|
2403
2876
|
* @memberof ItemDTO
|
|
2404
2877
|
*/
|
|
2405
|
-
'
|
|
2878
|
+
'title'?: string;
|
|
2406
2879
|
/**
|
|
2407
2880
|
* Price
|
|
2408
2881
|
* @type {number}
|
|
@@ -2427,6 +2900,12 @@ export interface ItemDTO {
|
|
|
2427
2900
|
* @memberof ItemDTO
|
|
2428
2901
|
*/
|
|
2429
2902
|
'processDate'?: string;
|
|
2903
|
+
/**
|
|
2904
|
+
* 3CX Hosting
|
|
2905
|
+
* @type {boolean}
|
|
2906
|
+
* @memberof ItemDTO
|
|
2907
|
+
*/
|
|
2908
|
+
'hosting'?: boolean | null;
|
|
2430
2909
|
/**
|
|
2431
2910
|
* Promo Item
|
|
2432
2911
|
* @type {boolean}
|
|
@@ -2438,7 +2917,19 @@ export interface ItemDTO {
|
|
|
2438
2917
|
* @type {number}
|
|
2439
2918
|
* @memberof ItemDTO
|
|
2440
2919
|
*/
|
|
2441
|
-
'refunded'?: number;
|
|
2920
|
+
'refunded'?: number | null;
|
|
2921
|
+
/**
|
|
2922
|
+
* SBCs
|
|
2923
|
+
* @type {Array<TcxSbcDTO>}
|
|
2924
|
+
* @memberof ItemDTO
|
|
2925
|
+
*/
|
|
2926
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2927
|
+
/**
|
|
2928
|
+
* Readonly
|
|
2929
|
+
* @type {boolean}
|
|
2930
|
+
* @memberof ItemDTO
|
|
2931
|
+
*/
|
|
2932
|
+
'readonly'?: boolean;
|
|
2442
2933
|
}
|
|
2443
2934
|
/**
|
|
2444
2935
|
* ItemsEntity
|
|
@@ -2573,6 +3064,25 @@ export interface ItemEntity {
|
|
|
2573
3064
|
*/
|
|
2574
3065
|
'promoItem'?: number;
|
|
2575
3066
|
}
|
|
3067
|
+
/**
|
|
3068
|
+
* LinkedOrdersEntity
|
|
3069
|
+
* @export
|
|
3070
|
+
* @interface LinkedOrderEntity
|
|
3071
|
+
*/
|
|
3072
|
+
export interface LinkedOrderEntity {
|
|
3073
|
+
/**
|
|
3074
|
+
* orderId
|
|
3075
|
+
* @type {number}
|
|
3076
|
+
* @memberof LinkedOrderEntity
|
|
3077
|
+
*/
|
|
3078
|
+
'orderId'?: number;
|
|
3079
|
+
/**
|
|
3080
|
+
* linkedOrderId
|
|
3081
|
+
* @type {number}
|
|
3082
|
+
* @memberof LinkedOrderEntity
|
|
3083
|
+
*/
|
|
3084
|
+
'linkedOrderId'?: number;
|
|
3085
|
+
}
|
|
2576
3086
|
/**
|
|
2577
3087
|
* MFA Required
|
|
2578
3088
|
* @export
|
|
@@ -2659,6 +3169,37 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
2659
3169
|
readonly CallBarring: "Call Barring";
|
|
2660
3170
|
};
|
|
2661
3171
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
3172
|
+
/**
|
|
3173
|
+
* POPS Navigation Item
|
|
3174
|
+
* @export
|
|
3175
|
+
* @interface NavigationItemModel
|
|
3176
|
+
*/
|
|
3177
|
+
export interface NavigationItemModel {
|
|
3178
|
+
/**
|
|
3179
|
+
* Title
|
|
3180
|
+
* @type {string}
|
|
3181
|
+
* @memberof NavigationItemModel
|
|
3182
|
+
*/
|
|
3183
|
+
'title'?: string;
|
|
3184
|
+
/**
|
|
3185
|
+
* URL
|
|
3186
|
+
* @type {string}
|
|
3187
|
+
* @memberof NavigationItemModel
|
|
3188
|
+
*/
|
|
3189
|
+
'url'?: string | null;
|
|
3190
|
+
/**
|
|
3191
|
+
* Icon (Font Awesome)
|
|
3192
|
+
* @type {string}
|
|
3193
|
+
* @memberof NavigationItemModel
|
|
3194
|
+
*/
|
|
3195
|
+
'icon'?: string;
|
|
3196
|
+
/**
|
|
3197
|
+
* Sub Navigation
|
|
3198
|
+
* @type {Array<SubNavigationItemModel>}
|
|
3199
|
+
* @memberof NavigationItemModel
|
|
3200
|
+
*/
|
|
3201
|
+
'items'?: Array<SubNavigationItemModel>;
|
|
3202
|
+
}
|
|
2662
3203
|
/**
|
|
2663
3204
|
* Navigation Endpoint
|
|
2664
3205
|
* @export
|
|
@@ -3232,6 +3773,12 @@ export interface OrderSummaryDTO {
|
|
|
3232
3773
|
* @memberof OrderSummaryDTO
|
|
3233
3774
|
*/
|
|
3234
3775
|
'invoiceNumber'?: string;
|
|
3776
|
+
/**
|
|
3777
|
+
* Invoice ID
|
|
3778
|
+
* @type {string}
|
|
3779
|
+
* @memberof OrderSummaryDTO
|
|
3780
|
+
*/
|
|
3781
|
+
'invoiceId'?: string | null;
|
|
3235
3782
|
/**
|
|
3236
3783
|
* Date Time
|
|
3237
3784
|
* @type {string}
|
|
@@ -3286,6 +3833,24 @@ export interface OrderSummaryDTO {
|
|
|
3286
3833
|
* @memberof OrderSummaryDTO
|
|
3287
3834
|
*/
|
|
3288
3835
|
'fulfillable'?: boolean | null;
|
|
3836
|
+
/**
|
|
3837
|
+
* Provisioning URL
|
|
3838
|
+
* @type {string}
|
|
3839
|
+
* @memberof OrderSummaryDTO
|
|
3840
|
+
*/
|
|
3841
|
+
'provisioningUrl'?: string | null;
|
|
3842
|
+
/**
|
|
3843
|
+
*
|
|
3844
|
+
* @type {ShippingServiceDTO}
|
|
3845
|
+
* @memberof OrderSummaryDTO
|
|
3846
|
+
*/
|
|
3847
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
3848
|
+
/**
|
|
3849
|
+
* Readonly
|
|
3850
|
+
* @type {boolean}
|
|
3851
|
+
* @memberof OrderSummaryDTO
|
|
3852
|
+
*/
|
|
3853
|
+
'readonly'?: boolean;
|
|
3289
3854
|
}
|
|
3290
3855
|
/**
|
|
3291
3856
|
* Order Totals
|
|
@@ -3335,6 +3900,12 @@ export interface OrderTotalModel {
|
|
|
3335
3900
|
* @memberof OrderTotalModel
|
|
3336
3901
|
*/
|
|
3337
3902
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3903
|
+
/**
|
|
3904
|
+
* Delivery
|
|
3905
|
+
* @type {number}
|
|
3906
|
+
* @memberof OrderTotalModel
|
|
3907
|
+
*/
|
|
3908
|
+
'delivery'?: number | null;
|
|
3338
3909
|
}
|
|
3339
3910
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3340
3911
|
readonly Eur: "EUR";
|
|
@@ -3801,10 +4372,10 @@ export interface PrizesEntity {
|
|
|
3801
4372
|
export interface ProductSearchResultsModel {
|
|
3802
4373
|
/**
|
|
3803
4374
|
* Results
|
|
3804
|
-
* @type {Array<
|
|
4375
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3805
4376
|
* @memberof ProductSearchResultsModel
|
|
3806
4377
|
*/
|
|
3807
|
-
'results'?: Array<
|
|
4378
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3808
4379
|
}
|
|
3809
4380
|
/**
|
|
3810
4381
|
* Product Serial Info
|
|
@@ -3840,45 +4411,51 @@ export interface ProductSerialInfoModel {
|
|
|
3840
4411
|
/**
|
|
3841
4412
|
* Product Summary
|
|
3842
4413
|
* @export
|
|
3843
|
-
* @interface
|
|
4414
|
+
* @interface ProductSummaryDTO
|
|
3844
4415
|
*/
|
|
3845
|
-
export interface
|
|
4416
|
+
export interface ProductSummaryDTO {
|
|
3846
4417
|
/**
|
|
3847
4418
|
* SKU
|
|
3848
4419
|
* @type {string}
|
|
3849
|
-
* @memberof
|
|
4420
|
+
* @memberof ProductSummaryDTO
|
|
3850
4421
|
*/
|
|
3851
4422
|
'sku'?: string;
|
|
3852
4423
|
/**
|
|
3853
4424
|
* Title
|
|
3854
4425
|
* @type {string}
|
|
3855
|
-
* @memberof
|
|
4426
|
+
* @memberof ProductSummaryDTO
|
|
3856
4427
|
*/
|
|
3857
4428
|
'title'?: string;
|
|
3858
4429
|
/**
|
|
3859
4430
|
* Stock Quantity
|
|
3860
4431
|
* @type {number}
|
|
3861
|
-
* @memberof
|
|
4432
|
+
* @memberof ProductSummaryDTO
|
|
3862
4433
|
*/
|
|
3863
4434
|
'quantity'?: number | null;
|
|
3864
4435
|
/**
|
|
3865
4436
|
* Stock Product
|
|
3866
4437
|
* @type {boolean}
|
|
3867
|
-
* @memberof
|
|
4438
|
+
* @memberof ProductSummaryDTO
|
|
3868
4439
|
*/
|
|
3869
4440
|
'stockProduct'?: boolean;
|
|
3870
4441
|
/**
|
|
3871
4442
|
* Price
|
|
3872
4443
|
* @type {number}
|
|
3873
|
-
* @memberof
|
|
4444
|
+
* @memberof ProductSummaryDTO
|
|
3874
4445
|
*/
|
|
3875
4446
|
'price'?: number | null;
|
|
3876
4447
|
/**
|
|
3877
4448
|
* Carton Size
|
|
3878
4449
|
* @type {number}
|
|
3879
|
-
* @memberof
|
|
4450
|
+
* @memberof ProductSummaryDTO
|
|
3880
4451
|
*/
|
|
3881
4452
|
'cartonSize'?: number | null;
|
|
4453
|
+
/**
|
|
4454
|
+
* RRP Price
|
|
4455
|
+
* @type {number}
|
|
4456
|
+
* @memberof ProductSummaryDTO
|
|
4457
|
+
*/
|
|
4458
|
+
'rrp'?: number | null;
|
|
3882
4459
|
}
|
|
3883
4460
|
/**
|
|
3884
4461
|
* PromoCodesEntity
|
|
@@ -4017,37 +4594,37 @@ export interface PromoItemsEntity {
|
|
|
4017
4594
|
/**
|
|
4018
4595
|
* Provisioning Group
|
|
4019
4596
|
* @export
|
|
4020
|
-
* @interface
|
|
4597
|
+
* @interface ProvisioningModel
|
|
4021
4598
|
*/
|
|
4022
|
-
export interface
|
|
4599
|
+
export interface ProvisioningModel {
|
|
4023
4600
|
/**
|
|
4024
4601
|
* Provisioning Group Name
|
|
4025
4602
|
* @type {string}
|
|
4026
|
-
* @memberof
|
|
4603
|
+
* @memberof ProvisioningModel
|
|
4027
4604
|
*/
|
|
4028
4605
|
'groupName'?: string;
|
|
4029
4606
|
/**
|
|
4030
4607
|
* Provisioning URL (Static Provisioning Server)
|
|
4031
4608
|
* @type {string}
|
|
4032
|
-
* @memberof
|
|
4609
|
+
* @memberof ProvisioningModel
|
|
4033
4610
|
*/
|
|
4034
4611
|
'provisioningUrl'?: string;
|
|
4035
4612
|
/**
|
|
4036
4613
|
* Additional Authentication Secret
|
|
4037
4614
|
* @type {string}
|
|
4038
|
-
* @memberof
|
|
4615
|
+
* @memberof ProvisioningModel
|
|
4039
4616
|
*/
|
|
4040
4617
|
'auth'?: string;
|
|
4041
4618
|
/**
|
|
4042
4619
|
* Provisioning Group ID
|
|
4043
4620
|
* @type {number}
|
|
4044
|
-
* @memberof
|
|
4621
|
+
* @memberof ProvisioningModel
|
|
4045
4622
|
*/
|
|
4046
4623
|
'id'?: number;
|
|
4047
4624
|
/**
|
|
4048
4625
|
* Owner ID
|
|
4049
4626
|
* @type {number}
|
|
4050
|
-
* @memberof
|
|
4627
|
+
* @memberof ProvisioningModel
|
|
4051
4628
|
*/
|
|
4052
4629
|
'customerId'?: number;
|
|
4053
4630
|
}
|
|
@@ -4320,7 +4897,7 @@ export interface ShipmentEntity {
|
|
|
4320
4897
|
* @type {string}
|
|
4321
4898
|
* @memberof ShipmentEntity
|
|
4322
4899
|
*/
|
|
4323
|
-
'
|
|
4900
|
+
'dateShipped'?: string;
|
|
4324
4901
|
/**
|
|
4325
4902
|
* requestDate
|
|
4326
4903
|
* @type {string}
|
|
@@ -4371,6 +4948,149 @@ export interface ShipmentItemEntity {
|
|
|
4371
4948
|
*/
|
|
4372
4949
|
'itemId'?: string;
|
|
4373
4950
|
}
|
|
4951
|
+
/**
|
|
4952
|
+
*
|
|
4953
|
+
* @export
|
|
4954
|
+
* @interface ShippingConsignmentModel
|
|
4955
|
+
*/
|
|
4956
|
+
export interface ShippingConsignmentModel {
|
|
4957
|
+
/**
|
|
4958
|
+
*
|
|
4959
|
+
* @type {ShippingServiceModel}
|
|
4960
|
+
* @memberof ShippingConsignmentModel
|
|
4961
|
+
*/
|
|
4962
|
+
'service'?: ShippingServiceModel;
|
|
4963
|
+
/**
|
|
4964
|
+
* ID/Number
|
|
4965
|
+
* @type {string}
|
|
4966
|
+
* @memberof ShippingConsignmentModel
|
|
4967
|
+
*/
|
|
4968
|
+
'id'?: string;
|
|
4969
|
+
/**
|
|
4970
|
+
* Tracking Number
|
|
4971
|
+
* @type {string}
|
|
4972
|
+
* @memberof ShippingConsignmentModel
|
|
4973
|
+
*/
|
|
4974
|
+
'trackingNumber'?: string;
|
|
4975
|
+
/**
|
|
4976
|
+
* Parcels
|
|
4977
|
+
* @type {Array<string>}
|
|
4978
|
+
* @memberof ShippingConsignmentModel
|
|
4979
|
+
*/
|
|
4980
|
+
'parcelIds'?: Array<string>;
|
|
4981
|
+
}
|
|
4982
|
+
/**
|
|
4983
|
+
* Shipping Information
|
|
4984
|
+
* @export
|
|
4985
|
+
* @interface ShippingInformationDTO
|
|
4986
|
+
*/
|
|
4987
|
+
export interface ShippingInformationDTO {
|
|
4988
|
+
/**
|
|
4989
|
+
* Items
|
|
4990
|
+
* @type {Array<BasicItemDTO>}
|
|
4991
|
+
* @memberof ShippingInformationDTO
|
|
4992
|
+
*/
|
|
4993
|
+
'items'?: Array<BasicItemDTO>;
|
|
4994
|
+
/**
|
|
4995
|
+
* Destination Post Code
|
|
4996
|
+
* @type {string}
|
|
4997
|
+
* @memberof ShippingInformationDTO
|
|
4998
|
+
*/
|
|
4999
|
+
'postalCode'?: string;
|
|
5000
|
+
/**
|
|
5001
|
+
* Destination ISO
|
|
5002
|
+
* @type {string}
|
|
5003
|
+
* @memberof ShippingInformationDTO
|
|
5004
|
+
*/
|
|
5005
|
+
'iso'?: string;
|
|
5006
|
+
}
|
|
5007
|
+
/**
|
|
5008
|
+
* Shipping Service
|
|
5009
|
+
* @export
|
|
5010
|
+
* @interface ShippingServiceDTO
|
|
5011
|
+
*/
|
|
5012
|
+
export interface ShippingServiceDTO {
|
|
5013
|
+
/**
|
|
5014
|
+
* Courier
|
|
5015
|
+
* @type {string}
|
|
5016
|
+
* @memberof ShippingServiceDTO
|
|
5017
|
+
*/
|
|
5018
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5019
|
+
/**
|
|
5020
|
+
* Service Name
|
|
5021
|
+
* @type {string}
|
|
5022
|
+
* @memberof ShippingServiceDTO
|
|
5023
|
+
*/
|
|
5024
|
+
'serviceName'?: string;
|
|
5025
|
+
}
|
|
5026
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5027
|
+
readonly Dpd: "DPD";
|
|
5028
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5029
|
+
readonly Pops: "POPS";
|
|
5030
|
+
};
|
|
5031
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5032
|
+
/**
|
|
5033
|
+
* Shipping Service
|
|
5034
|
+
* @export
|
|
5035
|
+
* @interface ShippingServiceModel
|
|
5036
|
+
*/
|
|
5037
|
+
export interface ShippingServiceModel {
|
|
5038
|
+
/**
|
|
5039
|
+
* Courier
|
|
5040
|
+
* @type {string}
|
|
5041
|
+
* @memberof ShippingServiceModel
|
|
5042
|
+
*/
|
|
5043
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5044
|
+
/**
|
|
5045
|
+
* Code
|
|
5046
|
+
* @type {string}
|
|
5047
|
+
* @memberof ShippingServiceModel
|
|
5048
|
+
*/
|
|
5049
|
+
'code'?: string;
|
|
5050
|
+
/**
|
|
5051
|
+
* Name
|
|
5052
|
+
* @type {string}
|
|
5053
|
+
* @memberof ShippingServiceModel
|
|
5054
|
+
*/
|
|
5055
|
+
'name'?: string;
|
|
5056
|
+
/**
|
|
5057
|
+
* Description
|
|
5058
|
+
* @type {string}
|
|
5059
|
+
* @memberof ShippingServiceModel
|
|
5060
|
+
*/
|
|
5061
|
+
'description'?: string;
|
|
5062
|
+
/**
|
|
5063
|
+
* Label
|
|
5064
|
+
* @type {string}
|
|
5065
|
+
* @memberof ShippingServiceModel
|
|
5066
|
+
*/
|
|
5067
|
+
'label'?: string | null;
|
|
5068
|
+
/**
|
|
5069
|
+
* Price
|
|
5070
|
+
* @type {number}
|
|
5071
|
+
* @memberof ShippingServiceModel
|
|
5072
|
+
*/
|
|
5073
|
+
'price'?: number | null;
|
|
5074
|
+
}
|
|
5075
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5076
|
+
readonly Dpd: "DPD";
|
|
5077
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5078
|
+
readonly Pops: "POPS";
|
|
5079
|
+
};
|
|
5080
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5081
|
+
/**
|
|
5082
|
+
*
|
|
5083
|
+
* @export
|
|
5084
|
+
* @interface ShippingServicesModel
|
|
5085
|
+
*/
|
|
5086
|
+
export interface ShippingServicesModel {
|
|
5087
|
+
/**
|
|
5088
|
+
* Services
|
|
5089
|
+
* @type {Array<ShippingServiceModel>}
|
|
5090
|
+
* @memberof ShippingServicesModel
|
|
5091
|
+
*/
|
|
5092
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5093
|
+
}
|
|
4374
5094
|
/**
|
|
4375
5095
|
* Change Response
|
|
4376
5096
|
* @export
|
|
@@ -5775,6 +6495,31 @@ export interface StockTransactionsEntity {
|
|
|
5775
6495
|
*/
|
|
5776
6496
|
'user'?: number;
|
|
5777
6497
|
}
|
|
6498
|
+
/**
|
|
6499
|
+
* POPS Sub Navigation Item
|
|
6500
|
+
* @export
|
|
6501
|
+
* @interface SubNavigationItemModel
|
|
6502
|
+
*/
|
|
6503
|
+
export interface SubNavigationItemModel {
|
|
6504
|
+
/**
|
|
6505
|
+
* Title
|
|
6506
|
+
* @type {string}
|
|
6507
|
+
* @memberof SubNavigationItemModel
|
|
6508
|
+
*/
|
|
6509
|
+
'title'?: string;
|
|
6510
|
+
/**
|
|
6511
|
+
* URL
|
|
6512
|
+
* @type {string}
|
|
6513
|
+
* @memberof SubNavigationItemModel
|
|
6514
|
+
*/
|
|
6515
|
+
'url'?: string;
|
|
6516
|
+
/**
|
|
6517
|
+
* Icon (Font Awesome)
|
|
6518
|
+
* @type {string}
|
|
6519
|
+
* @memberof SubNavigationItemModel
|
|
6520
|
+
*/
|
|
6521
|
+
'icon'?: string | null;
|
|
6522
|
+
}
|
|
5778
6523
|
/**
|
|
5779
6524
|
* SuppliersEntity
|
|
5780
6525
|
* @export
|
|
@@ -7153,6 +7898,49 @@ export interface TcxPhonesEntity {
|
|
|
7153
7898
|
*/
|
|
7154
7899
|
'sbcId'?: string;
|
|
7155
7900
|
}
|
|
7901
|
+
/**
|
|
7902
|
+
* SBC Data
|
|
7903
|
+
* @export
|
|
7904
|
+
* @interface TcxSbcDTO
|
|
7905
|
+
*/
|
|
7906
|
+
export interface TcxSbcDTO {
|
|
7907
|
+
/**
|
|
7908
|
+
* LAN IP Address
|
|
7909
|
+
* @type {string}
|
|
7910
|
+
* @memberof TcxSbcDTO
|
|
7911
|
+
*/
|
|
7912
|
+
'ipAddress'?: string;
|
|
7913
|
+
/**
|
|
7914
|
+
* LAN Default Gateway
|
|
7915
|
+
* @type {string}
|
|
7916
|
+
* @memberof TcxSbcDTO
|
|
7917
|
+
*/
|
|
7918
|
+
'defaultGateway'?: string;
|
|
7919
|
+
/**
|
|
7920
|
+
* LAN Subnet Mask
|
|
7921
|
+
* @type {string}
|
|
7922
|
+
* @memberof TcxSbcDTO
|
|
7923
|
+
*/
|
|
7924
|
+
'netmask'?: string;
|
|
7925
|
+
/**
|
|
7926
|
+
* DNS
|
|
7927
|
+
* @type {string}
|
|
7928
|
+
* @memberof TcxSbcDTO
|
|
7929
|
+
*/
|
|
7930
|
+
'dns'?: string;
|
|
7931
|
+
/**
|
|
7932
|
+
* 3CX URL
|
|
7933
|
+
* @type {string}
|
|
7934
|
+
* @memberof TcxSbcDTO
|
|
7935
|
+
*/
|
|
7936
|
+
'tcxUrl'?: string;
|
|
7937
|
+
/**
|
|
7938
|
+
* 3CX SBC Key
|
|
7939
|
+
* @type {string}
|
|
7940
|
+
* @memberof TcxSbcDTO
|
|
7941
|
+
*/
|
|
7942
|
+
'tcxKey'?: string;
|
|
7943
|
+
}
|
|
7156
7944
|
/**
|
|
7157
7945
|
* 3CX Wizard SBC
|
|
7158
7946
|
* @export
|
|
@@ -7256,6 +8044,109 @@ export interface TcxSbcEntity {
|
|
|
7256
8044
|
*/
|
|
7257
8045
|
'technicalContact'?: string;
|
|
7258
8046
|
}
|
|
8047
|
+
/**
|
|
8048
|
+
* 3CX Wizard SBC
|
|
8049
|
+
* @export
|
|
8050
|
+
* @interface TcxSbcModel
|
|
8051
|
+
*/
|
|
8052
|
+
export interface TcxSbcModel {
|
|
8053
|
+
/**
|
|
8054
|
+
* id
|
|
8055
|
+
* @type {number}
|
|
8056
|
+
* @memberof TcxSbcModel
|
|
8057
|
+
*/
|
|
8058
|
+
'id'?: number;
|
|
8059
|
+
/**
|
|
8060
|
+
* SBC ID
|
|
8061
|
+
* @type {number}
|
|
8062
|
+
* @memberof TcxSbcModel
|
|
8063
|
+
*/
|
|
8064
|
+
'sbcId'?: number;
|
|
8065
|
+
/**
|
|
8066
|
+
* 3CX URL
|
|
8067
|
+
* @type {string}
|
|
8068
|
+
* @memberof TcxSbcModel
|
|
8069
|
+
*/
|
|
8070
|
+
'tcxUrl'?: string;
|
|
8071
|
+
/**
|
|
8072
|
+
* 3CX SBC Auth Key
|
|
8073
|
+
* @type {string}
|
|
8074
|
+
* @memberof TcxSbcModel
|
|
8075
|
+
*/
|
|
8076
|
+
'tcxKey'?: string;
|
|
8077
|
+
/**
|
|
8078
|
+
* Label
|
|
8079
|
+
* @type {string}
|
|
8080
|
+
* @memberof TcxSbcModel
|
|
8081
|
+
*/
|
|
8082
|
+
'label'?: string;
|
|
8083
|
+
/**
|
|
8084
|
+
* IP Address
|
|
8085
|
+
* @type {string}
|
|
8086
|
+
* @memberof TcxSbcModel
|
|
8087
|
+
*/
|
|
8088
|
+
'ipAddress'?: string;
|
|
8089
|
+
/**
|
|
8090
|
+
* Subnet Mask
|
|
8091
|
+
* @type {string}
|
|
8092
|
+
* @memberof TcxSbcModel
|
|
8093
|
+
*/
|
|
8094
|
+
'netmask'?: string;
|
|
8095
|
+
/**
|
|
8096
|
+
* Default Gateway
|
|
8097
|
+
* @type {string}
|
|
8098
|
+
* @memberof TcxSbcModel
|
|
8099
|
+
*/
|
|
8100
|
+
'defaultGateway'?: string;
|
|
8101
|
+
/**
|
|
8102
|
+
* DNS 1
|
|
8103
|
+
* @type {string}
|
|
8104
|
+
* @memberof TcxSbcModel
|
|
8105
|
+
*/
|
|
8106
|
+
'dns1'?: string;
|
|
8107
|
+
/**
|
|
8108
|
+
* DNS 2
|
|
8109
|
+
* @type {string}
|
|
8110
|
+
* @memberof TcxSbcModel
|
|
8111
|
+
*/
|
|
8112
|
+
'dns2'?: string;
|
|
8113
|
+
/**
|
|
8114
|
+
* Site Address Line 1
|
|
8115
|
+
* @type {string}
|
|
8116
|
+
* @memberof TcxSbcModel
|
|
8117
|
+
*/
|
|
8118
|
+
'address1'?: string;
|
|
8119
|
+
/**
|
|
8120
|
+
* Site Address Line 2
|
|
8121
|
+
* @type {string}
|
|
8122
|
+
* @memberof TcxSbcModel
|
|
8123
|
+
*/
|
|
8124
|
+
'address2'?: string;
|
|
8125
|
+
/**
|
|
8126
|
+
* Site City
|
|
8127
|
+
* @type {string}
|
|
8128
|
+
* @memberof TcxSbcModel
|
|
8129
|
+
*/
|
|
8130
|
+
'city'?: string;
|
|
8131
|
+
/**
|
|
8132
|
+
* Site Postal Code
|
|
8133
|
+
* @type {string}
|
|
8134
|
+
* @memberof TcxSbcModel
|
|
8135
|
+
*/
|
|
8136
|
+
'postalCode'?: string;
|
|
8137
|
+
/**
|
|
8138
|
+
* Site Primary Contact
|
|
8139
|
+
* @type {string}
|
|
8140
|
+
* @memberof TcxSbcModel
|
|
8141
|
+
*/
|
|
8142
|
+
'primaryContact'?: string;
|
|
8143
|
+
/**
|
|
8144
|
+
* Site Technical Contact
|
|
8145
|
+
* @type {string}
|
|
8146
|
+
* @memberof TcxSbcModel
|
|
8147
|
+
*/
|
|
8148
|
+
'technicalContact'?: string;
|
|
8149
|
+
}
|
|
7259
8150
|
/**
|
|
7260
8151
|
* 3CX Wizard Setup Config
|
|
7261
8152
|
* @export
|
|
@@ -7685,10 +8576,10 @@ export interface TcxWizardModel {
|
|
|
7685
8576
|
'phones'?: Array<TcxPhoneModel>;
|
|
7686
8577
|
/**
|
|
7687
8578
|
*
|
|
7688
|
-
* @type {Array<
|
|
8579
|
+
* @type {Array<TcxSbcModel>}
|
|
7689
8580
|
* @memberof TcxWizardModel
|
|
7690
8581
|
*/
|
|
7691
|
-
'sbcs'?: Array<
|
|
8582
|
+
'sbcs'?: Array<TcxSbcModel>;
|
|
7692
8583
|
/**
|
|
7693
8584
|
*
|
|
7694
8585
|
* @type {TcxSipTrunksEntity}
|
|
@@ -8220,6 +9111,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8220
9111
|
* @throws {RequiredError}
|
|
8221
9112
|
*/
|
|
8222
9113
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9114
|
+
/**
|
|
9115
|
+
* Get Account Detailed Summary
|
|
9116
|
+
* @summary Get Account Detailed Summary
|
|
9117
|
+
* @param {number} id Customer ID
|
|
9118
|
+
* @param {*} [options] Override http request option.
|
|
9119
|
+
* @throws {RequiredError}
|
|
9120
|
+
*/
|
|
9121
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8223
9122
|
/**
|
|
8224
9123
|
* Get Accounts
|
|
8225
9124
|
* @summary Get Accounts
|
|
@@ -8285,6 +9184,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8285
9184
|
* @throws {RequiredError}
|
|
8286
9185
|
*/
|
|
8287
9186
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9187
|
+
/**
|
|
9188
|
+
* Get Admin Account
|
|
9189
|
+
* @summary Get Admin Account
|
|
9190
|
+
* @param {*} [options] Override http request option.
|
|
9191
|
+
* @throws {RequiredError}
|
|
9192
|
+
*/
|
|
9193
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8288
9194
|
/**
|
|
8289
9195
|
* Create client credentials
|
|
8290
9196
|
* @summary Create client credentials
|
|
@@ -8365,6 +9271,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8365
9271
|
* @throws {RequiredError}
|
|
8366
9272
|
*/
|
|
8367
9273
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9274
|
+
/**
|
|
9275
|
+
* Get Account Detailed Summary
|
|
9276
|
+
* @summary Get Account Detailed Summary
|
|
9277
|
+
* @param {number} id Customer ID
|
|
9278
|
+
* @param {*} [options] Override http request option.
|
|
9279
|
+
* @throws {RequiredError}
|
|
9280
|
+
*/
|
|
9281
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8368
9282
|
/**
|
|
8369
9283
|
* Get Accounts
|
|
8370
9284
|
* @summary Get Accounts
|
|
@@ -8430,6 +9344,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8430
9344
|
* @throws {RequiredError}
|
|
8431
9345
|
*/
|
|
8432
9346
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9347
|
+
/**
|
|
9348
|
+
* Get Admin Account
|
|
9349
|
+
* @summary Get Admin Account
|
|
9350
|
+
* @param {*} [options] Override http request option.
|
|
9351
|
+
* @throws {RequiredError}
|
|
9352
|
+
*/
|
|
9353
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8433
9354
|
/**
|
|
8434
9355
|
* Create client credentials
|
|
8435
9356
|
* @summary Create client credentials
|
|
@@ -8510,6 +9431,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8510
9431
|
* @throws {RequiredError}
|
|
8511
9432
|
*/
|
|
8512
9433
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9434
|
+
/**
|
|
9435
|
+
* Get Account Detailed Summary
|
|
9436
|
+
* @summary Get Account Detailed Summary
|
|
9437
|
+
* @param {number} id Customer ID
|
|
9438
|
+
* @param {*} [options] Override http request option.
|
|
9439
|
+
* @throws {RequiredError}
|
|
9440
|
+
*/
|
|
9441
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8513
9442
|
/**
|
|
8514
9443
|
* Get Accounts
|
|
8515
9444
|
* @summary Get Accounts
|
|
@@ -8575,6 +9504,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8575
9504
|
* @throws {RequiredError}
|
|
8576
9505
|
*/
|
|
8577
9506
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9507
|
+
/**
|
|
9508
|
+
* Get Admin Account
|
|
9509
|
+
* @summary Get Admin Account
|
|
9510
|
+
* @param {*} [options] Override http request option.
|
|
9511
|
+
* @throws {RequiredError}
|
|
9512
|
+
*/
|
|
9513
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8578
9514
|
/**
|
|
8579
9515
|
* Create client credentials
|
|
8580
9516
|
* @summary Create client credentials
|
|
@@ -8661,6 +9597,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8661
9597
|
* @memberof AccountsApi
|
|
8662
9598
|
*/
|
|
8663
9599
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9600
|
+
/**
|
|
9601
|
+
* Get Account Detailed Summary
|
|
9602
|
+
* @summary Get Account Detailed Summary
|
|
9603
|
+
* @param {number} id Customer ID
|
|
9604
|
+
* @param {*} [options] Override http request option.
|
|
9605
|
+
* @throws {RequiredError}
|
|
9606
|
+
* @memberof AccountsApi
|
|
9607
|
+
*/
|
|
9608
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
8664
9609
|
/**
|
|
8665
9610
|
* Get Accounts
|
|
8666
9611
|
* @summary Get Accounts
|
|
@@ -8734,6 +9679,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8734
9679
|
* @memberof AccountsApi
|
|
8735
9680
|
*/
|
|
8736
9681
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9682
|
+
/**
|
|
9683
|
+
* Get Admin Account
|
|
9684
|
+
* @summary Get Admin Account
|
|
9685
|
+
* @param {*} [options] Override http request option.
|
|
9686
|
+
* @throws {RequiredError}
|
|
9687
|
+
* @memberof AccountsApi
|
|
9688
|
+
*/
|
|
9689
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
8737
9690
|
/**
|
|
8738
9691
|
* Create client credentials
|
|
8739
9692
|
* @summary Create client credentials
|
|
@@ -8796,14 +9749,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8796
9749
|
* @throws {RequiredError}
|
|
8797
9750
|
*/
|
|
8798
9751
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8799
|
-
/**
|
|
8800
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8801
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8802
|
-
* @param {string} password Desired 3CX web access password
|
|
8803
|
-
* @param {*} [options] Override http request option.
|
|
8804
|
-
* @throws {RequiredError}
|
|
8805
|
-
*/
|
|
8806
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8807
9752
|
/**
|
|
8808
9753
|
* Get Bulk 3CX Licence Details
|
|
8809
9754
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8826,14 +9771,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
8826
9771
|
* @throws {RequiredError}
|
|
8827
9772
|
*/
|
|
8828
9773
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
8829
|
-
/**
|
|
8830
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8831
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8832
|
-
* @param {string} password Desired 3CX web access password
|
|
8833
|
-
* @param {*} [options] Override http request option.
|
|
8834
|
-
* @throws {RequiredError}
|
|
8835
|
-
*/
|
|
8836
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
8837
9774
|
/**
|
|
8838
9775
|
* Get Bulk 3CX Licence Details
|
|
8839
9776
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8856,14 +9793,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
8856
9793
|
* @throws {RequiredError}
|
|
8857
9794
|
*/
|
|
8858
9795
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
8859
|
-
/**
|
|
8860
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8861
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8862
|
-
* @param {string} password Desired 3CX web access password
|
|
8863
|
-
* @param {*} [options] Override http request option.
|
|
8864
|
-
* @throws {RequiredError}
|
|
8865
|
-
*/
|
|
8866
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
8867
9796
|
/**
|
|
8868
9797
|
* Get Bulk 3CX Licence Details
|
|
8869
9798
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8889,15 +9818,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
8889
9818
|
* @memberof Class3CXApi
|
|
8890
9819
|
*/
|
|
8891
9820
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
8892
|
-
/**
|
|
8893
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8894
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8895
|
-
* @param {string} password Desired 3CX web access password
|
|
8896
|
-
* @param {*} [options] Override http request option.
|
|
8897
|
-
* @throws {RequiredError}
|
|
8898
|
-
* @memberof Class3CXApi
|
|
8899
|
-
*/
|
|
8900
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
8901
9821
|
/**
|
|
8902
9822
|
* Get Bulk 3CX Licence Details
|
|
8903
9823
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8940,11 +9860,11 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
|
|
|
8940
9860
|
/**
|
|
8941
9861
|
* Delete 3CX Installation Wizard SBCs
|
|
8942
9862
|
* @summary Delete 3CX Installation Wizard SBCs
|
|
8943
|
-
* @param {Array<
|
|
9863
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
8944
9864
|
* @param {*} [options] Override http request option.
|
|
8945
9865
|
* @throws {RequiredError}
|
|
8946
9866
|
*/
|
|
8947
|
-
deleteAddSbcs: (
|
|
9867
|
+
deleteAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8948
9868
|
/**
|
|
8949
9869
|
* Delete 3CX Installation Wizard
|
|
8950
9870
|
* @summary Delete 3CX Installation Wizard
|
|
@@ -9026,11 +9946,11 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
|
|
|
9026
9946
|
/**
|
|
9027
9947
|
* Update 3CX Installation Wizard SBCs
|
|
9028
9948
|
* @summary Update 3CX Installation Wizard SBCs
|
|
9029
|
-
* @param {Array<
|
|
9949
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9030
9950
|
* @param {*} [options] Override http request option.
|
|
9031
9951
|
* @throws {RequiredError}
|
|
9032
9952
|
*/
|
|
9033
|
-
patchAddSbcs: (
|
|
9953
|
+
patchAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9034
9954
|
/**
|
|
9035
9955
|
* Update 3CX Installation Wizard
|
|
9036
9956
|
* @summary Update 3CX Installation Wizard
|
|
@@ -9066,11 +9986,11 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
|
|
|
9066
9986
|
/**
|
|
9067
9987
|
* Add SBCs To 3CX Installation Wizard
|
|
9068
9988
|
* @summary Add SBCs To 3CX Installation Wizard
|
|
9069
|
-
* @param {Array<
|
|
9989
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9070
9990
|
* @param {*} [options] Override http request option.
|
|
9071
9991
|
* @throws {RequiredError}
|
|
9072
9992
|
*/
|
|
9073
|
-
postAddSbcs: (
|
|
9993
|
+
postAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9074
9994
|
/**
|
|
9075
9995
|
* Build Instance From 3CX Installation Wizard
|
|
9076
9996
|
* @summary Build Instance From 3CX Installation Wizard
|
|
@@ -9149,11 +10069,11 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
|
|
|
9149
10069
|
/**
|
|
9150
10070
|
* Delete 3CX Installation Wizard SBCs
|
|
9151
10071
|
* @summary Delete 3CX Installation Wizard SBCs
|
|
9152
|
-
* @param {Array<
|
|
10072
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9153
10073
|
* @param {*} [options] Override http request option.
|
|
9154
10074
|
* @throws {RequiredError}
|
|
9155
10075
|
*/
|
|
9156
|
-
deleteAddSbcs(
|
|
10076
|
+
deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9157
10077
|
/**
|
|
9158
10078
|
* Delete 3CX Installation Wizard
|
|
9159
10079
|
* @summary Delete 3CX Installation Wizard
|
|
@@ -9235,11 +10155,11 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
|
|
|
9235
10155
|
/**
|
|
9236
10156
|
* Update 3CX Installation Wizard SBCs
|
|
9237
10157
|
* @summary Update 3CX Installation Wizard SBCs
|
|
9238
|
-
* @param {Array<
|
|
10158
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9239
10159
|
* @param {*} [options] Override http request option.
|
|
9240
10160
|
* @throws {RequiredError}
|
|
9241
10161
|
*/
|
|
9242
|
-
patchAddSbcs(
|
|
10162
|
+
patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>>;
|
|
9243
10163
|
/**
|
|
9244
10164
|
* Update 3CX Installation Wizard
|
|
9245
10165
|
* @summary Update 3CX Installation Wizard
|
|
@@ -9275,11 +10195,11 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
|
|
|
9275
10195
|
/**
|
|
9276
10196
|
* Add SBCs To 3CX Installation Wizard
|
|
9277
10197
|
* @summary Add SBCs To 3CX Installation Wizard
|
|
9278
|
-
* @param {Array<
|
|
10198
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9279
10199
|
* @param {*} [options] Override http request option.
|
|
9280
10200
|
* @throws {RequiredError}
|
|
9281
10201
|
*/
|
|
9282
|
-
postAddSbcs(
|
|
10202
|
+
postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>>;
|
|
9283
10203
|
/**
|
|
9284
10204
|
* Build Instance From 3CX Installation Wizard
|
|
9285
10205
|
* @summary Build Instance From 3CX Installation Wizard
|
|
@@ -9358,11 +10278,11 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
|
|
|
9358
10278
|
/**
|
|
9359
10279
|
* Delete 3CX Installation Wizard SBCs
|
|
9360
10280
|
* @summary Delete 3CX Installation Wizard SBCs
|
|
9361
|
-
* @param {Array<
|
|
10281
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9362
10282
|
* @param {*} [options] Override http request option.
|
|
9363
10283
|
* @throws {RequiredError}
|
|
9364
10284
|
*/
|
|
9365
|
-
deleteAddSbcs(
|
|
10285
|
+
deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9366
10286
|
/**
|
|
9367
10287
|
* Delete 3CX Installation Wizard
|
|
9368
10288
|
* @summary Delete 3CX Installation Wizard
|
|
@@ -9444,11 +10364,11 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
|
|
|
9444
10364
|
/**
|
|
9445
10365
|
* Update 3CX Installation Wizard SBCs
|
|
9446
10366
|
* @summary Update 3CX Installation Wizard SBCs
|
|
9447
|
-
* @param {Array<
|
|
10367
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9448
10368
|
* @param {*} [options] Override http request option.
|
|
9449
10369
|
* @throws {RequiredError}
|
|
9450
10370
|
*/
|
|
9451
|
-
patchAddSbcs(
|
|
10371
|
+
patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>>;
|
|
9452
10372
|
/**
|
|
9453
10373
|
* Update 3CX Installation Wizard
|
|
9454
10374
|
* @summary Update 3CX Installation Wizard
|
|
@@ -9484,11 +10404,11 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
|
|
|
9484
10404
|
/**
|
|
9485
10405
|
* Add SBCs To 3CX Installation Wizard
|
|
9486
10406
|
* @summary Add SBCs To 3CX Installation Wizard
|
|
9487
|
-
* @param {Array<
|
|
10407
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9488
10408
|
* @param {*} [options] Override http request option.
|
|
9489
10409
|
* @throws {RequiredError}
|
|
9490
10410
|
*/
|
|
9491
|
-
postAddSbcs(
|
|
10411
|
+
postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>>;
|
|
9492
10412
|
/**
|
|
9493
10413
|
* Build Instance From 3CX Installation Wizard
|
|
9494
10414
|
* @summary Build Instance From 3CX Installation Wizard
|
|
@@ -9572,12 +10492,12 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
9572
10492
|
/**
|
|
9573
10493
|
* Delete 3CX Installation Wizard SBCs
|
|
9574
10494
|
* @summary Delete 3CX Installation Wizard SBCs
|
|
9575
|
-
* @param {Array<
|
|
10495
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9576
10496
|
* @param {*} [options] Override http request option.
|
|
9577
10497
|
* @throws {RequiredError}
|
|
9578
10498
|
* @memberof Class3CXInstallationWizardApi
|
|
9579
10499
|
*/
|
|
9580
|
-
deleteAddSbcs(
|
|
10500
|
+
deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9581
10501
|
/**
|
|
9582
10502
|
* Delete 3CX Installation Wizard
|
|
9583
10503
|
* @summary Delete 3CX Installation Wizard
|
|
@@ -9669,12 +10589,12 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
9669
10589
|
/**
|
|
9670
10590
|
* Update 3CX Installation Wizard SBCs
|
|
9671
10591
|
* @summary Update 3CX Installation Wizard SBCs
|
|
9672
|
-
* @param {Array<
|
|
10592
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9673
10593
|
* @param {*} [options] Override http request option.
|
|
9674
10594
|
* @throws {RequiredError}
|
|
9675
10595
|
* @memberof Class3CXInstallationWizardApi
|
|
9676
10596
|
*/
|
|
9677
|
-
patchAddSbcs(
|
|
10597
|
+
patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcModel[], any, {}>>;
|
|
9678
10598
|
/**
|
|
9679
10599
|
* Update 3CX Installation Wizard
|
|
9680
10600
|
* @summary Update 3CX Installation Wizard
|
|
@@ -9714,12 +10634,12 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
9714
10634
|
/**
|
|
9715
10635
|
* Add SBCs To 3CX Installation Wizard
|
|
9716
10636
|
* @summary Add SBCs To 3CX Installation Wizard
|
|
9717
|
-
* @param {Array<
|
|
10637
|
+
* @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
|
|
9718
10638
|
* @param {*} [options] Override http request option.
|
|
9719
10639
|
* @throws {RequiredError}
|
|
9720
10640
|
* @memberof Class3CXInstallationWizardApi
|
|
9721
10641
|
*/
|
|
9722
|
-
postAddSbcs(
|
|
10642
|
+
postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcModel[], any, {}>>;
|
|
9723
10643
|
/**
|
|
9724
10644
|
* Build Instance From 3CX Installation Wizard
|
|
9725
10645
|
* @summary Build Instance From 3CX Installation Wizard
|
|
@@ -11159,11 +12079,19 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11159
12079
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11160
12080
|
/**
|
|
11161
12081
|
* Delete Orders
|
|
12082
|
+
* @summary Delete Orders
|
|
12083
|
+
* @param {number} id Order ID
|
|
12084
|
+
* @param {*} [options] Override http request option.
|
|
12085
|
+
* @throws {RequiredError}
|
|
12086
|
+
*/
|
|
12087
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12088
|
+
/**
|
|
12089
|
+
* Get Editable Order
|
|
11162
12090
|
* @param {number} id Order ID
|
|
11163
12091
|
* @param {*} [options] Override http request option.
|
|
11164
12092
|
* @throws {RequiredError}
|
|
11165
12093
|
*/
|
|
11166
|
-
|
|
12094
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11167
12095
|
/**
|
|
11168
12096
|
* Get Orders
|
|
11169
12097
|
* @summary Get Orders
|
|
@@ -11178,6 +12106,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11178
12106
|
* @throws {RequiredError}
|
|
11179
12107
|
*/
|
|
11180
12108
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12109
|
+
/**
|
|
12110
|
+
* Create An Order (Admin)
|
|
12111
|
+
* @summary Create An Order (Admin)
|
|
12112
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12113
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12114
|
+
* @param {*} [options] Override http request option.
|
|
12115
|
+
* @throws {RequiredError}
|
|
12116
|
+
*/
|
|
12117
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12118
|
+
/**
|
|
12119
|
+
* Create An Order
|
|
12120
|
+
* @summary Create An Order
|
|
12121
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12122
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12123
|
+
* @param {*} [options] Override http request option.
|
|
12124
|
+
* @throws {RequiredError}
|
|
12125
|
+
*/
|
|
12126
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12127
|
+
/**
|
|
12128
|
+
* Update An Order (Admin)
|
|
12129
|
+
* @summary Update An Order (Admin)
|
|
12130
|
+
* @param {number} id Order ID
|
|
12131
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12132
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12133
|
+
* @param {*} [options] Override http request option.
|
|
12134
|
+
* @throws {RequiredError}
|
|
12135
|
+
*/
|
|
12136
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12137
|
+
/**
|
|
12138
|
+
* Update An Order
|
|
12139
|
+
* @summary Update An Order
|
|
12140
|
+
* @param {number} id Order ID
|
|
12141
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12142
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12143
|
+
* @param {*} [options] Override http request option.
|
|
12144
|
+
* @throws {RequiredError}
|
|
12145
|
+
*/
|
|
12146
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11181
12147
|
};
|
|
11182
12148
|
/**
|
|
11183
12149
|
* OrdersApi - functional programming interface
|
|
@@ -11186,11 +12152,19 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11186
12152
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11187
12153
|
/**
|
|
11188
12154
|
* Delete Orders
|
|
12155
|
+
* @summary Delete Orders
|
|
12156
|
+
* @param {number} id Order ID
|
|
12157
|
+
* @param {*} [options] Override http request option.
|
|
12158
|
+
* @throws {RequiredError}
|
|
12159
|
+
*/
|
|
12160
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12161
|
+
/**
|
|
12162
|
+
* Get Editable Order
|
|
11189
12163
|
* @param {number} id Order ID
|
|
11190
12164
|
* @param {*} [options] Override http request option.
|
|
11191
12165
|
* @throws {RequiredError}
|
|
11192
12166
|
*/
|
|
11193
|
-
|
|
12167
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummaryDTO>>;
|
|
11194
12168
|
/**
|
|
11195
12169
|
* Get Orders
|
|
11196
12170
|
* @summary Get Orders
|
|
@@ -11205,6 +12179,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11205
12179
|
* @throws {RequiredError}
|
|
11206
12180
|
*/
|
|
11207
12181
|
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>>;
|
|
12182
|
+
/**
|
|
12183
|
+
* Create An Order (Admin)
|
|
12184
|
+
* @summary Create An Order (Admin)
|
|
12185
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12186
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12187
|
+
* @param {*} [options] Override http request option.
|
|
12188
|
+
* @throws {RequiredError}
|
|
12189
|
+
*/
|
|
12190
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12191
|
+
/**
|
|
12192
|
+
* Create An Order
|
|
12193
|
+
* @summary Create An Order
|
|
12194
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12195
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12196
|
+
* @param {*} [options] Override http request option.
|
|
12197
|
+
* @throws {RequiredError}
|
|
12198
|
+
*/
|
|
12199
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12200
|
+
/**
|
|
12201
|
+
* Update An Order (Admin)
|
|
12202
|
+
* @summary Update An Order (Admin)
|
|
12203
|
+
* @param {number} id Order ID
|
|
12204
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12205
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12206
|
+
* @param {*} [options] Override http request option.
|
|
12207
|
+
* @throws {RequiredError}
|
|
12208
|
+
*/
|
|
12209
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12210
|
+
/**
|
|
12211
|
+
* Update An Order
|
|
12212
|
+
* @summary Update An Order
|
|
12213
|
+
* @param {number} id Order ID
|
|
12214
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12215
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12216
|
+
* @param {*} [options] Override http request option.
|
|
12217
|
+
* @throws {RequiredError}
|
|
12218
|
+
*/
|
|
12219
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11208
12220
|
};
|
|
11209
12221
|
/**
|
|
11210
12222
|
* OrdersApi - factory interface
|
|
@@ -11213,11 +12225,19 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11213
12225
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11214
12226
|
/**
|
|
11215
12227
|
* Delete Orders
|
|
12228
|
+
* @summary Delete Orders
|
|
12229
|
+
* @param {number} id Order ID
|
|
12230
|
+
* @param {*} [options] Override http request option.
|
|
12231
|
+
* @throws {RequiredError}
|
|
12232
|
+
*/
|
|
12233
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12234
|
+
/**
|
|
12235
|
+
* Get Editable Order
|
|
11216
12236
|
* @param {number} id Order ID
|
|
11217
12237
|
* @param {*} [options] Override http request option.
|
|
11218
12238
|
* @throws {RequiredError}
|
|
11219
12239
|
*/
|
|
11220
|
-
|
|
12240
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11221
12241
|
/**
|
|
11222
12242
|
* Get Orders
|
|
11223
12243
|
* @summary Get Orders
|
|
@@ -11232,6 +12252,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11232
12252
|
* @throws {RequiredError}
|
|
11233
12253
|
*/
|
|
11234
12254
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12255
|
+
/**
|
|
12256
|
+
* Create An Order (Admin)
|
|
12257
|
+
* @summary Create An Order (Admin)
|
|
12258
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12259
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12260
|
+
* @param {*} [options] Override http request option.
|
|
12261
|
+
* @throws {RequiredError}
|
|
12262
|
+
*/
|
|
12263
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12264
|
+
/**
|
|
12265
|
+
* Create An Order
|
|
12266
|
+
* @summary Create An Order
|
|
12267
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12268
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12269
|
+
* @param {*} [options] Override http request option.
|
|
12270
|
+
* @throws {RequiredError}
|
|
12271
|
+
*/
|
|
12272
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12273
|
+
/**
|
|
12274
|
+
* Update An Order (Admin)
|
|
12275
|
+
* @summary Update An Order (Admin)
|
|
12276
|
+
* @param {number} id Order ID
|
|
12277
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12278
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12279
|
+
* @param {*} [options] Override http request option.
|
|
12280
|
+
* @throws {RequiredError}
|
|
12281
|
+
*/
|
|
12282
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12283
|
+
/**
|
|
12284
|
+
* Update An Order
|
|
12285
|
+
* @summary Update An Order
|
|
12286
|
+
* @param {number} id Order ID
|
|
12287
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12288
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12289
|
+
* @param {*} [options] Override http request option.
|
|
12290
|
+
* @throws {RequiredError}
|
|
12291
|
+
*/
|
|
12292
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11235
12293
|
};
|
|
11236
12294
|
/**
|
|
11237
12295
|
* OrdersApi - object-oriented interface
|
|
@@ -11242,12 +12300,21 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11242
12300
|
export declare class OrdersApi extends BaseAPI {
|
|
11243
12301
|
/**
|
|
11244
12302
|
* Delete Orders
|
|
12303
|
+
* @summary Delete Orders
|
|
12304
|
+
* @param {number} id Order ID
|
|
12305
|
+
* @param {*} [options] Override http request option.
|
|
12306
|
+
* @throws {RequiredError}
|
|
12307
|
+
* @memberof OrdersApi
|
|
12308
|
+
*/
|
|
12309
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12310
|
+
/**
|
|
12311
|
+
* Get Editable Order
|
|
11245
12312
|
* @param {number} id Order ID
|
|
11246
12313
|
* @param {*} [options] Override http request option.
|
|
11247
12314
|
* @throws {RequiredError}
|
|
11248
12315
|
* @memberof OrdersApi
|
|
11249
12316
|
*/
|
|
11250
|
-
|
|
12317
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO, any, {}>>;
|
|
11251
12318
|
/**
|
|
11252
12319
|
* Get Orders
|
|
11253
12320
|
* @summary Get Orders
|
|
@@ -11263,6 +12330,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11263
12330
|
* @memberof OrdersApi
|
|
11264
12331
|
*/
|
|
11265
12332
|
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, {}>>;
|
|
12333
|
+
/**
|
|
12334
|
+
* Create An Order (Admin)
|
|
12335
|
+
* @summary Create An Order (Admin)
|
|
12336
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12337
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12338
|
+
* @param {*} [options] Override http request option.
|
|
12339
|
+
* @throws {RequiredError}
|
|
12340
|
+
* @memberof OrdersApi
|
|
12341
|
+
*/
|
|
12342
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12343
|
+
/**
|
|
12344
|
+
* Create An Order
|
|
12345
|
+
* @summary Create An Order
|
|
12346
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12347
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12348
|
+
* @param {*} [options] Override http request option.
|
|
12349
|
+
* @throws {RequiredError}
|
|
12350
|
+
* @memberof OrdersApi
|
|
12351
|
+
*/
|
|
12352
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12353
|
+
/**
|
|
12354
|
+
* Update An Order (Admin)
|
|
12355
|
+
* @summary Update An Order (Admin)
|
|
12356
|
+
* @param {number} id Order ID
|
|
12357
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12358
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12359
|
+
* @param {*} [options] Override http request option.
|
|
12360
|
+
* @throws {RequiredError}
|
|
12361
|
+
* @memberof OrdersApi
|
|
12362
|
+
*/
|
|
12363
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12364
|
+
/**
|
|
12365
|
+
* Update An Order
|
|
12366
|
+
* @summary Update An Order
|
|
12367
|
+
* @param {number} id Order ID
|
|
12368
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12369
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12370
|
+
* @param {*} [options] Override http request option.
|
|
12371
|
+
* @throws {RequiredError}
|
|
12372
|
+
* @memberof OrdersApi
|
|
12373
|
+
*/
|
|
12374
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11266
12375
|
}
|
|
11267
12376
|
/**
|
|
11268
12377
|
* @export
|
|
@@ -11518,13 +12627,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11518
12627
|
* @throws {RequiredError}
|
|
11519
12628
|
*/
|
|
11520
12629
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11521
|
-
/**
|
|
11522
|
-
* Get Customer Price Lists
|
|
11523
|
-
* @summary Get Customer Price Lists
|
|
11524
|
-
* @param {*} [options] Override http request option.
|
|
11525
|
-
* @throws {RequiredError}
|
|
11526
|
-
*/
|
|
11527
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11528
12630
|
/**
|
|
11529
12631
|
* Get Current Stock & Pricing
|
|
11530
12632
|
* @summary Get Current Stock & Pricing
|
|
@@ -11534,16 +12636,23 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11534
12636
|
* @throws {RequiredError}
|
|
11535
12637
|
*/
|
|
11536
12638
|
getGetLegacyStockList: (format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12639
|
+
/**
|
|
12640
|
+
* Get Product
|
|
12641
|
+
* @summary Get Product
|
|
12642
|
+
* @param {string} sku Product SKU
|
|
12643
|
+
* @param {number} [quantity] Quantity
|
|
12644
|
+
* @param {string} [licenceKey] 3CX Licence Key
|
|
12645
|
+
* @param {*} [options] Override http request option.
|
|
12646
|
+
* @throws {RequiredError}
|
|
12647
|
+
*/
|
|
12648
|
+
getGetProduct: (sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11537
12649
|
/**
|
|
11538
12650
|
* Get Products
|
|
11539
12651
|
* @summary Get Products
|
|
11540
|
-
* @param {number} [pageSize] Number Of Results
|
|
11541
|
-
* @param {number} [page] Page Number
|
|
11542
|
-
* @param {string} [search] Search
|
|
11543
12652
|
* @param {*} [options] Override http request option.
|
|
11544
12653
|
* @throws {RequiredError}
|
|
11545
12654
|
*/
|
|
11546
|
-
getGetProducts: (
|
|
12655
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11547
12656
|
/**
|
|
11548
12657
|
* Get Current Stock & Pricing
|
|
11549
12658
|
* @summary Get Current Stock & Pricing
|
|
@@ -11558,6 +12667,16 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11558
12667
|
* @throws {RequiredError}
|
|
11559
12668
|
*/
|
|
11560
12669
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12670
|
+
/**
|
|
12671
|
+
* Search Products
|
|
12672
|
+
* @summary Search Products
|
|
12673
|
+
* @param {number} [pageSize] Number Of Results
|
|
12674
|
+
* @param {number} [page] Page Number
|
|
12675
|
+
* @param {string} [search] Search
|
|
12676
|
+
* @param {*} [options] Override http request option.
|
|
12677
|
+
* @throws {RequiredError}
|
|
12678
|
+
*/
|
|
12679
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11561
12680
|
};
|
|
11562
12681
|
/**
|
|
11563
12682
|
* ProductsApi - functional programming interface
|
|
@@ -11571,13 +12690,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
11571
12690
|
* @throws {RequiredError}
|
|
11572
12691
|
*/
|
|
11573
12692
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
11574
|
-
/**
|
|
11575
|
-
* Get Customer Price Lists
|
|
11576
|
-
* @summary Get Customer Price Lists
|
|
11577
|
-
* @param {*} [options] Override http request option.
|
|
11578
|
-
* @throws {RequiredError}
|
|
11579
|
-
*/
|
|
11580
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
11581
12693
|
/**
|
|
11582
12694
|
* Get Current Stock & Pricing
|
|
11583
12695
|
* @summary Get Current Stock & Pricing
|
|
@@ -11587,16 +12699,23 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
11587
12699
|
* @throws {RequiredError}
|
|
11588
12700
|
*/
|
|
11589
12701
|
getGetLegacyStockList(format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
12702
|
+
/**
|
|
12703
|
+
* Get Product
|
|
12704
|
+
* @summary Get Product
|
|
12705
|
+
* @param {string} sku Product SKU
|
|
12706
|
+
* @param {number} [quantity] Quantity
|
|
12707
|
+
* @param {string} [licenceKey] 3CX Licence Key
|
|
12708
|
+
* @param {*} [options] Override http request option.
|
|
12709
|
+
* @throws {RequiredError}
|
|
12710
|
+
*/
|
|
12711
|
+
getGetProduct(sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
11590
12712
|
/**
|
|
11591
12713
|
* Get Products
|
|
11592
12714
|
* @summary Get Products
|
|
11593
|
-
* @param {number} [pageSize] Number Of Results
|
|
11594
|
-
* @param {number} [page] Page Number
|
|
11595
|
-
* @param {string} [search] Search
|
|
11596
12715
|
* @param {*} [options] Override http request option.
|
|
11597
12716
|
* @throws {RequiredError}
|
|
11598
12717
|
*/
|
|
11599
|
-
getGetProducts(
|
|
12718
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
11600
12719
|
/**
|
|
11601
12720
|
* Get Current Stock & Pricing
|
|
11602
12721
|
* @summary Get Current Stock & Pricing
|
|
@@ -11611,6 +12730,16 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
11611
12730
|
* @throws {RequiredError}
|
|
11612
12731
|
*/
|
|
11613
12732
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
12733
|
+
/**
|
|
12734
|
+
* Search Products
|
|
12735
|
+
* @summary Search Products
|
|
12736
|
+
* @param {number} [pageSize] Number Of Results
|
|
12737
|
+
* @param {number} [page] Page Number
|
|
12738
|
+
* @param {string} [search] Search
|
|
12739
|
+
* @param {*} [options] Override http request option.
|
|
12740
|
+
* @throws {RequiredError}
|
|
12741
|
+
*/
|
|
12742
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
11614
12743
|
};
|
|
11615
12744
|
/**
|
|
11616
12745
|
* ProductsApi - factory interface
|
|
@@ -11624,13 +12753,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
11624
12753
|
* @throws {RequiredError}
|
|
11625
12754
|
*/
|
|
11626
12755
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
11627
|
-
/**
|
|
11628
|
-
* Get Customer Price Lists
|
|
11629
|
-
* @summary Get Customer Price Lists
|
|
11630
|
-
* @param {*} [options] Override http request option.
|
|
11631
|
-
* @throws {RequiredError}
|
|
11632
|
-
*/
|
|
11633
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
11634
12756
|
/**
|
|
11635
12757
|
* Get Current Stock & Pricing
|
|
11636
12758
|
* @summary Get Current Stock & Pricing
|
|
@@ -11640,16 +12762,23 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
11640
12762
|
* @throws {RequiredError}
|
|
11641
12763
|
*/
|
|
11642
12764
|
getGetLegacyStockList(format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
12765
|
+
/**
|
|
12766
|
+
* Get Product
|
|
12767
|
+
* @summary Get Product
|
|
12768
|
+
* @param {string} sku Product SKU
|
|
12769
|
+
* @param {number} [quantity] Quantity
|
|
12770
|
+
* @param {string} [licenceKey] 3CX Licence Key
|
|
12771
|
+
* @param {*} [options] Override http request option.
|
|
12772
|
+
* @throws {RequiredError}
|
|
12773
|
+
*/
|
|
12774
|
+
getGetProduct(sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
11643
12775
|
/**
|
|
11644
12776
|
* Get Products
|
|
11645
12777
|
* @summary Get Products
|
|
11646
|
-
* @param {number} [pageSize] Number Of Results
|
|
11647
|
-
* @param {number} [page] Page Number
|
|
11648
|
-
* @param {string} [search] Search
|
|
11649
12778
|
* @param {*} [options] Override http request option.
|
|
11650
12779
|
* @throws {RequiredError}
|
|
11651
12780
|
*/
|
|
11652
|
-
getGetProducts(
|
|
12781
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
11653
12782
|
/**
|
|
11654
12783
|
* Get Current Stock & Pricing
|
|
11655
12784
|
* @summary Get Current Stock & Pricing
|
|
@@ -11664,6 +12793,16 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
11664
12793
|
* @throws {RequiredError}
|
|
11665
12794
|
*/
|
|
11666
12795
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
12796
|
+
/**
|
|
12797
|
+
* Search Products
|
|
12798
|
+
* @summary Search Products
|
|
12799
|
+
* @param {number} [pageSize] Number Of Results
|
|
12800
|
+
* @param {number} [page] Page Number
|
|
12801
|
+
* @param {string} [search] Search
|
|
12802
|
+
* @param {*} [options] Override http request option.
|
|
12803
|
+
* @throws {RequiredError}
|
|
12804
|
+
*/
|
|
12805
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
11667
12806
|
};
|
|
11668
12807
|
/**
|
|
11669
12808
|
* ProductsApi - object-oriented interface
|
|
@@ -11680,14 +12819,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
11680
12819
|
* @memberof ProductsApi
|
|
11681
12820
|
*/
|
|
11682
12821
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
11683
|
-
/**
|
|
11684
|
-
* Get Customer Price Lists
|
|
11685
|
-
* @summary Get Customer Price Lists
|
|
11686
|
-
* @param {*} [options] Override http request option.
|
|
11687
|
-
* @throws {RequiredError}
|
|
11688
|
-
* @memberof ProductsApi
|
|
11689
|
-
*/
|
|
11690
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
11691
12822
|
/**
|
|
11692
12823
|
* Get Current Stock & Pricing
|
|
11693
12824
|
* @summary Get Current Stock & Pricing
|
|
@@ -11698,17 +12829,25 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
11698
12829
|
* @memberof ProductsApi
|
|
11699
12830
|
*/
|
|
11700
12831
|
getGetLegacyStockList(format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
12832
|
+
/**
|
|
12833
|
+
* Get Product
|
|
12834
|
+
* @summary Get Product
|
|
12835
|
+
* @param {string} sku Product SKU
|
|
12836
|
+
* @param {number} [quantity] Quantity
|
|
12837
|
+
* @param {string} [licenceKey] 3CX Licence Key
|
|
12838
|
+
* @param {*} [options] Override http request option.
|
|
12839
|
+
* @throws {RequiredError}
|
|
12840
|
+
* @memberof ProductsApi
|
|
12841
|
+
*/
|
|
12842
|
+
getGetProduct(sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
11701
12843
|
/**
|
|
11702
12844
|
* Get Products
|
|
11703
12845
|
* @summary Get Products
|
|
11704
|
-
* @param {number} [pageSize] Number Of Results
|
|
11705
|
-
* @param {number} [page] Page Number
|
|
11706
|
-
* @param {string} [search] Search
|
|
11707
12846
|
* @param {*} [options] Override http request option.
|
|
11708
12847
|
* @throws {RequiredError}
|
|
11709
12848
|
* @memberof ProductsApi
|
|
11710
12849
|
*/
|
|
11711
|
-
getGetProducts(
|
|
12850
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
11712
12851
|
/**
|
|
11713
12852
|
* Get Current Stock & Pricing
|
|
11714
12853
|
* @summary Get Current Stock & Pricing
|
|
@@ -11725,6 +12864,17 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
11725
12864
|
* @memberof ProductsApi
|
|
11726
12865
|
*/
|
|
11727
12866
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
12867
|
+
/**
|
|
12868
|
+
* Search Products
|
|
12869
|
+
* @summary Search Products
|
|
12870
|
+
* @param {number} [pageSize] Number Of Results
|
|
12871
|
+
* @param {number} [page] Page Number
|
|
12872
|
+
* @param {string} [search] Search
|
|
12873
|
+
* @param {*} [options] Override http request option.
|
|
12874
|
+
* @throws {RequiredError}
|
|
12875
|
+
* @memberof ProductsApi
|
|
12876
|
+
*/
|
|
12877
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
11728
12878
|
}
|
|
11729
12879
|
/**
|
|
11730
12880
|
* @export
|
|
@@ -11845,7 +12995,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
11845
12995
|
* @param {*} [options] Override http request option.
|
|
11846
12996
|
* @throws {RequiredError}
|
|
11847
12997
|
*/
|
|
11848
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12998
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
11849
12999
|
/**
|
|
11850
13000
|
* Create a Fanvil provisioning group
|
|
11851
13001
|
* @summary Add group to DB and FDPS
|
|
@@ -11853,7 +13003,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
11853
13003
|
* @param {*} [options] Override http request option.
|
|
11854
13004
|
* @throws {RequiredError}
|
|
11855
13005
|
*/
|
|
11856
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13006
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
11857
13007
|
/**
|
|
11858
13008
|
* Add MAC address to DB and FDPS group
|
|
11859
13009
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -11910,7 +13060,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
11910
13060
|
* @param {*} [options] Override http request option.
|
|
11911
13061
|
* @throws {RequiredError}
|
|
11912
13062
|
*/
|
|
11913
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13063
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
11914
13064
|
/**
|
|
11915
13065
|
* Create a Fanvil provisioning group
|
|
11916
13066
|
* @summary Add group to DB and FDPS
|
|
@@ -11918,7 +13068,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
11918
13068
|
* @param {*} [options] Override http request option.
|
|
11919
13069
|
* @throws {RequiredError}
|
|
11920
13070
|
*/
|
|
11921
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13071
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
11922
13072
|
/**
|
|
11923
13073
|
* Add MAC address to DB and FDPS group
|
|
11924
13074
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -11982,7 +13132,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
11982
13132
|
* @throws {RequiredError}
|
|
11983
13133
|
* @memberof ProvisioningApi
|
|
11984
13134
|
*/
|
|
11985
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13135
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
11986
13136
|
/**
|
|
11987
13137
|
* Create a Fanvil provisioning group
|
|
11988
13138
|
* @summary Add group to DB and FDPS
|
|
@@ -11991,7 +13141,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
11991
13141
|
* @throws {RequiredError}
|
|
11992
13142
|
* @memberof ProvisioningApi
|
|
11993
13143
|
*/
|
|
11994
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13144
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
11995
13145
|
/**
|
|
11996
13146
|
* Add MAC address to DB and FDPS group
|
|
11997
13147
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12866,6 +14016,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
12866
14016
|
*/
|
|
12867
14017
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
12868
14018
|
}
|
|
14019
|
+
/**
|
|
14020
|
+
* ShippingApi - axios parameter creator
|
|
14021
|
+
* @export
|
|
14022
|
+
*/
|
|
14023
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14024
|
+
/**
|
|
14025
|
+
* Get Shipping Services
|
|
14026
|
+
* @summary Get Shipping Services
|
|
14027
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14028
|
+
* @param {*} [options] Override http request option.
|
|
14029
|
+
* @throws {RequiredError}
|
|
14030
|
+
*/
|
|
14031
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14032
|
+
};
|
|
14033
|
+
/**
|
|
14034
|
+
* ShippingApi - functional programming interface
|
|
14035
|
+
* @export
|
|
14036
|
+
*/
|
|
14037
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14038
|
+
/**
|
|
14039
|
+
* Get Shipping Services
|
|
14040
|
+
* @summary Get Shipping Services
|
|
14041
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14042
|
+
* @param {*} [options] Override http request option.
|
|
14043
|
+
* @throws {RequiredError}
|
|
14044
|
+
*/
|
|
14045
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14046
|
+
};
|
|
14047
|
+
/**
|
|
14048
|
+
* ShippingApi - factory interface
|
|
14049
|
+
* @export
|
|
14050
|
+
*/
|
|
14051
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14052
|
+
/**
|
|
14053
|
+
* Get Shipping Services
|
|
14054
|
+
* @summary Get Shipping Services
|
|
14055
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14056
|
+
* @param {*} [options] Override http request option.
|
|
14057
|
+
* @throws {RequiredError}
|
|
14058
|
+
*/
|
|
14059
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14060
|
+
};
|
|
14061
|
+
/**
|
|
14062
|
+
* ShippingApi - object-oriented interface
|
|
14063
|
+
* @export
|
|
14064
|
+
* @class ShippingApi
|
|
14065
|
+
* @extends {BaseAPI}
|
|
14066
|
+
*/
|
|
14067
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14068
|
+
/**
|
|
14069
|
+
* Get Shipping Services
|
|
14070
|
+
* @summary Get Shipping Services
|
|
14071
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14072
|
+
* @param {*} [options] Override http request option.
|
|
14073
|
+
* @throws {RequiredError}
|
|
14074
|
+
* @memberof ShippingApi
|
|
14075
|
+
*/
|
|
14076
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14077
|
+
}
|
|
12869
14078
|
/**
|
|
12870
14079
|
* StockManagementApi - axios parameter creator
|
|
12871
14080
|
* @export
|
|
@@ -13195,7 +14404,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13195
14404
|
* @param {*} [options] Override http request option.
|
|
13196
14405
|
* @throws {RequiredError}
|
|
13197
14406
|
*/
|
|
13198
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
14407
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13199
14408
|
/**
|
|
13200
14409
|
* Get Stock Order Supplier Invoice
|
|
13201
14410
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13410,7 +14619,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
13410
14619
|
* @param {*} [options] Override http request option.
|
|
13411
14620
|
* @throws {RequiredError}
|
|
13412
14621
|
*/
|
|
13413
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14622
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
13414
14623
|
/**
|
|
13415
14624
|
* Get Stock Order Supplier Invoice
|
|
13416
14625
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13640,7 +14849,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
13640
14849
|
* @throws {RequiredError}
|
|
13641
14850
|
* @memberof StockManagementApi
|
|
13642
14851
|
*/
|
|
13643
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14852
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
13644
14853
|
/**
|
|
13645
14854
|
* Get Stock Order Supplier Invoice
|
|
13646
14855
|
* @summary Get Stock Order Supplier Invoice
|