yellowgrid-api-ts 3.1.7 → 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 +1874 -251
- 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 +1355 -146
- package/dist/api.js +1135 -197
- 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/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/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
|
|
@@ -1346,6 +1770,116 @@ export interface CustomerInformationModel {
|
|
|
1346
1770
|
*/
|
|
1347
1771
|
'contactLastName'?: string;
|
|
1348
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
|
+
}
|
|
1349
1883
|
/**
|
|
1350
1884
|
* Customer Price List
|
|
1351
1885
|
* @export
|
|
@@ -1852,19 +2386,6 @@ export interface GenericFileModel {
|
|
|
1852
2386
|
*/
|
|
1853
2387
|
'type'?: string;
|
|
1854
2388
|
}
|
|
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
2389
|
/**
|
|
1869
2390
|
*
|
|
1870
2391
|
* @export
|
|
@@ -2459,36 +2980,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2459
2980
|
* @interface ItemDTO
|
|
2460
2981
|
*/
|
|
2461
2982
|
export interface ItemDTO {
|
|
2983
|
+
/**
|
|
2984
|
+
* SKU
|
|
2985
|
+
* @type {string}
|
|
2986
|
+
* @memberof ItemDTO
|
|
2987
|
+
*/
|
|
2988
|
+
'sku'?: string;
|
|
2989
|
+
/**
|
|
2990
|
+
* Quantity
|
|
2991
|
+
* @type {number}
|
|
2992
|
+
* @memberof ItemDTO
|
|
2993
|
+
*/
|
|
2994
|
+
'quantity'?: number;
|
|
2462
2995
|
/**
|
|
2463
2996
|
* ID
|
|
2464
2997
|
* @type {number}
|
|
2465
2998
|
* @memberof ItemDTO
|
|
2466
2999
|
*/
|
|
2467
|
-
'id'?: number;
|
|
3000
|
+
'id'?: number | null;
|
|
2468
3001
|
/**
|
|
2469
3002
|
* Order ID
|
|
2470
3003
|
* @type {number}
|
|
2471
3004
|
* @memberof ItemDTO
|
|
2472
3005
|
*/
|
|
2473
|
-
'orderId'?: number;
|
|
3006
|
+
'orderId'?: number | null;
|
|
2474
3007
|
/**
|
|
2475
3008
|
* Title
|
|
2476
3009
|
* @type {string}
|
|
2477
3010
|
* @memberof ItemDTO
|
|
2478
3011
|
*/
|
|
2479
3012
|
'title'?: string;
|
|
2480
|
-
/**
|
|
2481
|
-
* SKU
|
|
2482
|
-
* @type {string}
|
|
2483
|
-
* @memberof ItemDTO
|
|
2484
|
-
*/
|
|
2485
|
-
'sku'?: string;
|
|
2486
|
-
/**
|
|
2487
|
-
* Quantity
|
|
2488
|
-
* @type {number}
|
|
2489
|
-
* @memberof ItemDTO
|
|
2490
|
-
*/
|
|
2491
|
-
'quantity'?: number;
|
|
2492
3013
|
/**
|
|
2493
3014
|
* Price
|
|
2494
3015
|
* @type {number}
|
|
@@ -2513,6 +3034,12 @@ export interface ItemDTO {
|
|
|
2513
3034
|
* @memberof ItemDTO
|
|
2514
3035
|
*/
|
|
2515
3036
|
'processDate'?: string;
|
|
3037
|
+
/**
|
|
3038
|
+
* 3CX Hosting
|
|
3039
|
+
* @type {boolean}
|
|
3040
|
+
* @memberof ItemDTO
|
|
3041
|
+
*/
|
|
3042
|
+
'hosting'?: boolean | null;
|
|
2516
3043
|
/**
|
|
2517
3044
|
* Promo Item
|
|
2518
3045
|
* @type {boolean}
|
|
@@ -2524,7 +3051,25 @@ export interface ItemDTO {
|
|
|
2524
3051
|
* @type {number}
|
|
2525
3052
|
* @memberof ItemDTO
|
|
2526
3053
|
*/
|
|
2527
|
-
'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;
|
|
2528
3073
|
}
|
|
2529
3074
|
/**
|
|
2530
3075
|
* ItemsEntity
|
|
@@ -2658,6 +3203,31 @@ export interface ItemEntity {
|
|
|
2658
3203
|
* @memberof ItemEntity
|
|
2659
3204
|
*/
|
|
2660
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;
|
|
2661
3231
|
}
|
|
2662
3232
|
/**
|
|
2663
3233
|
* MFA Required
|
|
@@ -3311,13 +3881,19 @@ export interface OrderSummaryDTO {
|
|
|
3311
3881
|
* @type {string}
|
|
3312
3882
|
* @memberof OrderSummaryDTO
|
|
3313
3883
|
*/
|
|
3314
|
-
'reference'?: string;
|
|
3884
|
+
'reference'?: string | null;
|
|
3315
3885
|
/**
|
|
3316
3886
|
* Invoice Number
|
|
3317
3887
|
* @type {string}
|
|
3318
3888
|
* @memberof OrderSummaryDTO
|
|
3319
3889
|
*/
|
|
3320
3890
|
'invoiceNumber'?: string;
|
|
3891
|
+
/**
|
|
3892
|
+
* Invoice ID
|
|
3893
|
+
* @type {string}
|
|
3894
|
+
* @memberof OrderSummaryDTO
|
|
3895
|
+
*/
|
|
3896
|
+
'invoiceId'?: string | null;
|
|
3321
3897
|
/**
|
|
3322
3898
|
* Date Time
|
|
3323
3899
|
* @type {string}
|
|
@@ -3372,6 +3948,24 @@ export interface OrderSummaryDTO {
|
|
|
3372
3948
|
* @memberof OrderSummaryDTO
|
|
3373
3949
|
*/
|
|
3374
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;
|
|
3375
3969
|
}
|
|
3376
3970
|
/**
|
|
3377
3971
|
* Order Totals
|
|
@@ -3421,6 +4015,12 @@ export interface OrderTotalModel {
|
|
|
3421
4015
|
* @memberof OrderTotalModel
|
|
3422
4016
|
*/
|
|
3423
4017
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4018
|
+
/**
|
|
4019
|
+
* Delivery
|
|
4020
|
+
* @type {number}
|
|
4021
|
+
* @memberof OrderTotalModel
|
|
4022
|
+
*/
|
|
4023
|
+
'delivery'?: number | null;
|
|
3424
4024
|
}
|
|
3425
4025
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3426
4026
|
readonly Eur: "EUR";
|
|
@@ -3799,6 +4399,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3799
4399
|
*/
|
|
3800
4400
|
'scopes'?: Array<string>;
|
|
3801
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
|
+
}
|
|
3802
4427
|
/**
|
|
3803
4428
|
* Price & Stock List
|
|
3804
4429
|
* @export
|
|
@@ -3887,10 +4512,10 @@ export interface PrizesEntity {
|
|
|
3887
4512
|
export interface ProductSearchResultsModel {
|
|
3888
4513
|
/**
|
|
3889
4514
|
* Results
|
|
3890
|
-
* @type {Array<
|
|
4515
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3891
4516
|
* @memberof ProductSearchResultsModel
|
|
3892
4517
|
*/
|
|
3893
|
-
'results'?: Array<
|
|
4518
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3894
4519
|
}
|
|
3895
4520
|
/**
|
|
3896
4521
|
* Product Serial Info
|
|
@@ -3926,45 +4551,51 @@ export interface ProductSerialInfoModel {
|
|
|
3926
4551
|
/**
|
|
3927
4552
|
* Product Summary
|
|
3928
4553
|
* @export
|
|
3929
|
-
* @interface
|
|
4554
|
+
* @interface ProductSummaryDTO
|
|
3930
4555
|
*/
|
|
3931
|
-
export interface
|
|
4556
|
+
export interface ProductSummaryDTO {
|
|
3932
4557
|
/**
|
|
3933
4558
|
* SKU
|
|
3934
4559
|
* @type {string}
|
|
3935
|
-
* @memberof
|
|
4560
|
+
* @memberof ProductSummaryDTO
|
|
3936
4561
|
*/
|
|
3937
4562
|
'sku'?: string;
|
|
3938
4563
|
/**
|
|
3939
4564
|
* Title
|
|
3940
4565
|
* @type {string}
|
|
3941
|
-
* @memberof
|
|
4566
|
+
* @memberof ProductSummaryDTO
|
|
3942
4567
|
*/
|
|
3943
4568
|
'title'?: string;
|
|
3944
4569
|
/**
|
|
3945
4570
|
* Stock Quantity
|
|
3946
4571
|
* @type {number}
|
|
3947
|
-
* @memberof
|
|
4572
|
+
* @memberof ProductSummaryDTO
|
|
3948
4573
|
*/
|
|
3949
4574
|
'quantity'?: number | null;
|
|
3950
4575
|
/**
|
|
3951
4576
|
* Stock Product
|
|
3952
4577
|
* @type {boolean}
|
|
3953
|
-
* @memberof
|
|
4578
|
+
* @memberof ProductSummaryDTO
|
|
3954
4579
|
*/
|
|
3955
4580
|
'stockProduct'?: boolean;
|
|
3956
4581
|
/**
|
|
3957
4582
|
* Price
|
|
3958
4583
|
* @type {number}
|
|
3959
|
-
* @memberof
|
|
4584
|
+
* @memberof ProductSummaryDTO
|
|
3960
4585
|
*/
|
|
3961
4586
|
'price'?: number | null;
|
|
3962
4587
|
/**
|
|
3963
4588
|
* Carton Size
|
|
3964
4589
|
* @type {number}
|
|
3965
|
-
* @memberof
|
|
4590
|
+
* @memberof ProductSummaryDTO
|
|
3966
4591
|
*/
|
|
3967
4592
|
'cartonSize'?: number | null;
|
|
4593
|
+
/**
|
|
4594
|
+
* RRP Price
|
|
4595
|
+
* @type {number}
|
|
4596
|
+
* @memberof ProductSummaryDTO
|
|
4597
|
+
*/
|
|
4598
|
+
'rrp'?: number | null;
|
|
3968
4599
|
}
|
|
3969
4600
|
/**
|
|
3970
4601
|
* PromoCodesEntity
|
|
@@ -4103,37 +4734,37 @@ export interface PromoItemsEntity {
|
|
|
4103
4734
|
/**
|
|
4104
4735
|
* Provisioning Group
|
|
4105
4736
|
* @export
|
|
4106
|
-
* @interface
|
|
4737
|
+
* @interface ProvisioningModel
|
|
4107
4738
|
*/
|
|
4108
|
-
export interface
|
|
4739
|
+
export interface ProvisioningModel {
|
|
4109
4740
|
/**
|
|
4110
4741
|
* Provisioning Group Name
|
|
4111
4742
|
* @type {string}
|
|
4112
|
-
* @memberof
|
|
4743
|
+
* @memberof ProvisioningModel
|
|
4113
4744
|
*/
|
|
4114
4745
|
'groupName'?: string;
|
|
4115
4746
|
/**
|
|
4116
4747
|
* Provisioning URL (Static Provisioning Server)
|
|
4117
4748
|
* @type {string}
|
|
4118
|
-
* @memberof
|
|
4749
|
+
* @memberof ProvisioningModel
|
|
4119
4750
|
*/
|
|
4120
4751
|
'provisioningUrl'?: string;
|
|
4121
4752
|
/**
|
|
4122
4753
|
* Additional Authentication Secret
|
|
4123
4754
|
* @type {string}
|
|
4124
|
-
* @memberof
|
|
4755
|
+
* @memberof ProvisioningModel
|
|
4125
4756
|
*/
|
|
4126
4757
|
'auth'?: string;
|
|
4127
4758
|
/**
|
|
4128
4759
|
* Provisioning Group ID
|
|
4129
4760
|
* @type {number}
|
|
4130
|
-
* @memberof
|
|
4761
|
+
* @memberof ProvisioningModel
|
|
4131
4762
|
*/
|
|
4132
4763
|
'id'?: number;
|
|
4133
4764
|
/**
|
|
4134
4765
|
* Owner ID
|
|
4135
4766
|
* @type {number}
|
|
4136
|
-
* @memberof
|
|
4767
|
+
* @memberof ProvisioningModel
|
|
4137
4768
|
*/
|
|
4138
4769
|
'customerId'?: number;
|
|
4139
4770
|
}
|
|
@@ -4487,7 +5118,7 @@ export interface ShipmentEntity {
|
|
|
4487
5118
|
* @type {string}
|
|
4488
5119
|
* @memberof ShipmentEntity
|
|
4489
5120
|
*/
|
|
4490
|
-
'
|
|
5121
|
+
'dateShipped'?: string;
|
|
4491
5122
|
/**
|
|
4492
5123
|
* requestDate
|
|
4493
5124
|
* @type {string}
|
|
@@ -4538,6 +5169,149 @@ export interface ShipmentItemEntity {
|
|
|
4538
5169
|
*/
|
|
4539
5170
|
'itemId'?: string;
|
|
4540
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
|
+
}
|
|
4541
5315
|
/**
|
|
4542
5316
|
* Change Response
|
|
4543
5317
|
* @export
|
|
@@ -7357,6 +8131,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7357
8131
|
*/
|
|
7358
8132
|
'secretAccessKey'?: string;
|
|
7359
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
|
+
}
|
|
7360
8177
|
/**
|
|
7361
8178
|
* 3CX Wizard SBC
|
|
7362
8179
|
* @export
|
|
@@ -7461,7 +8278,7 @@ export interface TcxSbcEntity {
|
|
|
7461
8278
|
'technicalContact'?: string;
|
|
7462
8279
|
}
|
|
7463
8280
|
/**
|
|
7464
|
-
* 3CX SBC
|
|
8281
|
+
* 3CX Wizard SBC
|
|
7465
8282
|
* @export
|
|
7466
8283
|
* @interface TcxSbcModel
|
|
7467
8284
|
*/
|
|
@@ -8539,6 +9356,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8539
9356
|
* @throws {RequiredError}
|
|
8540
9357
|
*/
|
|
8541
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>;
|
|
8542
9367
|
/**
|
|
8543
9368
|
* Get Accounts
|
|
8544
9369
|
* @summary Get Accounts
|
|
@@ -8604,6 +9429,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8604
9429
|
* @throws {RequiredError}
|
|
8605
9430
|
*/
|
|
8606
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>;
|
|
8607
9439
|
/**
|
|
8608
9440
|
* Create client credentials
|
|
8609
9441
|
* @summary Create client credentials
|
|
@@ -8684,6 +9516,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8684
9516
|
* @throws {RequiredError}
|
|
8685
9517
|
*/
|
|
8686
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>>;
|
|
8687
9527
|
/**
|
|
8688
9528
|
* Get Accounts
|
|
8689
9529
|
* @summary Get Accounts
|
|
@@ -8749,6 +9589,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8749
9589
|
* @throws {RequiredError}
|
|
8750
9590
|
*/
|
|
8751
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>>;
|
|
8752
9599
|
/**
|
|
8753
9600
|
* Create client credentials
|
|
8754
9601
|
* @summary Create client credentials
|
|
@@ -8829,6 +9676,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8829
9676
|
* @throws {RequiredError}
|
|
8830
9677
|
*/
|
|
8831
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>;
|
|
8832
9687
|
/**
|
|
8833
9688
|
* Get Accounts
|
|
8834
9689
|
* @summary Get Accounts
|
|
@@ -8894,6 +9749,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8894
9749
|
* @throws {RequiredError}
|
|
8895
9750
|
*/
|
|
8896
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>;
|
|
8897
9759
|
/**
|
|
8898
9760
|
* Create client credentials
|
|
8899
9761
|
* @summary Create client credentials
|
|
@@ -8980,6 +9842,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8980
9842
|
* @memberof AccountsApi
|
|
8981
9843
|
*/
|
|
8982
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, {}>>;
|
|
8983
9854
|
/**
|
|
8984
9855
|
* Get Accounts
|
|
8985
9856
|
* @summary Get Accounts
|
|
@@ -9053,6 +9924,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9053
9924
|
* @memberof AccountsApi
|
|
9054
9925
|
*/
|
|
9055
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, {}>>;
|
|
9056
9935
|
/**
|
|
9057
9936
|
* Create client credentials
|
|
9058
9937
|
* @summary Create client credentials
|
|
@@ -9166,14 +10045,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9166
10045
|
* @throws {RequiredError}
|
|
9167
10046
|
*/
|
|
9168
10047
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9169
|
-
/**
|
|
9170
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9171
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9172
|
-
* @param {string} password Desired 3CX web access password
|
|
9173
|
-
* @param {*} [options] Override http request option.
|
|
9174
|
-
* @throws {RequiredError}
|
|
9175
|
-
*/
|
|
9176
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9177
10048
|
/**
|
|
9178
10049
|
* Get Bulk 3CX Licence Details
|
|
9179
10050
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9196,14 +10067,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9196
10067
|
* @throws {RequiredError}
|
|
9197
10068
|
*/
|
|
9198
10069
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9199
|
-
/**
|
|
9200
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9201
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9202
|
-
* @param {string} password Desired 3CX web access password
|
|
9203
|
-
* @param {*} [options] Override http request option.
|
|
9204
|
-
* @throws {RequiredError}
|
|
9205
|
-
*/
|
|
9206
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9207
10070
|
/**
|
|
9208
10071
|
* Get Bulk 3CX Licence Details
|
|
9209
10072
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9226,14 +10089,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9226
10089
|
* @throws {RequiredError}
|
|
9227
10090
|
*/
|
|
9228
10091
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9229
|
-
/**
|
|
9230
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9231
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9232
|
-
* @param {string} password Desired 3CX web access password
|
|
9233
|
-
* @param {*} [options] Override http request option.
|
|
9234
|
-
* @throws {RequiredError}
|
|
9235
|
-
*/
|
|
9236
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9237
10092
|
/**
|
|
9238
10093
|
* Get Bulk 3CX Licence Details
|
|
9239
10094
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9259,15 +10114,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9259
10114
|
* @memberof Class3CXApi
|
|
9260
10115
|
*/
|
|
9261
10116
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9262
|
-
/**
|
|
9263
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9264
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9265
|
-
* @param {string} password Desired 3CX web access password
|
|
9266
|
-
* @param {*} [options] Override http request option.
|
|
9267
|
-
* @throws {RequiredError}
|
|
9268
|
-
* @memberof Class3CXApi
|
|
9269
|
-
*/
|
|
9270
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9271
10117
|
/**
|
|
9272
10118
|
* Get Bulk 3CX Licence Details
|
|
9273
10119
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11811,11 +12657,28 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11811
12657
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11812
12658
|
/**
|
|
11813
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
|
|
11814
12677
|
* @param {number} id Order ID
|
|
11815
12678
|
* @param {*} [options] Override http request option.
|
|
11816
12679
|
* @throws {RequiredError}
|
|
11817
12680
|
*/
|
|
11818
|
-
|
|
12681
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11819
12682
|
/**
|
|
11820
12683
|
* Get Orders
|
|
11821
12684
|
* @summary Get Orders
|
|
@@ -11830,6 +12693,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11830
12693
|
* @throws {RequiredError}
|
|
11831
12694
|
*/
|
|
11832
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>;
|
|
11833
12734
|
};
|
|
11834
12735
|
/**
|
|
11835
12736
|
* OrdersApi - functional programming interface
|
|
@@ -11838,11 +12739,28 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11838
12739
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11839
12740
|
/**
|
|
11840
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
|
|
11841
12759
|
* @param {number} id Order ID
|
|
11842
12760
|
* @param {*} [options] Override http request option.
|
|
11843
12761
|
* @throws {RequiredError}
|
|
11844
12762
|
*/
|
|
11845
|
-
|
|
12763
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CustomerOrderRequestDTO>>;
|
|
11846
12764
|
/**
|
|
11847
12765
|
* Get Orders
|
|
11848
12766
|
* @summary Get Orders
|
|
@@ -11857,6 +12775,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11857
12775
|
* @throws {RequiredError}
|
|
11858
12776
|
*/
|
|
11859
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>>>;
|
|
11860
12816
|
};
|
|
11861
12817
|
/**
|
|
11862
12818
|
* OrdersApi - factory interface
|
|
@@ -11865,11 +12821,28 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11865
12821
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11866
12822
|
/**
|
|
11867
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
|
|
11868
12841
|
* @param {number} id Order ID
|
|
11869
12842
|
* @param {*} [options] Override http request option.
|
|
11870
12843
|
* @throws {RequiredError}
|
|
11871
12844
|
*/
|
|
11872
|
-
|
|
12845
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<CustomerOrderRequestDTO>;
|
|
11873
12846
|
/**
|
|
11874
12847
|
* Get Orders
|
|
11875
12848
|
* @summary Get Orders
|
|
@@ -11884,6 +12857,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11884
12857
|
* @throws {RequiredError}
|
|
11885
12858
|
*/
|
|
11886
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>>;
|
|
11887
12898
|
};
|
|
11888
12899
|
/**
|
|
11889
12900
|
* OrdersApi - object-oriented interface
|
|
@@ -11894,12 +12905,31 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11894
12905
|
export declare class OrdersApi extends BaseAPI {
|
|
11895
12906
|
/**
|
|
11896
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
|
|
11897
12927
|
* @param {number} id Order ID
|
|
11898
12928
|
* @param {*} [options] Override http request option.
|
|
11899
12929
|
* @throws {RequiredError}
|
|
11900
12930
|
* @memberof OrdersApi
|
|
11901
12931
|
*/
|
|
11902
|
-
|
|
12932
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerOrderRequestDTO, any, {}>>;
|
|
11903
12933
|
/**
|
|
11904
12934
|
* Get Orders
|
|
11905
12935
|
* @summary Get Orders
|
|
@@ -11915,6 +12945,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11915
12945
|
* @memberof OrdersApi
|
|
11916
12946
|
*/
|
|
11917
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, {}>>;
|
|
11918
12990
|
}
|
|
11919
12991
|
/**
|
|
11920
12992
|
* @export
|
|
@@ -12170,13 +13242,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12170
13242
|
* @throws {RequiredError}
|
|
12171
13243
|
*/
|
|
12172
13244
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12173
|
-
/**
|
|
12174
|
-
* Get Customer Price Lists
|
|
12175
|
-
* @summary Get Customer Price Lists
|
|
12176
|
-
* @param {*} [options] Override http request option.
|
|
12177
|
-
* @throws {RequiredError}
|
|
12178
|
-
*/
|
|
12179
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12180
13245
|
/**
|
|
12181
13246
|
* Get Current Stock & Pricing
|
|
12182
13247
|
* @summary Get Current Stock & Pricing
|
|
@@ -12189,13 +13254,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12189
13254
|
/**
|
|
12190
13255
|
* Get Products
|
|
12191
13256
|
* @summary Get Products
|
|
12192
|
-
* @param {number} [pageSize] Number Of Results
|
|
12193
|
-
* @param {number} [page] Page Number
|
|
12194
|
-
* @param {string} [search] Search
|
|
12195
13257
|
* @param {*} [options] Override http request option.
|
|
12196
13258
|
* @throws {RequiredError}
|
|
12197
13259
|
*/
|
|
12198
|
-
getGetProducts: (
|
|
13260
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12199
13261
|
/**
|
|
12200
13262
|
* Get Current Stock & Pricing
|
|
12201
13263
|
* @summary Get Current Stock & Pricing
|
|
@@ -12210,6 +13272,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12210
13272
|
* @throws {RequiredError}
|
|
12211
13273
|
*/
|
|
12212
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>;
|
|
12213
13304
|
};
|
|
12214
13305
|
/**
|
|
12215
13306
|
* ProductsApi - functional programming interface
|
|
@@ -12223,13 +13314,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12223
13314
|
* @throws {RequiredError}
|
|
12224
13315
|
*/
|
|
12225
13316
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12226
|
-
/**
|
|
12227
|
-
* Get Customer Price Lists
|
|
12228
|
-
* @summary Get Customer Price Lists
|
|
12229
|
-
* @param {*} [options] Override http request option.
|
|
12230
|
-
* @throws {RequiredError}
|
|
12231
|
-
*/
|
|
12232
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12233
13317
|
/**
|
|
12234
13318
|
* Get Current Stock & Pricing
|
|
12235
13319
|
* @summary Get Current Stock & Pricing
|
|
@@ -12242,13 +13326,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12242
13326
|
/**
|
|
12243
13327
|
* Get Products
|
|
12244
13328
|
* @summary Get Products
|
|
12245
|
-
* @param {number} [pageSize] Number Of Results
|
|
12246
|
-
* @param {number} [page] Page Number
|
|
12247
|
-
* @param {string} [search] Search
|
|
12248
13329
|
* @param {*} [options] Override http request option.
|
|
12249
13330
|
* @throws {RequiredError}
|
|
12250
13331
|
*/
|
|
12251
|
-
getGetProducts(
|
|
13332
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12252
13333
|
/**
|
|
12253
13334
|
* Get Current Stock & Pricing
|
|
12254
13335
|
* @summary Get Current Stock & Pricing
|
|
@@ -12263,6 +13344,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12263
13344
|
* @throws {RequiredError}
|
|
12264
13345
|
*/
|
|
12265
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>>;
|
|
12266
13376
|
};
|
|
12267
13377
|
/**
|
|
12268
13378
|
* ProductsApi - factory interface
|
|
@@ -12276,13 +13386,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12276
13386
|
* @throws {RequiredError}
|
|
12277
13387
|
*/
|
|
12278
13388
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12279
|
-
/**
|
|
12280
|
-
* Get Customer Price Lists
|
|
12281
|
-
* @summary Get Customer Price Lists
|
|
12282
|
-
* @param {*} [options] Override http request option.
|
|
12283
|
-
* @throws {RequiredError}
|
|
12284
|
-
*/
|
|
12285
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12286
13389
|
/**
|
|
12287
13390
|
* Get Current Stock & Pricing
|
|
12288
13391
|
* @summary Get Current Stock & Pricing
|
|
@@ -12295,13 +13398,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12295
13398
|
/**
|
|
12296
13399
|
* Get Products
|
|
12297
13400
|
* @summary Get Products
|
|
12298
|
-
* @param {number} [pageSize] Number Of Results
|
|
12299
|
-
* @param {number} [page] Page Number
|
|
12300
|
-
* @param {string} [search] Search
|
|
12301
13401
|
* @param {*} [options] Override http request option.
|
|
12302
13402
|
* @throws {RequiredError}
|
|
12303
13403
|
*/
|
|
12304
|
-
getGetProducts(
|
|
13404
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12305
13405
|
/**
|
|
12306
13406
|
* Get Current Stock & Pricing
|
|
12307
13407
|
* @summary Get Current Stock & Pricing
|
|
@@ -12316,6 +13416,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12316
13416
|
* @throws {RequiredError}
|
|
12317
13417
|
*/
|
|
12318
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>;
|
|
12319
13448
|
};
|
|
12320
13449
|
/**
|
|
12321
13450
|
* ProductsApi - object-oriented interface
|
|
@@ -12332,14 +13461,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12332
13461
|
* @memberof ProductsApi
|
|
12333
13462
|
*/
|
|
12334
13463
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12335
|
-
/**
|
|
12336
|
-
* Get Customer Price Lists
|
|
12337
|
-
* @summary Get Customer Price Lists
|
|
12338
|
-
* @param {*} [options] Override http request option.
|
|
12339
|
-
* @throws {RequiredError}
|
|
12340
|
-
* @memberof ProductsApi
|
|
12341
|
-
*/
|
|
12342
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12343
13464
|
/**
|
|
12344
13465
|
* Get Current Stock & Pricing
|
|
12345
13466
|
* @summary Get Current Stock & Pricing
|
|
@@ -12353,14 +13474,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12353
13474
|
/**
|
|
12354
13475
|
* Get Products
|
|
12355
13476
|
* @summary Get Products
|
|
12356
|
-
* @param {number} [pageSize] Number Of Results
|
|
12357
|
-
* @param {number} [page] Page Number
|
|
12358
|
-
* @param {string} [search] Search
|
|
12359
13477
|
* @param {*} [options] Override http request option.
|
|
12360
13478
|
* @throws {RequiredError}
|
|
12361
13479
|
* @memberof ProductsApi
|
|
12362
13480
|
*/
|
|
12363
|
-
getGetProducts(
|
|
13481
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12364
13482
|
/**
|
|
12365
13483
|
* Get Current Stock & Pricing
|
|
12366
13484
|
* @summary Get Current Stock & Pricing
|
|
@@ -12377,6 +13495,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12377
13495
|
* @memberof ProductsApi
|
|
12378
13496
|
*/
|
|
12379
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, {}>>;
|
|
12380
13530
|
}
|
|
12381
13531
|
/**
|
|
12382
13532
|
* @export
|
|
@@ -12497,7 +13647,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12497
13647
|
* @param {*} [options] Override http request option.
|
|
12498
13648
|
* @throws {RequiredError}
|
|
12499
13649
|
*/
|
|
12500
|
-
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>>>;
|
|
12501
13651
|
/**
|
|
12502
13652
|
* Create a Fanvil provisioning group
|
|
12503
13653
|
* @summary Add group to DB and FDPS
|
|
@@ -12505,7 +13655,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12505
13655
|
* @param {*} [options] Override http request option.
|
|
12506
13656
|
* @throws {RequiredError}
|
|
12507
13657
|
*/
|
|
12508
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13658
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12509
13659
|
/**
|
|
12510
13660
|
* Add MAC address to DB and FDPS group
|
|
12511
13661
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12562,7 +13712,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12562
13712
|
* @param {*} [options] Override http request option.
|
|
12563
13713
|
* @throws {RequiredError}
|
|
12564
13714
|
*/
|
|
12565
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13715
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12566
13716
|
/**
|
|
12567
13717
|
* Create a Fanvil provisioning group
|
|
12568
13718
|
* @summary Add group to DB and FDPS
|
|
@@ -12570,7 +13720,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12570
13720
|
* @param {*} [options] Override http request option.
|
|
12571
13721
|
* @throws {RequiredError}
|
|
12572
13722
|
*/
|
|
12573
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13723
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12574
13724
|
/**
|
|
12575
13725
|
* Add MAC address to DB and FDPS group
|
|
12576
13726
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12634,7 +13784,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12634
13784
|
* @throws {RequiredError}
|
|
12635
13785
|
* @memberof ProvisioningApi
|
|
12636
13786
|
*/
|
|
12637
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13787
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12638
13788
|
/**
|
|
12639
13789
|
* Create a Fanvil provisioning group
|
|
12640
13790
|
* @summary Add group to DB and FDPS
|
|
@@ -12643,7 +13793,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12643
13793
|
* @throws {RequiredError}
|
|
12644
13794
|
* @memberof ProvisioningApi
|
|
12645
13795
|
*/
|
|
12646
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13796
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12647
13797
|
/**
|
|
12648
13798
|
* Add MAC address to DB and FDPS group
|
|
12649
13799
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13518,6 +14668,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13518
14668
|
*/
|
|
13519
14669
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13520
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
|
+
}
|
|
13521
14730
|
/**
|
|
13522
14731
|
* StockManagementApi - axios parameter creator
|
|
13523
14732
|
* @export
|
|
@@ -13847,7 +15056,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13847
15056
|
* @param {*} [options] Override http request option.
|
|
13848
15057
|
* @throws {RequiredError}
|
|
13849
15058
|
*/
|
|
13850
|
-
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>>>;
|
|
13851
15060
|
/**
|
|
13852
15061
|
* Get Stock Order Supplier Invoice
|
|
13853
15062
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14062,7 +15271,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14062
15271
|
* @param {*} [options] Override http request option.
|
|
14063
15272
|
* @throws {RequiredError}
|
|
14064
15273
|
*/
|
|
14065
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15274
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14066
15275
|
/**
|
|
14067
15276
|
* Get Stock Order Supplier Invoice
|
|
14068
15277
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14292,7 +15501,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14292
15501
|
* @throws {RequiredError}
|
|
14293
15502
|
* @memberof StockManagementApi
|
|
14294
15503
|
*/
|
|
14295
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15504
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14296
15505
|
/**
|
|
14297
15506
|
* Get Stock Order Supplier Invoice
|
|
14298
15507
|
* @summary Get Stock Order Supplier Invoice
|