yellowgrid-api-ts 3.0.108 → 3.0.110-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 +212 -195
- package/README.md +33 -7
- package/api.ts +1789 -257
- 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 +1304 -150
- package/dist/api.js +1059 -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/AdminItemRequestDTO.md +39 -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 +35 -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
|
|
@@ -525,6 +641,203 @@ export interface AddressRequestModel {
|
|
|
525
641
|
*/
|
|
526
642
|
'addressPostcode'?: string;
|
|
527
643
|
}
|
|
644
|
+
/**
|
|
645
|
+
* Admin Order Item Request
|
|
646
|
+
* @export
|
|
647
|
+
* @interface AdminItemRequestDTO
|
|
648
|
+
*/
|
|
649
|
+
export interface AdminItemRequestDTO {
|
|
650
|
+
/**
|
|
651
|
+
* SKU
|
|
652
|
+
* @type {string}
|
|
653
|
+
* @memberof AdminItemRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
'sku'?: string;
|
|
656
|
+
/**
|
|
657
|
+
* Quantity
|
|
658
|
+
* @type {number}
|
|
659
|
+
* @memberof AdminItemRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'quantity'?: number;
|
|
662
|
+
/**
|
|
663
|
+
* ID
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof AdminItemRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'id'?: number | null;
|
|
668
|
+
/**
|
|
669
|
+
* 3CX Licence Key
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof AdminItemRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'licenceKey'?: string | null;
|
|
674
|
+
/**
|
|
675
|
+
* 3CX Hosting
|
|
676
|
+
* @type {boolean}
|
|
677
|
+
* @memberof AdminItemRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'hosting'?: boolean | null;
|
|
680
|
+
/**
|
|
681
|
+
* Date Time
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof AdminItemRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'processDate'?: string;
|
|
686
|
+
/**
|
|
687
|
+
* 3CX Sales Code
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'tcxSalesCode'?: string | null;
|
|
692
|
+
/**
|
|
693
|
+
* SBCS
|
|
694
|
+
* @type {Array<TcxSbcDTO>}
|
|
695
|
+
* @memberof AdminItemRequestDTO
|
|
696
|
+
*/
|
|
697
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
698
|
+
/**
|
|
699
|
+
* Title
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof AdminItemRequestDTO
|
|
702
|
+
*/
|
|
703
|
+
'title'?: string | null;
|
|
704
|
+
/**
|
|
705
|
+
* Price (£)
|
|
706
|
+
* @type {number}
|
|
707
|
+
* @memberof AdminItemRequestDTO
|
|
708
|
+
*/
|
|
709
|
+
'itemPrice'?: number | null;
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
* Admin Order Request
|
|
713
|
+
* @export
|
|
714
|
+
* @interface AdminOrderRequestDTO
|
|
715
|
+
*/
|
|
716
|
+
export interface AdminOrderRequestDTO {
|
|
717
|
+
/**
|
|
718
|
+
* Order Reference
|
|
719
|
+
* @type {string}
|
|
720
|
+
* @memberof AdminOrderRequestDTO
|
|
721
|
+
*/
|
|
722
|
+
'orderReference'?: string | null;
|
|
723
|
+
/**
|
|
724
|
+
* Items
|
|
725
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
726
|
+
* @memberof AdminOrderRequestDTO
|
|
727
|
+
*/
|
|
728
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
729
|
+
/**
|
|
730
|
+
*
|
|
731
|
+
* @type {ShippingServiceDTO}
|
|
732
|
+
* @memberof AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
'shippingService'?: ShippingServiceDTO;
|
|
735
|
+
/**
|
|
736
|
+
* Provisioning URL
|
|
737
|
+
* @type {string}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'provisioningUrl'?: string | null;
|
|
741
|
+
/**
|
|
742
|
+
*
|
|
743
|
+
* @type {AddressModel}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'shippingAddress'?: AddressModel;
|
|
747
|
+
/**
|
|
748
|
+
* Part Ship Order
|
|
749
|
+
* @type {boolean}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'partShip'?: boolean;
|
|
753
|
+
/**
|
|
754
|
+
* Quote
|
|
755
|
+
* @type {boolean}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'quote'?: boolean;
|
|
759
|
+
/**
|
|
760
|
+
* Customer ID
|
|
761
|
+
* @type {number}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'customerId'?: number;
|
|
765
|
+
/**
|
|
766
|
+
* Contact
|
|
767
|
+
* @type {string}
|
|
768
|
+
* @memberof AdminOrderRequestDTO
|
|
769
|
+
*/
|
|
770
|
+
'contact'?: string;
|
|
771
|
+
/**
|
|
772
|
+
* Ignore Customer On Hold
|
|
773
|
+
* @type {boolean}
|
|
774
|
+
* @memberof AdminOrderRequestDTO
|
|
775
|
+
*/
|
|
776
|
+
'ignoreOnHold'?: boolean;
|
|
777
|
+
/**
|
|
778
|
+
* Ignore Customer Credit Limit
|
|
779
|
+
* @type {boolean}
|
|
780
|
+
* @memberof AdminOrderRequestDTO
|
|
781
|
+
*/
|
|
782
|
+
'ignoreCreditLimit'?: boolean;
|
|
783
|
+
/**
|
|
784
|
+
* Include NFR Promos
|
|
785
|
+
* @type {boolean}
|
|
786
|
+
* @memberof AdminOrderRequestDTO
|
|
787
|
+
*/
|
|
788
|
+
'includeNfrPromos'?: boolean;
|
|
789
|
+
/**
|
|
790
|
+
* Carriage Charge
|
|
791
|
+
* @type {number}
|
|
792
|
+
* @memberof AdminOrderRequestDTO
|
|
793
|
+
*/
|
|
794
|
+
'carriageCharge'?: number;
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* Admin User
|
|
798
|
+
* @export
|
|
799
|
+
* @interface AdminUserModel
|
|
800
|
+
*/
|
|
801
|
+
export interface AdminUserModel {
|
|
802
|
+
/**
|
|
803
|
+
* First Name
|
|
804
|
+
* @type {string}
|
|
805
|
+
* @memberof AdminUserModel
|
|
806
|
+
*/
|
|
807
|
+
'firstName'?: string;
|
|
808
|
+
/**
|
|
809
|
+
* Last Name
|
|
810
|
+
* @type {string}
|
|
811
|
+
* @memberof AdminUserModel
|
|
812
|
+
*/
|
|
813
|
+
'lastName'?: string;
|
|
814
|
+
/**
|
|
815
|
+
* Avatar
|
|
816
|
+
* @type {string}
|
|
817
|
+
* @memberof AdminUserModel
|
|
818
|
+
*/
|
|
819
|
+
'avatar'?: string | null;
|
|
820
|
+
/**
|
|
821
|
+
* Role
|
|
822
|
+
* @type {number}
|
|
823
|
+
* @memberof AdminUserModel
|
|
824
|
+
*/
|
|
825
|
+
'role'?: AdminUserModelRoleEnum;
|
|
826
|
+
/**
|
|
827
|
+
* Email
|
|
828
|
+
* @type {string}
|
|
829
|
+
* @memberof AdminUserModel
|
|
830
|
+
*/
|
|
831
|
+
'email'?: string | null;
|
|
832
|
+
}
|
|
833
|
+
export declare const AdminUserModelRoleEnum: {
|
|
834
|
+
readonly NUMBER_0: 0;
|
|
835
|
+
readonly NUMBER_1: 1;
|
|
836
|
+
readonly NUMBER_2: 2;
|
|
837
|
+
readonly NUMBER_3: 3;
|
|
838
|
+
readonly NUMBER_4: 4;
|
|
839
|
+
};
|
|
840
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
841
|
/**
|
|
529
842
|
* Agent Hours Graph
|
|
530
843
|
* @export
|
|
@@ -754,6 +1067,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1067
|
*/
|
|
755
1068
|
'redirect_uri'?: string | null;
|
|
756
1069
|
}
|
|
1070
|
+
/**
|
|
1071
|
+
* Basic Order Item
|
|
1072
|
+
* @export
|
|
1073
|
+
* @interface BasicItemDTO
|
|
1074
|
+
*/
|
|
1075
|
+
export interface BasicItemDTO {
|
|
1076
|
+
/**
|
|
1077
|
+
* SKU
|
|
1078
|
+
* @type {string}
|
|
1079
|
+
* @memberof BasicItemDTO
|
|
1080
|
+
*/
|
|
1081
|
+
'sku'?: string;
|
|
1082
|
+
/**
|
|
1083
|
+
* Quantity
|
|
1084
|
+
* @type {number}
|
|
1085
|
+
* @memberof BasicItemDTO
|
|
1086
|
+
*/
|
|
1087
|
+
'quantity'?: number;
|
|
1088
|
+
}
|
|
1089
|
+
/**
|
|
1090
|
+
* Basic Product
|
|
1091
|
+
* @export
|
|
1092
|
+
* @interface BasicProductDTO
|
|
1093
|
+
*/
|
|
1094
|
+
export interface BasicProductDTO {
|
|
1095
|
+
/**
|
|
1096
|
+
* SKU
|
|
1097
|
+
* @type {string}
|
|
1098
|
+
* @memberof BasicProductDTO
|
|
1099
|
+
*/
|
|
1100
|
+
'sku'?: string;
|
|
1101
|
+
/**
|
|
1102
|
+
* Title
|
|
1103
|
+
* @type {string}
|
|
1104
|
+
* @memberof BasicProductDTO
|
|
1105
|
+
*/
|
|
1106
|
+
'title'?: string;
|
|
1107
|
+
}
|
|
757
1108
|
/**
|
|
758
1109
|
* BatchesEntity
|
|
759
1110
|
* @export
|
|
@@ -948,12 +1299,6 @@ export interface ClientDetailsModel {
|
|
|
948
1299
|
* @memberof ClientDetailsModel
|
|
949
1300
|
*/
|
|
950
1301
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1302
|
}
|
|
958
1303
|
/**
|
|
959
1304
|
* OAuth client details
|
|
@@ -1115,6 +1460,73 @@ export interface ConversationModel {
|
|
|
1115
1460
|
*/
|
|
1116
1461
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1462
|
}
|
|
1463
|
+
/**
|
|
1464
|
+
* CourierPricesEntity
|
|
1465
|
+
* @export
|
|
1466
|
+
* @interface CourierPriceEntity
|
|
1467
|
+
*/
|
|
1468
|
+
export interface CourierPriceEntity {
|
|
1469
|
+
/**
|
|
1470
|
+
* id
|
|
1471
|
+
* @type {number}
|
|
1472
|
+
* @memberof CourierPriceEntity
|
|
1473
|
+
*/
|
|
1474
|
+
'id'?: number;
|
|
1475
|
+
/**
|
|
1476
|
+
* courier
|
|
1477
|
+
* @type {string}
|
|
1478
|
+
* @memberof CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
'courier'?: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* destinationIso
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'destinationIso'?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* serviceDescription
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'serviceDescription'?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* flatRate
|
|
1495
|
+
* @type {number}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'flatRate'?: number;
|
|
1499
|
+
/**
|
|
1500
|
+
* initialBox
|
|
1501
|
+
* @type {number}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'initialBox'?: number;
|
|
1505
|
+
/**
|
|
1506
|
+
* initialKg
|
|
1507
|
+
* @type {number}
|
|
1508
|
+
* @memberof CourierPriceEntity
|
|
1509
|
+
*/
|
|
1510
|
+
'initialKg'?: number;
|
|
1511
|
+
/**
|
|
1512
|
+
* perBox
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof CourierPriceEntity
|
|
1515
|
+
*/
|
|
1516
|
+
'perBox'?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
* perKg
|
|
1519
|
+
* @type {number}
|
|
1520
|
+
* @memberof CourierPriceEntity
|
|
1521
|
+
*/
|
|
1522
|
+
'perKg'?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* maxKg
|
|
1525
|
+
* @type {number}
|
|
1526
|
+
* @memberof CourierPriceEntity
|
|
1527
|
+
*/
|
|
1528
|
+
'maxKg'?: number;
|
|
1529
|
+
}
|
|
1118
1530
|
/**
|
|
1119
1531
|
* Credit Account
|
|
1120
1532
|
* @export
|
|
@@ -1297,6 +1709,110 @@ export interface CustomerInformationModel {
|
|
|
1297
1709
|
*/
|
|
1298
1710
|
'contactLastName'?: string;
|
|
1299
1711
|
}
|
|
1712
|
+
/**
|
|
1713
|
+
* Order Item Request
|
|
1714
|
+
* @export
|
|
1715
|
+
* @interface CustomerItemRequestDTO
|
|
1716
|
+
*/
|
|
1717
|
+
export interface CustomerItemRequestDTO {
|
|
1718
|
+
/**
|
|
1719
|
+
* SKU
|
|
1720
|
+
* @type {string}
|
|
1721
|
+
* @memberof CustomerItemRequestDTO
|
|
1722
|
+
*/
|
|
1723
|
+
'sku'?: string;
|
|
1724
|
+
/**
|
|
1725
|
+
* Quantity
|
|
1726
|
+
* @type {number}
|
|
1727
|
+
* @memberof CustomerItemRequestDTO
|
|
1728
|
+
*/
|
|
1729
|
+
'quantity'?: number;
|
|
1730
|
+
/**
|
|
1731
|
+
* ID
|
|
1732
|
+
* @type {number}
|
|
1733
|
+
* @memberof CustomerItemRequestDTO
|
|
1734
|
+
*/
|
|
1735
|
+
'id'?: number | null;
|
|
1736
|
+
/**
|
|
1737
|
+
* 3CX Licence Key
|
|
1738
|
+
* @type {string}
|
|
1739
|
+
* @memberof CustomerItemRequestDTO
|
|
1740
|
+
*/
|
|
1741
|
+
'licenceKey'?: string | null;
|
|
1742
|
+
/**
|
|
1743
|
+
* 3CX Hosting
|
|
1744
|
+
* @type {boolean}
|
|
1745
|
+
* @memberof CustomerItemRequestDTO
|
|
1746
|
+
*/
|
|
1747
|
+
'hosting'?: boolean | null;
|
|
1748
|
+
/**
|
|
1749
|
+
* Date Time
|
|
1750
|
+
* @type {string}
|
|
1751
|
+
* @memberof CustomerItemRequestDTO
|
|
1752
|
+
*/
|
|
1753
|
+
'processDate'?: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* 3CX Sales Code
|
|
1756
|
+
* @type {string}
|
|
1757
|
+
* @memberof CustomerItemRequestDTO
|
|
1758
|
+
*/
|
|
1759
|
+
'tcxSalesCode'?: string | null;
|
|
1760
|
+
/**
|
|
1761
|
+
* SBCS
|
|
1762
|
+
* @type {Array<TcxSbcDTO>}
|
|
1763
|
+
* @memberof CustomerItemRequestDTO
|
|
1764
|
+
*/
|
|
1765
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1766
|
+
}
|
|
1767
|
+
/**
|
|
1768
|
+
* Order Request
|
|
1769
|
+
* @export
|
|
1770
|
+
* @interface CustomerOrderRequestDTO
|
|
1771
|
+
*/
|
|
1772
|
+
export interface CustomerOrderRequestDTO {
|
|
1773
|
+
/**
|
|
1774
|
+
* Order Reference
|
|
1775
|
+
* @type {string}
|
|
1776
|
+
* @memberof CustomerOrderRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
'orderReference'?: string | null;
|
|
1779
|
+
/**
|
|
1780
|
+
* Items
|
|
1781
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1782
|
+
* @memberof CustomerOrderRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1785
|
+
/**
|
|
1786
|
+
*
|
|
1787
|
+
* @type {ShippingServiceDTO}
|
|
1788
|
+
* @memberof CustomerOrderRequestDTO
|
|
1789
|
+
*/
|
|
1790
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1791
|
+
/**
|
|
1792
|
+
* Provisioning URL
|
|
1793
|
+
* @type {string}
|
|
1794
|
+
* @memberof CustomerOrderRequestDTO
|
|
1795
|
+
*/
|
|
1796
|
+
'provisioningUrl'?: string | null;
|
|
1797
|
+
/**
|
|
1798
|
+
*
|
|
1799
|
+
* @type {AddressModel}
|
|
1800
|
+
* @memberof CustomerOrderRequestDTO
|
|
1801
|
+
*/
|
|
1802
|
+
'shippingAddress'?: AddressModel;
|
|
1803
|
+
/**
|
|
1804
|
+
* Part Ship Order
|
|
1805
|
+
* @type {boolean}
|
|
1806
|
+
* @memberof CustomerOrderRequestDTO
|
|
1807
|
+
*/
|
|
1808
|
+
'partShip'?: boolean;
|
|
1809
|
+
/**
|
|
1810
|
+
* Quote
|
|
1811
|
+
* @type {boolean}
|
|
1812
|
+
* @memberof CustomerOrderRequestDTO
|
|
1813
|
+
*/
|
|
1814
|
+
'quote'?: boolean;
|
|
1815
|
+
}
|
|
1300
1816
|
/**
|
|
1301
1817
|
* Customer Price List
|
|
1302
1818
|
* @export
|
|
@@ -1803,19 +2319,6 @@ export interface GenericFileModel {
|
|
|
1803
2319
|
*/
|
|
1804
2320
|
'type'?: string;
|
|
1805
2321
|
}
|
|
1806
|
-
/**
|
|
1807
|
-
*
|
|
1808
|
-
* @export
|
|
1809
|
-
* @interface GetGetPasswordHash200Response
|
|
1810
|
-
*/
|
|
1811
|
-
export interface GetGetPasswordHash200Response {
|
|
1812
|
-
/**
|
|
1813
|
-
*
|
|
1814
|
-
* @type {string}
|
|
1815
|
-
* @memberof GetGetPasswordHash200Response
|
|
1816
|
-
*/
|
|
1817
|
-
'hash'?: string;
|
|
1818
|
-
}
|
|
1819
2322
|
/**
|
|
1820
2323
|
*
|
|
1821
2324
|
* @export
|
|
@@ -2411,35 +2914,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2411
2914
|
*/
|
|
2412
2915
|
export interface ItemDTO {
|
|
2413
2916
|
/**
|
|
2414
|
-
*
|
|
2415
|
-
* @type {
|
|
2917
|
+
* SKU
|
|
2918
|
+
* @type {string}
|
|
2416
2919
|
* @memberof ItemDTO
|
|
2417
2920
|
*/
|
|
2418
|
-
'
|
|
2921
|
+
'sku'?: string;
|
|
2419
2922
|
/**
|
|
2420
|
-
*
|
|
2923
|
+
* Quantity
|
|
2421
2924
|
* @type {number}
|
|
2422
2925
|
* @memberof ItemDTO
|
|
2423
2926
|
*/
|
|
2424
|
-
'
|
|
2927
|
+
'quantity'?: number;
|
|
2425
2928
|
/**
|
|
2426
|
-
*
|
|
2427
|
-
* @type {
|
|
2929
|
+
* ID
|
|
2930
|
+
* @type {number}
|
|
2428
2931
|
* @memberof ItemDTO
|
|
2429
2932
|
*/
|
|
2430
|
-
'
|
|
2933
|
+
'id'?: number | null;
|
|
2431
2934
|
/**
|
|
2432
|
-
*
|
|
2433
|
-
* @type {
|
|
2935
|
+
* Order ID
|
|
2936
|
+
* @type {number}
|
|
2434
2937
|
* @memberof ItemDTO
|
|
2435
2938
|
*/
|
|
2436
|
-
'
|
|
2939
|
+
'orderId'?: number | null;
|
|
2437
2940
|
/**
|
|
2438
|
-
*
|
|
2439
|
-
* @type {
|
|
2941
|
+
* Title
|
|
2942
|
+
* @type {string}
|
|
2440
2943
|
* @memberof ItemDTO
|
|
2441
2944
|
*/
|
|
2442
|
-
'
|
|
2945
|
+
'title'?: string;
|
|
2443
2946
|
/**
|
|
2444
2947
|
* Price
|
|
2445
2948
|
* @type {number}
|
|
@@ -2464,6 +2967,12 @@ export interface ItemDTO {
|
|
|
2464
2967
|
* @memberof ItemDTO
|
|
2465
2968
|
*/
|
|
2466
2969
|
'processDate'?: string;
|
|
2970
|
+
/**
|
|
2971
|
+
* 3CX Hosting
|
|
2972
|
+
* @type {boolean}
|
|
2973
|
+
* @memberof ItemDTO
|
|
2974
|
+
*/
|
|
2975
|
+
'hosting'?: boolean | null;
|
|
2467
2976
|
/**
|
|
2468
2977
|
* Promo Item
|
|
2469
2978
|
* @type {boolean}
|
|
@@ -2475,7 +2984,25 @@ export interface ItemDTO {
|
|
|
2475
2984
|
* @type {number}
|
|
2476
2985
|
* @memberof ItemDTO
|
|
2477
2986
|
*/
|
|
2478
|
-
'refunded'?: number;
|
|
2987
|
+
'refunded'?: number | null;
|
|
2988
|
+
/**
|
|
2989
|
+
* SBCs
|
|
2990
|
+
* @type {Array<TcxSbcDTO>}
|
|
2991
|
+
* @memberof ItemDTO
|
|
2992
|
+
*/
|
|
2993
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2994
|
+
/**
|
|
2995
|
+
* Readonly
|
|
2996
|
+
* @type {boolean}
|
|
2997
|
+
* @memberof ItemDTO
|
|
2998
|
+
*/
|
|
2999
|
+
'readonly'?: boolean;
|
|
3000
|
+
/**
|
|
3001
|
+
* 3CX Sales Code
|
|
3002
|
+
* @type {string}
|
|
3003
|
+
* @memberof ItemDTO
|
|
3004
|
+
*/
|
|
3005
|
+
'tcxSalesCode'?: string | null;
|
|
2479
3006
|
}
|
|
2480
3007
|
/**
|
|
2481
3008
|
* ItemsEntity
|
|
@@ -2609,6 +3136,31 @@ export interface ItemEntity {
|
|
|
2609
3136
|
* @memberof ItemEntity
|
|
2610
3137
|
*/
|
|
2611
3138
|
'promoItem'?: number;
|
|
3139
|
+
/**
|
|
3140
|
+
* 3CX Sales Code
|
|
3141
|
+
* @type {string}
|
|
3142
|
+
* @memberof ItemEntity
|
|
3143
|
+
*/
|
|
3144
|
+
'tcxSalesCode'?: string | null;
|
|
3145
|
+
}
|
|
3146
|
+
/**
|
|
3147
|
+
* LinkedOrdersEntity
|
|
3148
|
+
* @export
|
|
3149
|
+
* @interface LinkedOrderEntity
|
|
3150
|
+
*/
|
|
3151
|
+
export interface LinkedOrderEntity {
|
|
3152
|
+
/**
|
|
3153
|
+
* orderId
|
|
3154
|
+
* @type {number}
|
|
3155
|
+
* @memberof LinkedOrderEntity
|
|
3156
|
+
*/
|
|
3157
|
+
'orderId'?: number;
|
|
3158
|
+
/**
|
|
3159
|
+
* linkedOrderId
|
|
3160
|
+
* @type {number}
|
|
3161
|
+
* @memberof LinkedOrderEntity
|
|
3162
|
+
*/
|
|
3163
|
+
'linkedOrderId'?: number;
|
|
2612
3164
|
}
|
|
2613
3165
|
/**
|
|
2614
3166
|
* MFA Required
|
|
@@ -3262,13 +3814,19 @@ export interface OrderSummaryDTO {
|
|
|
3262
3814
|
* @type {string}
|
|
3263
3815
|
* @memberof OrderSummaryDTO
|
|
3264
3816
|
*/
|
|
3265
|
-
'reference'?: string;
|
|
3817
|
+
'reference'?: string | null;
|
|
3266
3818
|
/**
|
|
3267
3819
|
* Invoice Number
|
|
3268
3820
|
* @type {string}
|
|
3269
3821
|
* @memberof OrderSummaryDTO
|
|
3270
3822
|
*/
|
|
3271
3823
|
'invoiceNumber'?: string;
|
|
3824
|
+
/**
|
|
3825
|
+
* Invoice ID
|
|
3826
|
+
* @type {string}
|
|
3827
|
+
* @memberof OrderSummaryDTO
|
|
3828
|
+
*/
|
|
3829
|
+
'invoiceId'?: string | null;
|
|
3272
3830
|
/**
|
|
3273
3831
|
* Date Time
|
|
3274
3832
|
* @type {string}
|
|
@@ -3323,6 +3881,24 @@ export interface OrderSummaryDTO {
|
|
|
3323
3881
|
* @memberof OrderSummaryDTO
|
|
3324
3882
|
*/
|
|
3325
3883
|
'fulfillable'?: boolean | null;
|
|
3884
|
+
/**
|
|
3885
|
+
* Provisioning URL
|
|
3886
|
+
* @type {string}
|
|
3887
|
+
* @memberof OrderSummaryDTO
|
|
3888
|
+
*/
|
|
3889
|
+
'provisioningUrl'?: string | null;
|
|
3890
|
+
/**
|
|
3891
|
+
*
|
|
3892
|
+
* @type {ShippingServiceDTO}
|
|
3893
|
+
* @memberof OrderSummaryDTO
|
|
3894
|
+
*/
|
|
3895
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
3896
|
+
/**
|
|
3897
|
+
* Readonly
|
|
3898
|
+
* @type {boolean}
|
|
3899
|
+
* @memberof OrderSummaryDTO
|
|
3900
|
+
*/
|
|
3901
|
+
'readonly'?: boolean;
|
|
3326
3902
|
}
|
|
3327
3903
|
/**
|
|
3328
3904
|
* Order Totals
|
|
@@ -3372,6 +3948,12 @@ export interface OrderTotalModel {
|
|
|
3372
3948
|
* @memberof OrderTotalModel
|
|
3373
3949
|
*/
|
|
3374
3950
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3951
|
+
/**
|
|
3952
|
+
* Delivery
|
|
3953
|
+
* @type {number}
|
|
3954
|
+
* @memberof OrderTotalModel
|
|
3955
|
+
*/
|
|
3956
|
+
'delivery'?: number | null;
|
|
3375
3957
|
}
|
|
3376
3958
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3377
3959
|
readonly Eur: "EUR";
|
|
@@ -3750,6 +4332,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3750
4332
|
*/
|
|
3751
4333
|
'scopes'?: Array<string>;
|
|
3752
4334
|
}
|
|
4335
|
+
/**
|
|
4336
|
+
*
|
|
4337
|
+
* @export
|
|
4338
|
+
* @interface PostGetProductForCustomerRequest
|
|
4339
|
+
*/
|
|
4340
|
+
export interface PostGetProductForCustomerRequest {
|
|
4341
|
+
/**
|
|
4342
|
+
* Quantity
|
|
4343
|
+
* @type {number}
|
|
4344
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4345
|
+
*/
|
|
4346
|
+
'quantity'?: number | null;
|
|
4347
|
+
/**
|
|
4348
|
+
* 3CX Licence Key
|
|
4349
|
+
* @type {string}
|
|
4350
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4351
|
+
*/
|
|
4352
|
+
'licenceKey'?: string | null;
|
|
4353
|
+
/**
|
|
4354
|
+
* 3CX Hosting
|
|
4355
|
+
* @type {boolean}
|
|
4356
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4357
|
+
*/
|
|
4358
|
+
'hosting'?: boolean | null;
|
|
4359
|
+
}
|
|
3753
4360
|
/**
|
|
3754
4361
|
* Price & Stock List
|
|
3755
4362
|
* @export
|
|
@@ -3838,10 +4445,10 @@ export interface PrizesEntity {
|
|
|
3838
4445
|
export interface ProductSearchResultsModel {
|
|
3839
4446
|
/**
|
|
3840
4447
|
* Results
|
|
3841
|
-
* @type {Array<
|
|
4448
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3842
4449
|
* @memberof ProductSearchResultsModel
|
|
3843
4450
|
*/
|
|
3844
|
-
'results'?: Array<
|
|
4451
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3845
4452
|
}
|
|
3846
4453
|
/**
|
|
3847
4454
|
* Product Serial Info
|
|
@@ -3877,45 +4484,51 @@ export interface ProductSerialInfoModel {
|
|
|
3877
4484
|
/**
|
|
3878
4485
|
* Product Summary
|
|
3879
4486
|
* @export
|
|
3880
|
-
* @interface
|
|
4487
|
+
* @interface ProductSummaryDTO
|
|
3881
4488
|
*/
|
|
3882
|
-
export interface
|
|
4489
|
+
export interface ProductSummaryDTO {
|
|
3883
4490
|
/**
|
|
3884
4491
|
* SKU
|
|
3885
4492
|
* @type {string}
|
|
3886
|
-
* @memberof
|
|
4493
|
+
* @memberof ProductSummaryDTO
|
|
3887
4494
|
*/
|
|
3888
4495
|
'sku'?: string;
|
|
3889
4496
|
/**
|
|
3890
4497
|
* Title
|
|
3891
4498
|
* @type {string}
|
|
3892
|
-
* @memberof
|
|
4499
|
+
* @memberof ProductSummaryDTO
|
|
3893
4500
|
*/
|
|
3894
4501
|
'title'?: string;
|
|
3895
4502
|
/**
|
|
3896
4503
|
* Stock Quantity
|
|
3897
4504
|
* @type {number}
|
|
3898
|
-
* @memberof
|
|
4505
|
+
* @memberof ProductSummaryDTO
|
|
3899
4506
|
*/
|
|
3900
4507
|
'quantity'?: number | null;
|
|
3901
4508
|
/**
|
|
3902
4509
|
* Stock Product
|
|
3903
4510
|
* @type {boolean}
|
|
3904
|
-
* @memberof
|
|
4511
|
+
* @memberof ProductSummaryDTO
|
|
3905
4512
|
*/
|
|
3906
4513
|
'stockProduct'?: boolean;
|
|
3907
4514
|
/**
|
|
3908
4515
|
* Price
|
|
3909
4516
|
* @type {number}
|
|
3910
|
-
* @memberof
|
|
4517
|
+
* @memberof ProductSummaryDTO
|
|
3911
4518
|
*/
|
|
3912
4519
|
'price'?: number | null;
|
|
3913
4520
|
/**
|
|
3914
4521
|
* Carton Size
|
|
3915
4522
|
* @type {number}
|
|
3916
|
-
* @memberof
|
|
4523
|
+
* @memberof ProductSummaryDTO
|
|
3917
4524
|
*/
|
|
3918
4525
|
'cartonSize'?: number | null;
|
|
4526
|
+
/**
|
|
4527
|
+
* RRP Price
|
|
4528
|
+
* @type {number}
|
|
4529
|
+
* @memberof ProductSummaryDTO
|
|
4530
|
+
*/
|
|
4531
|
+
'rrp'?: number | null;
|
|
3919
4532
|
}
|
|
3920
4533
|
/**
|
|
3921
4534
|
* PromoCodesEntity
|
|
@@ -4054,37 +4667,37 @@ export interface PromoItemsEntity {
|
|
|
4054
4667
|
/**
|
|
4055
4668
|
* Provisioning Group
|
|
4056
4669
|
* @export
|
|
4057
|
-
* @interface
|
|
4670
|
+
* @interface ProvisioningModel
|
|
4058
4671
|
*/
|
|
4059
|
-
export interface
|
|
4672
|
+
export interface ProvisioningModel {
|
|
4060
4673
|
/**
|
|
4061
4674
|
* Provisioning Group Name
|
|
4062
4675
|
* @type {string}
|
|
4063
|
-
* @memberof
|
|
4676
|
+
* @memberof ProvisioningModel
|
|
4064
4677
|
*/
|
|
4065
4678
|
'groupName'?: string;
|
|
4066
4679
|
/**
|
|
4067
4680
|
* Provisioning URL (Static Provisioning Server)
|
|
4068
4681
|
* @type {string}
|
|
4069
|
-
* @memberof
|
|
4682
|
+
* @memberof ProvisioningModel
|
|
4070
4683
|
*/
|
|
4071
4684
|
'provisioningUrl'?: string;
|
|
4072
4685
|
/**
|
|
4073
4686
|
* Additional Authentication Secret
|
|
4074
4687
|
* @type {string}
|
|
4075
|
-
* @memberof
|
|
4688
|
+
* @memberof ProvisioningModel
|
|
4076
4689
|
*/
|
|
4077
4690
|
'auth'?: string;
|
|
4078
4691
|
/**
|
|
4079
4692
|
* Provisioning Group ID
|
|
4080
4693
|
* @type {number}
|
|
4081
|
-
* @memberof
|
|
4694
|
+
* @memberof ProvisioningModel
|
|
4082
4695
|
*/
|
|
4083
4696
|
'id'?: number;
|
|
4084
4697
|
/**
|
|
4085
4698
|
* Owner ID
|
|
4086
4699
|
* @type {number}
|
|
4087
|
-
* @memberof
|
|
4700
|
+
* @memberof ProvisioningModel
|
|
4088
4701
|
*/
|
|
4089
4702
|
'customerId'?: number;
|
|
4090
4703
|
}
|
|
@@ -4438,7 +5051,7 @@ export interface ShipmentEntity {
|
|
|
4438
5051
|
* @type {string}
|
|
4439
5052
|
* @memberof ShipmentEntity
|
|
4440
5053
|
*/
|
|
4441
|
-
'
|
|
5054
|
+
'dateShipped'?: string;
|
|
4442
5055
|
/**
|
|
4443
5056
|
* requestDate
|
|
4444
5057
|
* @type {string}
|
|
@@ -4489,6 +5102,149 @@ export interface ShipmentItemEntity {
|
|
|
4489
5102
|
*/
|
|
4490
5103
|
'itemId'?: string;
|
|
4491
5104
|
}
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @export
|
|
5108
|
+
* @interface ShippingConsignmentModel
|
|
5109
|
+
*/
|
|
5110
|
+
export interface ShippingConsignmentModel {
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @type {ShippingServiceModel}
|
|
5114
|
+
* @memberof ShippingConsignmentModel
|
|
5115
|
+
*/
|
|
5116
|
+
'service'?: ShippingServiceModel;
|
|
5117
|
+
/**
|
|
5118
|
+
* ID/Number
|
|
5119
|
+
* @type {string}
|
|
5120
|
+
* @memberof ShippingConsignmentModel
|
|
5121
|
+
*/
|
|
5122
|
+
'id'?: string;
|
|
5123
|
+
/**
|
|
5124
|
+
* Tracking Number
|
|
5125
|
+
* @type {string}
|
|
5126
|
+
* @memberof ShippingConsignmentModel
|
|
5127
|
+
*/
|
|
5128
|
+
'trackingNumber'?: string;
|
|
5129
|
+
/**
|
|
5130
|
+
* Parcels
|
|
5131
|
+
* @type {Array<string>}
|
|
5132
|
+
* @memberof ShippingConsignmentModel
|
|
5133
|
+
*/
|
|
5134
|
+
'parcelIds'?: Array<string>;
|
|
5135
|
+
}
|
|
5136
|
+
/**
|
|
5137
|
+
* Shipping Information
|
|
5138
|
+
* @export
|
|
5139
|
+
* @interface ShippingInformationDTO
|
|
5140
|
+
*/
|
|
5141
|
+
export interface ShippingInformationDTO {
|
|
5142
|
+
/**
|
|
5143
|
+
* Items
|
|
5144
|
+
* @type {Array<BasicItemDTO>}
|
|
5145
|
+
* @memberof ShippingInformationDTO
|
|
5146
|
+
*/
|
|
5147
|
+
'items'?: Array<BasicItemDTO>;
|
|
5148
|
+
/**
|
|
5149
|
+
* Destination Post Code
|
|
5150
|
+
* @type {string}
|
|
5151
|
+
* @memberof ShippingInformationDTO
|
|
5152
|
+
*/
|
|
5153
|
+
'postalCode'?: string;
|
|
5154
|
+
/**
|
|
5155
|
+
* Destination ISO
|
|
5156
|
+
* @type {string}
|
|
5157
|
+
* @memberof ShippingInformationDTO
|
|
5158
|
+
*/
|
|
5159
|
+
'iso'?: string;
|
|
5160
|
+
}
|
|
5161
|
+
/**
|
|
5162
|
+
* Shipping Service
|
|
5163
|
+
* @export
|
|
5164
|
+
* @interface ShippingServiceDTO
|
|
5165
|
+
*/
|
|
5166
|
+
export interface ShippingServiceDTO {
|
|
5167
|
+
/**
|
|
5168
|
+
* Courier
|
|
5169
|
+
* @type {string}
|
|
5170
|
+
* @memberof ShippingServiceDTO
|
|
5171
|
+
*/
|
|
5172
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5173
|
+
/**
|
|
5174
|
+
* Service Name
|
|
5175
|
+
* @type {string}
|
|
5176
|
+
* @memberof ShippingServiceDTO
|
|
5177
|
+
*/
|
|
5178
|
+
'serviceName'?: string;
|
|
5179
|
+
}
|
|
5180
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5181
|
+
readonly Dpd: "DPD";
|
|
5182
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5183
|
+
readonly Pops: "POPS";
|
|
5184
|
+
};
|
|
5185
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5186
|
+
/**
|
|
5187
|
+
* Shipping Service
|
|
5188
|
+
* @export
|
|
5189
|
+
* @interface ShippingServiceModel
|
|
5190
|
+
*/
|
|
5191
|
+
export interface ShippingServiceModel {
|
|
5192
|
+
/**
|
|
5193
|
+
* Courier
|
|
5194
|
+
* @type {string}
|
|
5195
|
+
* @memberof ShippingServiceModel
|
|
5196
|
+
*/
|
|
5197
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5198
|
+
/**
|
|
5199
|
+
* Code
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof ShippingServiceModel
|
|
5202
|
+
*/
|
|
5203
|
+
'code'?: string;
|
|
5204
|
+
/**
|
|
5205
|
+
* Name
|
|
5206
|
+
* @type {string}
|
|
5207
|
+
* @memberof ShippingServiceModel
|
|
5208
|
+
*/
|
|
5209
|
+
'name'?: string;
|
|
5210
|
+
/**
|
|
5211
|
+
* Description
|
|
5212
|
+
* @type {string}
|
|
5213
|
+
* @memberof ShippingServiceModel
|
|
5214
|
+
*/
|
|
5215
|
+
'description'?: string;
|
|
5216
|
+
/**
|
|
5217
|
+
* Label
|
|
5218
|
+
* @type {string}
|
|
5219
|
+
* @memberof ShippingServiceModel
|
|
5220
|
+
*/
|
|
5221
|
+
'label'?: string | null;
|
|
5222
|
+
/**
|
|
5223
|
+
* Price
|
|
5224
|
+
* @type {number}
|
|
5225
|
+
* @memberof ShippingServiceModel
|
|
5226
|
+
*/
|
|
5227
|
+
'price'?: number | null;
|
|
5228
|
+
}
|
|
5229
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5230
|
+
readonly Dpd: "DPD";
|
|
5231
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5232
|
+
readonly Pops: "POPS";
|
|
5233
|
+
};
|
|
5234
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5235
|
+
/**
|
|
5236
|
+
*
|
|
5237
|
+
* @export
|
|
5238
|
+
* @interface ShippingServicesModel
|
|
5239
|
+
*/
|
|
5240
|
+
export interface ShippingServicesModel {
|
|
5241
|
+
/**
|
|
5242
|
+
* Services
|
|
5243
|
+
* @type {Array<ShippingServiceModel>}
|
|
5244
|
+
* @memberof ShippingServicesModel
|
|
5245
|
+
*/
|
|
5246
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5247
|
+
}
|
|
4492
5248
|
/**
|
|
4493
5249
|
* Change Response
|
|
4494
5250
|
* @export
|
|
@@ -7308,6 +8064,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7308
8064
|
*/
|
|
7309
8065
|
'secretAccessKey'?: string;
|
|
7310
8066
|
}
|
|
8067
|
+
/**
|
|
8068
|
+
* SBC Data
|
|
8069
|
+
* @export
|
|
8070
|
+
* @interface TcxSbcDTO
|
|
8071
|
+
*/
|
|
8072
|
+
export interface TcxSbcDTO {
|
|
8073
|
+
/**
|
|
8074
|
+
* LAN IP Address
|
|
8075
|
+
* @type {string}
|
|
8076
|
+
* @memberof TcxSbcDTO
|
|
8077
|
+
*/
|
|
8078
|
+
'ipAddress'?: string;
|
|
8079
|
+
/**
|
|
8080
|
+
* LAN Default Gateway
|
|
8081
|
+
* @type {string}
|
|
8082
|
+
* @memberof TcxSbcDTO
|
|
8083
|
+
*/
|
|
8084
|
+
'defaultGateway'?: string;
|
|
8085
|
+
/**
|
|
8086
|
+
* LAN Subnet Mask
|
|
8087
|
+
* @type {string}
|
|
8088
|
+
* @memberof TcxSbcDTO
|
|
8089
|
+
*/
|
|
8090
|
+
'netmask'?: string;
|
|
8091
|
+
/**
|
|
8092
|
+
* DNS
|
|
8093
|
+
* @type {string}
|
|
8094
|
+
* @memberof TcxSbcDTO
|
|
8095
|
+
*/
|
|
8096
|
+
'dns'?: string;
|
|
8097
|
+
/**
|
|
8098
|
+
* 3CX URL
|
|
8099
|
+
* @type {string}
|
|
8100
|
+
* @memberof TcxSbcDTO
|
|
8101
|
+
*/
|
|
8102
|
+
'tcxUrl'?: string;
|
|
8103
|
+
/**
|
|
8104
|
+
* 3CX SBC Key
|
|
8105
|
+
* @type {string}
|
|
8106
|
+
* @memberof TcxSbcDTO
|
|
8107
|
+
*/
|
|
8108
|
+
'tcxKey'?: string;
|
|
8109
|
+
}
|
|
7311
8110
|
/**
|
|
7312
8111
|
* 3CX Wizard SBC
|
|
7313
8112
|
* @export
|
|
@@ -7412,7 +8211,7 @@ export interface TcxSbcEntity {
|
|
|
7412
8211
|
'technicalContact'?: string;
|
|
7413
8212
|
}
|
|
7414
8213
|
/**
|
|
7415
|
-
* 3CX SBC
|
|
8214
|
+
* 3CX Wizard SBC
|
|
7416
8215
|
* @export
|
|
7417
8216
|
* @interface TcxSbcModel
|
|
7418
8217
|
*/
|
|
@@ -8490,6 +9289,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8490
9289
|
* @throws {RequiredError}
|
|
8491
9290
|
*/
|
|
8492
9291
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9292
|
+
/**
|
|
9293
|
+
* Get Account Detailed Summary
|
|
9294
|
+
* @summary Get Account Detailed Summary
|
|
9295
|
+
* @param {number} id Customer ID
|
|
9296
|
+
* @param {*} [options] Override http request option.
|
|
9297
|
+
* @throws {RequiredError}
|
|
9298
|
+
*/
|
|
9299
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8493
9300
|
/**
|
|
8494
9301
|
* Get Accounts
|
|
8495
9302
|
* @summary Get Accounts
|
|
@@ -8555,6 +9362,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8555
9362
|
* @throws {RequiredError}
|
|
8556
9363
|
*/
|
|
8557
9364
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9365
|
+
/**
|
|
9366
|
+
* Get Admin Account
|
|
9367
|
+
* @summary Get Admin Account
|
|
9368
|
+
* @param {*} [options] Override http request option.
|
|
9369
|
+
* @throws {RequiredError}
|
|
9370
|
+
*/
|
|
9371
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8558
9372
|
/**
|
|
8559
9373
|
* Create client credentials
|
|
8560
9374
|
* @summary Create client credentials
|
|
@@ -8635,6 +9449,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8635
9449
|
* @throws {RequiredError}
|
|
8636
9450
|
*/
|
|
8637
9451
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9452
|
+
/**
|
|
9453
|
+
* Get Account Detailed Summary
|
|
9454
|
+
* @summary Get Account Detailed Summary
|
|
9455
|
+
* @param {number} id Customer ID
|
|
9456
|
+
* @param {*} [options] Override http request option.
|
|
9457
|
+
* @throws {RequiredError}
|
|
9458
|
+
*/
|
|
9459
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8638
9460
|
/**
|
|
8639
9461
|
* Get Accounts
|
|
8640
9462
|
* @summary Get Accounts
|
|
@@ -8700,6 +9522,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8700
9522
|
* @throws {RequiredError}
|
|
8701
9523
|
*/
|
|
8702
9524
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9525
|
+
/**
|
|
9526
|
+
* Get Admin Account
|
|
9527
|
+
* @summary Get Admin Account
|
|
9528
|
+
* @param {*} [options] Override http request option.
|
|
9529
|
+
* @throws {RequiredError}
|
|
9530
|
+
*/
|
|
9531
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8703
9532
|
/**
|
|
8704
9533
|
* Create client credentials
|
|
8705
9534
|
* @summary Create client credentials
|
|
@@ -8780,6 +9609,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8780
9609
|
* @throws {RequiredError}
|
|
8781
9610
|
*/
|
|
8782
9611
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9612
|
+
/**
|
|
9613
|
+
* Get Account Detailed Summary
|
|
9614
|
+
* @summary Get Account Detailed Summary
|
|
9615
|
+
* @param {number} id Customer ID
|
|
9616
|
+
* @param {*} [options] Override http request option.
|
|
9617
|
+
* @throws {RequiredError}
|
|
9618
|
+
*/
|
|
9619
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8783
9620
|
/**
|
|
8784
9621
|
* Get Accounts
|
|
8785
9622
|
* @summary Get Accounts
|
|
@@ -8845,6 +9682,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8845
9682
|
* @throws {RequiredError}
|
|
8846
9683
|
*/
|
|
8847
9684
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9685
|
+
/**
|
|
9686
|
+
* Get Admin Account
|
|
9687
|
+
* @summary Get Admin Account
|
|
9688
|
+
* @param {*} [options] Override http request option.
|
|
9689
|
+
* @throws {RequiredError}
|
|
9690
|
+
*/
|
|
9691
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8848
9692
|
/**
|
|
8849
9693
|
* Create client credentials
|
|
8850
9694
|
* @summary Create client credentials
|
|
@@ -8923,14 +9767,23 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8923
9767
|
*/
|
|
8924
9768
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
8925
9769
|
/**
|
|
8926
|
-
* Get Account Contacts
|
|
8927
|
-
* @summary Get Account Contacts
|
|
8928
|
-
* @param {string} [email] Contact Email Address
|
|
9770
|
+
* Get Account Contacts
|
|
9771
|
+
* @summary Get Account Contacts
|
|
9772
|
+
* @param {string} [email] Contact Email Address
|
|
9773
|
+
* @param {*} [options] Override http request option.
|
|
9774
|
+
* @throws {RequiredError}
|
|
9775
|
+
* @memberof AccountsApi
|
|
9776
|
+
*/
|
|
9777
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9778
|
+
/**
|
|
9779
|
+
* Get Account Detailed Summary
|
|
9780
|
+
* @summary Get Account Detailed Summary
|
|
9781
|
+
* @param {number} id Customer ID
|
|
8929
9782
|
* @param {*} [options] Override http request option.
|
|
8930
9783
|
* @throws {RequiredError}
|
|
8931
9784
|
* @memberof AccountsApi
|
|
8932
9785
|
*/
|
|
8933
|
-
|
|
9786
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
8934
9787
|
/**
|
|
8935
9788
|
* Get Accounts
|
|
8936
9789
|
* @summary Get Accounts
|
|
@@ -9004,6 +9857,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9004
9857
|
* @memberof AccountsApi
|
|
9005
9858
|
*/
|
|
9006
9859
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9860
|
+
/**
|
|
9861
|
+
* Get Admin Account
|
|
9862
|
+
* @summary Get Admin Account
|
|
9863
|
+
* @param {*} [options] Override http request option.
|
|
9864
|
+
* @throws {RequiredError}
|
|
9865
|
+
* @memberof AccountsApi
|
|
9866
|
+
*/
|
|
9867
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9007
9868
|
/**
|
|
9008
9869
|
* Create client credentials
|
|
9009
9870
|
* @summary Create client credentials
|
|
@@ -9066,14 +9927,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9066
9927
|
* @throws {RequiredError}
|
|
9067
9928
|
*/
|
|
9068
9929
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9069
|
-
/**
|
|
9070
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9071
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9072
|
-
* @param {string} password Desired 3CX web access password
|
|
9073
|
-
* @param {*} [options] Override http request option.
|
|
9074
|
-
* @throws {RequiredError}
|
|
9075
|
-
*/
|
|
9076
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9077
9930
|
/**
|
|
9078
9931
|
* Get Bulk 3CX Licence Details
|
|
9079
9932
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9096,14 +9949,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9096
9949
|
* @throws {RequiredError}
|
|
9097
9950
|
*/
|
|
9098
9951
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9099
|
-
/**
|
|
9100
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9101
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9102
|
-
* @param {string} password Desired 3CX web access password
|
|
9103
|
-
* @param {*} [options] Override http request option.
|
|
9104
|
-
* @throws {RequiredError}
|
|
9105
|
-
*/
|
|
9106
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9107
9952
|
/**
|
|
9108
9953
|
* Get Bulk 3CX Licence Details
|
|
9109
9954
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9126,14 +9971,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9126
9971
|
* @throws {RequiredError}
|
|
9127
9972
|
*/
|
|
9128
9973
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9129
|
-
/**
|
|
9130
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9131
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9132
|
-
* @param {string} password Desired 3CX web access password
|
|
9133
|
-
* @param {*} [options] Override http request option.
|
|
9134
|
-
* @throws {RequiredError}
|
|
9135
|
-
*/
|
|
9136
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9137
9974
|
/**
|
|
9138
9975
|
* Get Bulk 3CX Licence Details
|
|
9139
9976
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9159,15 +9996,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9159
9996
|
* @memberof Class3CXApi
|
|
9160
9997
|
*/
|
|
9161
9998
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9162
|
-
/**
|
|
9163
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9164
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9165
|
-
* @param {string} password Desired 3CX web access password
|
|
9166
|
-
* @param {*} [options] Override http request option.
|
|
9167
|
-
* @throws {RequiredError}
|
|
9168
|
-
* @memberof Class3CXApi
|
|
9169
|
-
*/
|
|
9170
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9171
9999
|
/**
|
|
9172
10000
|
* Get Bulk 3CX Licence Details
|
|
9173
10001
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11697,11 +12525,19 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11697
12525
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11698
12526
|
/**
|
|
11699
12527
|
* Delete Orders
|
|
12528
|
+
* @summary Delete Orders
|
|
12529
|
+
* @param {number} id Order ID
|
|
12530
|
+
* @param {*} [options] Override http request option.
|
|
12531
|
+
* @throws {RequiredError}
|
|
12532
|
+
*/
|
|
12533
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12534
|
+
/**
|
|
12535
|
+
* Get Editable Order
|
|
11700
12536
|
* @param {number} id Order ID
|
|
11701
12537
|
* @param {*} [options] Override http request option.
|
|
11702
12538
|
* @throws {RequiredError}
|
|
11703
12539
|
*/
|
|
11704
|
-
|
|
12540
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11705
12541
|
/**
|
|
11706
12542
|
* Get Orders
|
|
11707
12543
|
* @summary Get Orders
|
|
@@ -11716,6 +12552,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11716
12552
|
* @throws {RequiredError}
|
|
11717
12553
|
*/
|
|
11718
12554
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12555
|
+
/**
|
|
12556
|
+
* Create An Order (Admin)
|
|
12557
|
+
* @summary Create An Order (Admin)
|
|
12558
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12559
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12560
|
+
* @param {*} [options] Override http request option.
|
|
12561
|
+
* @throws {RequiredError}
|
|
12562
|
+
*/
|
|
12563
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12564
|
+
/**
|
|
12565
|
+
* Create An Order
|
|
12566
|
+
* @summary Create An Order
|
|
12567
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12568
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12569
|
+
* @param {*} [options] Override http request option.
|
|
12570
|
+
* @throws {RequiredError}
|
|
12571
|
+
*/
|
|
12572
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12573
|
+
/**
|
|
12574
|
+
* Update An Order (Admin)
|
|
12575
|
+
* @summary Update An Order (Admin)
|
|
12576
|
+
* @param {number} id Order ID
|
|
12577
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12578
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12579
|
+
* @param {*} [options] Override http request option.
|
|
12580
|
+
* @throws {RequiredError}
|
|
12581
|
+
*/
|
|
12582
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12583
|
+
/**
|
|
12584
|
+
* Update An Order
|
|
12585
|
+
* @summary Update An Order
|
|
12586
|
+
* @param {number} id Order ID
|
|
12587
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12588
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12589
|
+
* @param {*} [options] Override http request option.
|
|
12590
|
+
* @throws {RequiredError}
|
|
12591
|
+
*/
|
|
12592
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11719
12593
|
};
|
|
11720
12594
|
/**
|
|
11721
12595
|
* OrdersApi - functional programming interface
|
|
@@ -11724,11 +12598,19 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11724
12598
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11725
12599
|
/**
|
|
11726
12600
|
* Delete Orders
|
|
12601
|
+
* @summary Delete Orders
|
|
12602
|
+
* @param {number} id Order ID
|
|
12603
|
+
* @param {*} [options] Override http request option.
|
|
12604
|
+
* @throws {RequiredError}
|
|
12605
|
+
*/
|
|
12606
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12607
|
+
/**
|
|
12608
|
+
* Get Editable Order
|
|
11727
12609
|
* @param {number} id Order ID
|
|
11728
12610
|
* @param {*} [options] Override http request option.
|
|
11729
12611
|
* @throws {RequiredError}
|
|
11730
12612
|
*/
|
|
11731
|
-
|
|
12613
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummaryDTO>>;
|
|
11732
12614
|
/**
|
|
11733
12615
|
* Get Orders
|
|
11734
12616
|
* @summary Get Orders
|
|
@@ -11743,6 +12625,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11743
12625
|
* @throws {RequiredError}
|
|
11744
12626
|
*/
|
|
11745
12627
|
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>>;
|
|
12628
|
+
/**
|
|
12629
|
+
* Create An Order (Admin)
|
|
12630
|
+
* @summary Create An Order (Admin)
|
|
12631
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12632
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12633
|
+
* @param {*} [options] Override http request option.
|
|
12634
|
+
* @throws {RequiredError}
|
|
12635
|
+
*/
|
|
12636
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12637
|
+
/**
|
|
12638
|
+
* Create An Order
|
|
12639
|
+
* @summary Create An Order
|
|
12640
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12641
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12642
|
+
* @param {*} [options] Override http request option.
|
|
12643
|
+
* @throws {RequiredError}
|
|
12644
|
+
*/
|
|
12645
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12646
|
+
/**
|
|
12647
|
+
* Update An Order (Admin)
|
|
12648
|
+
* @summary Update An Order (Admin)
|
|
12649
|
+
* @param {number} id Order ID
|
|
12650
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12651
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12652
|
+
* @param {*} [options] Override http request option.
|
|
12653
|
+
* @throws {RequiredError}
|
|
12654
|
+
*/
|
|
12655
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12656
|
+
/**
|
|
12657
|
+
* Update An Order
|
|
12658
|
+
* @summary Update An Order
|
|
12659
|
+
* @param {number} id Order ID
|
|
12660
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12661
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12662
|
+
* @param {*} [options] Override http request option.
|
|
12663
|
+
* @throws {RequiredError}
|
|
12664
|
+
*/
|
|
12665
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11746
12666
|
};
|
|
11747
12667
|
/**
|
|
11748
12668
|
* OrdersApi - factory interface
|
|
@@ -11751,11 +12671,19 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11751
12671
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11752
12672
|
/**
|
|
11753
12673
|
* Delete Orders
|
|
12674
|
+
* @summary Delete Orders
|
|
11754
12675
|
* @param {number} id Order ID
|
|
11755
12676
|
* @param {*} [options] Override http request option.
|
|
11756
12677
|
* @throws {RequiredError}
|
|
11757
12678
|
*/
|
|
11758
|
-
|
|
12679
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12680
|
+
/**
|
|
12681
|
+
* Get Editable Order
|
|
12682
|
+
* @param {number} id Order ID
|
|
12683
|
+
* @param {*} [options] Override http request option.
|
|
12684
|
+
* @throws {RequiredError}
|
|
12685
|
+
*/
|
|
12686
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11759
12687
|
/**
|
|
11760
12688
|
* Get Orders
|
|
11761
12689
|
* @summary Get Orders
|
|
@@ -11770,6 +12698,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11770
12698
|
* @throws {RequiredError}
|
|
11771
12699
|
*/
|
|
11772
12700
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12701
|
+
/**
|
|
12702
|
+
* Create An Order (Admin)
|
|
12703
|
+
* @summary Create An Order (Admin)
|
|
12704
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12705
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12706
|
+
* @param {*} [options] Override http request option.
|
|
12707
|
+
* @throws {RequiredError}
|
|
12708
|
+
*/
|
|
12709
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12710
|
+
/**
|
|
12711
|
+
* Create An Order
|
|
12712
|
+
* @summary Create An Order
|
|
12713
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12714
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12715
|
+
* @param {*} [options] Override http request option.
|
|
12716
|
+
* @throws {RequiredError}
|
|
12717
|
+
*/
|
|
12718
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12719
|
+
/**
|
|
12720
|
+
* Update An Order (Admin)
|
|
12721
|
+
* @summary Update An Order (Admin)
|
|
12722
|
+
* @param {number} id Order ID
|
|
12723
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12724
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12725
|
+
* @param {*} [options] Override http request option.
|
|
12726
|
+
* @throws {RequiredError}
|
|
12727
|
+
*/
|
|
12728
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12729
|
+
/**
|
|
12730
|
+
* Update An Order
|
|
12731
|
+
* @summary Update An Order
|
|
12732
|
+
* @param {number} id Order ID
|
|
12733
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12734
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12735
|
+
* @param {*} [options] Override http request option.
|
|
12736
|
+
* @throws {RequiredError}
|
|
12737
|
+
*/
|
|
12738
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11773
12739
|
};
|
|
11774
12740
|
/**
|
|
11775
12741
|
* OrdersApi - object-oriented interface
|
|
@@ -11780,12 +12746,21 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11780
12746
|
export declare class OrdersApi extends BaseAPI {
|
|
11781
12747
|
/**
|
|
11782
12748
|
* Delete Orders
|
|
12749
|
+
* @summary Delete Orders
|
|
12750
|
+
* @param {number} id Order ID
|
|
12751
|
+
* @param {*} [options] Override http request option.
|
|
12752
|
+
* @throws {RequiredError}
|
|
12753
|
+
* @memberof OrdersApi
|
|
12754
|
+
*/
|
|
12755
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12756
|
+
/**
|
|
12757
|
+
* Get Editable Order
|
|
11783
12758
|
* @param {number} id Order ID
|
|
11784
12759
|
* @param {*} [options] Override http request option.
|
|
11785
12760
|
* @throws {RequiredError}
|
|
11786
12761
|
* @memberof OrdersApi
|
|
11787
12762
|
*/
|
|
11788
|
-
|
|
12763
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO, any, {}>>;
|
|
11789
12764
|
/**
|
|
11790
12765
|
* Get Orders
|
|
11791
12766
|
* @summary Get Orders
|
|
@@ -11801,6 +12776,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11801
12776
|
* @memberof OrdersApi
|
|
11802
12777
|
*/
|
|
11803
12778
|
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, {}>>;
|
|
12779
|
+
/**
|
|
12780
|
+
* Create An Order (Admin)
|
|
12781
|
+
* @summary Create An Order (Admin)
|
|
12782
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12783
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12784
|
+
* @param {*} [options] Override http request option.
|
|
12785
|
+
* @throws {RequiredError}
|
|
12786
|
+
* @memberof OrdersApi
|
|
12787
|
+
*/
|
|
12788
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12789
|
+
/**
|
|
12790
|
+
* Create An Order
|
|
12791
|
+
* @summary Create An Order
|
|
12792
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12793
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12794
|
+
* @param {*} [options] Override http request option.
|
|
12795
|
+
* @throws {RequiredError}
|
|
12796
|
+
* @memberof OrdersApi
|
|
12797
|
+
*/
|
|
12798
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12799
|
+
/**
|
|
12800
|
+
* Update An Order (Admin)
|
|
12801
|
+
* @summary Update An Order (Admin)
|
|
12802
|
+
* @param {number} id Order ID
|
|
12803
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12804
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12805
|
+
* @param {*} [options] Override http request option.
|
|
12806
|
+
* @throws {RequiredError}
|
|
12807
|
+
* @memberof OrdersApi
|
|
12808
|
+
*/
|
|
12809
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12810
|
+
/**
|
|
12811
|
+
* Update An Order
|
|
12812
|
+
* @summary Update An Order
|
|
12813
|
+
* @param {number} id Order ID
|
|
12814
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12815
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12816
|
+
* @param {*} [options] Override http request option.
|
|
12817
|
+
* @throws {RequiredError}
|
|
12818
|
+
* @memberof OrdersApi
|
|
12819
|
+
*/
|
|
12820
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11804
12821
|
}
|
|
11805
12822
|
/**
|
|
11806
12823
|
* @export
|
|
@@ -12056,13 +13073,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12056
13073
|
* @throws {RequiredError}
|
|
12057
13074
|
*/
|
|
12058
13075
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12059
|
-
/**
|
|
12060
|
-
* Get Customer Price Lists
|
|
12061
|
-
* @summary Get Customer Price Lists
|
|
12062
|
-
* @param {*} [options] Override http request option.
|
|
12063
|
-
* @throws {RequiredError}
|
|
12064
|
-
*/
|
|
12065
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12066
13076
|
/**
|
|
12067
13077
|
* Get Current Stock & Pricing
|
|
12068
13078
|
* @summary Get Current Stock & Pricing
|
|
@@ -12075,13 +13085,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12075
13085
|
/**
|
|
12076
13086
|
* Get Products
|
|
12077
13087
|
* @summary Get Products
|
|
12078
|
-
* @param {number} [pageSize] Number Of Results
|
|
12079
|
-
* @param {number} [page] Page Number
|
|
12080
|
-
* @param {string} [search] Search
|
|
12081
13088
|
* @param {*} [options] Override http request option.
|
|
12082
13089
|
* @throws {RequiredError}
|
|
12083
13090
|
*/
|
|
12084
|
-
getGetProducts: (
|
|
13091
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12085
13092
|
/**
|
|
12086
13093
|
* Get Current Stock & Pricing
|
|
12087
13094
|
* @summary Get Current Stock & Pricing
|
|
@@ -12096,6 +13103,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12096
13103
|
* @throws {RequiredError}
|
|
12097
13104
|
*/
|
|
12098
13105
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13106
|
+
/**
|
|
13107
|
+
* Search Products
|
|
13108
|
+
* @summary Search Products
|
|
13109
|
+
* @param {number} [pageSize] Number Of Results
|
|
13110
|
+
* @param {number} [page] Page Number
|
|
13111
|
+
* @param {string} [search] Search
|
|
13112
|
+
* @param {*} [options] Override http request option.
|
|
13113
|
+
* @throws {RequiredError}
|
|
13114
|
+
*/
|
|
13115
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13116
|
+
/**
|
|
13117
|
+
* Get Product
|
|
13118
|
+
* @summary Get Product
|
|
13119
|
+
* @param {string} sku Product SKU
|
|
13120
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13121
|
+
* @param {*} [options] Override http request option.
|
|
13122
|
+
* @throws {RequiredError}
|
|
13123
|
+
*/
|
|
13124
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13125
|
+
/**
|
|
13126
|
+
* Get Product For Customer
|
|
13127
|
+
* @summary Get Product For Customer
|
|
13128
|
+
* @param {number} customerId Customer ID
|
|
13129
|
+
* @param {string} sku Product SKU
|
|
13130
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13131
|
+
* @param {*} [options] Override http request option.
|
|
13132
|
+
* @throws {RequiredError}
|
|
13133
|
+
*/
|
|
13134
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12099
13135
|
};
|
|
12100
13136
|
/**
|
|
12101
13137
|
* ProductsApi - functional programming interface
|
|
@@ -12109,13 +13145,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12109
13145
|
* @throws {RequiredError}
|
|
12110
13146
|
*/
|
|
12111
13147
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12112
|
-
/**
|
|
12113
|
-
* Get Customer Price Lists
|
|
12114
|
-
* @summary Get Customer Price Lists
|
|
12115
|
-
* @param {*} [options] Override http request option.
|
|
12116
|
-
* @throws {RequiredError}
|
|
12117
|
-
*/
|
|
12118
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12119
13148
|
/**
|
|
12120
13149
|
* Get Current Stock & Pricing
|
|
12121
13150
|
* @summary Get Current Stock & Pricing
|
|
@@ -12128,13 +13157,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12128
13157
|
/**
|
|
12129
13158
|
* Get Products
|
|
12130
13159
|
* @summary Get Products
|
|
12131
|
-
* @param {number} [pageSize] Number Of Results
|
|
12132
|
-
* @param {number} [page] Page Number
|
|
12133
|
-
* @param {string} [search] Search
|
|
12134
13160
|
* @param {*} [options] Override http request option.
|
|
12135
13161
|
* @throws {RequiredError}
|
|
12136
13162
|
*/
|
|
12137
|
-
getGetProducts(
|
|
13163
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12138
13164
|
/**
|
|
12139
13165
|
* Get Current Stock & Pricing
|
|
12140
13166
|
* @summary Get Current Stock & Pricing
|
|
@@ -12149,6 +13175,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12149
13175
|
* @throws {RequiredError}
|
|
12150
13176
|
*/
|
|
12151
13177
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13178
|
+
/**
|
|
13179
|
+
* Search Products
|
|
13180
|
+
* @summary Search Products
|
|
13181
|
+
* @param {number} [pageSize] Number Of Results
|
|
13182
|
+
* @param {number} [page] Page Number
|
|
13183
|
+
* @param {string} [search] Search
|
|
13184
|
+
* @param {*} [options] Override http request option.
|
|
13185
|
+
* @throws {RequiredError}
|
|
13186
|
+
*/
|
|
13187
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13188
|
+
/**
|
|
13189
|
+
* Get Product
|
|
13190
|
+
* @summary Get Product
|
|
13191
|
+
* @param {string} sku Product SKU
|
|
13192
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13193
|
+
* @param {*} [options] Override http request option.
|
|
13194
|
+
* @throws {RequiredError}
|
|
13195
|
+
*/
|
|
13196
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13197
|
+
/**
|
|
13198
|
+
* Get Product For Customer
|
|
13199
|
+
* @summary Get Product For Customer
|
|
13200
|
+
* @param {number} customerId Customer ID
|
|
13201
|
+
* @param {string} sku Product SKU
|
|
13202
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13203
|
+
* @param {*} [options] Override http request option.
|
|
13204
|
+
* @throws {RequiredError}
|
|
13205
|
+
*/
|
|
13206
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12152
13207
|
};
|
|
12153
13208
|
/**
|
|
12154
13209
|
* ProductsApi - factory interface
|
|
@@ -12162,13 +13217,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12162
13217
|
* @throws {RequiredError}
|
|
12163
13218
|
*/
|
|
12164
13219
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12165
|
-
/**
|
|
12166
|
-
* Get Customer Price Lists
|
|
12167
|
-
* @summary Get Customer Price Lists
|
|
12168
|
-
* @param {*} [options] Override http request option.
|
|
12169
|
-
* @throws {RequiredError}
|
|
12170
|
-
*/
|
|
12171
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12172
13220
|
/**
|
|
12173
13221
|
* Get Current Stock & Pricing
|
|
12174
13222
|
* @summary Get Current Stock & Pricing
|
|
@@ -12181,13 +13229,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12181
13229
|
/**
|
|
12182
13230
|
* Get Products
|
|
12183
13231
|
* @summary Get Products
|
|
12184
|
-
* @param {number} [pageSize] Number Of Results
|
|
12185
|
-
* @param {number} [page] Page Number
|
|
12186
|
-
* @param {string} [search] Search
|
|
12187
13232
|
* @param {*} [options] Override http request option.
|
|
12188
13233
|
* @throws {RequiredError}
|
|
12189
13234
|
*/
|
|
12190
|
-
getGetProducts(
|
|
13235
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12191
13236
|
/**
|
|
12192
13237
|
* Get Current Stock & Pricing
|
|
12193
13238
|
* @summary Get Current Stock & Pricing
|
|
@@ -12202,6 +13247,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12202
13247
|
* @throws {RequiredError}
|
|
12203
13248
|
*/
|
|
12204
13249
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13250
|
+
/**
|
|
13251
|
+
* Search Products
|
|
13252
|
+
* @summary Search Products
|
|
13253
|
+
* @param {number} [pageSize] Number Of Results
|
|
13254
|
+
* @param {number} [page] Page Number
|
|
13255
|
+
* @param {string} [search] Search
|
|
13256
|
+
* @param {*} [options] Override http request option.
|
|
13257
|
+
* @throws {RequiredError}
|
|
13258
|
+
*/
|
|
13259
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13260
|
+
/**
|
|
13261
|
+
* Get Product
|
|
13262
|
+
* @summary Get Product
|
|
13263
|
+
* @param {string} sku Product SKU
|
|
13264
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13265
|
+
* @param {*} [options] Override http request option.
|
|
13266
|
+
* @throws {RequiredError}
|
|
13267
|
+
*/
|
|
13268
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13269
|
+
/**
|
|
13270
|
+
* Get Product For Customer
|
|
13271
|
+
* @summary Get Product For Customer
|
|
13272
|
+
* @param {number} customerId Customer ID
|
|
13273
|
+
* @param {string} sku Product SKU
|
|
13274
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13275
|
+
* @param {*} [options] Override http request option.
|
|
13276
|
+
* @throws {RequiredError}
|
|
13277
|
+
*/
|
|
13278
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12205
13279
|
};
|
|
12206
13280
|
/**
|
|
12207
13281
|
* ProductsApi - object-oriented interface
|
|
@@ -12218,14 +13292,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12218
13292
|
* @memberof ProductsApi
|
|
12219
13293
|
*/
|
|
12220
13294
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12221
|
-
/**
|
|
12222
|
-
* Get Customer Price Lists
|
|
12223
|
-
* @summary Get Customer Price Lists
|
|
12224
|
-
* @param {*} [options] Override http request option.
|
|
12225
|
-
* @throws {RequiredError}
|
|
12226
|
-
* @memberof ProductsApi
|
|
12227
|
-
*/
|
|
12228
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12229
13295
|
/**
|
|
12230
13296
|
* Get Current Stock & Pricing
|
|
12231
13297
|
* @summary Get Current Stock & Pricing
|
|
@@ -12239,14 +13305,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12239
13305
|
/**
|
|
12240
13306
|
* Get Products
|
|
12241
13307
|
* @summary Get Products
|
|
12242
|
-
* @param {number} [pageSize] Number Of Results
|
|
12243
|
-
* @param {number} [page] Page Number
|
|
12244
|
-
* @param {string} [search] Search
|
|
12245
13308
|
* @param {*} [options] Override http request option.
|
|
12246
13309
|
* @throws {RequiredError}
|
|
12247
13310
|
* @memberof ProductsApi
|
|
12248
13311
|
*/
|
|
12249
|
-
getGetProducts(
|
|
13312
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12250
13313
|
/**
|
|
12251
13314
|
* Get Current Stock & Pricing
|
|
12252
13315
|
* @summary Get Current Stock & Pricing
|
|
@@ -12263,6 +13326,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12263
13326
|
* @memberof ProductsApi
|
|
12264
13327
|
*/
|
|
12265
13328
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13329
|
+
/**
|
|
13330
|
+
* Search Products
|
|
13331
|
+
* @summary Search Products
|
|
13332
|
+
* @param {number} [pageSize] Number Of Results
|
|
13333
|
+
* @param {number} [page] Page Number
|
|
13334
|
+
* @param {string} [search] Search
|
|
13335
|
+
* @param {*} [options] Override http request option.
|
|
13336
|
+
* @throws {RequiredError}
|
|
13337
|
+
* @memberof ProductsApi
|
|
13338
|
+
*/
|
|
13339
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13340
|
+
/**
|
|
13341
|
+
* Get Product
|
|
13342
|
+
* @summary Get Product
|
|
13343
|
+
* @param {string} sku Product SKU
|
|
13344
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13345
|
+
* @param {*} [options] Override http request option.
|
|
13346
|
+
* @throws {RequiredError}
|
|
13347
|
+
* @memberof ProductsApi
|
|
13348
|
+
*/
|
|
13349
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13350
|
+
/**
|
|
13351
|
+
* Get Product For Customer
|
|
13352
|
+
* @summary Get Product For Customer
|
|
13353
|
+
* @param {number} customerId Customer ID
|
|
13354
|
+
* @param {string} sku Product SKU
|
|
13355
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13356
|
+
* @param {*} [options] Override http request option.
|
|
13357
|
+
* @throws {RequiredError}
|
|
13358
|
+
* @memberof ProductsApi
|
|
13359
|
+
*/
|
|
13360
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12266
13361
|
}
|
|
12267
13362
|
/**
|
|
12268
13363
|
* @export
|
|
@@ -12383,7 +13478,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12383
13478
|
* @param {*} [options] Override http request option.
|
|
12384
13479
|
* @throws {RequiredError}
|
|
12385
13480
|
*/
|
|
12386
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13481
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12387
13482
|
/**
|
|
12388
13483
|
* Create a Fanvil provisioning group
|
|
12389
13484
|
* @summary Add group to DB and FDPS
|
|
@@ -12391,7 +13486,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12391
13486
|
* @param {*} [options] Override http request option.
|
|
12392
13487
|
* @throws {RequiredError}
|
|
12393
13488
|
*/
|
|
12394
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13489
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12395
13490
|
/**
|
|
12396
13491
|
* Add MAC address to DB and FDPS group
|
|
12397
13492
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12448,7 +13543,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12448
13543
|
* @param {*} [options] Override http request option.
|
|
12449
13544
|
* @throws {RequiredError}
|
|
12450
13545
|
*/
|
|
12451
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13546
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12452
13547
|
/**
|
|
12453
13548
|
* Create a Fanvil provisioning group
|
|
12454
13549
|
* @summary Add group to DB and FDPS
|
|
@@ -12456,7 +13551,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12456
13551
|
* @param {*} [options] Override http request option.
|
|
12457
13552
|
* @throws {RequiredError}
|
|
12458
13553
|
*/
|
|
12459
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13554
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12460
13555
|
/**
|
|
12461
13556
|
* Add MAC address to DB and FDPS group
|
|
12462
13557
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12520,7 +13615,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12520
13615
|
* @throws {RequiredError}
|
|
12521
13616
|
* @memberof ProvisioningApi
|
|
12522
13617
|
*/
|
|
12523
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13618
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12524
13619
|
/**
|
|
12525
13620
|
* Create a Fanvil provisioning group
|
|
12526
13621
|
* @summary Add group to DB and FDPS
|
|
@@ -12529,7 +13624,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12529
13624
|
* @throws {RequiredError}
|
|
12530
13625
|
* @memberof ProvisioningApi
|
|
12531
13626
|
*/
|
|
12532
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13627
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12533
13628
|
/**
|
|
12534
13629
|
* Add MAC address to DB and FDPS group
|
|
12535
13630
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13404,6 +14499,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13404
14499
|
*/
|
|
13405
14500
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13406
14501
|
}
|
|
14502
|
+
/**
|
|
14503
|
+
* ShippingApi - axios parameter creator
|
|
14504
|
+
* @export
|
|
14505
|
+
*/
|
|
14506
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14507
|
+
/**
|
|
14508
|
+
* Get Shipping Services
|
|
14509
|
+
* @summary Get Shipping Services
|
|
14510
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14511
|
+
* @param {*} [options] Override http request option.
|
|
14512
|
+
* @throws {RequiredError}
|
|
14513
|
+
*/
|
|
14514
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14515
|
+
};
|
|
14516
|
+
/**
|
|
14517
|
+
* ShippingApi - functional programming interface
|
|
14518
|
+
* @export
|
|
14519
|
+
*/
|
|
14520
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14521
|
+
/**
|
|
14522
|
+
* Get Shipping Services
|
|
14523
|
+
* @summary Get Shipping Services
|
|
14524
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14525
|
+
* @param {*} [options] Override http request option.
|
|
14526
|
+
* @throws {RequiredError}
|
|
14527
|
+
*/
|
|
14528
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14529
|
+
};
|
|
14530
|
+
/**
|
|
14531
|
+
* ShippingApi - factory interface
|
|
14532
|
+
* @export
|
|
14533
|
+
*/
|
|
14534
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14535
|
+
/**
|
|
14536
|
+
* Get Shipping Services
|
|
14537
|
+
* @summary Get Shipping Services
|
|
14538
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14539
|
+
* @param {*} [options] Override http request option.
|
|
14540
|
+
* @throws {RequiredError}
|
|
14541
|
+
*/
|
|
14542
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14543
|
+
};
|
|
14544
|
+
/**
|
|
14545
|
+
* ShippingApi - object-oriented interface
|
|
14546
|
+
* @export
|
|
14547
|
+
* @class ShippingApi
|
|
14548
|
+
* @extends {BaseAPI}
|
|
14549
|
+
*/
|
|
14550
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14551
|
+
/**
|
|
14552
|
+
* Get Shipping Services
|
|
14553
|
+
* @summary Get Shipping Services
|
|
14554
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14555
|
+
* @param {*} [options] Override http request option.
|
|
14556
|
+
* @throws {RequiredError}
|
|
14557
|
+
* @memberof ShippingApi
|
|
14558
|
+
*/
|
|
14559
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14560
|
+
}
|
|
13407
14561
|
/**
|
|
13408
14562
|
* StockManagementApi - axios parameter creator
|
|
13409
14563
|
* @export
|
|
@@ -13733,7 +14887,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13733
14887
|
* @param {*} [options] Override http request option.
|
|
13734
14888
|
* @throws {RequiredError}
|
|
13735
14889
|
*/
|
|
13736
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
14890
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13737
14891
|
/**
|
|
13738
14892
|
* Get Stock Order Supplier Invoice
|
|
13739
14893
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13948,7 +15102,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
13948
15102
|
* @param {*} [options] Override http request option.
|
|
13949
15103
|
* @throws {RequiredError}
|
|
13950
15104
|
*/
|
|
13951
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15105
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
13952
15106
|
/**
|
|
13953
15107
|
* Get Stock Order Supplier Invoice
|
|
13954
15108
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14178,7 +15332,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14178
15332
|
* @throws {RequiredError}
|
|
14179
15333
|
* @memberof StockManagementApi
|
|
14180
15334
|
*/
|
|
14181
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15335
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14182
15336
|
/**
|
|
14183
15337
|
* Get Stock Order Supplier Invoice
|
|
14184
15338
|
* @summary Get Stock Order Supplier Invoice
|