yellowgrid-api-ts 3.1.8 → 3.1.9-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 +33 -7
- package/api.ts +1805 -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 +1326 -150
- 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 +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 +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,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
|
|
@@ -2460,35 +2981,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2460
2981
|
*/
|
|
2461
2982
|
export interface ItemDTO {
|
|
2462
2983
|
/**
|
|
2463
|
-
*
|
|
2464
|
-
* @type {
|
|
2984
|
+
* SKU
|
|
2985
|
+
* @type {string}
|
|
2465
2986
|
* @memberof ItemDTO
|
|
2466
2987
|
*/
|
|
2467
|
-
'
|
|
2988
|
+
'sku'?: string;
|
|
2468
2989
|
/**
|
|
2469
|
-
*
|
|
2990
|
+
* Quantity
|
|
2470
2991
|
* @type {number}
|
|
2471
2992
|
* @memberof ItemDTO
|
|
2472
2993
|
*/
|
|
2473
|
-
'
|
|
2994
|
+
'quantity'?: number;
|
|
2474
2995
|
/**
|
|
2475
|
-
*
|
|
2476
|
-
* @type {
|
|
2996
|
+
* ID
|
|
2997
|
+
* @type {number}
|
|
2477
2998
|
* @memberof ItemDTO
|
|
2478
2999
|
*/
|
|
2479
|
-
'
|
|
3000
|
+
'id'?: number | null;
|
|
2480
3001
|
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @type {
|
|
3002
|
+
* Order ID
|
|
3003
|
+
* @type {number}
|
|
2483
3004
|
* @memberof ItemDTO
|
|
2484
3005
|
*/
|
|
2485
|
-
'
|
|
3006
|
+
'orderId'?: number | null;
|
|
2486
3007
|
/**
|
|
2487
|
-
*
|
|
2488
|
-
* @type {
|
|
3008
|
+
* Title
|
|
3009
|
+
* @type {string}
|
|
2489
3010
|
* @memberof ItemDTO
|
|
2490
3011
|
*/
|
|
2491
|
-
'
|
|
3012
|
+
'title'?: string;
|
|
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
|
|
@@ -8972,14 +9834,23 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8972
9834
|
*/
|
|
8973
9835
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
8974
9836
|
/**
|
|
8975
|
-
* Get Account Contacts
|
|
8976
|
-
* @summary Get Account Contacts
|
|
8977
|
-
* @param {string} [email] Contact Email Address
|
|
9837
|
+
* Get Account Contacts
|
|
9838
|
+
* @summary Get Account Contacts
|
|
9839
|
+
* @param {string} [email] Contact Email Address
|
|
9840
|
+
* @param {*} [options] Override http request option.
|
|
9841
|
+
* @throws {RequiredError}
|
|
9842
|
+
* @memberof AccountsApi
|
|
9843
|
+
*/
|
|
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
|
|
8978
9849
|
* @param {*} [options] Override http request option.
|
|
8979
9850
|
* @throws {RequiredError}
|
|
8980
9851
|
* @memberof AccountsApi
|
|
8981
9852
|
*/
|
|
8982
|
-
|
|
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,20 @@ 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
|
|
12668
|
+
* @summary Get Editable Order
|
|
11814
12669
|
* @param {number} id Order ID
|
|
11815
12670
|
* @param {*} [options] Override http request option.
|
|
11816
12671
|
* @throws {RequiredError}
|
|
11817
12672
|
*/
|
|
11818
|
-
|
|
12673
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11819
12674
|
/**
|
|
11820
12675
|
* Get Orders
|
|
11821
12676
|
* @summary Get Orders
|
|
@@ -11830,6 +12685,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11830
12685
|
* @throws {RequiredError}
|
|
11831
12686
|
*/
|
|
11832
12687
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12688
|
+
/**
|
|
12689
|
+
* Create An Order (Admin)
|
|
12690
|
+
* @summary Create An Order (Admin)
|
|
12691
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12692
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12693
|
+
* @param {*} [options] Override http request option.
|
|
12694
|
+
* @throws {RequiredError}
|
|
12695
|
+
*/
|
|
12696
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12697
|
+
/**
|
|
12698
|
+
* Create An Order
|
|
12699
|
+
* @summary Create An Order
|
|
12700
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12701
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12702
|
+
* @param {*} [options] Override http request option.
|
|
12703
|
+
* @throws {RequiredError}
|
|
12704
|
+
*/
|
|
12705
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12706
|
+
/**
|
|
12707
|
+
* Update An Order (Admin)
|
|
12708
|
+
* @summary Update An Order (Admin)
|
|
12709
|
+
* @param {number} id Order ID
|
|
12710
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12711
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12712
|
+
* @param {*} [options] Override http request option.
|
|
12713
|
+
* @throws {RequiredError}
|
|
12714
|
+
*/
|
|
12715
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12716
|
+
/**
|
|
12717
|
+
* Update An Order
|
|
12718
|
+
* @summary Update An Order
|
|
12719
|
+
* @param {number} id Order ID
|
|
12720
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12721
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12722
|
+
* @param {*} [options] Override http request option.
|
|
12723
|
+
* @throws {RequiredError}
|
|
12724
|
+
*/
|
|
12725
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11833
12726
|
};
|
|
11834
12727
|
/**
|
|
11835
12728
|
* OrdersApi - functional programming interface
|
|
@@ -11838,11 +12731,20 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11838
12731
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11839
12732
|
/**
|
|
11840
12733
|
* Delete Orders
|
|
12734
|
+
* @summary Delete Orders
|
|
12735
|
+
* @param {number} id Order ID
|
|
12736
|
+
* @param {*} [options] Override http request option.
|
|
12737
|
+
* @throws {RequiredError}
|
|
12738
|
+
*/
|
|
12739
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12740
|
+
/**
|
|
12741
|
+
* Get Editable Order
|
|
12742
|
+
* @summary Get Editable Order
|
|
11841
12743
|
* @param {number} id Order ID
|
|
11842
12744
|
* @param {*} [options] Override http request option.
|
|
11843
12745
|
* @throws {RequiredError}
|
|
11844
12746
|
*/
|
|
11845
|
-
|
|
12747
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
11846
12748
|
/**
|
|
11847
12749
|
* Get Orders
|
|
11848
12750
|
* @summary Get Orders
|
|
@@ -11857,6 +12759,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11857
12759
|
* @throws {RequiredError}
|
|
11858
12760
|
*/
|
|
11859
12761
|
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>>;
|
|
12762
|
+
/**
|
|
12763
|
+
* Create An Order (Admin)
|
|
12764
|
+
* @summary Create An Order (Admin)
|
|
12765
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12766
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12767
|
+
* @param {*} [options] Override http request option.
|
|
12768
|
+
* @throws {RequiredError}
|
|
12769
|
+
*/
|
|
12770
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12771
|
+
/**
|
|
12772
|
+
* Create An Order
|
|
12773
|
+
* @summary Create An Order
|
|
12774
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12775
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12776
|
+
* @param {*} [options] Override http request option.
|
|
12777
|
+
* @throws {RequiredError}
|
|
12778
|
+
*/
|
|
12779
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12780
|
+
/**
|
|
12781
|
+
* Update An Order (Admin)
|
|
12782
|
+
* @summary Update An Order (Admin)
|
|
12783
|
+
* @param {number} id Order ID
|
|
12784
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12785
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12786
|
+
* @param {*} [options] Override http request option.
|
|
12787
|
+
* @throws {RequiredError}
|
|
12788
|
+
*/
|
|
12789
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12790
|
+
/**
|
|
12791
|
+
* Update An Order
|
|
12792
|
+
* @summary Update An Order
|
|
12793
|
+
* @param {number} id Order ID
|
|
12794
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12795
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12796
|
+
* @param {*} [options] Override http request option.
|
|
12797
|
+
* @throws {RequiredError}
|
|
12798
|
+
*/
|
|
12799
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11860
12800
|
};
|
|
11861
12801
|
/**
|
|
11862
12802
|
* OrdersApi - factory interface
|
|
@@ -11865,11 +12805,20 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11865
12805
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11866
12806
|
/**
|
|
11867
12807
|
* Delete Orders
|
|
12808
|
+
* @summary Delete Orders
|
|
11868
12809
|
* @param {number} id Order ID
|
|
11869
12810
|
* @param {*} [options] Override http request option.
|
|
11870
12811
|
* @throws {RequiredError}
|
|
11871
12812
|
*/
|
|
11872
|
-
|
|
12813
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12814
|
+
/**
|
|
12815
|
+
* Get Editable Order
|
|
12816
|
+
* @summary Get Editable Order
|
|
12817
|
+
* @param {number} id Order ID
|
|
12818
|
+
* @param {*} [options] Override http request option.
|
|
12819
|
+
* @throws {RequiredError}
|
|
12820
|
+
*/
|
|
12821
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
11873
12822
|
/**
|
|
11874
12823
|
* Get Orders
|
|
11875
12824
|
* @summary Get Orders
|
|
@@ -11884,6 +12833,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11884
12833
|
* @throws {RequiredError}
|
|
11885
12834
|
*/
|
|
11886
12835
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12836
|
+
/**
|
|
12837
|
+
* Create An Order (Admin)
|
|
12838
|
+
* @summary Create An Order (Admin)
|
|
12839
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12840
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12841
|
+
* @param {*} [options] Override http request option.
|
|
12842
|
+
* @throws {RequiredError}
|
|
12843
|
+
*/
|
|
12844
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12845
|
+
/**
|
|
12846
|
+
* Create An Order
|
|
12847
|
+
* @summary Create An Order
|
|
12848
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12849
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12850
|
+
* @param {*} [options] Override http request option.
|
|
12851
|
+
* @throws {RequiredError}
|
|
12852
|
+
*/
|
|
12853
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12854
|
+
/**
|
|
12855
|
+
* Update An Order (Admin)
|
|
12856
|
+
* @summary Update An Order (Admin)
|
|
12857
|
+
* @param {number} id Order ID
|
|
12858
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12859
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12860
|
+
* @param {*} [options] Override http request option.
|
|
12861
|
+
* @throws {RequiredError}
|
|
12862
|
+
*/
|
|
12863
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12864
|
+
/**
|
|
12865
|
+
* Update An Order
|
|
12866
|
+
* @summary Update An Order
|
|
12867
|
+
* @param {number} id Order ID
|
|
12868
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12869
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12870
|
+
* @param {*} [options] Override http request option.
|
|
12871
|
+
* @throws {RequiredError}
|
|
12872
|
+
*/
|
|
12873
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11887
12874
|
};
|
|
11888
12875
|
/**
|
|
11889
12876
|
* OrdersApi - object-oriented interface
|
|
@@ -11894,12 +12881,22 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11894
12881
|
export declare class OrdersApi extends BaseAPI {
|
|
11895
12882
|
/**
|
|
11896
12883
|
* Delete Orders
|
|
12884
|
+
* @summary Delete Orders
|
|
12885
|
+
* @param {number} id Order ID
|
|
12886
|
+
* @param {*} [options] Override http request option.
|
|
12887
|
+
* @throws {RequiredError}
|
|
12888
|
+
* @memberof OrdersApi
|
|
12889
|
+
*/
|
|
12890
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12891
|
+
/**
|
|
12892
|
+
* Get Editable Order
|
|
12893
|
+
* @summary Get Editable Order
|
|
11897
12894
|
* @param {number} id Order ID
|
|
11898
12895
|
* @param {*} [options] Override http request option.
|
|
11899
12896
|
* @throws {RequiredError}
|
|
11900
12897
|
* @memberof OrdersApi
|
|
11901
12898
|
*/
|
|
11902
|
-
|
|
12899
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
11903
12900
|
/**
|
|
11904
12901
|
* Get Orders
|
|
11905
12902
|
* @summary Get Orders
|
|
@@ -11915,6 +12912,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11915
12912
|
* @memberof OrdersApi
|
|
11916
12913
|
*/
|
|
11917
12914
|
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, {}>>;
|
|
12915
|
+
/**
|
|
12916
|
+
* Create An Order (Admin)
|
|
12917
|
+
* @summary Create An Order (Admin)
|
|
12918
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12919
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12920
|
+
* @param {*} [options] Override http request option.
|
|
12921
|
+
* @throws {RequiredError}
|
|
12922
|
+
* @memberof OrdersApi
|
|
12923
|
+
*/
|
|
12924
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12925
|
+
/**
|
|
12926
|
+
* Create An Order
|
|
12927
|
+
* @summary Create An Order
|
|
12928
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12929
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12930
|
+
* @param {*} [options] Override http request option.
|
|
12931
|
+
* @throws {RequiredError}
|
|
12932
|
+
* @memberof OrdersApi
|
|
12933
|
+
*/
|
|
12934
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12935
|
+
/**
|
|
12936
|
+
* Update An Order (Admin)
|
|
12937
|
+
* @summary Update An Order (Admin)
|
|
12938
|
+
* @param {number} id Order ID
|
|
12939
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12940
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12941
|
+
* @param {*} [options] Override http request option.
|
|
12942
|
+
* @throws {RequiredError}
|
|
12943
|
+
* @memberof OrdersApi
|
|
12944
|
+
*/
|
|
12945
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12946
|
+
/**
|
|
12947
|
+
* Update An Order
|
|
12948
|
+
* @summary Update An Order
|
|
12949
|
+
* @param {number} id Order ID
|
|
12950
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12951
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12952
|
+
* @param {*} [options] Override http request option.
|
|
12953
|
+
* @throws {RequiredError}
|
|
12954
|
+
* @memberof OrdersApi
|
|
12955
|
+
*/
|
|
12956
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11918
12957
|
}
|
|
11919
12958
|
/**
|
|
11920
12959
|
* @export
|
|
@@ -12170,13 +13209,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12170
13209
|
* @throws {RequiredError}
|
|
12171
13210
|
*/
|
|
12172
13211
|
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
13212
|
/**
|
|
12181
13213
|
* Get Current Stock & Pricing
|
|
12182
13214
|
* @summary Get Current Stock & Pricing
|
|
@@ -12189,13 +13221,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12189
13221
|
/**
|
|
12190
13222
|
* Get Products
|
|
12191
13223
|
* @summary Get Products
|
|
12192
|
-
* @param {number} [pageSize] Number Of Results
|
|
12193
|
-
* @param {number} [page] Page Number
|
|
12194
|
-
* @param {string} [search] Search
|
|
12195
13224
|
* @param {*} [options] Override http request option.
|
|
12196
13225
|
* @throws {RequiredError}
|
|
12197
13226
|
*/
|
|
12198
|
-
getGetProducts: (
|
|
13227
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12199
13228
|
/**
|
|
12200
13229
|
* Get Current Stock & Pricing
|
|
12201
13230
|
* @summary Get Current Stock & Pricing
|
|
@@ -12210,6 +13239,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12210
13239
|
* @throws {RequiredError}
|
|
12211
13240
|
*/
|
|
12212
13241
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13242
|
+
/**
|
|
13243
|
+
* Search Products
|
|
13244
|
+
* @summary Search Products
|
|
13245
|
+
* @param {number} [pageSize] Number Of Results
|
|
13246
|
+
* @param {number} [page] Page Number
|
|
13247
|
+
* @param {string} [search] Search
|
|
13248
|
+
* @param {*} [options] Override http request option.
|
|
13249
|
+
* @throws {RequiredError}
|
|
13250
|
+
*/
|
|
13251
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13252
|
+
/**
|
|
13253
|
+
* Get Product
|
|
13254
|
+
* @summary Get Product
|
|
13255
|
+
* @param {string} sku Product SKU
|
|
13256
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13257
|
+
* @param {*} [options] Override http request option.
|
|
13258
|
+
* @throws {RequiredError}
|
|
13259
|
+
*/
|
|
13260
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13261
|
+
/**
|
|
13262
|
+
* Get Product For Customer
|
|
13263
|
+
* @summary Get Product For Customer
|
|
13264
|
+
* @param {number} customerId Customer ID
|
|
13265
|
+
* @param {string} sku Product SKU
|
|
13266
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13267
|
+
* @param {*} [options] Override http request option.
|
|
13268
|
+
* @throws {RequiredError}
|
|
13269
|
+
*/
|
|
13270
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12213
13271
|
};
|
|
12214
13272
|
/**
|
|
12215
13273
|
* ProductsApi - functional programming interface
|
|
@@ -12223,13 +13281,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12223
13281
|
* @throws {RequiredError}
|
|
12224
13282
|
*/
|
|
12225
13283
|
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
13284
|
/**
|
|
12234
13285
|
* Get Current Stock & Pricing
|
|
12235
13286
|
* @summary Get Current Stock & Pricing
|
|
@@ -12242,13 +13293,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12242
13293
|
/**
|
|
12243
13294
|
* Get Products
|
|
12244
13295
|
* @summary Get Products
|
|
12245
|
-
* @param {number} [pageSize] Number Of Results
|
|
12246
|
-
* @param {number} [page] Page Number
|
|
12247
|
-
* @param {string} [search] Search
|
|
12248
13296
|
* @param {*} [options] Override http request option.
|
|
12249
13297
|
* @throws {RequiredError}
|
|
12250
13298
|
*/
|
|
12251
|
-
getGetProducts(
|
|
13299
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12252
13300
|
/**
|
|
12253
13301
|
* Get Current Stock & Pricing
|
|
12254
13302
|
* @summary Get Current Stock & Pricing
|
|
@@ -12263,6 +13311,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12263
13311
|
* @throws {RequiredError}
|
|
12264
13312
|
*/
|
|
12265
13313
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13314
|
+
/**
|
|
13315
|
+
* Search Products
|
|
13316
|
+
* @summary Search Products
|
|
13317
|
+
* @param {number} [pageSize] Number Of Results
|
|
13318
|
+
* @param {number} [page] Page Number
|
|
13319
|
+
* @param {string} [search] Search
|
|
13320
|
+
* @param {*} [options] Override http request option.
|
|
13321
|
+
* @throws {RequiredError}
|
|
13322
|
+
*/
|
|
13323
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13324
|
+
/**
|
|
13325
|
+
* Get Product
|
|
13326
|
+
* @summary Get Product
|
|
13327
|
+
* @param {string} sku Product SKU
|
|
13328
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13329
|
+
* @param {*} [options] Override http request option.
|
|
13330
|
+
* @throws {RequiredError}
|
|
13331
|
+
*/
|
|
13332
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13333
|
+
/**
|
|
13334
|
+
* Get Product For Customer
|
|
13335
|
+
* @summary Get Product For Customer
|
|
13336
|
+
* @param {number} customerId Customer ID
|
|
13337
|
+
* @param {string} sku Product SKU
|
|
13338
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13339
|
+
* @param {*} [options] Override http request option.
|
|
13340
|
+
* @throws {RequiredError}
|
|
13341
|
+
*/
|
|
13342
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12266
13343
|
};
|
|
12267
13344
|
/**
|
|
12268
13345
|
* ProductsApi - factory interface
|
|
@@ -12276,13 +13353,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12276
13353
|
* @throws {RequiredError}
|
|
12277
13354
|
*/
|
|
12278
13355
|
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
13356
|
/**
|
|
12287
13357
|
* Get Current Stock & Pricing
|
|
12288
13358
|
* @summary Get Current Stock & Pricing
|
|
@@ -12295,13 +13365,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12295
13365
|
/**
|
|
12296
13366
|
* Get Products
|
|
12297
13367
|
* @summary Get Products
|
|
12298
|
-
* @param {number} [pageSize] Number Of Results
|
|
12299
|
-
* @param {number} [page] Page Number
|
|
12300
|
-
* @param {string} [search] Search
|
|
12301
13368
|
* @param {*} [options] Override http request option.
|
|
12302
13369
|
* @throws {RequiredError}
|
|
12303
13370
|
*/
|
|
12304
|
-
getGetProducts(
|
|
13371
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12305
13372
|
/**
|
|
12306
13373
|
* Get Current Stock & Pricing
|
|
12307
13374
|
* @summary Get Current Stock & Pricing
|
|
@@ -12316,6 +13383,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12316
13383
|
* @throws {RequiredError}
|
|
12317
13384
|
*/
|
|
12318
13385
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13386
|
+
/**
|
|
13387
|
+
* Search Products
|
|
13388
|
+
* @summary Search Products
|
|
13389
|
+
* @param {number} [pageSize] Number Of Results
|
|
13390
|
+
* @param {number} [page] Page Number
|
|
13391
|
+
* @param {string} [search] Search
|
|
13392
|
+
* @param {*} [options] Override http request option.
|
|
13393
|
+
* @throws {RequiredError}
|
|
13394
|
+
*/
|
|
13395
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13396
|
+
/**
|
|
13397
|
+
* Get Product
|
|
13398
|
+
* @summary Get Product
|
|
13399
|
+
* @param {string} sku Product SKU
|
|
13400
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13401
|
+
* @param {*} [options] Override http request option.
|
|
13402
|
+
* @throws {RequiredError}
|
|
13403
|
+
*/
|
|
13404
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13405
|
+
/**
|
|
13406
|
+
* Get Product For Customer
|
|
13407
|
+
* @summary Get Product For Customer
|
|
13408
|
+
* @param {number} customerId Customer ID
|
|
13409
|
+
* @param {string} sku Product SKU
|
|
13410
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13411
|
+
* @param {*} [options] Override http request option.
|
|
13412
|
+
* @throws {RequiredError}
|
|
13413
|
+
*/
|
|
13414
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12319
13415
|
};
|
|
12320
13416
|
/**
|
|
12321
13417
|
* ProductsApi - object-oriented interface
|
|
@@ -12332,14 +13428,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12332
13428
|
* @memberof ProductsApi
|
|
12333
13429
|
*/
|
|
12334
13430
|
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
13431
|
/**
|
|
12344
13432
|
* Get Current Stock & Pricing
|
|
12345
13433
|
* @summary Get Current Stock & Pricing
|
|
@@ -12353,14 +13441,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12353
13441
|
/**
|
|
12354
13442
|
* Get Products
|
|
12355
13443
|
* @summary Get Products
|
|
12356
|
-
* @param {number} [pageSize] Number Of Results
|
|
12357
|
-
* @param {number} [page] Page Number
|
|
12358
|
-
* @param {string} [search] Search
|
|
12359
13444
|
* @param {*} [options] Override http request option.
|
|
12360
13445
|
* @throws {RequiredError}
|
|
12361
13446
|
* @memberof ProductsApi
|
|
12362
13447
|
*/
|
|
12363
|
-
getGetProducts(
|
|
13448
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12364
13449
|
/**
|
|
12365
13450
|
* Get Current Stock & Pricing
|
|
12366
13451
|
* @summary Get Current Stock & Pricing
|
|
@@ -12377,6 +13462,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12377
13462
|
* @memberof ProductsApi
|
|
12378
13463
|
*/
|
|
12379
13464
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13465
|
+
/**
|
|
13466
|
+
* Search Products
|
|
13467
|
+
* @summary Search Products
|
|
13468
|
+
* @param {number} [pageSize] Number Of Results
|
|
13469
|
+
* @param {number} [page] Page Number
|
|
13470
|
+
* @param {string} [search] Search
|
|
13471
|
+
* @param {*} [options] Override http request option.
|
|
13472
|
+
* @throws {RequiredError}
|
|
13473
|
+
* @memberof ProductsApi
|
|
13474
|
+
*/
|
|
13475
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13476
|
+
/**
|
|
13477
|
+
* Get Product
|
|
13478
|
+
* @summary Get Product
|
|
13479
|
+
* @param {string} sku Product SKU
|
|
13480
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13481
|
+
* @param {*} [options] Override http request option.
|
|
13482
|
+
* @throws {RequiredError}
|
|
13483
|
+
* @memberof ProductsApi
|
|
13484
|
+
*/
|
|
13485
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13486
|
+
/**
|
|
13487
|
+
* Get Product For Customer
|
|
13488
|
+
* @summary Get Product For Customer
|
|
13489
|
+
* @param {number} customerId Customer ID
|
|
13490
|
+
* @param {string} sku Product SKU
|
|
13491
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13492
|
+
* @param {*} [options] Override http request option.
|
|
13493
|
+
* @throws {RequiredError}
|
|
13494
|
+
* @memberof ProductsApi
|
|
13495
|
+
*/
|
|
13496
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12380
13497
|
}
|
|
12381
13498
|
/**
|
|
12382
13499
|
* @export
|
|
@@ -12497,7 +13614,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12497
13614
|
* @param {*} [options] Override http request option.
|
|
12498
13615
|
* @throws {RequiredError}
|
|
12499
13616
|
*/
|
|
12500
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13617
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12501
13618
|
/**
|
|
12502
13619
|
* Create a Fanvil provisioning group
|
|
12503
13620
|
* @summary Add group to DB and FDPS
|
|
@@ -12505,7 +13622,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12505
13622
|
* @param {*} [options] Override http request option.
|
|
12506
13623
|
* @throws {RequiredError}
|
|
12507
13624
|
*/
|
|
12508
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13625
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12509
13626
|
/**
|
|
12510
13627
|
* Add MAC address to DB and FDPS group
|
|
12511
13628
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12562,7 +13679,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12562
13679
|
* @param {*} [options] Override http request option.
|
|
12563
13680
|
* @throws {RequiredError}
|
|
12564
13681
|
*/
|
|
12565
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13682
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12566
13683
|
/**
|
|
12567
13684
|
* Create a Fanvil provisioning group
|
|
12568
13685
|
* @summary Add group to DB and FDPS
|
|
@@ -12570,7 +13687,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12570
13687
|
* @param {*} [options] Override http request option.
|
|
12571
13688
|
* @throws {RequiredError}
|
|
12572
13689
|
*/
|
|
12573
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13690
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12574
13691
|
/**
|
|
12575
13692
|
* Add MAC address to DB and FDPS group
|
|
12576
13693
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12634,7 +13751,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12634
13751
|
* @throws {RequiredError}
|
|
12635
13752
|
* @memberof ProvisioningApi
|
|
12636
13753
|
*/
|
|
12637
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13754
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12638
13755
|
/**
|
|
12639
13756
|
* Create a Fanvil provisioning group
|
|
12640
13757
|
* @summary Add group to DB and FDPS
|
|
@@ -12643,7 +13760,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12643
13760
|
* @throws {RequiredError}
|
|
12644
13761
|
* @memberof ProvisioningApi
|
|
12645
13762
|
*/
|
|
12646
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13763
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12647
13764
|
/**
|
|
12648
13765
|
* Add MAC address to DB and FDPS group
|
|
12649
13766
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13518,6 +14635,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13518
14635
|
*/
|
|
13519
14636
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13520
14637
|
}
|
|
14638
|
+
/**
|
|
14639
|
+
* ShippingApi - axios parameter creator
|
|
14640
|
+
* @export
|
|
14641
|
+
*/
|
|
14642
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14643
|
+
/**
|
|
14644
|
+
* Get Shipping Services
|
|
14645
|
+
* @summary Get Shipping Services
|
|
14646
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14647
|
+
* @param {*} [options] Override http request option.
|
|
14648
|
+
* @throws {RequiredError}
|
|
14649
|
+
*/
|
|
14650
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14651
|
+
};
|
|
14652
|
+
/**
|
|
14653
|
+
* ShippingApi - functional programming interface
|
|
14654
|
+
* @export
|
|
14655
|
+
*/
|
|
14656
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14657
|
+
/**
|
|
14658
|
+
* Get Shipping Services
|
|
14659
|
+
* @summary Get Shipping Services
|
|
14660
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14661
|
+
* @param {*} [options] Override http request option.
|
|
14662
|
+
* @throws {RequiredError}
|
|
14663
|
+
*/
|
|
14664
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14665
|
+
};
|
|
14666
|
+
/**
|
|
14667
|
+
* ShippingApi - factory interface
|
|
14668
|
+
* @export
|
|
14669
|
+
*/
|
|
14670
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14671
|
+
/**
|
|
14672
|
+
* Get Shipping Services
|
|
14673
|
+
* @summary Get Shipping Services
|
|
14674
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14675
|
+
* @param {*} [options] Override http request option.
|
|
14676
|
+
* @throws {RequiredError}
|
|
14677
|
+
*/
|
|
14678
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14679
|
+
};
|
|
14680
|
+
/**
|
|
14681
|
+
* ShippingApi - object-oriented interface
|
|
14682
|
+
* @export
|
|
14683
|
+
* @class ShippingApi
|
|
14684
|
+
* @extends {BaseAPI}
|
|
14685
|
+
*/
|
|
14686
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14687
|
+
/**
|
|
14688
|
+
* Get Shipping Services
|
|
14689
|
+
* @summary Get Shipping Services
|
|
14690
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14691
|
+
* @param {*} [options] Override http request option.
|
|
14692
|
+
* @throws {RequiredError}
|
|
14693
|
+
* @memberof ShippingApi
|
|
14694
|
+
*/
|
|
14695
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14696
|
+
}
|
|
13521
14697
|
/**
|
|
13522
14698
|
* StockManagementApi - axios parameter creator
|
|
13523
14699
|
* @export
|
|
@@ -13847,7 +15023,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13847
15023
|
* @param {*} [options] Override http request option.
|
|
13848
15024
|
* @throws {RequiredError}
|
|
13849
15025
|
*/
|
|
13850
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15026
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13851
15027
|
/**
|
|
13852
15028
|
* Get Stock Order Supplier Invoice
|
|
13853
15029
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14062,7 +15238,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14062
15238
|
* @param {*} [options] Override http request option.
|
|
14063
15239
|
* @throws {RequiredError}
|
|
14064
15240
|
*/
|
|
14065
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15241
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14066
15242
|
/**
|
|
14067
15243
|
* Get Stock Order Supplier Invoice
|
|
14068
15244
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14292,7 +15468,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14292
15468
|
* @throws {RequiredError}
|
|
14293
15469
|
* @memberof StockManagementApi
|
|
14294
15470
|
*/
|
|
14295
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15471
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14296
15472
|
/**
|
|
14297
15473
|
* Get Stock Order Supplier Invoice
|
|
14298
15474
|
* @summary Get Stock Order Supplier Invoice
|