yellowgrid-api-ts 3.1.11 → 3.1.13-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 +217 -198
- package/README.md +34 -7
- package/api.ts +1832 -229
- 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 +1376 -151
- package/dist/api.js +1063 -207
- 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 +43 -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/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CustomerItemRequestDTO.md +37 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +12 -4
- package/docs/ItemDiscountEntity.md +31 -0
- 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 +301 -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,215 @@ 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
|
+
* Additional Discount
|
|
724
|
+
* @type {number}
|
|
725
|
+
* @memberof AdminItemRequestDTO
|
|
726
|
+
*/
|
|
727
|
+
'additionalDiscount'?: number | null;
|
|
728
|
+
}
|
|
729
|
+
/**
|
|
730
|
+
* Admin Order Request
|
|
731
|
+
* @export
|
|
732
|
+
* @interface AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
export interface AdminOrderRequestDTO {
|
|
735
|
+
/**
|
|
736
|
+
* Order Reference
|
|
737
|
+
* @type {string}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'orderReference'?: string | null;
|
|
741
|
+
/**
|
|
742
|
+
* Items
|
|
743
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
747
|
+
/**
|
|
748
|
+
*
|
|
749
|
+
* @type {ShippingServiceDTO}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'shippingService'?: ShippingServiceDTO;
|
|
753
|
+
/**
|
|
754
|
+
* Provisioning URL
|
|
755
|
+
* @type {string}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'provisioningUrl'?: string | null;
|
|
759
|
+
/**
|
|
760
|
+
*
|
|
761
|
+
* @type {AddressModel}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'shippingAddress'?: AddressModel;
|
|
765
|
+
/**
|
|
766
|
+
* Part Ship Order
|
|
767
|
+
* @type {boolean}
|
|
768
|
+
* @memberof AdminOrderRequestDTO
|
|
769
|
+
*/
|
|
770
|
+
'partShip'?: boolean;
|
|
771
|
+
/**
|
|
772
|
+
* Quote
|
|
773
|
+
* @type {boolean}
|
|
774
|
+
* @memberof AdminOrderRequestDTO
|
|
775
|
+
*/
|
|
776
|
+
'quote'?: boolean;
|
|
777
|
+
/**
|
|
778
|
+
* Customer ID
|
|
779
|
+
* @type {number}
|
|
780
|
+
* @memberof AdminOrderRequestDTO
|
|
781
|
+
*/
|
|
782
|
+
'customerId'?: number;
|
|
783
|
+
/**
|
|
784
|
+
* Contact
|
|
785
|
+
* @type {string}
|
|
786
|
+
* @memberof AdminOrderRequestDTO
|
|
787
|
+
*/
|
|
788
|
+
'contact'?: string;
|
|
789
|
+
/**
|
|
790
|
+
* Ignore Customer On Hold
|
|
791
|
+
* @type {boolean}
|
|
792
|
+
* @memberof AdminOrderRequestDTO
|
|
793
|
+
*/
|
|
794
|
+
'ignoreOnHold'?: boolean;
|
|
795
|
+
/**
|
|
796
|
+
* Ignore Customer Credit Limit
|
|
797
|
+
* @type {boolean}
|
|
798
|
+
* @memberof AdminOrderRequestDTO
|
|
799
|
+
*/
|
|
800
|
+
'ignoreCreditLimit'?: boolean;
|
|
801
|
+
/**
|
|
802
|
+
* Include NFR Promos
|
|
803
|
+
* @type {boolean}
|
|
804
|
+
* @memberof AdminOrderRequestDTO
|
|
805
|
+
*/
|
|
806
|
+
'includeNfrPromos'?: boolean;
|
|
807
|
+
/**
|
|
808
|
+
* Carriage Charge
|
|
809
|
+
* @type {number}
|
|
810
|
+
* @memberof AdminOrderRequestDTO
|
|
811
|
+
*/
|
|
812
|
+
'carriageCharge'?: number;
|
|
813
|
+
}
|
|
814
|
+
/**
|
|
815
|
+
* Admin User
|
|
816
|
+
* @export
|
|
817
|
+
* @interface AdminUserModel
|
|
818
|
+
*/
|
|
819
|
+
export interface AdminUserModel {
|
|
820
|
+
/**
|
|
821
|
+
* First Name
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof AdminUserModel
|
|
824
|
+
*/
|
|
825
|
+
'firstName'?: string;
|
|
826
|
+
/**
|
|
827
|
+
* Last Name
|
|
828
|
+
* @type {string}
|
|
829
|
+
* @memberof AdminUserModel
|
|
830
|
+
*/
|
|
831
|
+
'lastName'?: string;
|
|
832
|
+
/**
|
|
833
|
+
* Avatar
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof AdminUserModel
|
|
836
|
+
*/
|
|
837
|
+
'avatar'?: string | null;
|
|
838
|
+
/**
|
|
839
|
+
* Role
|
|
840
|
+
* @type {number}
|
|
841
|
+
* @memberof AdminUserModel
|
|
842
|
+
*/
|
|
843
|
+
'role'?: AdminUserModelRoleEnum;
|
|
844
|
+
/**
|
|
845
|
+
* Email
|
|
846
|
+
* @type {string}
|
|
847
|
+
* @memberof AdminUserModel
|
|
848
|
+
*/
|
|
849
|
+
'email'?: string | null;
|
|
850
|
+
}
|
|
851
|
+
export declare const AdminUserModelRoleEnum: {
|
|
852
|
+
readonly NUMBER_0: 0;
|
|
853
|
+
readonly NUMBER_1: 1;
|
|
854
|
+
readonly NUMBER_2: 2;
|
|
855
|
+
readonly NUMBER_3: 3;
|
|
856
|
+
readonly NUMBER_4: 4;
|
|
857
|
+
};
|
|
858
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
859
|
/**
|
|
529
860
|
* Agent Hours Graph
|
|
530
861
|
* @export
|
|
@@ -754,6 +1085,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1085
|
*/
|
|
755
1086
|
'redirect_uri'?: string | null;
|
|
756
1087
|
}
|
|
1088
|
+
/**
|
|
1089
|
+
* Basic Order Item
|
|
1090
|
+
* @export
|
|
1091
|
+
* @interface BasicItemDTO
|
|
1092
|
+
*/
|
|
1093
|
+
export interface BasicItemDTO {
|
|
1094
|
+
/**
|
|
1095
|
+
* SKU
|
|
1096
|
+
* @type {string}
|
|
1097
|
+
* @memberof BasicItemDTO
|
|
1098
|
+
*/
|
|
1099
|
+
'sku'?: string;
|
|
1100
|
+
/**
|
|
1101
|
+
* Quantity
|
|
1102
|
+
* @type {number}
|
|
1103
|
+
* @memberof BasicItemDTO
|
|
1104
|
+
*/
|
|
1105
|
+
'quantity'?: number;
|
|
1106
|
+
}
|
|
1107
|
+
/**
|
|
1108
|
+
* Basic Product
|
|
1109
|
+
* @export
|
|
1110
|
+
* @interface BasicProductDTO
|
|
1111
|
+
*/
|
|
1112
|
+
export interface BasicProductDTO {
|
|
1113
|
+
/**
|
|
1114
|
+
* SKU
|
|
1115
|
+
* @type {string}
|
|
1116
|
+
* @memberof BasicProductDTO
|
|
1117
|
+
*/
|
|
1118
|
+
'sku'?: string;
|
|
1119
|
+
/**
|
|
1120
|
+
* Title
|
|
1121
|
+
* @type {string}
|
|
1122
|
+
* @memberof BasicProductDTO
|
|
1123
|
+
*/
|
|
1124
|
+
'title'?: string;
|
|
1125
|
+
}
|
|
757
1126
|
/**
|
|
758
1127
|
* BatchesEntity
|
|
759
1128
|
* @export
|
|
@@ -948,12 +1317,6 @@ export interface ClientDetailsModel {
|
|
|
948
1317
|
* @memberof ClientDetailsModel
|
|
949
1318
|
*/
|
|
950
1319
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1320
|
}
|
|
958
1321
|
/**
|
|
959
1322
|
* OAuth client details
|
|
@@ -1115,6 +1478,73 @@ export interface ConversationModel {
|
|
|
1115
1478
|
*/
|
|
1116
1479
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1480
|
}
|
|
1481
|
+
/**
|
|
1482
|
+
* CourierPricesEntity
|
|
1483
|
+
* @export
|
|
1484
|
+
* @interface CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
export interface CourierPriceEntity {
|
|
1487
|
+
/**
|
|
1488
|
+
* id
|
|
1489
|
+
* @type {number}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'id'?: number;
|
|
1493
|
+
/**
|
|
1494
|
+
* courier
|
|
1495
|
+
* @type {string}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'courier'?: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* destinationIso
|
|
1501
|
+
* @type {string}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'destinationIso'?: string;
|
|
1505
|
+
/**
|
|
1506
|
+
* serviceDescription
|
|
1507
|
+
* @type {string}
|
|
1508
|
+
* @memberof CourierPriceEntity
|
|
1509
|
+
*/
|
|
1510
|
+
'serviceDescription'?: string;
|
|
1511
|
+
/**
|
|
1512
|
+
* flatRate
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof CourierPriceEntity
|
|
1515
|
+
*/
|
|
1516
|
+
'flatRate'?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
* initialBox
|
|
1519
|
+
* @type {number}
|
|
1520
|
+
* @memberof CourierPriceEntity
|
|
1521
|
+
*/
|
|
1522
|
+
'initialBox'?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* initialKg
|
|
1525
|
+
* @type {number}
|
|
1526
|
+
* @memberof CourierPriceEntity
|
|
1527
|
+
*/
|
|
1528
|
+
'initialKg'?: number;
|
|
1529
|
+
/**
|
|
1530
|
+
* perBox
|
|
1531
|
+
* @type {number}
|
|
1532
|
+
* @memberof CourierPriceEntity
|
|
1533
|
+
*/
|
|
1534
|
+
'perBox'?: number;
|
|
1535
|
+
/**
|
|
1536
|
+
* perKg
|
|
1537
|
+
* @type {number}
|
|
1538
|
+
* @memberof CourierPriceEntity
|
|
1539
|
+
*/
|
|
1540
|
+
'perKg'?: number;
|
|
1541
|
+
/**
|
|
1542
|
+
* maxKg
|
|
1543
|
+
* @type {number}
|
|
1544
|
+
* @memberof CourierPriceEntity
|
|
1545
|
+
*/
|
|
1546
|
+
'maxKg'?: number;
|
|
1547
|
+
}
|
|
1118
1548
|
/**
|
|
1119
1549
|
* Credit Account
|
|
1120
1550
|
* @export
|
|
@@ -1346,6 +1776,116 @@ export interface CustomerInformationModel {
|
|
|
1346
1776
|
*/
|
|
1347
1777
|
'contactLastName'?: string;
|
|
1348
1778
|
}
|
|
1779
|
+
/**
|
|
1780
|
+
* Order Item Request
|
|
1781
|
+
* @export
|
|
1782
|
+
* @interface CustomerItemRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
export interface CustomerItemRequestDTO {
|
|
1785
|
+
/**
|
|
1786
|
+
* SKU
|
|
1787
|
+
* @type {string}
|
|
1788
|
+
* @memberof CustomerItemRequestDTO
|
|
1789
|
+
*/
|
|
1790
|
+
'sku'?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* Quantity
|
|
1793
|
+
* @type {number}
|
|
1794
|
+
* @memberof CustomerItemRequestDTO
|
|
1795
|
+
*/
|
|
1796
|
+
'quantity'?: number;
|
|
1797
|
+
/**
|
|
1798
|
+
* ID
|
|
1799
|
+
* @type {number}
|
|
1800
|
+
* @memberof CustomerItemRequestDTO
|
|
1801
|
+
*/
|
|
1802
|
+
'id'?: number | null;
|
|
1803
|
+
/**
|
|
1804
|
+
* 3CX Licence Key
|
|
1805
|
+
* @type {string}
|
|
1806
|
+
* @memberof CustomerItemRequestDTO
|
|
1807
|
+
*/
|
|
1808
|
+
'licenceKey'?: string | null;
|
|
1809
|
+
/**
|
|
1810
|
+
* 3CX Hosting
|
|
1811
|
+
* @type {boolean}
|
|
1812
|
+
* @memberof CustomerItemRequestDTO
|
|
1813
|
+
*/
|
|
1814
|
+
'hosting'?: boolean | null;
|
|
1815
|
+
/**
|
|
1816
|
+
* Date Time
|
|
1817
|
+
* @type {string}
|
|
1818
|
+
* @memberof CustomerItemRequestDTO
|
|
1819
|
+
*/
|
|
1820
|
+
'processDate'?: string;
|
|
1821
|
+
/**
|
|
1822
|
+
* 3CX Sales Code
|
|
1823
|
+
* @type {string}
|
|
1824
|
+
* @memberof CustomerItemRequestDTO
|
|
1825
|
+
*/
|
|
1826
|
+
'tcxSalesCode'?: string | null;
|
|
1827
|
+
/**
|
|
1828
|
+
* SBCS
|
|
1829
|
+
* @type {Array<TcxSbcDTO>}
|
|
1830
|
+
* @memberof CustomerItemRequestDTO
|
|
1831
|
+
*/
|
|
1832
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1833
|
+
/**
|
|
1834
|
+
* Read Only (Cannot be edited)
|
|
1835
|
+
* @type {boolean}
|
|
1836
|
+
* @memberof CustomerItemRequestDTO
|
|
1837
|
+
*/
|
|
1838
|
+
'readOnly'?: boolean;
|
|
1839
|
+
}
|
|
1840
|
+
/**
|
|
1841
|
+
* Order Request
|
|
1842
|
+
* @export
|
|
1843
|
+
* @interface CustomerOrderRequestDTO
|
|
1844
|
+
*/
|
|
1845
|
+
export interface CustomerOrderRequestDTO {
|
|
1846
|
+
/**
|
|
1847
|
+
* Order Reference
|
|
1848
|
+
* @type {string}
|
|
1849
|
+
* @memberof CustomerOrderRequestDTO
|
|
1850
|
+
*/
|
|
1851
|
+
'orderReference'?: string | null;
|
|
1852
|
+
/**
|
|
1853
|
+
* Items
|
|
1854
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1855
|
+
* @memberof CustomerOrderRequestDTO
|
|
1856
|
+
*/
|
|
1857
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1858
|
+
/**
|
|
1859
|
+
*
|
|
1860
|
+
* @type {ShippingServiceDTO}
|
|
1861
|
+
* @memberof CustomerOrderRequestDTO
|
|
1862
|
+
*/
|
|
1863
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1864
|
+
/**
|
|
1865
|
+
* Provisioning URL
|
|
1866
|
+
* @type {string}
|
|
1867
|
+
* @memberof CustomerOrderRequestDTO
|
|
1868
|
+
*/
|
|
1869
|
+
'provisioningUrl'?: string | null;
|
|
1870
|
+
/**
|
|
1871
|
+
*
|
|
1872
|
+
* @type {AddressModel}
|
|
1873
|
+
* @memberof CustomerOrderRequestDTO
|
|
1874
|
+
*/
|
|
1875
|
+
'shippingAddress'?: AddressModel;
|
|
1876
|
+
/**
|
|
1877
|
+
* Part Ship Order
|
|
1878
|
+
* @type {boolean}
|
|
1879
|
+
* @memberof CustomerOrderRequestDTO
|
|
1880
|
+
*/
|
|
1881
|
+
'partShip'?: boolean;
|
|
1882
|
+
/**
|
|
1883
|
+
* Quote
|
|
1884
|
+
* @type {boolean}
|
|
1885
|
+
* @memberof CustomerOrderRequestDTO
|
|
1886
|
+
*/
|
|
1887
|
+
'quote'?: boolean;
|
|
1888
|
+
}
|
|
1349
1889
|
/**
|
|
1350
1890
|
* Customer Price List
|
|
1351
1891
|
* @export
|
|
@@ -1852,19 +2392,6 @@ export interface GenericFileModel {
|
|
|
1852
2392
|
*/
|
|
1853
2393
|
'type'?: string;
|
|
1854
2394
|
}
|
|
1855
|
-
/**
|
|
1856
|
-
*
|
|
1857
|
-
* @export
|
|
1858
|
-
* @interface GetGetPasswordHash200Response
|
|
1859
|
-
*/
|
|
1860
|
-
export interface GetGetPasswordHash200Response {
|
|
1861
|
-
/**
|
|
1862
|
-
*
|
|
1863
|
-
* @type {string}
|
|
1864
|
-
* @memberof GetGetPasswordHash200Response
|
|
1865
|
-
*/
|
|
1866
|
-
'hash'?: string;
|
|
1867
|
-
}
|
|
1868
2395
|
/**
|
|
1869
2396
|
*
|
|
1870
2397
|
* @export
|
|
@@ -2460,35 +2987,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2460
2987
|
*/
|
|
2461
2988
|
export interface ItemDTO {
|
|
2462
2989
|
/**
|
|
2463
|
-
*
|
|
2464
|
-
* @type {
|
|
2990
|
+
* SKU
|
|
2991
|
+
* @type {string}
|
|
2465
2992
|
* @memberof ItemDTO
|
|
2466
2993
|
*/
|
|
2467
|
-
'
|
|
2994
|
+
'sku'?: string;
|
|
2468
2995
|
/**
|
|
2469
|
-
*
|
|
2996
|
+
* Quantity
|
|
2470
2997
|
* @type {number}
|
|
2471
2998
|
* @memberof ItemDTO
|
|
2472
2999
|
*/
|
|
2473
|
-
'
|
|
3000
|
+
'quantity'?: number;
|
|
2474
3001
|
/**
|
|
2475
|
-
*
|
|
2476
|
-
* @type {
|
|
3002
|
+
* ID
|
|
3003
|
+
* @type {number}
|
|
2477
3004
|
* @memberof ItemDTO
|
|
2478
3005
|
*/
|
|
2479
|
-
'
|
|
3006
|
+
'id'?: number | null;
|
|
2480
3007
|
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @type {
|
|
3008
|
+
* Order ID
|
|
3009
|
+
* @type {number}
|
|
2483
3010
|
* @memberof ItemDTO
|
|
2484
3011
|
*/
|
|
2485
|
-
'
|
|
2486
|
-
/**
|
|
2487
|
-
*
|
|
2488
|
-
* @type {
|
|
3012
|
+
'orderId'?: number | null;
|
|
3013
|
+
/**
|
|
3014
|
+
* Title
|
|
3015
|
+
* @type {string}
|
|
2489
3016
|
* @memberof ItemDTO
|
|
2490
3017
|
*/
|
|
2491
|
-
'
|
|
3018
|
+
'title'?: string;
|
|
2492
3019
|
/**
|
|
2493
3020
|
* Price
|
|
2494
3021
|
* @type {number}
|
|
@@ -2513,6 +3040,12 @@ export interface ItemDTO {
|
|
|
2513
3040
|
* @memberof ItemDTO
|
|
2514
3041
|
*/
|
|
2515
3042
|
'processDate'?: string;
|
|
3043
|
+
/**
|
|
3044
|
+
* 3CX Hosting
|
|
3045
|
+
* @type {boolean}
|
|
3046
|
+
* @memberof ItemDTO
|
|
3047
|
+
*/
|
|
3048
|
+
'hosting'?: boolean | null;
|
|
2516
3049
|
/**
|
|
2517
3050
|
* Promo Item
|
|
2518
3051
|
* @type {boolean}
|
|
@@ -2524,7 +3057,68 @@ export interface ItemDTO {
|
|
|
2524
3057
|
* @type {number}
|
|
2525
3058
|
* @memberof ItemDTO
|
|
2526
3059
|
*/
|
|
2527
|
-
'refunded'?: number;
|
|
3060
|
+
'refunded'?: number | null;
|
|
3061
|
+
/**
|
|
3062
|
+
* SBCs
|
|
3063
|
+
* @type {Array<TcxSbcDTO>}
|
|
3064
|
+
* @memberof ItemDTO
|
|
3065
|
+
*/
|
|
3066
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3067
|
+
/**
|
|
3068
|
+
* Readonly
|
|
3069
|
+
* @type {boolean}
|
|
3070
|
+
* @memberof ItemDTO
|
|
3071
|
+
*/
|
|
3072
|
+
'readonly'?: boolean;
|
|
3073
|
+
/**
|
|
3074
|
+
* 3CX Sales Code
|
|
3075
|
+
* @type {string}
|
|
3076
|
+
* @memberof ItemDTO
|
|
3077
|
+
*/
|
|
3078
|
+
'tcxSalesCode'?: string | null;
|
|
3079
|
+
}
|
|
3080
|
+
/**
|
|
3081
|
+
* ItemDiscountsEntity
|
|
3082
|
+
* @export
|
|
3083
|
+
* @interface ItemDiscountEntity
|
|
3084
|
+
*/
|
|
3085
|
+
export interface ItemDiscountEntity {
|
|
3086
|
+
/**
|
|
3087
|
+
* id
|
|
3088
|
+
* @type {number}
|
|
3089
|
+
* @memberof ItemDiscountEntity
|
|
3090
|
+
*/
|
|
3091
|
+
'id'?: number;
|
|
3092
|
+
/**
|
|
3093
|
+
* itemId
|
|
3094
|
+
* @type {number}
|
|
3095
|
+
* @memberof ItemDiscountEntity
|
|
3096
|
+
*/
|
|
3097
|
+
'itemId'?: number;
|
|
3098
|
+
/**
|
|
3099
|
+
* priceList
|
|
3100
|
+
* @type {string}
|
|
3101
|
+
* @memberof ItemDiscountEntity
|
|
3102
|
+
*/
|
|
3103
|
+
'priceList'?: string;
|
|
3104
|
+
/**
|
|
3105
|
+
* discount
|
|
3106
|
+
* @type {number}
|
|
3107
|
+
* @memberof ItemDiscountEntity
|
|
3108
|
+
*/
|
|
3109
|
+
'discount'?: number;
|
|
3110
|
+
/**
|
|
3111
|
+
* description
|
|
3112
|
+
* @type {string}
|
|
3113
|
+
* @memberof ItemDiscountEntity
|
|
3114
|
+
*/
|
|
3115
|
+
'description'?: string;
|
|
3116
|
+
/**
|
|
3117
|
+
* priority
|
|
3118
|
+
* @type {number}
|
|
3119
|
+
* @memberof ItemDiscountEntity
|
|
3120
|
+
*/
|
|
3121
|
+
'priority'?: number;
|
|
2528
3122
|
}
|
|
2529
3123
|
/**
|
|
2530
3124
|
* ItemsEntity
|
|
@@ -2658,6 +3252,31 @@ export interface ItemEntity {
|
|
|
2658
3252
|
* @memberof ItemEntity
|
|
2659
3253
|
*/
|
|
2660
3254
|
'promoItem'?: number;
|
|
3255
|
+
/**
|
|
3256
|
+
* 3CX Sales Code
|
|
3257
|
+
* @type {string}
|
|
3258
|
+
* @memberof ItemEntity
|
|
3259
|
+
*/
|
|
3260
|
+
'tcxSalesCode'?: string | null;
|
|
3261
|
+
}
|
|
3262
|
+
/**
|
|
3263
|
+
* LinkedOrdersEntity
|
|
3264
|
+
* @export
|
|
3265
|
+
* @interface LinkedOrderEntity
|
|
3266
|
+
*/
|
|
3267
|
+
export interface LinkedOrderEntity {
|
|
3268
|
+
/**
|
|
3269
|
+
* orderId
|
|
3270
|
+
* @type {number}
|
|
3271
|
+
* @memberof LinkedOrderEntity
|
|
3272
|
+
*/
|
|
3273
|
+
'orderId'?: number;
|
|
3274
|
+
/**
|
|
3275
|
+
* linkedOrderId
|
|
3276
|
+
* @type {number}
|
|
3277
|
+
* @memberof LinkedOrderEntity
|
|
3278
|
+
*/
|
|
3279
|
+
'linkedOrderId'?: number;
|
|
2661
3280
|
}
|
|
2662
3281
|
/**
|
|
2663
3282
|
* MFA Required
|
|
@@ -3311,13 +3930,19 @@ export interface OrderSummaryDTO {
|
|
|
3311
3930
|
* @type {string}
|
|
3312
3931
|
* @memberof OrderSummaryDTO
|
|
3313
3932
|
*/
|
|
3314
|
-
'reference'?: string;
|
|
3933
|
+
'reference'?: string | null;
|
|
3315
3934
|
/**
|
|
3316
3935
|
* Invoice Number
|
|
3317
3936
|
* @type {string}
|
|
3318
3937
|
* @memberof OrderSummaryDTO
|
|
3319
3938
|
*/
|
|
3320
3939
|
'invoiceNumber'?: string;
|
|
3940
|
+
/**
|
|
3941
|
+
* Invoice ID
|
|
3942
|
+
* @type {string}
|
|
3943
|
+
* @memberof OrderSummaryDTO
|
|
3944
|
+
*/
|
|
3945
|
+
'invoiceId'?: string | null;
|
|
3321
3946
|
/**
|
|
3322
3947
|
* Date Time
|
|
3323
3948
|
* @type {string}
|
|
@@ -3372,6 +3997,24 @@ export interface OrderSummaryDTO {
|
|
|
3372
3997
|
* @memberof OrderSummaryDTO
|
|
3373
3998
|
*/
|
|
3374
3999
|
'fulfillable'?: boolean | null;
|
|
4000
|
+
/**
|
|
4001
|
+
* Provisioning URL
|
|
4002
|
+
* @type {string}
|
|
4003
|
+
* @memberof OrderSummaryDTO
|
|
4004
|
+
*/
|
|
4005
|
+
'provisioningUrl'?: string | null;
|
|
4006
|
+
/**
|
|
4007
|
+
*
|
|
4008
|
+
* @type {ShippingServiceDTO}
|
|
4009
|
+
* @memberof OrderSummaryDTO
|
|
4010
|
+
*/
|
|
4011
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
4012
|
+
/**
|
|
4013
|
+
* Readonly
|
|
4014
|
+
* @type {boolean}
|
|
4015
|
+
* @memberof OrderSummaryDTO
|
|
4016
|
+
*/
|
|
4017
|
+
'readonly'?: boolean;
|
|
3375
4018
|
}
|
|
3376
4019
|
/**
|
|
3377
4020
|
* Order Totals
|
|
@@ -3421,6 +4064,12 @@ export interface OrderTotalModel {
|
|
|
3421
4064
|
* @memberof OrderTotalModel
|
|
3422
4065
|
*/
|
|
3423
4066
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4067
|
+
/**
|
|
4068
|
+
* Delivery
|
|
4069
|
+
* @type {number}
|
|
4070
|
+
* @memberof OrderTotalModel
|
|
4071
|
+
*/
|
|
4072
|
+
'delivery'?: number | null;
|
|
3424
4073
|
}
|
|
3425
4074
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3426
4075
|
readonly Eur: "EUR";
|
|
@@ -3799,6 +4448,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3799
4448
|
*/
|
|
3800
4449
|
'scopes'?: Array<string>;
|
|
3801
4450
|
}
|
|
4451
|
+
/**
|
|
4452
|
+
*
|
|
4453
|
+
* @export
|
|
4454
|
+
* @interface PostGetProductForCustomerRequest
|
|
4455
|
+
*/
|
|
4456
|
+
export interface PostGetProductForCustomerRequest {
|
|
4457
|
+
/**
|
|
4458
|
+
* Quantity
|
|
4459
|
+
* @type {number}
|
|
4460
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4461
|
+
*/
|
|
4462
|
+
'quantity'?: number | null;
|
|
4463
|
+
/**
|
|
4464
|
+
* 3CX Licence Key
|
|
4465
|
+
* @type {string}
|
|
4466
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4467
|
+
*/
|
|
4468
|
+
'licenceKey'?: string | null;
|
|
4469
|
+
/**
|
|
4470
|
+
* 3CX Hosting
|
|
4471
|
+
* @type {boolean}
|
|
4472
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4473
|
+
*/
|
|
4474
|
+
'hosting'?: boolean | null;
|
|
4475
|
+
}
|
|
3802
4476
|
/**
|
|
3803
4477
|
* Price & Stock List
|
|
3804
4478
|
* @export
|
|
@@ -3930,10 +4604,10 @@ export interface ProductPriceListItemModel {
|
|
|
3930
4604
|
export interface ProductSearchResultsModel {
|
|
3931
4605
|
/**
|
|
3932
4606
|
* Results
|
|
3933
|
-
* @type {Array<
|
|
4607
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3934
4608
|
* @memberof ProductSearchResultsModel
|
|
3935
4609
|
*/
|
|
3936
|
-
'results'?: Array<
|
|
4610
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3937
4611
|
}
|
|
3938
4612
|
/**
|
|
3939
4613
|
* Product Serial Info
|
|
@@ -3969,45 +4643,51 @@ export interface ProductSerialInfoModel {
|
|
|
3969
4643
|
/**
|
|
3970
4644
|
* Product Summary
|
|
3971
4645
|
* @export
|
|
3972
|
-
* @interface
|
|
4646
|
+
* @interface ProductSummaryDTO
|
|
3973
4647
|
*/
|
|
3974
|
-
export interface
|
|
4648
|
+
export interface ProductSummaryDTO {
|
|
3975
4649
|
/**
|
|
3976
4650
|
* SKU
|
|
3977
4651
|
* @type {string}
|
|
3978
|
-
* @memberof
|
|
4652
|
+
* @memberof ProductSummaryDTO
|
|
3979
4653
|
*/
|
|
3980
4654
|
'sku'?: string;
|
|
3981
4655
|
/**
|
|
3982
4656
|
* Title
|
|
3983
4657
|
* @type {string}
|
|
3984
|
-
* @memberof
|
|
4658
|
+
* @memberof ProductSummaryDTO
|
|
3985
4659
|
*/
|
|
3986
4660
|
'title'?: string;
|
|
3987
4661
|
/**
|
|
3988
4662
|
* Stock Quantity
|
|
3989
4663
|
* @type {number}
|
|
3990
|
-
* @memberof
|
|
4664
|
+
* @memberof ProductSummaryDTO
|
|
3991
4665
|
*/
|
|
3992
4666
|
'quantity'?: number | null;
|
|
3993
4667
|
/**
|
|
3994
4668
|
* Stock Product
|
|
3995
4669
|
* @type {boolean}
|
|
3996
|
-
* @memberof
|
|
4670
|
+
* @memberof ProductSummaryDTO
|
|
3997
4671
|
*/
|
|
3998
4672
|
'stockProduct'?: boolean;
|
|
3999
4673
|
/**
|
|
4000
4674
|
* Price
|
|
4001
4675
|
* @type {number}
|
|
4002
|
-
* @memberof
|
|
4676
|
+
* @memberof ProductSummaryDTO
|
|
4003
4677
|
*/
|
|
4004
4678
|
'price'?: number | null;
|
|
4005
4679
|
/**
|
|
4006
4680
|
* Carton Size
|
|
4007
4681
|
* @type {number}
|
|
4008
|
-
* @memberof
|
|
4682
|
+
* @memberof ProductSummaryDTO
|
|
4009
4683
|
*/
|
|
4010
4684
|
'cartonSize'?: number | null;
|
|
4685
|
+
/**
|
|
4686
|
+
* RRP Price
|
|
4687
|
+
* @type {number}
|
|
4688
|
+
* @memberof ProductSummaryDTO
|
|
4689
|
+
*/
|
|
4690
|
+
'rrp'?: number | null;
|
|
4011
4691
|
}
|
|
4012
4692
|
/**
|
|
4013
4693
|
* PromoCodesEntity
|
|
@@ -4146,37 +4826,37 @@ export interface PromoItemsEntity {
|
|
|
4146
4826
|
/**
|
|
4147
4827
|
* Provisioning Group
|
|
4148
4828
|
* @export
|
|
4149
|
-
* @interface
|
|
4829
|
+
* @interface ProvisioningModel
|
|
4150
4830
|
*/
|
|
4151
|
-
export interface
|
|
4831
|
+
export interface ProvisioningModel {
|
|
4152
4832
|
/**
|
|
4153
4833
|
* Provisioning Group Name
|
|
4154
4834
|
* @type {string}
|
|
4155
|
-
* @memberof
|
|
4835
|
+
* @memberof ProvisioningModel
|
|
4156
4836
|
*/
|
|
4157
4837
|
'groupName'?: string;
|
|
4158
4838
|
/**
|
|
4159
4839
|
* Provisioning URL (Static Provisioning Server)
|
|
4160
4840
|
* @type {string}
|
|
4161
|
-
* @memberof
|
|
4841
|
+
* @memberof ProvisioningModel
|
|
4162
4842
|
*/
|
|
4163
4843
|
'provisioningUrl'?: string;
|
|
4164
4844
|
/**
|
|
4165
4845
|
* Additional Authentication Secret
|
|
4166
4846
|
* @type {string}
|
|
4167
|
-
* @memberof
|
|
4847
|
+
* @memberof ProvisioningModel
|
|
4168
4848
|
*/
|
|
4169
4849
|
'auth'?: string;
|
|
4170
4850
|
/**
|
|
4171
4851
|
* Provisioning Group ID
|
|
4172
4852
|
* @type {number}
|
|
4173
|
-
* @memberof
|
|
4853
|
+
* @memberof ProvisioningModel
|
|
4174
4854
|
*/
|
|
4175
4855
|
'id'?: number;
|
|
4176
4856
|
/**
|
|
4177
4857
|
* Owner ID
|
|
4178
4858
|
* @type {number}
|
|
4179
|
-
* @memberof
|
|
4859
|
+
* @memberof ProvisioningModel
|
|
4180
4860
|
*/
|
|
4181
4861
|
'customerId'?: number;
|
|
4182
4862
|
}
|
|
@@ -4530,7 +5210,7 @@ export interface ShipmentEntity {
|
|
|
4530
5210
|
* @type {string}
|
|
4531
5211
|
* @memberof ShipmentEntity
|
|
4532
5212
|
*/
|
|
4533
|
-
'
|
|
5213
|
+
'dateShipped'?: string;
|
|
4534
5214
|
/**
|
|
4535
5215
|
* requestDate
|
|
4536
5216
|
* @type {string}
|
|
@@ -4581,6 +5261,149 @@ export interface ShipmentItemEntity {
|
|
|
4581
5261
|
*/
|
|
4582
5262
|
'itemId'?: string;
|
|
4583
5263
|
}
|
|
5264
|
+
/**
|
|
5265
|
+
*
|
|
5266
|
+
* @export
|
|
5267
|
+
* @interface ShippingConsignmentModel
|
|
5268
|
+
*/
|
|
5269
|
+
export interface ShippingConsignmentModel {
|
|
5270
|
+
/**
|
|
5271
|
+
*
|
|
5272
|
+
* @type {ShippingServiceModel}
|
|
5273
|
+
* @memberof ShippingConsignmentModel
|
|
5274
|
+
*/
|
|
5275
|
+
'service'?: ShippingServiceModel;
|
|
5276
|
+
/**
|
|
5277
|
+
* ID/Number
|
|
5278
|
+
* @type {string}
|
|
5279
|
+
* @memberof ShippingConsignmentModel
|
|
5280
|
+
*/
|
|
5281
|
+
'id'?: string;
|
|
5282
|
+
/**
|
|
5283
|
+
* Tracking Number
|
|
5284
|
+
* @type {string}
|
|
5285
|
+
* @memberof ShippingConsignmentModel
|
|
5286
|
+
*/
|
|
5287
|
+
'trackingNumber'?: string;
|
|
5288
|
+
/**
|
|
5289
|
+
* Parcels
|
|
5290
|
+
* @type {Array<string>}
|
|
5291
|
+
* @memberof ShippingConsignmentModel
|
|
5292
|
+
*/
|
|
5293
|
+
'parcelIds'?: Array<string>;
|
|
5294
|
+
}
|
|
5295
|
+
/**
|
|
5296
|
+
* Shipping Information
|
|
5297
|
+
* @export
|
|
5298
|
+
* @interface ShippingInformationDTO
|
|
5299
|
+
*/
|
|
5300
|
+
export interface ShippingInformationDTO {
|
|
5301
|
+
/**
|
|
5302
|
+
* Items
|
|
5303
|
+
* @type {Array<BasicItemDTO>}
|
|
5304
|
+
* @memberof ShippingInformationDTO
|
|
5305
|
+
*/
|
|
5306
|
+
'items'?: Array<BasicItemDTO>;
|
|
5307
|
+
/**
|
|
5308
|
+
* Destination Post Code
|
|
5309
|
+
* @type {string}
|
|
5310
|
+
* @memberof ShippingInformationDTO
|
|
5311
|
+
*/
|
|
5312
|
+
'postalCode'?: string;
|
|
5313
|
+
/**
|
|
5314
|
+
* Destination ISO
|
|
5315
|
+
* @type {string}
|
|
5316
|
+
* @memberof ShippingInformationDTO
|
|
5317
|
+
*/
|
|
5318
|
+
'iso'?: string;
|
|
5319
|
+
}
|
|
5320
|
+
/**
|
|
5321
|
+
* Shipping Service
|
|
5322
|
+
* @export
|
|
5323
|
+
* @interface ShippingServiceDTO
|
|
5324
|
+
*/
|
|
5325
|
+
export interface ShippingServiceDTO {
|
|
5326
|
+
/**
|
|
5327
|
+
* Courier
|
|
5328
|
+
* @type {string}
|
|
5329
|
+
* @memberof ShippingServiceDTO
|
|
5330
|
+
*/
|
|
5331
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5332
|
+
/**
|
|
5333
|
+
* Service Name
|
|
5334
|
+
* @type {string}
|
|
5335
|
+
* @memberof ShippingServiceDTO
|
|
5336
|
+
*/
|
|
5337
|
+
'serviceName'?: string;
|
|
5338
|
+
}
|
|
5339
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5340
|
+
readonly Dpd: "DPD";
|
|
5341
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5342
|
+
readonly Pops: "POPS";
|
|
5343
|
+
};
|
|
5344
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5345
|
+
/**
|
|
5346
|
+
* Shipping Service
|
|
5347
|
+
* @export
|
|
5348
|
+
* @interface ShippingServiceModel
|
|
5349
|
+
*/
|
|
5350
|
+
export interface ShippingServiceModel {
|
|
5351
|
+
/**
|
|
5352
|
+
* Courier
|
|
5353
|
+
* @type {string}
|
|
5354
|
+
* @memberof ShippingServiceModel
|
|
5355
|
+
*/
|
|
5356
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5357
|
+
/**
|
|
5358
|
+
* Code
|
|
5359
|
+
* @type {string}
|
|
5360
|
+
* @memberof ShippingServiceModel
|
|
5361
|
+
*/
|
|
5362
|
+
'code'?: string;
|
|
5363
|
+
/**
|
|
5364
|
+
* Name
|
|
5365
|
+
* @type {string}
|
|
5366
|
+
* @memberof ShippingServiceModel
|
|
5367
|
+
*/
|
|
5368
|
+
'name'?: string;
|
|
5369
|
+
/**
|
|
5370
|
+
* Description
|
|
5371
|
+
* @type {string}
|
|
5372
|
+
* @memberof ShippingServiceModel
|
|
5373
|
+
*/
|
|
5374
|
+
'description'?: string;
|
|
5375
|
+
/**
|
|
5376
|
+
* Label
|
|
5377
|
+
* @type {string}
|
|
5378
|
+
* @memberof ShippingServiceModel
|
|
5379
|
+
*/
|
|
5380
|
+
'label'?: string | null;
|
|
5381
|
+
/**
|
|
5382
|
+
* Price
|
|
5383
|
+
* @type {number}
|
|
5384
|
+
* @memberof ShippingServiceModel
|
|
5385
|
+
*/
|
|
5386
|
+
'price'?: number | null;
|
|
5387
|
+
}
|
|
5388
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5389
|
+
readonly Dpd: "DPD";
|
|
5390
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5391
|
+
readonly Pops: "POPS";
|
|
5392
|
+
};
|
|
5393
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5394
|
+
/**
|
|
5395
|
+
*
|
|
5396
|
+
* @export
|
|
5397
|
+
* @interface ShippingServicesModel
|
|
5398
|
+
*/
|
|
5399
|
+
export interface ShippingServicesModel {
|
|
5400
|
+
/**
|
|
5401
|
+
* Services
|
|
5402
|
+
* @type {Array<ShippingServiceModel>}
|
|
5403
|
+
* @memberof ShippingServicesModel
|
|
5404
|
+
*/
|
|
5405
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5406
|
+
}
|
|
4584
5407
|
/**
|
|
4585
5408
|
* Change Response
|
|
4586
5409
|
* @export
|
|
@@ -7400,6 +8223,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7400
8223
|
*/
|
|
7401
8224
|
'secretAccessKey'?: string;
|
|
7402
8225
|
}
|
|
8226
|
+
/**
|
|
8227
|
+
* SBC Data
|
|
8228
|
+
* @export
|
|
8229
|
+
* @interface TcxSbcDTO
|
|
8230
|
+
*/
|
|
8231
|
+
export interface TcxSbcDTO {
|
|
8232
|
+
/**
|
|
8233
|
+
* LAN IP Address
|
|
8234
|
+
* @type {string}
|
|
8235
|
+
* @memberof TcxSbcDTO
|
|
8236
|
+
*/
|
|
8237
|
+
'ipAddress'?: string;
|
|
8238
|
+
/**
|
|
8239
|
+
* LAN Default Gateway
|
|
8240
|
+
* @type {string}
|
|
8241
|
+
* @memberof TcxSbcDTO
|
|
8242
|
+
*/
|
|
8243
|
+
'defaultGateway'?: string;
|
|
8244
|
+
/**
|
|
8245
|
+
* LAN Subnet Mask
|
|
8246
|
+
* @type {string}
|
|
8247
|
+
* @memberof TcxSbcDTO
|
|
8248
|
+
*/
|
|
8249
|
+
'netmask'?: string;
|
|
8250
|
+
/**
|
|
8251
|
+
* DNS
|
|
8252
|
+
* @type {string}
|
|
8253
|
+
* @memberof TcxSbcDTO
|
|
8254
|
+
*/
|
|
8255
|
+
'dns'?: string;
|
|
8256
|
+
/**
|
|
8257
|
+
* 3CX URL
|
|
8258
|
+
* @type {string}
|
|
8259
|
+
* @memberof TcxSbcDTO
|
|
8260
|
+
*/
|
|
8261
|
+
'tcxUrl'?: string;
|
|
8262
|
+
/**
|
|
8263
|
+
* 3CX SBC Key
|
|
8264
|
+
* @type {string}
|
|
8265
|
+
* @memberof TcxSbcDTO
|
|
8266
|
+
*/
|
|
8267
|
+
'tcxKey'?: string;
|
|
8268
|
+
}
|
|
7403
8269
|
/**
|
|
7404
8270
|
* 3CX Wizard SBC
|
|
7405
8271
|
* @export
|
|
@@ -7504,7 +8370,7 @@ export interface TcxSbcEntity {
|
|
|
7504
8370
|
'technicalContact'?: string;
|
|
7505
8371
|
}
|
|
7506
8372
|
/**
|
|
7507
|
-
* 3CX SBC
|
|
8373
|
+
* 3CX Wizard SBC
|
|
7508
8374
|
* @export
|
|
7509
8375
|
* @interface TcxSbcModel
|
|
7510
8376
|
*/
|
|
@@ -8582,6 +9448,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8582
9448
|
* @throws {RequiredError}
|
|
8583
9449
|
*/
|
|
8584
9450
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9451
|
+
/**
|
|
9452
|
+
* Get Account Detailed Summary
|
|
9453
|
+
* @summary Get Account Detailed Summary
|
|
9454
|
+
* @param {number} id Customer ID
|
|
9455
|
+
* @param {*} [options] Override http request option.
|
|
9456
|
+
* @throws {RequiredError}
|
|
9457
|
+
*/
|
|
9458
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8585
9459
|
/**
|
|
8586
9460
|
* Get Accounts
|
|
8587
9461
|
* @summary Get Accounts
|
|
@@ -8647,6 +9521,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8647
9521
|
* @throws {RequiredError}
|
|
8648
9522
|
*/
|
|
8649
9523
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9524
|
+
/**
|
|
9525
|
+
* Get Admin Account
|
|
9526
|
+
* @summary Get Admin Account
|
|
9527
|
+
* @param {*} [options] Override http request option.
|
|
9528
|
+
* @throws {RequiredError}
|
|
9529
|
+
*/
|
|
9530
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8650
9531
|
/**
|
|
8651
9532
|
* Create client credentials
|
|
8652
9533
|
* @summary Create client credentials
|
|
@@ -8727,6 +9608,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8727
9608
|
* @throws {RequiredError}
|
|
8728
9609
|
*/
|
|
8729
9610
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9611
|
+
/**
|
|
9612
|
+
* Get Account Detailed Summary
|
|
9613
|
+
* @summary Get Account Detailed Summary
|
|
9614
|
+
* @param {number} id Customer ID
|
|
9615
|
+
* @param {*} [options] Override http request option.
|
|
9616
|
+
* @throws {RequiredError}
|
|
9617
|
+
*/
|
|
9618
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8730
9619
|
/**
|
|
8731
9620
|
* Get Accounts
|
|
8732
9621
|
* @summary Get Accounts
|
|
@@ -8792,6 +9681,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8792
9681
|
* @throws {RequiredError}
|
|
8793
9682
|
*/
|
|
8794
9683
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9684
|
+
/**
|
|
9685
|
+
* Get Admin Account
|
|
9686
|
+
* @summary Get Admin Account
|
|
9687
|
+
* @param {*} [options] Override http request option.
|
|
9688
|
+
* @throws {RequiredError}
|
|
9689
|
+
*/
|
|
9690
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8795
9691
|
/**
|
|
8796
9692
|
* Create client credentials
|
|
8797
9693
|
* @summary Create client credentials
|
|
@@ -8872,6 +9768,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8872
9768
|
* @throws {RequiredError}
|
|
8873
9769
|
*/
|
|
8874
9770
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9771
|
+
/**
|
|
9772
|
+
* Get Account Detailed Summary
|
|
9773
|
+
* @summary Get Account Detailed Summary
|
|
9774
|
+
* @param {number} id Customer ID
|
|
9775
|
+
* @param {*} [options] Override http request option.
|
|
9776
|
+
* @throws {RequiredError}
|
|
9777
|
+
*/
|
|
9778
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8875
9779
|
/**
|
|
8876
9780
|
* Get Accounts
|
|
8877
9781
|
* @summary Get Accounts
|
|
@@ -8937,6 +9841,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8937
9841
|
* @throws {RequiredError}
|
|
8938
9842
|
*/
|
|
8939
9843
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9844
|
+
/**
|
|
9845
|
+
* Get Admin Account
|
|
9846
|
+
* @summary Get Admin Account
|
|
9847
|
+
* @param {*} [options] Override http request option.
|
|
9848
|
+
* @throws {RequiredError}
|
|
9849
|
+
*/
|
|
9850
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8940
9851
|
/**
|
|
8941
9852
|
* Create client credentials
|
|
8942
9853
|
* @summary Create client credentials
|
|
@@ -9015,14 +9926,23 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9015
9926
|
*/
|
|
9016
9927
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9017
9928
|
/**
|
|
9018
|
-
* Get Account Contacts
|
|
9019
|
-
* @summary Get Account Contacts
|
|
9020
|
-
* @param {string} [email] Contact Email Address
|
|
9929
|
+
* Get Account Contacts
|
|
9930
|
+
* @summary Get Account Contacts
|
|
9931
|
+
* @param {string} [email] Contact Email Address
|
|
9932
|
+
* @param {*} [options] Override http request option.
|
|
9933
|
+
* @throws {RequiredError}
|
|
9934
|
+
* @memberof AccountsApi
|
|
9935
|
+
*/
|
|
9936
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9937
|
+
/**
|
|
9938
|
+
* Get Account Detailed Summary
|
|
9939
|
+
* @summary Get Account Detailed Summary
|
|
9940
|
+
* @param {number} id Customer ID
|
|
9021
9941
|
* @param {*} [options] Override http request option.
|
|
9022
9942
|
* @throws {RequiredError}
|
|
9023
9943
|
* @memberof AccountsApi
|
|
9024
9944
|
*/
|
|
9025
|
-
|
|
9945
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
9026
9946
|
/**
|
|
9027
9947
|
* Get Accounts
|
|
9028
9948
|
* @summary Get Accounts
|
|
@@ -9096,6 +10016,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9096
10016
|
* @memberof AccountsApi
|
|
9097
10017
|
*/
|
|
9098
10018
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
10019
|
+
/**
|
|
10020
|
+
* Get Admin Account
|
|
10021
|
+
* @summary Get Admin Account
|
|
10022
|
+
* @param {*} [options] Override http request option.
|
|
10023
|
+
* @throws {RequiredError}
|
|
10024
|
+
* @memberof AccountsApi
|
|
10025
|
+
*/
|
|
10026
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9099
10027
|
/**
|
|
9100
10028
|
* Create client credentials
|
|
9101
10029
|
* @summary Create client credentials
|
|
@@ -9209,14 +10137,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9209
10137
|
* @throws {RequiredError}
|
|
9210
10138
|
*/
|
|
9211
10139
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9212
|
-
/**
|
|
9213
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9214
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9215
|
-
* @param {string} password Desired 3CX web access password
|
|
9216
|
-
* @param {*} [options] Override http request option.
|
|
9217
|
-
* @throws {RequiredError}
|
|
9218
|
-
*/
|
|
9219
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9220
10140
|
/**
|
|
9221
10141
|
* Get Bulk 3CX Licence Details
|
|
9222
10142
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9239,14 +10159,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9239
10159
|
* @throws {RequiredError}
|
|
9240
10160
|
*/
|
|
9241
10161
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9242
|
-
/**
|
|
9243
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9244
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9245
|
-
* @param {string} password Desired 3CX web access password
|
|
9246
|
-
* @param {*} [options] Override http request option.
|
|
9247
|
-
* @throws {RequiredError}
|
|
9248
|
-
*/
|
|
9249
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9250
10162
|
/**
|
|
9251
10163
|
* Get Bulk 3CX Licence Details
|
|
9252
10164
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9269,14 +10181,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9269
10181
|
* @throws {RequiredError}
|
|
9270
10182
|
*/
|
|
9271
10183
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9272
|
-
/**
|
|
9273
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9274
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9275
|
-
* @param {string} password Desired 3CX web access password
|
|
9276
|
-
* @param {*} [options] Override http request option.
|
|
9277
|
-
* @throws {RequiredError}
|
|
9278
|
-
*/
|
|
9279
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9280
10184
|
/**
|
|
9281
10185
|
* Get Bulk 3CX Licence Details
|
|
9282
10186
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9302,15 +10206,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9302
10206
|
* @memberof Class3CXApi
|
|
9303
10207
|
*/
|
|
9304
10208
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9305
|
-
/**
|
|
9306
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9307
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9308
|
-
* @param {string} password Desired 3CX web access password
|
|
9309
|
-
* @param {*} [options] Override http request option.
|
|
9310
|
-
* @throws {RequiredError}
|
|
9311
|
-
* @memberof Class3CXApi
|
|
9312
|
-
*/
|
|
9313
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9314
10209
|
/**
|
|
9315
10210
|
* Get Bulk 3CX Licence Details
|
|
9316
10211
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11854,11 +12749,20 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11854
12749
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11855
12750
|
/**
|
|
11856
12751
|
* Delete Orders
|
|
12752
|
+
* @summary Delete Orders
|
|
12753
|
+
* @param {number} id Order ID
|
|
12754
|
+
* @param {*} [options] Override http request option.
|
|
12755
|
+
* @throws {RequiredError}
|
|
12756
|
+
*/
|
|
12757
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12758
|
+
/**
|
|
12759
|
+
* Get Editable Order
|
|
12760
|
+
* @summary Get Editable Order
|
|
11857
12761
|
* @param {number} id Order ID
|
|
11858
12762
|
* @param {*} [options] Override http request option.
|
|
11859
12763
|
* @throws {RequiredError}
|
|
11860
12764
|
*/
|
|
11861
|
-
|
|
12765
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11862
12766
|
/**
|
|
11863
12767
|
* Get Orders
|
|
11864
12768
|
* @summary Get Orders
|
|
@@ -11873,6 +12777,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11873
12777
|
* @throws {RequiredError}
|
|
11874
12778
|
*/
|
|
11875
12779
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12780
|
+
/**
|
|
12781
|
+
* Create An Order (Admin)
|
|
12782
|
+
* @summary Create An Order (Admin)
|
|
12783
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12784
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12785
|
+
* @param {*} [options] Override http request option.
|
|
12786
|
+
* @throws {RequiredError}
|
|
12787
|
+
*/
|
|
12788
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12789
|
+
/**
|
|
12790
|
+
* Create An Order
|
|
12791
|
+
* @summary Create An Order
|
|
12792
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12793
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12794
|
+
* @param {*} [options] Override http request option.
|
|
12795
|
+
* @throws {RequiredError}
|
|
12796
|
+
*/
|
|
12797
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12798
|
+
/**
|
|
12799
|
+
* Update An Order (Admin)
|
|
12800
|
+
* @summary Update An Order (Admin)
|
|
12801
|
+
* @param {number} id Order ID
|
|
12802
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12803
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12804
|
+
* @param {*} [options] Override http request option.
|
|
12805
|
+
* @throws {RequiredError}
|
|
12806
|
+
*/
|
|
12807
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12808
|
+
/**
|
|
12809
|
+
* Update An Order
|
|
12810
|
+
* @summary Update An Order
|
|
12811
|
+
* @param {number} id Order ID
|
|
12812
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12813
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12814
|
+
* @param {*} [options] Override http request option.
|
|
12815
|
+
* @throws {RequiredError}
|
|
12816
|
+
*/
|
|
12817
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11876
12818
|
};
|
|
11877
12819
|
/**
|
|
11878
12820
|
* OrdersApi - functional programming interface
|
|
@@ -11881,11 +12823,20 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11881
12823
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11882
12824
|
/**
|
|
11883
12825
|
* Delete Orders
|
|
12826
|
+
* @summary Delete Orders
|
|
12827
|
+
* @param {number} id Order ID
|
|
12828
|
+
* @param {*} [options] Override http request option.
|
|
12829
|
+
* @throws {RequiredError}
|
|
12830
|
+
*/
|
|
12831
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12832
|
+
/**
|
|
12833
|
+
* Get Editable Order
|
|
12834
|
+
* @summary Get Editable Order
|
|
11884
12835
|
* @param {number} id Order ID
|
|
11885
12836
|
* @param {*} [options] Override http request option.
|
|
11886
12837
|
* @throws {RequiredError}
|
|
11887
12838
|
*/
|
|
11888
|
-
|
|
12839
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
11889
12840
|
/**
|
|
11890
12841
|
* Get Orders
|
|
11891
12842
|
* @summary Get Orders
|
|
@@ -11900,6 +12851,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11900
12851
|
* @throws {RequiredError}
|
|
11901
12852
|
*/
|
|
11902
12853
|
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>>;
|
|
12854
|
+
/**
|
|
12855
|
+
* Create An Order (Admin)
|
|
12856
|
+
* @summary Create An Order (Admin)
|
|
12857
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12858
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12859
|
+
* @param {*} [options] Override http request option.
|
|
12860
|
+
* @throws {RequiredError}
|
|
12861
|
+
*/
|
|
12862
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12863
|
+
/**
|
|
12864
|
+
* Create An Order
|
|
12865
|
+
* @summary Create An Order
|
|
12866
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12867
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12868
|
+
* @param {*} [options] Override http request option.
|
|
12869
|
+
* @throws {RequiredError}
|
|
12870
|
+
*/
|
|
12871
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12872
|
+
/**
|
|
12873
|
+
* Update An Order (Admin)
|
|
12874
|
+
* @summary Update An Order (Admin)
|
|
12875
|
+
* @param {number} id Order ID
|
|
12876
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12877
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12878
|
+
* @param {*} [options] Override http request option.
|
|
12879
|
+
* @throws {RequiredError}
|
|
12880
|
+
*/
|
|
12881
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12882
|
+
/**
|
|
12883
|
+
* Update An Order
|
|
12884
|
+
* @summary Update An Order
|
|
12885
|
+
* @param {number} id Order ID
|
|
12886
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12887
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12888
|
+
* @param {*} [options] Override http request option.
|
|
12889
|
+
* @throws {RequiredError}
|
|
12890
|
+
*/
|
|
12891
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11903
12892
|
};
|
|
11904
12893
|
/**
|
|
11905
12894
|
* OrdersApi - factory interface
|
|
@@ -11908,11 +12897,20 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11908
12897
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11909
12898
|
/**
|
|
11910
12899
|
* Delete Orders
|
|
12900
|
+
* @summary Delete Orders
|
|
11911
12901
|
* @param {number} id Order ID
|
|
11912
12902
|
* @param {*} [options] Override http request option.
|
|
11913
12903
|
* @throws {RequiredError}
|
|
11914
12904
|
*/
|
|
11915
|
-
|
|
12905
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12906
|
+
/**
|
|
12907
|
+
* Get Editable Order
|
|
12908
|
+
* @summary Get Editable Order
|
|
12909
|
+
* @param {number} id Order ID
|
|
12910
|
+
* @param {*} [options] Override http request option.
|
|
12911
|
+
* @throws {RequiredError}
|
|
12912
|
+
*/
|
|
12913
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
11916
12914
|
/**
|
|
11917
12915
|
* Get Orders
|
|
11918
12916
|
* @summary Get Orders
|
|
@@ -11927,6 +12925,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11927
12925
|
* @throws {RequiredError}
|
|
11928
12926
|
*/
|
|
11929
12927
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12928
|
+
/**
|
|
12929
|
+
* Create An Order (Admin)
|
|
12930
|
+
* @summary Create An Order (Admin)
|
|
12931
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12932
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12933
|
+
* @param {*} [options] Override http request option.
|
|
12934
|
+
* @throws {RequiredError}
|
|
12935
|
+
*/
|
|
12936
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12937
|
+
/**
|
|
12938
|
+
* Create An Order
|
|
12939
|
+
* @summary Create An Order
|
|
12940
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12941
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12942
|
+
* @param {*} [options] Override http request option.
|
|
12943
|
+
* @throws {RequiredError}
|
|
12944
|
+
*/
|
|
12945
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12946
|
+
/**
|
|
12947
|
+
* Update An Order (Admin)
|
|
12948
|
+
* @summary Update An Order (Admin)
|
|
12949
|
+
* @param {number} id Order ID
|
|
12950
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12951
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12952
|
+
* @param {*} [options] Override http request option.
|
|
12953
|
+
* @throws {RequiredError}
|
|
12954
|
+
*/
|
|
12955
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12956
|
+
/**
|
|
12957
|
+
* Update An Order
|
|
12958
|
+
* @summary Update An Order
|
|
12959
|
+
* @param {number} id Order ID
|
|
12960
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12961
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12962
|
+
* @param {*} [options] Override http request option.
|
|
12963
|
+
* @throws {RequiredError}
|
|
12964
|
+
*/
|
|
12965
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11930
12966
|
};
|
|
11931
12967
|
/**
|
|
11932
12968
|
* OrdersApi - object-oriented interface
|
|
@@ -11937,12 +12973,22 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11937
12973
|
export declare class OrdersApi extends BaseAPI {
|
|
11938
12974
|
/**
|
|
11939
12975
|
* Delete Orders
|
|
12976
|
+
* @summary Delete Orders
|
|
12977
|
+
* @param {number} id Order ID
|
|
12978
|
+
* @param {*} [options] Override http request option.
|
|
12979
|
+
* @throws {RequiredError}
|
|
12980
|
+
* @memberof OrdersApi
|
|
12981
|
+
*/
|
|
12982
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12983
|
+
/**
|
|
12984
|
+
* Get Editable Order
|
|
12985
|
+
* @summary Get Editable Order
|
|
11940
12986
|
* @param {number} id Order ID
|
|
11941
12987
|
* @param {*} [options] Override http request option.
|
|
11942
12988
|
* @throws {RequiredError}
|
|
11943
12989
|
* @memberof OrdersApi
|
|
11944
12990
|
*/
|
|
11945
|
-
|
|
12991
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
11946
12992
|
/**
|
|
11947
12993
|
* Get Orders
|
|
11948
12994
|
* @summary Get Orders
|
|
@@ -11958,6 +13004,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11958
13004
|
* @memberof OrdersApi
|
|
11959
13005
|
*/
|
|
11960
13006
|
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, {}>>;
|
|
13007
|
+
/**
|
|
13008
|
+
* Create An Order (Admin)
|
|
13009
|
+
* @summary Create An Order (Admin)
|
|
13010
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13011
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13012
|
+
* @param {*} [options] Override http request option.
|
|
13013
|
+
* @throws {RequiredError}
|
|
13014
|
+
* @memberof OrdersApi
|
|
13015
|
+
*/
|
|
13016
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13017
|
+
/**
|
|
13018
|
+
* Create An Order
|
|
13019
|
+
* @summary Create An Order
|
|
13020
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13021
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13022
|
+
* @param {*} [options] Override http request option.
|
|
13023
|
+
* @throws {RequiredError}
|
|
13024
|
+
* @memberof OrdersApi
|
|
13025
|
+
*/
|
|
13026
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13027
|
+
/**
|
|
13028
|
+
* Update An Order (Admin)
|
|
13029
|
+
* @summary Update An Order (Admin)
|
|
13030
|
+
* @param {number} id Order ID
|
|
13031
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13032
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13033
|
+
* @param {*} [options] Override http request option.
|
|
13034
|
+
* @throws {RequiredError}
|
|
13035
|
+
* @memberof OrdersApi
|
|
13036
|
+
*/
|
|
13037
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13038
|
+
/**
|
|
13039
|
+
* Update An Order
|
|
13040
|
+
* @summary Update An Order
|
|
13041
|
+
* @param {number} id Order ID
|
|
13042
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13043
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13044
|
+
* @param {*} [options] Override http request option.
|
|
13045
|
+
* @throws {RequiredError}
|
|
13046
|
+
* @memberof OrdersApi
|
|
13047
|
+
*/
|
|
13048
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11961
13049
|
}
|
|
11962
13050
|
/**
|
|
11963
13051
|
* @export
|
|
@@ -12213,13 +13301,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12213
13301
|
* @throws {RequiredError}
|
|
12214
13302
|
*/
|
|
12215
13303
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12216
|
-
/**
|
|
12217
|
-
* Get Customer Price Lists
|
|
12218
|
-
* @summary Get Customer Price Lists
|
|
12219
|
-
* @param {*} [options] Override http request option.
|
|
12220
|
-
* @throws {RequiredError}
|
|
12221
|
-
*/
|
|
12222
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12223
13304
|
/**
|
|
12224
13305
|
* Get Current Stock & Pricing
|
|
12225
13306
|
* @summary Get Current Stock & Pricing
|
|
@@ -12232,13 +13313,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12232
13313
|
/**
|
|
12233
13314
|
* Get Products
|
|
12234
13315
|
* @summary Get Products
|
|
12235
|
-
* @param {number} [pageSize] Number Of Results
|
|
12236
|
-
* @param {number} [page] Page Number
|
|
12237
|
-
* @param {string} [search] Search
|
|
12238
13316
|
* @param {*} [options] Override http request option.
|
|
12239
13317
|
* @throws {RequiredError}
|
|
12240
13318
|
*/
|
|
12241
|
-
getGetProducts: (
|
|
13319
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12242
13320
|
/**
|
|
12243
13321
|
* Get Current Stock & Pricing
|
|
12244
13322
|
* @summary Get Current Stock & Pricing
|
|
@@ -12253,6 +13331,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12253
13331
|
* @throws {RequiredError}
|
|
12254
13332
|
*/
|
|
12255
13333
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13334
|
+
/**
|
|
13335
|
+
* Search Products
|
|
13336
|
+
* @summary Search Products
|
|
13337
|
+
* @param {number} [pageSize] Number Of Results
|
|
13338
|
+
* @param {number} [page] Page Number
|
|
13339
|
+
* @param {string} [search] Search
|
|
13340
|
+
* @param {*} [options] Override http request option.
|
|
13341
|
+
* @throws {RequiredError}
|
|
13342
|
+
*/
|
|
13343
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13344
|
+
/**
|
|
13345
|
+
* Get Product
|
|
13346
|
+
* @summary Get Product
|
|
13347
|
+
* @param {string} sku Product SKU
|
|
13348
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13349
|
+
* @param {*} [options] Override http request option.
|
|
13350
|
+
* @throws {RequiredError}
|
|
13351
|
+
*/
|
|
13352
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13353
|
+
/**
|
|
13354
|
+
* Get Product For Customer
|
|
13355
|
+
* @summary Get Product For Customer
|
|
13356
|
+
* @param {number} customerId Customer ID
|
|
13357
|
+
* @param {string} sku Product SKU
|
|
13358
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13359
|
+
* @param {*} [options] Override http request option.
|
|
13360
|
+
* @throws {RequiredError}
|
|
13361
|
+
*/
|
|
13362
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12256
13363
|
};
|
|
12257
13364
|
/**
|
|
12258
13365
|
* ProductsApi - functional programming interface
|
|
@@ -12266,13 +13373,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12266
13373
|
* @throws {RequiredError}
|
|
12267
13374
|
*/
|
|
12268
13375
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12269
|
-
/**
|
|
12270
|
-
* Get Customer Price Lists
|
|
12271
|
-
* @summary Get Customer Price Lists
|
|
12272
|
-
* @param {*} [options] Override http request option.
|
|
12273
|
-
* @throws {RequiredError}
|
|
12274
|
-
*/
|
|
12275
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12276
13376
|
/**
|
|
12277
13377
|
* Get Current Stock & Pricing
|
|
12278
13378
|
* @summary Get Current Stock & Pricing
|
|
@@ -12285,13 +13385,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12285
13385
|
/**
|
|
12286
13386
|
* Get Products
|
|
12287
13387
|
* @summary Get Products
|
|
12288
|
-
* @param {number} [pageSize] Number Of Results
|
|
12289
|
-
* @param {number} [page] Page Number
|
|
12290
|
-
* @param {string} [search] Search
|
|
12291
13388
|
* @param {*} [options] Override http request option.
|
|
12292
13389
|
* @throws {RequiredError}
|
|
12293
13390
|
*/
|
|
12294
|
-
getGetProducts(
|
|
13391
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12295
13392
|
/**
|
|
12296
13393
|
* Get Current Stock & Pricing
|
|
12297
13394
|
* @summary Get Current Stock & Pricing
|
|
@@ -12306,6 +13403,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12306
13403
|
* @throws {RequiredError}
|
|
12307
13404
|
*/
|
|
12308
13405
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13406
|
+
/**
|
|
13407
|
+
* Search Products
|
|
13408
|
+
* @summary Search Products
|
|
13409
|
+
* @param {number} [pageSize] Number Of Results
|
|
13410
|
+
* @param {number} [page] Page Number
|
|
13411
|
+
* @param {string} [search] Search
|
|
13412
|
+
* @param {*} [options] Override http request option.
|
|
13413
|
+
* @throws {RequiredError}
|
|
13414
|
+
*/
|
|
13415
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13416
|
+
/**
|
|
13417
|
+
* Get Product
|
|
13418
|
+
* @summary Get Product
|
|
13419
|
+
* @param {string} sku Product SKU
|
|
13420
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13421
|
+
* @param {*} [options] Override http request option.
|
|
13422
|
+
* @throws {RequiredError}
|
|
13423
|
+
*/
|
|
13424
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13425
|
+
/**
|
|
13426
|
+
* Get Product For Customer
|
|
13427
|
+
* @summary Get Product For Customer
|
|
13428
|
+
* @param {number} customerId Customer ID
|
|
13429
|
+
* @param {string} sku Product SKU
|
|
13430
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13431
|
+
* @param {*} [options] Override http request option.
|
|
13432
|
+
* @throws {RequiredError}
|
|
13433
|
+
*/
|
|
13434
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12309
13435
|
};
|
|
12310
13436
|
/**
|
|
12311
13437
|
* ProductsApi - factory interface
|
|
@@ -12319,13 +13445,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12319
13445
|
* @throws {RequiredError}
|
|
12320
13446
|
*/
|
|
12321
13447
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12322
|
-
/**
|
|
12323
|
-
* Get Customer Price Lists
|
|
12324
|
-
* @summary Get Customer Price Lists
|
|
12325
|
-
* @param {*} [options] Override http request option.
|
|
12326
|
-
* @throws {RequiredError}
|
|
12327
|
-
*/
|
|
12328
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12329
13448
|
/**
|
|
12330
13449
|
* Get Current Stock & Pricing
|
|
12331
13450
|
* @summary Get Current Stock & Pricing
|
|
@@ -12338,13 +13457,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12338
13457
|
/**
|
|
12339
13458
|
* Get Products
|
|
12340
13459
|
* @summary Get Products
|
|
12341
|
-
* @param {number} [pageSize] Number Of Results
|
|
12342
|
-
* @param {number} [page] Page Number
|
|
12343
|
-
* @param {string} [search] Search
|
|
12344
13460
|
* @param {*} [options] Override http request option.
|
|
12345
13461
|
* @throws {RequiredError}
|
|
12346
13462
|
*/
|
|
12347
|
-
getGetProducts(
|
|
13463
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12348
13464
|
/**
|
|
12349
13465
|
* Get Current Stock & Pricing
|
|
12350
13466
|
* @summary Get Current Stock & Pricing
|
|
@@ -12359,6 +13475,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12359
13475
|
* @throws {RequiredError}
|
|
12360
13476
|
*/
|
|
12361
13477
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13478
|
+
/**
|
|
13479
|
+
* Search Products
|
|
13480
|
+
* @summary Search Products
|
|
13481
|
+
* @param {number} [pageSize] Number Of Results
|
|
13482
|
+
* @param {number} [page] Page Number
|
|
13483
|
+
* @param {string} [search] Search
|
|
13484
|
+
* @param {*} [options] Override http request option.
|
|
13485
|
+
* @throws {RequiredError}
|
|
13486
|
+
*/
|
|
13487
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13488
|
+
/**
|
|
13489
|
+
* Get Product
|
|
13490
|
+
* @summary Get Product
|
|
13491
|
+
* @param {string} sku Product SKU
|
|
13492
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13493
|
+
* @param {*} [options] Override http request option.
|
|
13494
|
+
* @throws {RequiredError}
|
|
13495
|
+
*/
|
|
13496
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13497
|
+
/**
|
|
13498
|
+
* Get Product For Customer
|
|
13499
|
+
* @summary Get Product For Customer
|
|
13500
|
+
* @param {number} customerId Customer ID
|
|
13501
|
+
* @param {string} sku Product SKU
|
|
13502
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13503
|
+
* @param {*} [options] Override http request option.
|
|
13504
|
+
* @throws {RequiredError}
|
|
13505
|
+
*/
|
|
13506
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12362
13507
|
};
|
|
12363
13508
|
/**
|
|
12364
13509
|
* ProductsApi - object-oriented interface
|
|
@@ -12375,14 +13520,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12375
13520
|
* @memberof ProductsApi
|
|
12376
13521
|
*/
|
|
12377
13522
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12378
|
-
/**
|
|
12379
|
-
* Get Customer Price Lists
|
|
12380
|
-
* @summary Get Customer Price Lists
|
|
12381
|
-
* @param {*} [options] Override http request option.
|
|
12382
|
-
* @throws {RequiredError}
|
|
12383
|
-
* @memberof ProductsApi
|
|
12384
|
-
*/
|
|
12385
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12386
13523
|
/**
|
|
12387
13524
|
* Get Current Stock & Pricing
|
|
12388
13525
|
* @summary Get Current Stock & Pricing
|
|
@@ -12396,14 +13533,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12396
13533
|
/**
|
|
12397
13534
|
* Get Products
|
|
12398
13535
|
* @summary Get Products
|
|
12399
|
-
* @param {number} [pageSize] Number Of Results
|
|
12400
|
-
* @param {number} [page] Page Number
|
|
12401
|
-
* @param {string} [search] Search
|
|
12402
13536
|
* @param {*} [options] Override http request option.
|
|
12403
13537
|
* @throws {RequiredError}
|
|
12404
13538
|
* @memberof ProductsApi
|
|
12405
13539
|
*/
|
|
12406
|
-
getGetProducts(
|
|
13540
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12407
13541
|
/**
|
|
12408
13542
|
* Get Current Stock & Pricing
|
|
12409
13543
|
* @summary Get Current Stock & Pricing
|
|
@@ -12420,6 +13554,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12420
13554
|
* @memberof ProductsApi
|
|
12421
13555
|
*/
|
|
12422
13556
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13557
|
+
/**
|
|
13558
|
+
* Search Products
|
|
13559
|
+
* @summary Search Products
|
|
13560
|
+
* @param {number} [pageSize] Number Of Results
|
|
13561
|
+
* @param {number} [page] Page Number
|
|
13562
|
+
* @param {string} [search] Search
|
|
13563
|
+
* @param {*} [options] Override http request option.
|
|
13564
|
+
* @throws {RequiredError}
|
|
13565
|
+
* @memberof ProductsApi
|
|
13566
|
+
*/
|
|
13567
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13568
|
+
/**
|
|
13569
|
+
* Get Product
|
|
13570
|
+
* @summary Get Product
|
|
13571
|
+
* @param {string} sku Product SKU
|
|
13572
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13573
|
+
* @param {*} [options] Override http request option.
|
|
13574
|
+
* @throws {RequiredError}
|
|
13575
|
+
* @memberof ProductsApi
|
|
13576
|
+
*/
|
|
13577
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13578
|
+
/**
|
|
13579
|
+
* Get Product For Customer
|
|
13580
|
+
* @summary Get Product For Customer
|
|
13581
|
+
* @param {number} customerId Customer ID
|
|
13582
|
+
* @param {string} sku Product SKU
|
|
13583
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13584
|
+
* @param {*} [options] Override http request option.
|
|
13585
|
+
* @throws {RequiredError}
|
|
13586
|
+
* @memberof ProductsApi
|
|
13587
|
+
*/
|
|
13588
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12423
13589
|
}
|
|
12424
13590
|
/**
|
|
12425
13591
|
* @export
|
|
@@ -12540,7 +13706,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12540
13706
|
* @param {*} [options] Override http request option.
|
|
12541
13707
|
* @throws {RequiredError}
|
|
12542
13708
|
*/
|
|
12543
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13709
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12544
13710
|
/**
|
|
12545
13711
|
* Create a Fanvil provisioning group
|
|
12546
13712
|
* @summary Add group to DB and FDPS
|
|
@@ -12548,7 +13714,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12548
13714
|
* @param {*} [options] Override http request option.
|
|
12549
13715
|
* @throws {RequiredError}
|
|
12550
13716
|
*/
|
|
12551
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13717
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12552
13718
|
/**
|
|
12553
13719
|
* Add MAC address to DB and FDPS group
|
|
12554
13720
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12605,7 +13771,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12605
13771
|
* @param {*} [options] Override http request option.
|
|
12606
13772
|
* @throws {RequiredError}
|
|
12607
13773
|
*/
|
|
12608
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13774
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12609
13775
|
/**
|
|
12610
13776
|
* Create a Fanvil provisioning group
|
|
12611
13777
|
* @summary Add group to DB and FDPS
|
|
@@ -12613,7 +13779,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12613
13779
|
* @param {*} [options] Override http request option.
|
|
12614
13780
|
* @throws {RequiredError}
|
|
12615
13781
|
*/
|
|
12616
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13782
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12617
13783
|
/**
|
|
12618
13784
|
* Add MAC address to DB and FDPS group
|
|
12619
13785
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12677,7 +13843,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12677
13843
|
* @throws {RequiredError}
|
|
12678
13844
|
* @memberof ProvisioningApi
|
|
12679
13845
|
*/
|
|
12680
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13846
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12681
13847
|
/**
|
|
12682
13848
|
* Create a Fanvil provisioning group
|
|
12683
13849
|
* @summary Add group to DB and FDPS
|
|
@@ -12686,7 +13852,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12686
13852
|
* @throws {RequiredError}
|
|
12687
13853
|
* @memberof ProvisioningApi
|
|
12688
13854
|
*/
|
|
12689
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13855
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12690
13856
|
/**
|
|
12691
13857
|
* Add MAC address to DB and FDPS group
|
|
12692
13858
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13561,6 +14727,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13561
14727
|
*/
|
|
13562
14728
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13563
14729
|
}
|
|
14730
|
+
/**
|
|
14731
|
+
* ShippingApi - axios parameter creator
|
|
14732
|
+
* @export
|
|
14733
|
+
*/
|
|
14734
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14735
|
+
/**
|
|
14736
|
+
* Get Shipping Services
|
|
14737
|
+
* @summary Get Shipping Services
|
|
14738
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14739
|
+
* @param {*} [options] Override http request option.
|
|
14740
|
+
* @throws {RequiredError}
|
|
14741
|
+
*/
|
|
14742
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14743
|
+
};
|
|
14744
|
+
/**
|
|
14745
|
+
* ShippingApi - functional programming interface
|
|
14746
|
+
* @export
|
|
14747
|
+
*/
|
|
14748
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14749
|
+
/**
|
|
14750
|
+
* Get Shipping Services
|
|
14751
|
+
* @summary Get Shipping Services
|
|
14752
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14753
|
+
* @param {*} [options] Override http request option.
|
|
14754
|
+
* @throws {RequiredError}
|
|
14755
|
+
*/
|
|
14756
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14757
|
+
};
|
|
14758
|
+
/**
|
|
14759
|
+
* ShippingApi - factory interface
|
|
14760
|
+
* @export
|
|
14761
|
+
*/
|
|
14762
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14763
|
+
/**
|
|
14764
|
+
* Get Shipping Services
|
|
14765
|
+
* @summary Get Shipping Services
|
|
14766
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14767
|
+
* @param {*} [options] Override http request option.
|
|
14768
|
+
* @throws {RequiredError}
|
|
14769
|
+
*/
|
|
14770
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14771
|
+
};
|
|
14772
|
+
/**
|
|
14773
|
+
* ShippingApi - object-oriented interface
|
|
14774
|
+
* @export
|
|
14775
|
+
* @class ShippingApi
|
|
14776
|
+
* @extends {BaseAPI}
|
|
14777
|
+
*/
|
|
14778
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14779
|
+
/**
|
|
14780
|
+
* Get Shipping Services
|
|
14781
|
+
* @summary Get Shipping Services
|
|
14782
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14783
|
+
* @param {*} [options] Override http request option.
|
|
14784
|
+
* @throws {RequiredError}
|
|
14785
|
+
* @memberof ShippingApi
|
|
14786
|
+
*/
|
|
14787
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14788
|
+
}
|
|
13564
14789
|
/**
|
|
13565
14790
|
* StockManagementApi - axios parameter creator
|
|
13566
14791
|
* @export
|
|
@@ -13890,7 +15115,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13890
15115
|
* @param {*} [options] Override http request option.
|
|
13891
15116
|
* @throws {RequiredError}
|
|
13892
15117
|
*/
|
|
13893
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15118
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13894
15119
|
/**
|
|
13895
15120
|
* Get Stock Order Supplier Invoice
|
|
13896
15121
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14105,7 +15330,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14105
15330
|
* @param {*} [options] Override http request option.
|
|
14106
15331
|
* @throws {RequiredError}
|
|
14107
15332
|
*/
|
|
14108
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15333
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14109
15334
|
/**
|
|
14110
15335
|
* Get Stock Order Supplier Invoice
|
|
14111
15336
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14335,7 +15560,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14335
15560
|
* @throws {RequiredError}
|
|
14336
15561
|
* @memberof StockManagementApi
|
|
14337
15562
|
*/
|
|
14338
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15563
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14339
15564
|
/**
|
|
14340
15565
|
* Get Stock Order Supplier Invoice
|
|
14341
15566
|
* @summary Get Stock Order Supplier Invoice
|