yellowgrid-api-ts 3.1.6 → 3.1.8-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 +214 -197
- package/README.md +34 -7
- package/api.ts +1899 -252
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1384 -155
- package/dist/api.js +1150 -196
- 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 +39 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AddressModel.md +2 -0
- package/docs/AdminItemRequestDTO.md +41 -0
- package/docs/AdminOrderRequestDTO.md +45 -0
- package/docs/AdminUserModel.md +29 -0
- package/docs/BasicItemDTO.md +23 -0
- package/docs/BasicProductDTO.md +23 -0
- package/docs/Class3CXApi.md +0 -55
- package/docs/Class3CXInstallationsApi.md +4 -1
- package/docs/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CrmContactDTO.md +4 -2
- package/docs/CustomerItemRequestDTO.md +37 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +12 -4
- package/docs/ItemEntity.md +2 -0
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +356 -4
- package/docs/PostGetProductForCustomerRequest.md +24 -0
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +5 -3
- package/docs/ProductsApi.md +164 -43
- 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/TcxSbcDTO.md +31 -0
- package/docs/TcxSbcModel.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 | null;
|
|
28
|
+
/**
|
|
29
|
+
* Items
|
|
30
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
+
* @memberof AbstractOrderRequestDTO
|
|
32
|
+
*/
|
|
33
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {ShippingServiceDTO}
|
|
37
|
+
* @memberof AbstractOrderRequestDTO
|
|
38
|
+
*/
|
|
39
|
+
'shippingService'?: ShippingServiceDTO;
|
|
40
|
+
/**
|
|
41
|
+
* Provisioning URL
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof AbstractOrderRequestDTO
|
|
44
|
+
*/
|
|
45
|
+
'provisioningUrl'?: string | null;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {AddressModel}
|
|
49
|
+
* @memberof AbstractOrderRequestDTO
|
|
50
|
+
*/
|
|
51
|
+
'shippingAddress'?: AddressModel | null;
|
|
52
|
+
/**
|
|
53
|
+
* Part Ship Order
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof AbstractOrderRequestDTO
|
|
56
|
+
*/
|
|
57
|
+
'partShip'?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Quote
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof AbstractOrderRequestDTO
|
|
62
|
+
*/
|
|
63
|
+
'quote'?: boolean;
|
|
64
|
+
}
|
|
16
65
|
/**
|
|
17
66
|
* AccountContactsEntity
|
|
18
67
|
* @export
|
|
@@ -244,6 +293,73 @@ 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
|
+
/**
|
|
351
|
+
* On Hold
|
|
352
|
+
* @type {boolean}
|
|
353
|
+
* @memberof AccountDetailedSummaryDTO
|
|
354
|
+
*/
|
|
355
|
+
'onHold'?: boolean;
|
|
356
|
+
/**
|
|
357
|
+
* Balance (£)
|
|
358
|
+
* @type {number}
|
|
359
|
+
* @memberof AccountDetailedSummaryDTO
|
|
360
|
+
*/
|
|
361
|
+
'balance'?: number | null;
|
|
362
|
+
}
|
|
247
363
|
/**
|
|
248
364
|
* New Account Request
|
|
249
365
|
* @export
|
|
@@ -493,6 +609,12 @@ export interface AddressModel {
|
|
|
493
609
|
* @memberof AddressModel
|
|
494
610
|
*/
|
|
495
611
|
'company'?: string;
|
|
612
|
+
/**
|
|
613
|
+
* Default
|
|
614
|
+
* @type {boolean}
|
|
615
|
+
* @memberof AddressModel
|
|
616
|
+
*/
|
|
617
|
+
'default'?: boolean;
|
|
496
618
|
}
|
|
497
619
|
/**
|
|
498
620
|
* Address Request
|
|
@@ -525,6 +647,209 @@ export interface AddressRequestModel {
|
|
|
525
647
|
*/
|
|
526
648
|
'addressPostcode'?: string;
|
|
527
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* Admin Order Item Request
|
|
652
|
+
* @export
|
|
653
|
+
* @interface AdminItemRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
export interface AdminItemRequestDTO {
|
|
656
|
+
/**
|
|
657
|
+
* SKU
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof AdminItemRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'sku'?: string;
|
|
662
|
+
/**
|
|
663
|
+
* Quantity
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof AdminItemRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'quantity'?: number;
|
|
668
|
+
/**
|
|
669
|
+
* ID
|
|
670
|
+
* @type {number}
|
|
671
|
+
* @memberof AdminItemRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'id'?: number | null;
|
|
674
|
+
/**
|
|
675
|
+
* 3CX Licence Key
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof AdminItemRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'licenceKey'?: string | null;
|
|
680
|
+
/**
|
|
681
|
+
* 3CX Hosting
|
|
682
|
+
* @type {boolean}
|
|
683
|
+
* @memberof AdminItemRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'hosting'?: boolean | null;
|
|
686
|
+
/**
|
|
687
|
+
* Date Time
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'processDate'?: string;
|
|
692
|
+
/**
|
|
693
|
+
* 3CX Sales Code
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof AdminItemRequestDTO
|
|
696
|
+
*/
|
|
697
|
+
'tcxSalesCode'?: string | null;
|
|
698
|
+
/**
|
|
699
|
+
* SBCS
|
|
700
|
+
* @type {Array<TcxSbcDTO>}
|
|
701
|
+
* @memberof AdminItemRequestDTO
|
|
702
|
+
*/
|
|
703
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
704
|
+
/**
|
|
705
|
+
* Read Only (Cannot be edited)
|
|
706
|
+
* @type {boolean}
|
|
707
|
+
* @memberof AdminItemRequestDTO
|
|
708
|
+
*/
|
|
709
|
+
'readOnly'?: boolean;
|
|
710
|
+
/**
|
|
711
|
+
* Title
|
|
712
|
+
* @type {string}
|
|
713
|
+
* @memberof AdminItemRequestDTO
|
|
714
|
+
*/
|
|
715
|
+
'title'?: string | null;
|
|
716
|
+
/**
|
|
717
|
+
* Price (£)
|
|
718
|
+
* @type {number}
|
|
719
|
+
* @memberof AdminItemRequestDTO
|
|
720
|
+
*/
|
|
721
|
+
'itemPrice'?: number | null;
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* Admin Order Request
|
|
725
|
+
* @export
|
|
726
|
+
* @interface AdminOrderRequestDTO
|
|
727
|
+
*/
|
|
728
|
+
export interface AdminOrderRequestDTO {
|
|
729
|
+
/**
|
|
730
|
+
* Order Reference
|
|
731
|
+
* @type {string}
|
|
732
|
+
* @memberof AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
'orderReference'?: string | null;
|
|
735
|
+
/**
|
|
736
|
+
* Items
|
|
737
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
741
|
+
/**
|
|
742
|
+
*
|
|
743
|
+
* @type {ShippingServiceDTO}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'shippingService'?: ShippingServiceDTO;
|
|
747
|
+
/**
|
|
748
|
+
* Provisioning URL
|
|
749
|
+
* @type {string}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'provisioningUrl'?: string | null;
|
|
753
|
+
/**
|
|
754
|
+
*
|
|
755
|
+
* @type {AddressModel}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'shippingAddress'?: AddressModel;
|
|
759
|
+
/**
|
|
760
|
+
* Part Ship Order
|
|
761
|
+
* @type {boolean}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'partShip'?: boolean;
|
|
765
|
+
/**
|
|
766
|
+
* Quote
|
|
767
|
+
* @type {boolean}
|
|
768
|
+
* @memberof AdminOrderRequestDTO
|
|
769
|
+
*/
|
|
770
|
+
'quote'?: boolean;
|
|
771
|
+
/**
|
|
772
|
+
* Customer ID
|
|
773
|
+
* @type {number}
|
|
774
|
+
* @memberof AdminOrderRequestDTO
|
|
775
|
+
*/
|
|
776
|
+
'customerId'?: number;
|
|
777
|
+
/**
|
|
778
|
+
* Contact
|
|
779
|
+
* @type {string}
|
|
780
|
+
* @memberof AdminOrderRequestDTO
|
|
781
|
+
*/
|
|
782
|
+
'contact'?: string;
|
|
783
|
+
/**
|
|
784
|
+
* Ignore Customer On Hold
|
|
785
|
+
* @type {boolean}
|
|
786
|
+
* @memberof AdminOrderRequestDTO
|
|
787
|
+
*/
|
|
788
|
+
'ignoreOnHold'?: boolean;
|
|
789
|
+
/**
|
|
790
|
+
* Ignore Customer Credit Limit
|
|
791
|
+
* @type {boolean}
|
|
792
|
+
* @memberof AdminOrderRequestDTO
|
|
793
|
+
*/
|
|
794
|
+
'ignoreCreditLimit'?: boolean;
|
|
795
|
+
/**
|
|
796
|
+
* Include NFR Promos
|
|
797
|
+
* @type {boolean}
|
|
798
|
+
* @memberof AdminOrderRequestDTO
|
|
799
|
+
*/
|
|
800
|
+
'includeNfrPromos'?: boolean;
|
|
801
|
+
/**
|
|
802
|
+
* Carriage Charge
|
|
803
|
+
* @type {number}
|
|
804
|
+
* @memberof AdminOrderRequestDTO
|
|
805
|
+
*/
|
|
806
|
+
'carriageCharge'?: number;
|
|
807
|
+
}
|
|
808
|
+
/**
|
|
809
|
+
* Admin User
|
|
810
|
+
* @export
|
|
811
|
+
* @interface AdminUserModel
|
|
812
|
+
*/
|
|
813
|
+
export interface AdminUserModel {
|
|
814
|
+
/**
|
|
815
|
+
* First Name
|
|
816
|
+
* @type {string}
|
|
817
|
+
* @memberof AdminUserModel
|
|
818
|
+
*/
|
|
819
|
+
'firstName'?: string;
|
|
820
|
+
/**
|
|
821
|
+
* Last Name
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof AdminUserModel
|
|
824
|
+
*/
|
|
825
|
+
'lastName'?: string;
|
|
826
|
+
/**
|
|
827
|
+
* Avatar
|
|
828
|
+
* @type {string}
|
|
829
|
+
* @memberof AdminUserModel
|
|
830
|
+
*/
|
|
831
|
+
'avatar'?: string | null;
|
|
832
|
+
/**
|
|
833
|
+
* Role
|
|
834
|
+
* @type {number}
|
|
835
|
+
* @memberof AdminUserModel
|
|
836
|
+
*/
|
|
837
|
+
'role'?: AdminUserModelRoleEnum;
|
|
838
|
+
/**
|
|
839
|
+
* Email
|
|
840
|
+
* @type {string}
|
|
841
|
+
* @memberof AdminUserModel
|
|
842
|
+
*/
|
|
843
|
+
'email'?: string | null;
|
|
844
|
+
}
|
|
845
|
+
export declare const AdminUserModelRoleEnum: {
|
|
846
|
+
readonly NUMBER_0: 0;
|
|
847
|
+
readonly NUMBER_1: 1;
|
|
848
|
+
readonly NUMBER_2: 2;
|
|
849
|
+
readonly NUMBER_3: 3;
|
|
850
|
+
readonly NUMBER_4: 4;
|
|
851
|
+
};
|
|
852
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
853
|
/**
|
|
529
854
|
* Agent Hours Graph
|
|
530
855
|
* @export
|
|
@@ -754,6 +1079,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1079
|
*/
|
|
755
1080
|
'redirect_uri'?: string | null;
|
|
756
1081
|
}
|
|
1082
|
+
/**
|
|
1083
|
+
* Basic Order Item
|
|
1084
|
+
* @export
|
|
1085
|
+
* @interface BasicItemDTO
|
|
1086
|
+
*/
|
|
1087
|
+
export interface BasicItemDTO {
|
|
1088
|
+
/**
|
|
1089
|
+
* SKU
|
|
1090
|
+
* @type {string}
|
|
1091
|
+
* @memberof BasicItemDTO
|
|
1092
|
+
*/
|
|
1093
|
+
'sku'?: string;
|
|
1094
|
+
/**
|
|
1095
|
+
* Quantity
|
|
1096
|
+
* @type {number}
|
|
1097
|
+
* @memberof BasicItemDTO
|
|
1098
|
+
*/
|
|
1099
|
+
'quantity'?: number;
|
|
1100
|
+
}
|
|
1101
|
+
/**
|
|
1102
|
+
* Basic Product
|
|
1103
|
+
* @export
|
|
1104
|
+
* @interface BasicProductDTO
|
|
1105
|
+
*/
|
|
1106
|
+
export interface BasicProductDTO {
|
|
1107
|
+
/**
|
|
1108
|
+
* SKU
|
|
1109
|
+
* @type {string}
|
|
1110
|
+
* @memberof BasicProductDTO
|
|
1111
|
+
*/
|
|
1112
|
+
'sku'?: string;
|
|
1113
|
+
/**
|
|
1114
|
+
* Title
|
|
1115
|
+
* @type {string}
|
|
1116
|
+
* @memberof BasicProductDTO
|
|
1117
|
+
*/
|
|
1118
|
+
'title'?: string;
|
|
1119
|
+
}
|
|
757
1120
|
/**
|
|
758
1121
|
* BatchesEntity
|
|
759
1122
|
* @export
|
|
@@ -948,12 +1311,6 @@ export interface ClientDetailsModel {
|
|
|
948
1311
|
* @memberof ClientDetailsModel
|
|
949
1312
|
*/
|
|
950
1313
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1314
|
}
|
|
958
1315
|
/**
|
|
959
1316
|
* OAuth client details
|
|
@@ -1115,6 +1472,73 @@ export interface ConversationModel {
|
|
|
1115
1472
|
*/
|
|
1116
1473
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1474
|
}
|
|
1475
|
+
/**
|
|
1476
|
+
* CourierPricesEntity
|
|
1477
|
+
* @export
|
|
1478
|
+
* @interface CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
export interface CourierPriceEntity {
|
|
1481
|
+
/**
|
|
1482
|
+
* id
|
|
1483
|
+
* @type {number}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'id'?: number;
|
|
1487
|
+
/**
|
|
1488
|
+
* courier
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'courier'?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* destinationIso
|
|
1495
|
+
* @type {string}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'destinationIso'?: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* serviceDescription
|
|
1501
|
+
* @type {string}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'serviceDescription'?: string;
|
|
1505
|
+
/**
|
|
1506
|
+
* flatRate
|
|
1507
|
+
* @type {number}
|
|
1508
|
+
* @memberof CourierPriceEntity
|
|
1509
|
+
*/
|
|
1510
|
+
'flatRate'?: number;
|
|
1511
|
+
/**
|
|
1512
|
+
* initialBox
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof CourierPriceEntity
|
|
1515
|
+
*/
|
|
1516
|
+
'initialBox'?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
* initialKg
|
|
1519
|
+
* @type {number}
|
|
1520
|
+
* @memberof CourierPriceEntity
|
|
1521
|
+
*/
|
|
1522
|
+
'initialKg'?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* perBox
|
|
1525
|
+
* @type {number}
|
|
1526
|
+
* @memberof CourierPriceEntity
|
|
1527
|
+
*/
|
|
1528
|
+
'perBox'?: number;
|
|
1529
|
+
/**
|
|
1530
|
+
* perKg
|
|
1531
|
+
* @type {number}
|
|
1532
|
+
* @memberof CourierPriceEntity
|
|
1533
|
+
*/
|
|
1534
|
+
'perKg'?: number;
|
|
1535
|
+
/**
|
|
1536
|
+
* maxKg
|
|
1537
|
+
* @type {number}
|
|
1538
|
+
* @memberof CourierPriceEntity
|
|
1539
|
+
*/
|
|
1540
|
+
'maxKg'?: number;
|
|
1541
|
+
}
|
|
1118
1542
|
/**
|
|
1119
1543
|
* Credit Account
|
|
1120
1544
|
* @export
|
|
@@ -1261,11 +1685,17 @@ export interface CrmContactDTO {
|
|
|
1261
1685
|
*/
|
|
1262
1686
|
'id'?: string;
|
|
1263
1687
|
/**
|
|
1264
|
-
* Contact Name
|
|
1688
|
+
* Contact First Name
|
|
1265
1689
|
* @type {string}
|
|
1266
1690
|
* @memberof CrmContactDTO
|
|
1267
1691
|
*/
|
|
1268
|
-
'
|
|
1692
|
+
'firstName'?: string;
|
|
1693
|
+
/**
|
|
1694
|
+
* Contact Last Name
|
|
1695
|
+
* @type {string}
|
|
1696
|
+
* @memberof CrmContactDTO
|
|
1697
|
+
*/
|
|
1698
|
+
'lastName'?: string;
|
|
1269
1699
|
/**
|
|
1270
1700
|
* Phone Number
|
|
1271
1701
|
* @type {string}
|
|
@@ -1340,6 +1770,116 @@ export interface CustomerInformationModel {
|
|
|
1340
1770
|
*/
|
|
1341
1771
|
'contactLastName'?: string;
|
|
1342
1772
|
}
|
|
1773
|
+
/**
|
|
1774
|
+
* Order Item Request
|
|
1775
|
+
* @export
|
|
1776
|
+
* @interface CustomerItemRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
export interface CustomerItemRequestDTO {
|
|
1779
|
+
/**
|
|
1780
|
+
* SKU
|
|
1781
|
+
* @type {string}
|
|
1782
|
+
* @memberof CustomerItemRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'sku'?: string;
|
|
1785
|
+
/**
|
|
1786
|
+
* Quantity
|
|
1787
|
+
* @type {number}
|
|
1788
|
+
* @memberof CustomerItemRequestDTO
|
|
1789
|
+
*/
|
|
1790
|
+
'quantity'?: number;
|
|
1791
|
+
/**
|
|
1792
|
+
* ID
|
|
1793
|
+
* @type {number}
|
|
1794
|
+
* @memberof CustomerItemRequestDTO
|
|
1795
|
+
*/
|
|
1796
|
+
'id'?: number | null;
|
|
1797
|
+
/**
|
|
1798
|
+
* 3CX Licence Key
|
|
1799
|
+
* @type {string}
|
|
1800
|
+
* @memberof CustomerItemRequestDTO
|
|
1801
|
+
*/
|
|
1802
|
+
'licenceKey'?: string | null;
|
|
1803
|
+
/**
|
|
1804
|
+
* 3CX Hosting
|
|
1805
|
+
* @type {boolean}
|
|
1806
|
+
* @memberof CustomerItemRequestDTO
|
|
1807
|
+
*/
|
|
1808
|
+
'hosting'?: boolean | null;
|
|
1809
|
+
/**
|
|
1810
|
+
* Date Time
|
|
1811
|
+
* @type {string}
|
|
1812
|
+
* @memberof CustomerItemRequestDTO
|
|
1813
|
+
*/
|
|
1814
|
+
'processDate'?: string;
|
|
1815
|
+
/**
|
|
1816
|
+
* 3CX Sales Code
|
|
1817
|
+
* @type {string}
|
|
1818
|
+
* @memberof CustomerItemRequestDTO
|
|
1819
|
+
*/
|
|
1820
|
+
'tcxSalesCode'?: string | null;
|
|
1821
|
+
/**
|
|
1822
|
+
* SBCS
|
|
1823
|
+
* @type {Array<TcxSbcDTO>}
|
|
1824
|
+
* @memberof CustomerItemRequestDTO
|
|
1825
|
+
*/
|
|
1826
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1827
|
+
/**
|
|
1828
|
+
* Read Only (Cannot be edited)
|
|
1829
|
+
* @type {boolean}
|
|
1830
|
+
* @memberof CustomerItemRequestDTO
|
|
1831
|
+
*/
|
|
1832
|
+
'readOnly'?: boolean;
|
|
1833
|
+
}
|
|
1834
|
+
/**
|
|
1835
|
+
* Order Request
|
|
1836
|
+
* @export
|
|
1837
|
+
* @interface CustomerOrderRequestDTO
|
|
1838
|
+
*/
|
|
1839
|
+
export interface CustomerOrderRequestDTO {
|
|
1840
|
+
/**
|
|
1841
|
+
* Order Reference
|
|
1842
|
+
* @type {string}
|
|
1843
|
+
* @memberof CustomerOrderRequestDTO
|
|
1844
|
+
*/
|
|
1845
|
+
'orderReference'?: string | null;
|
|
1846
|
+
/**
|
|
1847
|
+
* Items
|
|
1848
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1849
|
+
* @memberof CustomerOrderRequestDTO
|
|
1850
|
+
*/
|
|
1851
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1852
|
+
/**
|
|
1853
|
+
*
|
|
1854
|
+
* @type {ShippingServiceDTO}
|
|
1855
|
+
* @memberof CustomerOrderRequestDTO
|
|
1856
|
+
*/
|
|
1857
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1858
|
+
/**
|
|
1859
|
+
* Provisioning URL
|
|
1860
|
+
* @type {string}
|
|
1861
|
+
* @memberof CustomerOrderRequestDTO
|
|
1862
|
+
*/
|
|
1863
|
+
'provisioningUrl'?: string | null;
|
|
1864
|
+
/**
|
|
1865
|
+
*
|
|
1866
|
+
* @type {AddressModel}
|
|
1867
|
+
* @memberof CustomerOrderRequestDTO
|
|
1868
|
+
*/
|
|
1869
|
+
'shippingAddress'?: AddressModel;
|
|
1870
|
+
/**
|
|
1871
|
+
* Part Ship Order
|
|
1872
|
+
* @type {boolean}
|
|
1873
|
+
* @memberof CustomerOrderRequestDTO
|
|
1874
|
+
*/
|
|
1875
|
+
'partShip'?: boolean;
|
|
1876
|
+
/**
|
|
1877
|
+
* Quote
|
|
1878
|
+
* @type {boolean}
|
|
1879
|
+
* @memberof CustomerOrderRequestDTO
|
|
1880
|
+
*/
|
|
1881
|
+
'quote'?: boolean;
|
|
1882
|
+
}
|
|
1343
1883
|
/**
|
|
1344
1884
|
* Customer Price List
|
|
1345
1885
|
* @export
|
|
@@ -1846,19 +2386,6 @@ export interface GenericFileModel {
|
|
|
1846
2386
|
*/
|
|
1847
2387
|
'type'?: string;
|
|
1848
2388
|
}
|
|
1849
|
-
/**
|
|
1850
|
-
*
|
|
1851
|
-
* @export
|
|
1852
|
-
* @interface GetGetPasswordHash200Response
|
|
1853
|
-
*/
|
|
1854
|
-
export interface GetGetPasswordHash200Response {
|
|
1855
|
-
/**
|
|
1856
|
-
*
|
|
1857
|
-
* @type {string}
|
|
1858
|
-
* @memberof GetGetPasswordHash200Response
|
|
1859
|
-
*/
|
|
1860
|
-
'hash'?: string;
|
|
1861
|
-
}
|
|
1862
2389
|
/**
|
|
1863
2390
|
*
|
|
1864
2391
|
* @export
|
|
@@ -2454,35 +2981,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2454
2981
|
*/
|
|
2455
2982
|
export interface ItemDTO {
|
|
2456
2983
|
/**
|
|
2457
|
-
*
|
|
2458
|
-
* @type {
|
|
2984
|
+
* SKU
|
|
2985
|
+
* @type {string}
|
|
2459
2986
|
* @memberof ItemDTO
|
|
2460
2987
|
*/
|
|
2461
|
-
'
|
|
2988
|
+
'sku'?: string;
|
|
2462
2989
|
/**
|
|
2463
|
-
*
|
|
2990
|
+
* Quantity
|
|
2464
2991
|
* @type {number}
|
|
2465
2992
|
* @memberof ItemDTO
|
|
2466
2993
|
*/
|
|
2467
|
-
'
|
|
2994
|
+
'quantity'?: number;
|
|
2468
2995
|
/**
|
|
2469
|
-
*
|
|
2470
|
-
* @type {
|
|
2996
|
+
* ID
|
|
2997
|
+
* @type {number}
|
|
2471
2998
|
* @memberof ItemDTO
|
|
2472
2999
|
*/
|
|
2473
|
-
'
|
|
3000
|
+
'id'?: number | null;
|
|
2474
3001
|
/**
|
|
2475
|
-
*
|
|
2476
|
-
* @type {
|
|
3002
|
+
* Order ID
|
|
3003
|
+
* @type {number}
|
|
2477
3004
|
* @memberof ItemDTO
|
|
2478
3005
|
*/
|
|
2479
|
-
'
|
|
3006
|
+
'orderId'?: number | null;
|
|
2480
3007
|
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @type {
|
|
3008
|
+
* Title
|
|
3009
|
+
* @type {string}
|
|
2483
3010
|
* @memberof ItemDTO
|
|
2484
3011
|
*/
|
|
2485
|
-
'
|
|
3012
|
+
'title'?: string;
|
|
2486
3013
|
/**
|
|
2487
3014
|
* Price
|
|
2488
3015
|
* @type {number}
|
|
@@ -2507,6 +3034,12 @@ export interface ItemDTO {
|
|
|
2507
3034
|
* @memberof ItemDTO
|
|
2508
3035
|
*/
|
|
2509
3036
|
'processDate'?: string;
|
|
3037
|
+
/**
|
|
3038
|
+
* 3CX Hosting
|
|
3039
|
+
* @type {boolean}
|
|
3040
|
+
* @memberof ItemDTO
|
|
3041
|
+
*/
|
|
3042
|
+
'hosting'?: boolean | null;
|
|
2510
3043
|
/**
|
|
2511
3044
|
* Promo Item
|
|
2512
3045
|
* @type {boolean}
|
|
@@ -2518,7 +3051,25 @@ export interface ItemDTO {
|
|
|
2518
3051
|
* @type {number}
|
|
2519
3052
|
* @memberof ItemDTO
|
|
2520
3053
|
*/
|
|
2521
|
-
'refunded'?: number;
|
|
3054
|
+
'refunded'?: number | null;
|
|
3055
|
+
/**
|
|
3056
|
+
* SBCs
|
|
3057
|
+
* @type {Array<TcxSbcDTO>}
|
|
3058
|
+
* @memberof ItemDTO
|
|
3059
|
+
*/
|
|
3060
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3061
|
+
/**
|
|
3062
|
+
* Readonly
|
|
3063
|
+
* @type {boolean}
|
|
3064
|
+
* @memberof ItemDTO
|
|
3065
|
+
*/
|
|
3066
|
+
'readonly'?: boolean;
|
|
3067
|
+
/**
|
|
3068
|
+
* 3CX Sales Code
|
|
3069
|
+
* @type {string}
|
|
3070
|
+
* @memberof ItemDTO
|
|
3071
|
+
*/
|
|
3072
|
+
'tcxSalesCode'?: string | null;
|
|
2522
3073
|
}
|
|
2523
3074
|
/**
|
|
2524
3075
|
* ItemsEntity
|
|
@@ -2652,6 +3203,31 @@ export interface ItemEntity {
|
|
|
2652
3203
|
* @memberof ItemEntity
|
|
2653
3204
|
*/
|
|
2654
3205
|
'promoItem'?: number;
|
|
3206
|
+
/**
|
|
3207
|
+
* 3CX Sales Code
|
|
3208
|
+
* @type {string}
|
|
3209
|
+
* @memberof ItemEntity
|
|
3210
|
+
*/
|
|
3211
|
+
'tcxSalesCode'?: string | null;
|
|
3212
|
+
}
|
|
3213
|
+
/**
|
|
3214
|
+
* LinkedOrdersEntity
|
|
3215
|
+
* @export
|
|
3216
|
+
* @interface LinkedOrderEntity
|
|
3217
|
+
*/
|
|
3218
|
+
export interface LinkedOrderEntity {
|
|
3219
|
+
/**
|
|
3220
|
+
* orderId
|
|
3221
|
+
* @type {number}
|
|
3222
|
+
* @memberof LinkedOrderEntity
|
|
3223
|
+
*/
|
|
3224
|
+
'orderId'?: number;
|
|
3225
|
+
/**
|
|
3226
|
+
* linkedOrderId
|
|
3227
|
+
* @type {number}
|
|
3228
|
+
* @memberof LinkedOrderEntity
|
|
3229
|
+
*/
|
|
3230
|
+
'linkedOrderId'?: number;
|
|
2655
3231
|
}
|
|
2656
3232
|
/**
|
|
2657
3233
|
* MFA Required
|
|
@@ -3305,13 +3881,19 @@ export interface OrderSummaryDTO {
|
|
|
3305
3881
|
* @type {string}
|
|
3306
3882
|
* @memberof OrderSummaryDTO
|
|
3307
3883
|
*/
|
|
3308
|
-
'reference'?: string;
|
|
3884
|
+
'reference'?: string | null;
|
|
3309
3885
|
/**
|
|
3310
3886
|
* Invoice Number
|
|
3311
3887
|
* @type {string}
|
|
3312
3888
|
* @memberof OrderSummaryDTO
|
|
3313
3889
|
*/
|
|
3314
3890
|
'invoiceNumber'?: string;
|
|
3891
|
+
/**
|
|
3892
|
+
* Invoice ID
|
|
3893
|
+
* @type {string}
|
|
3894
|
+
* @memberof OrderSummaryDTO
|
|
3895
|
+
*/
|
|
3896
|
+
'invoiceId'?: string | null;
|
|
3315
3897
|
/**
|
|
3316
3898
|
* Date Time
|
|
3317
3899
|
* @type {string}
|
|
@@ -3366,6 +3948,24 @@ export interface OrderSummaryDTO {
|
|
|
3366
3948
|
* @memberof OrderSummaryDTO
|
|
3367
3949
|
*/
|
|
3368
3950
|
'fulfillable'?: boolean | null;
|
|
3951
|
+
/**
|
|
3952
|
+
* Provisioning URL
|
|
3953
|
+
* @type {string}
|
|
3954
|
+
* @memberof OrderSummaryDTO
|
|
3955
|
+
*/
|
|
3956
|
+
'provisioningUrl'?: string | null;
|
|
3957
|
+
/**
|
|
3958
|
+
*
|
|
3959
|
+
* @type {ShippingServiceDTO}
|
|
3960
|
+
* @memberof OrderSummaryDTO
|
|
3961
|
+
*/
|
|
3962
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
3963
|
+
/**
|
|
3964
|
+
* Readonly
|
|
3965
|
+
* @type {boolean}
|
|
3966
|
+
* @memberof OrderSummaryDTO
|
|
3967
|
+
*/
|
|
3968
|
+
'readonly'?: boolean;
|
|
3369
3969
|
}
|
|
3370
3970
|
/**
|
|
3371
3971
|
* Order Totals
|
|
@@ -3415,6 +4015,12 @@ export interface OrderTotalModel {
|
|
|
3415
4015
|
* @memberof OrderTotalModel
|
|
3416
4016
|
*/
|
|
3417
4017
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4018
|
+
/**
|
|
4019
|
+
* Delivery
|
|
4020
|
+
* @type {number}
|
|
4021
|
+
* @memberof OrderTotalModel
|
|
4022
|
+
*/
|
|
4023
|
+
'delivery'?: number | null;
|
|
3418
4024
|
}
|
|
3419
4025
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3420
4026
|
readonly Eur: "EUR";
|
|
@@ -3793,6 +4399,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3793
4399
|
*/
|
|
3794
4400
|
'scopes'?: Array<string>;
|
|
3795
4401
|
}
|
|
4402
|
+
/**
|
|
4403
|
+
*
|
|
4404
|
+
* @export
|
|
4405
|
+
* @interface PostGetProductForCustomerRequest
|
|
4406
|
+
*/
|
|
4407
|
+
export interface PostGetProductForCustomerRequest {
|
|
4408
|
+
/**
|
|
4409
|
+
* Quantity
|
|
4410
|
+
* @type {number}
|
|
4411
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4412
|
+
*/
|
|
4413
|
+
'quantity'?: number | null;
|
|
4414
|
+
/**
|
|
4415
|
+
* 3CX Licence Key
|
|
4416
|
+
* @type {string}
|
|
4417
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4418
|
+
*/
|
|
4419
|
+
'licenceKey'?: string | null;
|
|
4420
|
+
/**
|
|
4421
|
+
* 3CX Hosting
|
|
4422
|
+
* @type {boolean}
|
|
4423
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4424
|
+
*/
|
|
4425
|
+
'hosting'?: boolean | null;
|
|
4426
|
+
}
|
|
3796
4427
|
/**
|
|
3797
4428
|
* Price & Stock List
|
|
3798
4429
|
* @export
|
|
@@ -3881,10 +4512,10 @@ export interface PrizesEntity {
|
|
|
3881
4512
|
export interface ProductSearchResultsModel {
|
|
3882
4513
|
/**
|
|
3883
4514
|
* Results
|
|
3884
|
-
* @type {Array<
|
|
4515
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3885
4516
|
* @memberof ProductSearchResultsModel
|
|
3886
4517
|
*/
|
|
3887
|
-
'results'?: Array<
|
|
4518
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3888
4519
|
}
|
|
3889
4520
|
/**
|
|
3890
4521
|
* Product Serial Info
|
|
@@ -3920,45 +4551,51 @@ export interface ProductSerialInfoModel {
|
|
|
3920
4551
|
/**
|
|
3921
4552
|
* Product Summary
|
|
3922
4553
|
* @export
|
|
3923
|
-
* @interface
|
|
4554
|
+
* @interface ProductSummaryDTO
|
|
3924
4555
|
*/
|
|
3925
|
-
export interface
|
|
4556
|
+
export interface ProductSummaryDTO {
|
|
3926
4557
|
/**
|
|
3927
4558
|
* SKU
|
|
3928
4559
|
* @type {string}
|
|
3929
|
-
* @memberof
|
|
4560
|
+
* @memberof ProductSummaryDTO
|
|
3930
4561
|
*/
|
|
3931
4562
|
'sku'?: string;
|
|
3932
4563
|
/**
|
|
3933
4564
|
* Title
|
|
3934
4565
|
* @type {string}
|
|
3935
|
-
* @memberof
|
|
4566
|
+
* @memberof ProductSummaryDTO
|
|
3936
4567
|
*/
|
|
3937
4568
|
'title'?: string;
|
|
3938
4569
|
/**
|
|
3939
4570
|
* Stock Quantity
|
|
3940
4571
|
* @type {number}
|
|
3941
|
-
* @memberof
|
|
4572
|
+
* @memberof ProductSummaryDTO
|
|
3942
4573
|
*/
|
|
3943
4574
|
'quantity'?: number | null;
|
|
3944
4575
|
/**
|
|
3945
4576
|
* Stock Product
|
|
3946
4577
|
* @type {boolean}
|
|
3947
|
-
* @memberof
|
|
4578
|
+
* @memberof ProductSummaryDTO
|
|
3948
4579
|
*/
|
|
3949
4580
|
'stockProduct'?: boolean;
|
|
3950
4581
|
/**
|
|
3951
4582
|
* Price
|
|
3952
4583
|
* @type {number}
|
|
3953
|
-
* @memberof
|
|
4584
|
+
* @memberof ProductSummaryDTO
|
|
3954
4585
|
*/
|
|
3955
4586
|
'price'?: number | null;
|
|
3956
4587
|
/**
|
|
3957
4588
|
* Carton Size
|
|
3958
4589
|
* @type {number}
|
|
3959
|
-
* @memberof
|
|
4590
|
+
* @memberof ProductSummaryDTO
|
|
3960
4591
|
*/
|
|
3961
4592
|
'cartonSize'?: number | null;
|
|
4593
|
+
/**
|
|
4594
|
+
* RRP Price
|
|
4595
|
+
* @type {number}
|
|
4596
|
+
* @memberof ProductSummaryDTO
|
|
4597
|
+
*/
|
|
4598
|
+
'rrp'?: number | null;
|
|
3962
4599
|
}
|
|
3963
4600
|
/**
|
|
3964
4601
|
* PromoCodesEntity
|
|
@@ -4097,37 +4734,37 @@ export interface PromoItemsEntity {
|
|
|
4097
4734
|
/**
|
|
4098
4735
|
* Provisioning Group
|
|
4099
4736
|
* @export
|
|
4100
|
-
* @interface
|
|
4737
|
+
* @interface ProvisioningModel
|
|
4101
4738
|
*/
|
|
4102
|
-
export interface
|
|
4739
|
+
export interface ProvisioningModel {
|
|
4103
4740
|
/**
|
|
4104
4741
|
* Provisioning Group Name
|
|
4105
4742
|
* @type {string}
|
|
4106
|
-
* @memberof
|
|
4743
|
+
* @memberof ProvisioningModel
|
|
4107
4744
|
*/
|
|
4108
4745
|
'groupName'?: string;
|
|
4109
4746
|
/**
|
|
4110
4747
|
* Provisioning URL (Static Provisioning Server)
|
|
4111
4748
|
* @type {string}
|
|
4112
|
-
* @memberof
|
|
4749
|
+
* @memberof ProvisioningModel
|
|
4113
4750
|
*/
|
|
4114
4751
|
'provisioningUrl'?: string;
|
|
4115
4752
|
/**
|
|
4116
4753
|
* Additional Authentication Secret
|
|
4117
4754
|
* @type {string}
|
|
4118
|
-
* @memberof
|
|
4755
|
+
* @memberof ProvisioningModel
|
|
4119
4756
|
*/
|
|
4120
4757
|
'auth'?: string;
|
|
4121
4758
|
/**
|
|
4122
4759
|
* Provisioning Group ID
|
|
4123
4760
|
* @type {number}
|
|
4124
|
-
* @memberof
|
|
4761
|
+
* @memberof ProvisioningModel
|
|
4125
4762
|
*/
|
|
4126
4763
|
'id'?: number;
|
|
4127
4764
|
/**
|
|
4128
4765
|
* Owner ID
|
|
4129
4766
|
* @type {number}
|
|
4130
|
-
* @memberof
|
|
4767
|
+
* @memberof ProvisioningModel
|
|
4131
4768
|
*/
|
|
4132
4769
|
'customerId'?: number;
|
|
4133
4770
|
}
|
|
@@ -4481,7 +5118,7 @@ export interface ShipmentEntity {
|
|
|
4481
5118
|
* @type {string}
|
|
4482
5119
|
* @memberof ShipmentEntity
|
|
4483
5120
|
*/
|
|
4484
|
-
'
|
|
5121
|
+
'dateShipped'?: string;
|
|
4485
5122
|
/**
|
|
4486
5123
|
* requestDate
|
|
4487
5124
|
* @type {string}
|
|
@@ -4532,6 +5169,149 @@ export interface ShipmentItemEntity {
|
|
|
4532
5169
|
*/
|
|
4533
5170
|
'itemId'?: string;
|
|
4534
5171
|
}
|
|
5172
|
+
/**
|
|
5173
|
+
*
|
|
5174
|
+
* @export
|
|
5175
|
+
* @interface ShippingConsignmentModel
|
|
5176
|
+
*/
|
|
5177
|
+
export interface ShippingConsignmentModel {
|
|
5178
|
+
/**
|
|
5179
|
+
*
|
|
5180
|
+
* @type {ShippingServiceModel}
|
|
5181
|
+
* @memberof ShippingConsignmentModel
|
|
5182
|
+
*/
|
|
5183
|
+
'service'?: ShippingServiceModel;
|
|
5184
|
+
/**
|
|
5185
|
+
* ID/Number
|
|
5186
|
+
* @type {string}
|
|
5187
|
+
* @memberof ShippingConsignmentModel
|
|
5188
|
+
*/
|
|
5189
|
+
'id'?: string;
|
|
5190
|
+
/**
|
|
5191
|
+
* Tracking Number
|
|
5192
|
+
* @type {string}
|
|
5193
|
+
* @memberof ShippingConsignmentModel
|
|
5194
|
+
*/
|
|
5195
|
+
'trackingNumber'?: string;
|
|
5196
|
+
/**
|
|
5197
|
+
* Parcels
|
|
5198
|
+
* @type {Array<string>}
|
|
5199
|
+
* @memberof ShippingConsignmentModel
|
|
5200
|
+
*/
|
|
5201
|
+
'parcelIds'?: Array<string>;
|
|
5202
|
+
}
|
|
5203
|
+
/**
|
|
5204
|
+
* Shipping Information
|
|
5205
|
+
* @export
|
|
5206
|
+
* @interface ShippingInformationDTO
|
|
5207
|
+
*/
|
|
5208
|
+
export interface ShippingInformationDTO {
|
|
5209
|
+
/**
|
|
5210
|
+
* Items
|
|
5211
|
+
* @type {Array<BasicItemDTO>}
|
|
5212
|
+
* @memberof ShippingInformationDTO
|
|
5213
|
+
*/
|
|
5214
|
+
'items'?: Array<BasicItemDTO>;
|
|
5215
|
+
/**
|
|
5216
|
+
* Destination Post Code
|
|
5217
|
+
* @type {string}
|
|
5218
|
+
* @memberof ShippingInformationDTO
|
|
5219
|
+
*/
|
|
5220
|
+
'postalCode'?: string;
|
|
5221
|
+
/**
|
|
5222
|
+
* Destination ISO
|
|
5223
|
+
* @type {string}
|
|
5224
|
+
* @memberof ShippingInformationDTO
|
|
5225
|
+
*/
|
|
5226
|
+
'iso'?: string;
|
|
5227
|
+
}
|
|
5228
|
+
/**
|
|
5229
|
+
* Shipping Service
|
|
5230
|
+
* @export
|
|
5231
|
+
* @interface ShippingServiceDTO
|
|
5232
|
+
*/
|
|
5233
|
+
export interface ShippingServiceDTO {
|
|
5234
|
+
/**
|
|
5235
|
+
* Courier
|
|
5236
|
+
* @type {string}
|
|
5237
|
+
* @memberof ShippingServiceDTO
|
|
5238
|
+
*/
|
|
5239
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5240
|
+
/**
|
|
5241
|
+
* Service Name
|
|
5242
|
+
* @type {string}
|
|
5243
|
+
* @memberof ShippingServiceDTO
|
|
5244
|
+
*/
|
|
5245
|
+
'serviceName'?: string;
|
|
5246
|
+
}
|
|
5247
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5248
|
+
readonly Dpd: "DPD";
|
|
5249
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5250
|
+
readonly Pops: "POPS";
|
|
5251
|
+
};
|
|
5252
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5253
|
+
/**
|
|
5254
|
+
* Shipping Service
|
|
5255
|
+
* @export
|
|
5256
|
+
* @interface ShippingServiceModel
|
|
5257
|
+
*/
|
|
5258
|
+
export interface ShippingServiceModel {
|
|
5259
|
+
/**
|
|
5260
|
+
* Courier
|
|
5261
|
+
* @type {string}
|
|
5262
|
+
* @memberof ShippingServiceModel
|
|
5263
|
+
*/
|
|
5264
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5265
|
+
/**
|
|
5266
|
+
* Code
|
|
5267
|
+
* @type {string}
|
|
5268
|
+
* @memberof ShippingServiceModel
|
|
5269
|
+
*/
|
|
5270
|
+
'code'?: string;
|
|
5271
|
+
/**
|
|
5272
|
+
* Name
|
|
5273
|
+
* @type {string}
|
|
5274
|
+
* @memberof ShippingServiceModel
|
|
5275
|
+
*/
|
|
5276
|
+
'name'?: string;
|
|
5277
|
+
/**
|
|
5278
|
+
* Description
|
|
5279
|
+
* @type {string}
|
|
5280
|
+
* @memberof ShippingServiceModel
|
|
5281
|
+
*/
|
|
5282
|
+
'description'?: string;
|
|
5283
|
+
/**
|
|
5284
|
+
* Label
|
|
5285
|
+
* @type {string}
|
|
5286
|
+
* @memberof ShippingServiceModel
|
|
5287
|
+
*/
|
|
5288
|
+
'label'?: string | null;
|
|
5289
|
+
/**
|
|
5290
|
+
* Price
|
|
5291
|
+
* @type {number}
|
|
5292
|
+
* @memberof ShippingServiceModel
|
|
5293
|
+
*/
|
|
5294
|
+
'price'?: number | null;
|
|
5295
|
+
}
|
|
5296
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5297
|
+
readonly Dpd: "DPD";
|
|
5298
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5299
|
+
readonly Pops: "POPS";
|
|
5300
|
+
};
|
|
5301
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5302
|
+
/**
|
|
5303
|
+
*
|
|
5304
|
+
* @export
|
|
5305
|
+
* @interface ShippingServicesModel
|
|
5306
|
+
*/
|
|
5307
|
+
export interface ShippingServicesModel {
|
|
5308
|
+
/**
|
|
5309
|
+
* Services
|
|
5310
|
+
* @type {Array<ShippingServiceModel>}
|
|
5311
|
+
* @memberof ShippingServicesModel
|
|
5312
|
+
*/
|
|
5313
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5314
|
+
}
|
|
4535
5315
|
/**
|
|
4536
5316
|
* Change Response
|
|
4537
5317
|
* @export
|
|
@@ -7351,6 +8131,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7351
8131
|
*/
|
|
7352
8132
|
'secretAccessKey'?: string;
|
|
7353
8133
|
}
|
|
8134
|
+
/**
|
|
8135
|
+
* SBC Data
|
|
8136
|
+
* @export
|
|
8137
|
+
* @interface TcxSbcDTO
|
|
8138
|
+
*/
|
|
8139
|
+
export interface TcxSbcDTO {
|
|
8140
|
+
/**
|
|
8141
|
+
* LAN IP Address
|
|
8142
|
+
* @type {string}
|
|
8143
|
+
* @memberof TcxSbcDTO
|
|
8144
|
+
*/
|
|
8145
|
+
'ipAddress'?: string;
|
|
8146
|
+
/**
|
|
8147
|
+
* LAN Default Gateway
|
|
8148
|
+
* @type {string}
|
|
8149
|
+
* @memberof TcxSbcDTO
|
|
8150
|
+
*/
|
|
8151
|
+
'defaultGateway'?: string;
|
|
8152
|
+
/**
|
|
8153
|
+
* LAN Subnet Mask
|
|
8154
|
+
* @type {string}
|
|
8155
|
+
* @memberof TcxSbcDTO
|
|
8156
|
+
*/
|
|
8157
|
+
'netmask'?: string;
|
|
8158
|
+
/**
|
|
8159
|
+
* DNS
|
|
8160
|
+
* @type {string}
|
|
8161
|
+
* @memberof TcxSbcDTO
|
|
8162
|
+
*/
|
|
8163
|
+
'dns'?: string;
|
|
8164
|
+
/**
|
|
8165
|
+
* 3CX URL
|
|
8166
|
+
* @type {string}
|
|
8167
|
+
* @memberof TcxSbcDTO
|
|
8168
|
+
*/
|
|
8169
|
+
'tcxUrl'?: string;
|
|
8170
|
+
/**
|
|
8171
|
+
* 3CX SBC Key
|
|
8172
|
+
* @type {string}
|
|
8173
|
+
* @memberof TcxSbcDTO
|
|
8174
|
+
*/
|
|
8175
|
+
'tcxKey'?: string;
|
|
8176
|
+
}
|
|
7354
8177
|
/**
|
|
7355
8178
|
* 3CX Wizard SBC
|
|
7356
8179
|
* @export
|
|
@@ -7455,7 +8278,7 @@ export interface TcxSbcEntity {
|
|
|
7455
8278
|
'technicalContact'?: string;
|
|
7456
8279
|
}
|
|
7457
8280
|
/**
|
|
7458
|
-
* 3CX SBC
|
|
8281
|
+
* 3CX Wizard SBC
|
|
7459
8282
|
* @export
|
|
7460
8283
|
* @interface TcxSbcModel
|
|
7461
8284
|
*/
|
|
@@ -8533,6 +9356,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8533
9356
|
* @throws {RequiredError}
|
|
8534
9357
|
*/
|
|
8535
9358
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9359
|
+
/**
|
|
9360
|
+
* Get Account Detailed Summary
|
|
9361
|
+
* @summary Get Account Detailed Summary
|
|
9362
|
+
* @param {number} id Customer ID
|
|
9363
|
+
* @param {*} [options] Override http request option.
|
|
9364
|
+
* @throws {RequiredError}
|
|
9365
|
+
*/
|
|
9366
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8536
9367
|
/**
|
|
8537
9368
|
* Get Accounts
|
|
8538
9369
|
* @summary Get Accounts
|
|
@@ -8598,6 +9429,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8598
9429
|
* @throws {RequiredError}
|
|
8599
9430
|
*/
|
|
8600
9431
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9432
|
+
/**
|
|
9433
|
+
* Get Admin Account
|
|
9434
|
+
* @summary Get Admin Account
|
|
9435
|
+
* @param {*} [options] Override http request option.
|
|
9436
|
+
* @throws {RequiredError}
|
|
9437
|
+
*/
|
|
9438
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8601
9439
|
/**
|
|
8602
9440
|
* Create client credentials
|
|
8603
9441
|
* @summary Create client credentials
|
|
@@ -8678,6 +9516,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8678
9516
|
* @throws {RequiredError}
|
|
8679
9517
|
*/
|
|
8680
9518
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9519
|
+
/**
|
|
9520
|
+
* Get Account Detailed Summary
|
|
9521
|
+
* @summary Get Account Detailed Summary
|
|
9522
|
+
* @param {number} id Customer ID
|
|
9523
|
+
* @param {*} [options] Override http request option.
|
|
9524
|
+
* @throws {RequiredError}
|
|
9525
|
+
*/
|
|
9526
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8681
9527
|
/**
|
|
8682
9528
|
* Get Accounts
|
|
8683
9529
|
* @summary Get Accounts
|
|
@@ -8743,6 +9589,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8743
9589
|
* @throws {RequiredError}
|
|
8744
9590
|
*/
|
|
8745
9591
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9592
|
+
/**
|
|
9593
|
+
* Get Admin Account
|
|
9594
|
+
* @summary Get Admin Account
|
|
9595
|
+
* @param {*} [options] Override http request option.
|
|
9596
|
+
* @throws {RequiredError}
|
|
9597
|
+
*/
|
|
9598
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8746
9599
|
/**
|
|
8747
9600
|
* Create client credentials
|
|
8748
9601
|
* @summary Create client credentials
|
|
@@ -8823,6 +9676,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8823
9676
|
* @throws {RequiredError}
|
|
8824
9677
|
*/
|
|
8825
9678
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9679
|
+
/**
|
|
9680
|
+
* Get Account Detailed Summary
|
|
9681
|
+
* @summary Get Account Detailed Summary
|
|
9682
|
+
* @param {number} id Customer ID
|
|
9683
|
+
* @param {*} [options] Override http request option.
|
|
9684
|
+
* @throws {RequiredError}
|
|
9685
|
+
*/
|
|
9686
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8826
9687
|
/**
|
|
8827
9688
|
* Get Accounts
|
|
8828
9689
|
* @summary Get Accounts
|
|
@@ -8888,6 +9749,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8888
9749
|
* @throws {RequiredError}
|
|
8889
9750
|
*/
|
|
8890
9751
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9752
|
+
/**
|
|
9753
|
+
* Get Admin Account
|
|
9754
|
+
* @summary Get Admin Account
|
|
9755
|
+
* @param {*} [options] Override http request option.
|
|
9756
|
+
* @throws {RequiredError}
|
|
9757
|
+
*/
|
|
9758
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8891
9759
|
/**
|
|
8892
9760
|
* Create client credentials
|
|
8893
9761
|
* @summary Create client credentials
|
|
@@ -8974,6 +9842,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8974
9842
|
* @memberof AccountsApi
|
|
8975
9843
|
*/
|
|
8976
9844
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9845
|
+
/**
|
|
9846
|
+
* Get Account Detailed Summary
|
|
9847
|
+
* @summary Get Account Detailed Summary
|
|
9848
|
+
* @param {number} id Customer ID
|
|
9849
|
+
* @param {*} [options] Override http request option.
|
|
9850
|
+
* @throws {RequiredError}
|
|
9851
|
+
* @memberof AccountsApi
|
|
9852
|
+
*/
|
|
9853
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
8977
9854
|
/**
|
|
8978
9855
|
* Get Accounts
|
|
8979
9856
|
* @summary Get Accounts
|
|
@@ -9047,6 +9924,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9047
9924
|
* @memberof AccountsApi
|
|
9048
9925
|
*/
|
|
9049
9926
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9927
|
+
/**
|
|
9928
|
+
* Get Admin Account
|
|
9929
|
+
* @summary Get Admin Account
|
|
9930
|
+
* @param {*} [options] Override http request option.
|
|
9931
|
+
* @throws {RequiredError}
|
|
9932
|
+
* @memberof AccountsApi
|
|
9933
|
+
*/
|
|
9934
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9050
9935
|
/**
|
|
9051
9936
|
* Create client credentials
|
|
9052
9937
|
* @summary Create client credentials
|
|
@@ -9160,14 +10045,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9160
10045
|
* @throws {RequiredError}
|
|
9161
10046
|
*/
|
|
9162
10047
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9163
|
-
/**
|
|
9164
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9165
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9166
|
-
* @param {string} password Desired 3CX web access password
|
|
9167
|
-
* @param {*} [options] Override http request option.
|
|
9168
|
-
* @throws {RequiredError}
|
|
9169
|
-
*/
|
|
9170
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9171
10048
|
/**
|
|
9172
10049
|
* Get Bulk 3CX Licence Details
|
|
9173
10050
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9190,14 +10067,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9190
10067
|
* @throws {RequiredError}
|
|
9191
10068
|
*/
|
|
9192
10069
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9193
|
-
/**
|
|
9194
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9195
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9196
|
-
* @param {string} password Desired 3CX web access password
|
|
9197
|
-
* @param {*} [options] Override http request option.
|
|
9198
|
-
* @throws {RequiredError}
|
|
9199
|
-
*/
|
|
9200
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9201
10070
|
/**
|
|
9202
10071
|
* Get Bulk 3CX Licence Details
|
|
9203
10072
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9220,14 +10089,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9220
10089
|
* @throws {RequiredError}
|
|
9221
10090
|
*/
|
|
9222
10091
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9223
|
-
/**
|
|
9224
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9225
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9226
|
-
* @param {string} password Desired 3CX web access password
|
|
9227
|
-
* @param {*} [options] Override http request option.
|
|
9228
|
-
* @throws {RequiredError}
|
|
9229
|
-
*/
|
|
9230
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9231
10092
|
/**
|
|
9232
10093
|
* Get Bulk 3CX Licence Details
|
|
9233
10094
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9253,15 +10114,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9253
10114
|
* @memberof Class3CXApi
|
|
9254
10115
|
*/
|
|
9255
10116
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9256
|
-
/**
|
|
9257
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9258
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9259
|
-
* @param {string} password Desired 3CX web access password
|
|
9260
|
-
* @param {*} [options] Override http request option.
|
|
9261
|
-
* @throws {RequiredError}
|
|
9262
|
-
* @memberof Class3CXApi
|
|
9263
|
-
*/
|
|
9264
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9265
10117
|
/**
|
|
9266
10118
|
* Get Bulk 3CX Licence Details
|
|
9267
10119
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10425,10 +11277,11 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
|
|
|
10425
11277
|
* @param {string} [search] Search
|
|
10426
11278
|
* @param {GetGetInstallationsStatusEnum} [status] Status
|
|
10427
11279
|
* @param {GetGetInstallationsHostingEnum} [hosting] Hosting
|
|
11280
|
+
* @param {GetGetInstallationsInstallTypeEnum} [installType] Install Type
|
|
10428
11281
|
* @param {*} [options] Override http request option.
|
|
10429
11282
|
* @throws {RequiredError}
|
|
10430
11283
|
*/
|
|
10431
|
-
getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11284
|
+
getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10432
11285
|
/**
|
|
10433
11286
|
* Create a root user
|
|
10434
11287
|
* @summary Create a root user
|
|
@@ -10533,10 +11386,11 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
|
|
|
10533
11386
|
* @param {string} [search] Search
|
|
10534
11387
|
* @param {GetGetInstallationsStatusEnum} [status] Status
|
|
10535
11388
|
* @param {GetGetInstallationsHostingEnum} [hosting] Hosting
|
|
11389
|
+
* @param {GetGetInstallationsInstallTypeEnum} [installType] Install Type
|
|
10536
11390
|
* @param {*} [options] Override http request option.
|
|
10537
11391
|
* @throws {RequiredError}
|
|
10538
11392
|
*/
|
|
10539
|
-
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
|
|
11393
|
+
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
|
|
10540
11394
|
/**
|
|
10541
11395
|
* Create a root user
|
|
10542
11396
|
* @summary Create a root user
|
|
@@ -10641,10 +11495,11 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
|
|
|
10641
11495
|
* @param {string} [search] Search
|
|
10642
11496
|
* @param {GetGetInstallationsStatusEnum} [status] Status
|
|
10643
11497
|
* @param {GetGetInstallationsHostingEnum} [hosting] Hosting
|
|
11498
|
+
* @param {GetGetInstallationsInstallTypeEnum} [installType] Install Type
|
|
10644
11499
|
* @param {*} [options] Override http request option.
|
|
10645
11500
|
* @throws {RequiredError}
|
|
10646
11501
|
*/
|
|
10647
|
-
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
|
|
11502
|
+
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
|
|
10648
11503
|
/**
|
|
10649
11504
|
* Create a root user
|
|
10650
11505
|
* @summary Create a root user
|
|
@@ -10752,11 +11607,12 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
|
|
|
10752
11607
|
* @param {string} [search] Search
|
|
10753
11608
|
* @param {GetGetInstallationsStatusEnum} [status] Status
|
|
10754
11609
|
* @param {GetGetInstallationsHostingEnum} [hosting] Hosting
|
|
11610
|
+
* @param {GetGetInstallationsInstallTypeEnum} [installType] Install Type
|
|
10755
11611
|
* @param {*} [options] Override http request option.
|
|
10756
11612
|
* @throws {RequiredError}
|
|
10757
11613
|
* @memberof Class3CXInstallationsApi
|
|
10758
11614
|
*/
|
|
10759
|
-
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
|
|
11615
|
+
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
|
|
10760
11616
|
/**
|
|
10761
11617
|
* Create a root user
|
|
10762
11618
|
* @summary Create a root user
|
|
@@ -10864,10 +11720,20 @@ export type GetGetInstallationsStatusEnum = typeof GetGetInstallationsStatusEnum
|
|
|
10864
11720
|
export declare const GetGetInstallationsHostingEnum: {
|
|
10865
11721
|
readonly Yellowgrid: "yellowgrid";
|
|
10866
11722
|
readonly MultiTenant: "multi-tenant";
|
|
10867
|
-
readonly Onprem: "onprem";
|
|
10868
|
-
readonly All: "all";
|
|
11723
|
+
readonly Onprem: "onprem";
|
|
11724
|
+
readonly All: "all";
|
|
11725
|
+
};
|
|
11726
|
+
export type GetGetInstallationsHostingEnum = typeof GetGetInstallationsHostingEnum[keyof typeof GetGetInstallationsHostingEnum];
|
|
11727
|
+
/**
|
|
11728
|
+
* @export
|
|
11729
|
+
*/
|
|
11730
|
+
export declare const GetGetInstallationsInstallTypeEnum: {
|
|
11731
|
+
readonly New: "new";
|
|
11732
|
+
readonly Restore: "restore";
|
|
11733
|
+
readonly Failover: "failover";
|
|
11734
|
+
readonly MultiTenant: "multi-tenant";
|
|
10869
11735
|
};
|
|
10870
|
-
export type
|
|
11736
|
+
export type GetGetInstallationsInstallTypeEnum = typeof GetGetInstallationsInstallTypeEnum[keyof typeof GetGetInstallationsInstallTypeEnum];
|
|
10871
11737
|
/**
|
|
10872
11738
|
* @export
|
|
10873
11739
|
*/
|
|
@@ -11791,11 +12657,28 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11791
12657
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11792
12658
|
/**
|
|
11793
12659
|
* Delete Orders
|
|
12660
|
+
* @summary Delete Orders
|
|
12661
|
+
* @param {number} id Order ID
|
|
12662
|
+
* @param {*} [options] Override http request option.
|
|
12663
|
+
* @throws {RequiredError}
|
|
12664
|
+
*/
|
|
12665
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12666
|
+
/**
|
|
12667
|
+
* Get Editable Order (Admin)
|
|
12668
|
+
* @summary Get Editable Order (Admin)
|
|
12669
|
+
* @param {number} id Order ID
|
|
12670
|
+
* @param {*} [options] Override http request option.
|
|
12671
|
+
* @throws {RequiredError}
|
|
12672
|
+
*/
|
|
12673
|
+
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12674
|
+
/**
|
|
12675
|
+
* Get Editable Order
|
|
12676
|
+
* @summary Get Editable Order
|
|
11794
12677
|
* @param {number} id Order ID
|
|
11795
12678
|
* @param {*} [options] Override http request option.
|
|
11796
12679
|
* @throws {RequiredError}
|
|
11797
12680
|
*/
|
|
11798
|
-
|
|
12681
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11799
12682
|
/**
|
|
11800
12683
|
* Get Orders
|
|
11801
12684
|
* @summary Get Orders
|
|
@@ -11810,6 +12693,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11810
12693
|
* @throws {RequiredError}
|
|
11811
12694
|
*/
|
|
11812
12695
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12696
|
+
/**
|
|
12697
|
+
* Create An Order (Admin)
|
|
12698
|
+
* @summary Create An Order (Admin)
|
|
12699
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12700
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12701
|
+
* @param {*} [options] Override http request option.
|
|
12702
|
+
* @throws {RequiredError}
|
|
12703
|
+
*/
|
|
12704
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12705
|
+
/**
|
|
12706
|
+
* Create An Order
|
|
12707
|
+
* @summary Create An Order
|
|
12708
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12709
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12710
|
+
* @param {*} [options] Override http request option.
|
|
12711
|
+
* @throws {RequiredError}
|
|
12712
|
+
*/
|
|
12713
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12714
|
+
/**
|
|
12715
|
+
* Update An Order (Admin)
|
|
12716
|
+
* @summary Update An Order (Admin)
|
|
12717
|
+
* @param {number} id Order ID
|
|
12718
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12719
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12720
|
+
* @param {*} [options] Override http request option.
|
|
12721
|
+
* @throws {RequiredError}
|
|
12722
|
+
*/
|
|
12723
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12724
|
+
/**
|
|
12725
|
+
* Update An Order
|
|
12726
|
+
* @summary Update An Order
|
|
12727
|
+
* @param {number} id Order ID
|
|
12728
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12729
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12730
|
+
* @param {*} [options] Override http request option.
|
|
12731
|
+
* @throws {RequiredError}
|
|
12732
|
+
*/
|
|
12733
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11813
12734
|
};
|
|
11814
12735
|
/**
|
|
11815
12736
|
* OrdersApi - functional programming interface
|
|
@@ -11818,11 +12739,28 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11818
12739
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11819
12740
|
/**
|
|
11820
12741
|
* Delete Orders
|
|
12742
|
+
* @summary Delete Orders
|
|
12743
|
+
* @param {number} id Order ID
|
|
12744
|
+
* @param {*} [options] Override http request option.
|
|
12745
|
+
* @throws {RequiredError}
|
|
12746
|
+
*/
|
|
12747
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12748
|
+
/**
|
|
12749
|
+
* Get Editable Order (Admin)
|
|
12750
|
+
* @summary Get Editable Order (Admin)
|
|
12751
|
+
* @param {number} id Order ID
|
|
12752
|
+
* @param {*} [options] Override http request option.
|
|
12753
|
+
* @throws {RequiredError}
|
|
12754
|
+
*/
|
|
12755
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12756
|
+
/**
|
|
12757
|
+
* Get Editable Order
|
|
12758
|
+
* @summary Get Editable Order
|
|
11821
12759
|
* @param {number} id Order ID
|
|
11822
12760
|
* @param {*} [options] Override http request option.
|
|
11823
12761
|
* @throws {RequiredError}
|
|
11824
12762
|
*/
|
|
11825
|
-
|
|
12763
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CustomerOrderRequestDTO>>;
|
|
11826
12764
|
/**
|
|
11827
12765
|
* Get Orders
|
|
11828
12766
|
* @summary Get Orders
|
|
@@ -11837,6 +12775,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11837
12775
|
* @throws {RequiredError}
|
|
11838
12776
|
*/
|
|
11839
12777
|
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>>;
|
|
12778
|
+
/**
|
|
12779
|
+
* Create An Order (Admin)
|
|
12780
|
+
* @summary Create An Order (Admin)
|
|
12781
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12782
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12783
|
+
* @param {*} [options] Override http request option.
|
|
12784
|
+
* @throws {RequiredError}
|
|
12785
|
+
*/
|
|
12786
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12787
|
+
/**
|
|
12788
|
+
* Create An Order
|
|
12789
|
+
* @summary Create An Order
|
|
12790
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12791
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12792
|
+
* @param {*} [options] Override http request option.
|
|
12793
|
+
* @throws {RequiredError}
|
|
12794
|
+
*/
|
|
12795
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12796
|
+
/**
|
|
12797
|
+
* Update An Order (Admin)
|
|
12798
|
+
* @summary Update An Order (Admin)
|
|
12799
|
+
* @param {number} id Order ID
|
|
12800
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12801
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12802
|
+
* @param {*} [options] Override http request option.
|
|
12803
|
+
* @throws {RequiredError}
|
|
12804
|
+
*/
|
|
12805
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12806
|
+
/**
|
|
12807
|
+
* Update An Order
|
|
12808
|
+
* @summary Update An Order
|
|
12809
|
+
* @param {number} id Order ID
|
|
12810
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12811
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12812
|
+
* @param {*} [options] Override http request option.
|
|
12813
|
+
* @throws {RequiredError}
|
|
12814
|
+
*/
|
|
12815
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11840
12816
|
};
|
|
11841
12817
|
/**
|
|
11842
12818
|
* OrdersApi - factory interface
|
|
@@ -11845,11 +12821,28 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11845
12821
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11846
12822
|
/**
|
|
11847
12823
|
* Delete Orders
|
|
12824
|
+
* @summary Delete Orders
|
|
12825
|
+
* @param {number} id Order ID
|
|
12826
|
+
* @param {*} [options] Override http request option.
|
|
12827
|
+
* @throws {RequiredError}
|
|
12828
|
+
*/
|
|
12829
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12830
|
+
/**
|
|
12831
|
+
* Get Editable Order (Admin)
|
|
12832
|
+
* @summary Get Editable Order (Admin)
|
|
12833
|
+
* @param {number} id Order ID
|
|
12834
|
+
* @param {*} [options] Override http request option.
|
|
12835
|
+
* @throws {RequiredError}
|
|
12836
|
+
*/
|
|
12837
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
12838
|
+
/**
|
|
12839
|
+
* Get Editable Order
|
|
12840
|
+
* @summary Get Editable Order
|
|
11848
12841
|
* @param {number} id Order ID
|
|
11849
12842
|
* @param {*} [options] Override http request option.
|
|
11850
12843
|
* @throws {RequiredError}
|
|
11851
12844
|
*/
|
|
11852
|
-
|
|
12845
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<CustomerOrderRequestDTO>;
|
|
11853
12846
|
/**
|
|
11854
12847
|
* Get Orders
|
|
11855
12848
|
* @summary Get Orders
|
|
@@ -11864,6 +12857,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11864
12857
|
* @throws {RequiredError}
|
|
11865
12858
|
*/
|
|
11866
12859
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12860
|
+
/**
|
|
12861
|
+
* Create An Order (Admin)
|
|
12862
|
+
* @summary Create An Order (Admin)
|
|
12863
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12864
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12865
|
+
* @param {*} [options] Override http request option.
|
|
12866
|
+
* @throws {RequiredError}
|
|
12867
|
+
*/
|
|
12868
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12869
|
+
/**
|
|
12870
|
+
* Create An Order
|
|
12871
|
+
* @summary Create An Order
|
|
12872
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12873
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12874
|
+
* @param {*} [options] Override http request option.
|
|
12875
|
+
* @throws {RequiredError}
|
|
12876
|
+
*/
|
|
12877
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12878
|
+
/**
|
|
12879
|
+
* Update An Order (Admin)
|
|
12880
|
+
* @summary Update An Order (Admin)
|
|
12881
|
+
* @param {number} id Order ID
|
|
12882
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12883
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12884
|
+
* @param {*} [options] Override http request option.
|
|
12885
|
+
* @throws {RequiredError}
|
|
12886
|
+
*/
|
|
12887
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12888
|
+
/**
|
|
12889
|
+
* Update An Order
|
|
12890
|
+
* @summary Update An Order
|
|
12891
|
+
* @param {number} id Order ID
|
|
12892
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12893
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12894
|
+
* @param {*} [options] Override http request option.
|
|
12895
|
+
* @throws {RequiredError}
|
|
12896
|
+
*/
|
|
12897
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11867
12898
|
};
|
|
11868
12899
|
/**
|
|
11869
12900
|
* OrdersApi - object-oriented interface
|
|
@@ -11874,12 +12905,31 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11874
12905
|
export declare class OrdersApi extends BaseAPI {
|
|
11875
12906
|
/**
|
|
11876
12907
|
* Delete Orders
|
|
12908
|
+
* @summary Delete Orders
|
|
12909
|
+
* @param {number} id Order ID
|
|
12910
|
+
* @param {*} [options] Override http request option.
|
|
12911
|
+
* @throws {RequiredError}
|
|
12912
|
+
* @memberof OrdersApi
|
|
12913
|
+
*/
|
|
12914
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12915
|
+
/**
|
|
12916
|
+
* Get Editable Order (Admin)
|
|
12917
|
+
* @summary Get Editable Order (Admin)
|
|
12918
|
+
* @param {number} id Order ID
|
|
12919
|
+
* @param {*} [options] Override http request option.
|
|
12920
|
+
* @throws {RequiredError}
|
|
12921
|
+
* @memberof OrdersApi
|
|
12922
|
+
*/
|
|
12923
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
12924
|
+
/**
|
|
12925
|
+
* Get Editable Order
|
|
12926
|
+
* @summary Get Editable Order
|
|
11877
12927
|
* @param {number} id Order ID
|
|
11878
12928
|
* @param {*} [options] Override http request option.
|
|
11879
12929
|
* @throws {RequiredError}
|
|
11880
12930
|
* @memberof OrdersApi
|
|
11881
12931
|
*/
|
|
11882
|
-
|
|
12932
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerOrderRequestDTO, any, {}>>;
|
|
11883
12933
|
/**
|
|
11884
12934
|
* Get Orders
|
|
11885
12935
|
* @summary Get Orders
|
|
@@ -11895,6 +12945,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11895
12945
|
* @memberof OrdersApi
|
|
11896
12946
|
*/
|
|
11897
12947
|
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, {}>>;
|
|
12948
|
+
/**
|
|
12949
|
+
* Create An Order (Admin)
|
|
12950
|
+
* @summary Create An Order (Admin)
|
|
12951
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12952
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12953
|
+
* @param {*} [options] Override http request option.
|
|
12954
|
+
* @throws {RequiredError}
|
|
12955
|
+
* @memberof OrdersApi
|
|
12956
|
+
*/
|
|
12957
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12958
|
+
/**
|
|
12959
|
+
* Create An Order
|
|
12960
|
+
* @summary Create An Order
|
|
12961
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12962
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12963
|
+
* @param {*} [options] Override http request option.
|
|
12964
|
+
* @throws {RequiredError}
|
|
12965
|
+
* @memberof OrdersApi
|
|
12966
|
+
*/
|
|
12967
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12968
|
+
/**
|
|
12969
|
+
* Update An Order (Admin)
|
|
12970
|
+
* @summary Update An Order (Admin)
|
|
12971
|
+
* @param {number} id Order ID
|
|
12972
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12973
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12974
|
+
* @param {*} [options] Override http request option.
|
|
12975
|
+
* @throws {RequiredError}
|
|
12976
|
+
* @memberof OrdersApi
|
|
12977
|
+
*/
|
|
12978
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12979
|
+
/**
|
|
12980
|
+
* Update An Order
|
|
12981
|
+
* @summary Update An Order
|
|
12982
|
+
* @param {number} id Order ID
|
|
12983
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12984
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12985
|
+
* @param {*} [options] Override http request option.
|
|
12986
|
+
* @throws {RequiredError}
|
|
12987
|
+
* @memberof OrdersApi
|
|
12988
|
+
*/
|
|
12989
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11898
12990
|
}
|
|
11899
12991
|
/**
|
|
11900
12992
|
* @export
|
|
@@ -12150,13 +13242,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12150
13242
|
* @throws {RequiredError}
|
|
12151
13243
|
*/
|
|
12152
13244
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12153
|
-
/**
|
|
12154
|
-
* Get Customer Price Lists
|
|
12155
|
-
* @summary Get Customer Price Lists
|
|
12156
|
-
* @param {*} [options] Override http request option.
|
|
12157
|
-
* @throws {RequiredError}
|
|
12158
|
-
*/
|
|
12159
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12160
13245
|
/**
|
|
12161
13246
|
* Get Current Stock & Pricing
|
|
12162
13247
|
* @summary Get Current Stock & Pricing
|
|
@@ -12169,13 +13254,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12169
13254
|
/**
|
|
12170
13255
|
* Get Products
|
|
12171
13256
|
* @summary Get Products
|
|
12172
|
-
* @param {number} [pageSize] Number Of Results
|
|
12173
|
-
* @param {number} [page] Page Number
|
|
12174
|
-
* @param {string} [search] Search
|
|
12175
13257
|
* @param {*} [options] Override http request option.
|
|
12176
13258
|
* @throws {RequiredError}
|
|
12177
13259
|
*/
|
|
12178
|
-
getGetProducts: (
|
|
13260
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12179
13261
|
/**
|
|
12180
13262
|
* Get Current Stock & Pricing
|
|
12181
13263
|
* @summary Get Current Stock & Pricing
|
|
@@ -12190,6 +13272,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12190
13272
|
* @throws {RequiredError}
|
|
12191
13273
|
*/
|
|
12192
13274
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13275
|
+
/**
|
|
13276
|
+
* Search Products
|
|
13277
|
+
* @summary Search Products
|
|
13278
|
+
* @param {number} [pageSize] Number Of Results
|
|
13279
|
+
* @param {number} [page] Page Number
|
|
13280
|
+
* @param {string} [search] Search
|
|
13281
|
+
* @param {*} [options] Override http request option.
|
|
13282
|
+
* @throws {RequiredError}
|
|
13283
|
+
*/
|
|
13284
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13285
|
+
/**
|
|
13286
|
+
* Get Product
|
|
13287
|
+
* @summary Get Product
|
|
13288
|
+
* @param {string} sku Product SKU
|
|
13289
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13290
|
+
* @param {*} [options] Override http request option.
|
|
13291
|
+
* @throws {RequiredError}
|
|
13292
|
+
*/
|
|
13293
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13294
|
+
/**
|
|
13295
|
+
* Get Product For Customer
|
|
13296
|
+
* @summary Get Product For Customer
|
|
13297
|
+
* @param {number} customerId Customer ID
|
|
13298
|
+
* @param {string} sku Product SKU
|
|
13299
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13300
|
+
* @param {*} [options] Override http request option.
|
|
13301
|
+
* @throws {RequiredError}
|
|
13302
|
+
*/
|
|
13303
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12193
13304
|
};
|
|
12194
13305
|
/**
|
|
12195
13306
|
* ProductsApi - functional programming interface
|
|
@@ -12203,13 +13314,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12203
13314
|
* @throws {RequiredError}
|
|
12204
13315
|
*/
|
|
12205
13316
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12206
|
-
/**
|
|
12207
|
-
* Get Customer Price Lists
|
|
12208
|
-
* @summary Get Customer Price Lists
|
|
12209
|
-
* @param {*} [options] Override http request option.
|
|
12210
|
-
* @throws {RequiredError}
|
|
12211
|
-
*/
|
|
12212
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12213
13317
|
/**
|
|
12214
13318
|
* Get Current Stock & Pricing
|
|
12215
13319
|
* @summary Get Current Stock & Pricing
|
|
@@ -12222,13 +13326,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12222
13326
|
/**
|
|
12223
13327
|
* Get Products
|
|
12224
13328
|
* @summary Get Products
|
|
12225
|
-
* @param {number} [pageSize] Number Of Results
|
|
12226
|
-
* @param {number} [page] Page Number
|
|
12227
|
-
* @param {string} [search] Search
|
|
12228
13329
|
* @param {*} [options] Override http request option.
|
|
12229
13330
|
* @throws {RequiredError}
|
|
12230
13331
|
*/
|
|
12231
|
-
getGetProducts(
|
|
13332
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12232
13333
|
/**
|
|
12233
13334
|
* Get Current Stock & Pricing
|
|
12234
13335
|
* @summary Get Current Stock & Pricing
|
|
@@ -12243,6 +13344,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12243
13344
|
* @throws {RequiredError}
|
|
12244
13345
|
*/
|
|
12245
13346
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13347
|
+
/**
|
|
13348
|
+
* Search Products
|
|
13349
|
+
* @summary Search Products
|
|
13350
|
+
* @param {number} [pageSize] Number Of Results
|
|
13351
|
+
* @param {number} [page] Page Number
|
|
13352
|
+
* @param {string} [search] Search
|
|
13353
|
+
* @param {*} [options] Override http request option.
|
|
13354
|
+
* @throws {RequiredError}
|
|
13355
|
+
*/
|
|
13356
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13357
|
+
/**
|
|
13358
|
+
* Get Product
|
|
13359
|
+
* @summary Get Product
|
|
13360
|
+
* @param {string} sku Product SKU
|
|
13361
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13362
|
+
* @param {*} [options] Override http request option.
|
|
13363
|
+
* @throws {RequiredError}
|
|
13364
|
+
*/
|
|
13365
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13366
|
+
/**
|
|
13367
|
+
* Get Product For Customer
|
|
13368
|
+
* @summary Get Product For Customer
|
|
13369
|
+
* @param {number} customerId Customer ID
|
|
13370
|
+
* @param {string} sku Product SKU
|
|
13371
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13372
|
+
* @param {*} [options] Override http request option.
|
|
13373
|
+
* @throws {RequiredError}
|
|
13374
|
+
*/
|
|
13375
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12246
13376
|
};
|
|
12247
13377
|
/**
|
|
12248
13378
|
* ProductsApi - factory interface
|
|
@@ -12256,13 +13386,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12256
13386
|
* @throws {RequiredError}
|
|
12257
13387
|
*/
|
|
12258
13388
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12259
|
-
/**
|
|
12260
|
-
* Get Customer Price Lists
|
|
12261
|
-
* @summary Get Customer Price Lists
|
|
12262
|
-
* @param {*} [options] Override http request option.
|
|
12263
|
-
* @throws {RequiredError}
|
|
12264
|
-
*/
|
|
12265
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12266
13389
|
/**
|
|
12267
13390
|
* Get Current Stock & Pricing
|
|
12268
13391
|
* @summary Get Current Stock & Pricing
|
|
@@ -12275,13 +13398,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12275
13398
|
/**
|
|
12276
13399
|
* Get Products
|
|
12277
13400
|
* @summary Get Products
|
|
12278
|
-
* @param {number} [pageSize] Number Of Results
|
|
12279
|
-
* @param {number} [page] Page Number
|
|
12280
|
-
* @param {string} [search] Search
|
|
12281
13401
|
* @param {*} [options] Override http request option.
|
|
12282
13402
|
* @throws {RequiredError}
|
|
12283
13403
|
*/
|
|
12284
|
-
getGetProducts(
|
|
13404
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12285
13405
|
/**
|
|
12286
13406
|
* Get Current Stock & Pricing
|
|
12287
13407
|
* @summary Get Current Stock & Pricing
|
|
@@ -12296,6 +13416,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12296
13416
|
* @throws {RequiredError}
|
|
12297
13417
|
*/
|
|
12298
13418
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13419
|
+
/**
|
|
13420
|
+
* Search Products
|
|
13421
|
+
* @summary Search Products
|
|
13422
|
+
* @param {number} [pageSize] Number Of Results
|
|
13423
|
+
* @param {number} [page] Page Number
|
|
13424
|
+
* @param {string} [search] Search
|
|
13425
|
+
* @param {*} [options] Override http request option.
|
|
13426
|
+
* @throws {RequiredError}
|
|
13427
|
+
*/
|
|
13428
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13429
|
+
/**
|
|
13430
|
+
* Get Product
|
|
13431
|
+
* @summary Get Product
|
|
13432
|
+
* @param {string} sku Product SKU
|
|
13433
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13434
|
+
* @param {*} [options] Override http request option.
|
|
13435
|
+
* @throws {RequiredError}
|
|
13436
|
+
*/
|
|
13437
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13438
|
+
/**
|
|
13439
|
+
* Get Product For Customer
|
|
13440
|
+
* @summary Get Product For Customer
|
|
13441
|
+
* @param {number} customerId Customer ID
|
|
13442
|
+
* @param {string} sku Product SKU
|
|
13443
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13444
|
+
* @param {*} [options] Override http request option.
|
|
13445
|
+
* @throws {RequiredError}
|
|
13446
|
+
*/
|
|
13447
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12299
13448
|
};
|
|
12300
13449
|
/**
|
|
12301
13450
|
* ProductsApi - object-oriented interface
|
|
@@ -12312,14 +13461,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12312
13461
|
* @memberof ProductsApi
|
|
12313
13462
|
*/
|
|
12314
13463
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12315
|
-
/**
|
|
12316
|
-
* Get Customer Price Lists
|
|
12317
|
-
* @summary Get Customer Price Lists
|
|
12318
|
-
* @param {*} [options] Override http request option.
|
|
12319
|
-
* @throws {RequiredError}
|
|
12320
|
-
* @memberof ProductsApi
|
|
12321
|
-
*/
|
|
12322
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12323
13464
|
/**
|
|
12324
13465
|
* Get Current Stock & Pricing
|
|
12325
13466
|
* @summary Get Current Stock & Pricing
|
|
@@ -12333,14 +13474,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12333
13474
|
/**
|
|
12334
13475
|
* Get Products
|
|
12335
13476
|
* @summary Get Products
|
|
12336
|
-
* @param {number} [pageSize] Number Of Results
|
|
12337
|
-
* @param {number} [page] Page Number
|
|
12338
|
-
* @param {string} [search] Search
|
|
12339
13477
|
* @param {*} [options] Override http request option.
|
|
12340
13478
|
* @throws {RequiredError}
|
|
12341
13479
|
* @memberof ProductsApi
|
|
12342
13480
|
*/
|
|
12343
|
-
getGetProducts(
|
|
13481
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12344
13482
|
/**
|
|
12345
13483
|
* Get Current Stock & Pricing
|
|
12346
13484
|
* @summary Get Current Stock & Pricing
|
|
@@ -12357,6 +13495,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12357
13495
|
* @memberof ProductsApi
|
|
12358
13496
|
*/
|
|
12359
13497
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13498
|
+
/**
|
|
13499
|
+
* Search Products
|
|
13500
|
+
* @summary Search Products
|
|
13501
|
+
* @param {number} [pageSize] Number Of Results
|
|
13502
|
+
* @param {number} [page] Page Number
|
|
13503
|
+
* @param {string} [search] Search
|
|
13504
|
+
* @param {*} [options] Override http request option.
|
|
13505
|
+
* @throws {RequiredError}
|
|
13506
|
+
* @memberof ProductsApi
|
|
13507
|
+
*/
|
|
13508
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13509
|
+
/**
|
|
13510
|
+
* Get Product
|
|
13511
|
+
* @summary Get Product
|
|
13512
|
+
* @param {string} sku Product SKU
|
|
13513
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13514
|
+
* @param {*} [options] Override http request option.
|
|
13515
|
+
* @throws {RequiredError}
|
|
13516
|
+
* @memberof ProductsApi
|
|
13517
|
+
*/
|
|
13518
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13519
|
+
/**
|
|
13520
|
+
* Get Product For Customer
|
|
13521
|
+
* @summary Get Product For Customer
|
|
13522
|
+
* @param {number} customerId Customer ID
|
|
13523
|
+
* @param {string} sku Product SKU
|
|
13524
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13525
|
+
* @param {*} [options] Override http request option.
|
|
13526
|
+
* @throws {RequiredError}
|
|
13527
|
+
* @memberof ProductsApi
|
|
13528
|
+
*/
|
|
13529
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12360
13530
|
}
|
|
12361
13531
|
/**
|
|
12362
13532
|
* @export
|
|
@@ -12477,7 +13647,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12477
13647
|
* @param {*} [options] Override http request option.
|
|
12478
13648
|
* @throws {RequiredError}
|
|
12479
13649
|
*/
|
|
12480
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13650
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12481
13651
|
/**
|
|
12482
13652
|
* Create a Fanvil provisioning group
|
|
12483
13653
|
* @summary Add group to DB and FDPS
|
|
@@ -12485,7 +13655,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12485
13655
|
* @param {*} [options] Override http request option.
|
|
12486
13656
|
* @throws {RequiredError}
|
|
12487
13657
|
*/
|
|
12488
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13658
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12489
13659
|
/**
|
|
12490
13660
|
* Add MAC address to DB and FDPS group
|
|
12491
13661
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12542,7 +13712,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12542
13712
|
* @param {*} [options] Override http request option.
|
|
12543
13713
|
* @throws {RequiredError}
|
|
12544
13714
|
*/
|
|
12545
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13715
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12546
13716
|
/**
|
|
12547
13717
|
* Create a Fanvil provisioning group
|
|
12548
13718
|
* @summary Add group to DB and FDPS
|
|
@@ -12550,7 +13720,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12550
13720
|
* @param {*} [options] Override http request option.
|
|
12551
13721
|
* @throws {RequiredError}
|
|
12552
13722
|
*/
|
|
12553
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13723
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12554
13724
|
/**
|
|
12555
13725
|
* Add MAC address to DB and FDPS group
|
|
12556
13726
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12614,7 +13784,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12614
13784
|
* @throws {RequiredError}
|
|
12615
13785
|
* @memberof ProvisioningApi
|
|
12616
13786
|
*/
|
|
12617
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13787
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12618
13788
|
/**
|
|
12619
13789
|
* Create a Fanvil provisioning group
|
|
12620
13790
|
* @summary Add group to DB and FDPS
|
|
@@ -12623,7 +13793,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12623
13793
|
* @throws {RequiredError}
|
|
12624
13794
|
* @memberof ProvisioningApi
|
|
12625
13795
|
*/
|
|
12626
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13796
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12627
13797
|
/**
|
|
12628
13798
|
* Add MAC address to DB and FDPS group
|
|
12629
13799
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13498,6 +14668,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13498
14668
|
*/
|
|
13499
14669
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13500
14670
|
}
|
|
14671
|
+
/**
|
|
14672
|
+
* ShippingApi - axios parameter creator
|
|
14673
|
+
* @export
|
|
14674
|
+
*/
|
|
14675
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14676
|
+
/**
|
|
14677
|
+
* Get Shipping Services
|
|
14678
|
+
* @summary Get Shipping Services
|
|
14679
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14680
|
+
* @param {*} [options] Override http request option.
|
|
14681
|
+
* @throws {RequiredError}
|
|
14682
|
+
*/
|
|
14683
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14684
|
+
};
|
|
14685
|
+
/**
|
|
14686
|
+
* ShippingApi - functional programming interface
|
|
14687
|
+
* @export
|
|
14688
|
+
*/
|
|
14689
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14690
|
+
/**
|
|
14691
|
+
* Get Shipping Services
|
|
14692
|
+
* @summary Get Shipping Services
|
|
14693
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14694
|
+
* @param {*} [options] Override http request option.
|
|
14695
|
+
* @throws {RequiredError}
|
|
14696
|
+
*/
|
|
14697
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14698
|
+
};
|
|
14699
|
+
/**
|
|
14700
|
+
* ShippingApi - factory interface
|
|
14701
|
+
* @export
|
|
14702
|
+
*/
|
|
14703
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14704
|
+
/**
|
|
14705
|
+
* Get Shipping Services
|
|
14706
|
+
* @summary Get Shipping Services
|
|
14707
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14708
|
+
* @param {*} [options] Override http request option.
|
|
14709
|
+
* @throws {RequiredError}
|
|
14710
|
+
*/
|
|
14711
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14712
|
+
};
|
|
14713
|
+
/**
|
|
14714
|
+
* ShippingApi - object-oriented interface
|
|
14715
|
+
* @export
|
|
14716
|
+
* @class ShippingApi
|
|
14717
|
+
* @extends {BaseAPI}
|
|
14718
|
+
*/
|
|
14719
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14720
|
+
/**
|
|
14721
|
+
* Get Shipping Services
|
|
14722
|
+
* @summary Get Shipping Services
|
|
14723
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14724
|
+
* @param {*} [options] Override http request option.
|
|
14725
|
+
* @throws {RequiredError}
|
|
14726
|
+
* @memberof ShippingApi
|
|
14727
|
+
*/
|
|
14728
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14729
|
+
}
|
|
13501
14730
|
/**
|
|
13502
14731
|
* StockManagementApi - axios parameter creator
|
|
13503
14732
|
* @export
|
|
@@ -13827,7 +15056,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13827
15056
|
* @param {*} [options] Override http request option.
|
|
13828
15057
|
* @throws {RequiredError}
|
|
13829
15058
|
*/
|
|
13830
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15059
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13831
15060
|
/**
|
|
13832
15061
|
* Get Stock Order Supplier Invoice
|
|
13833
15062
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14042,7 +15271,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14042
15271
|
* @param {*} [options] Override http request option.
|
|
14043
15272
|
* @throws {RequiredError}
|
|
14044
15273
|
*/
|
|
14045
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15274
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14046
15275
|
/**
|
|
14047
15276
|
* Get Stock Order Supplier Invoice
|
|
14048
15277
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14272,7 +15501,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14272
15501
|
* @throws {RequiredError}
|
|
14273
15502
|
* @memberof StockManagementApi
|
|
14274
15503
|
*/
|
|
14275
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15504
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14276
15505
|
/**
|
|
14277
15506
|
* Get Stock Order Supplier Invoice
|
|
14278
15507
|
* @summary Get Stock Order Supplier Invoice
|