yellowgrid-api-ts 3.1.9-dev.0 → 3.1.10
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 +197 -214
- package/README.md +7 -33
- package/api.ts +252 -1806
- 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 +150 -1326
- package/dist/api.js +208 -1064
- 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/AccountsApi.md +0 -103
- package/docs/AddressModel.md +0 -2
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -12
- package/docs/ItemEntity.md +0 -2
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -301
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -39
- package/docs/AdminItemRequestDTO.md +0 -41
- package/docs/AdminOrderRequestDTO.md +0 -45
- package/docs/AdminUserModel.md +0 -29
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -37
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/PostGetProductForCustomerRequest.md +0 -24
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/TcxSbcDTO.md +0 -31
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,55 +13,6 @@ 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
|
-
}
|
|
65
16
|
/**
|
|
66
17
|
* AccountContactsEntity
|
|
67
18
|
* @export
|
|
@@ -293,73 +244,6 @@ export interface AccountContactRequestModel {
|
|
|
293
244
|
*/
|
|
294
245
|
'despatchEmails'?: boolean;
|
|
295
246
|
}
|
|
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
|
-
}
|
|
363
247
|
/**
|
|
364
248
|
* New Account Request
|
|
365
249
|
* @export
|
|
@@ -609,12 +493,6 @@ export interface AddressModel {
|
|
|
609
493
|
* @memberof AddressModel
|
|
610
494
|
*/
|
|
611
495
|
'company'?: string;
|
|
612
|
-
/**
|
|
613
|
-
* Default
|
|
614
|
-
* @type {boolean}
|
|
615
|
-
* @memberof AddressModel
|
|
616
|
-
*/
|
|
617
|
-
'default'?: boolean;
|
|
618
496
|
}
|
|
619
497
|
/**
|
|
620
498
|
* Address Request
|
|
@@ -647,209 +525,6 @@ export interface AddressRequestModel {
|
|
|
647
525
|
*/
|
|
648
526
|
'addressPostcode'?: string;
|
|
649
527
|
}
|
|
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];
|
|
853
528
|
/**
|
|
854
529
|
* Agent Hours Graph
|
|
855
530
|
* @export
|
|
@@ -1079,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1079
754
|
*/
|
|
1080
755
|
'redirect_uri'?: string | null;
|
|
1081
756
|
}
|
|
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
|
-
}
|
|
1120
757
|
/**
|
|
1121
758
|
* BatchesEntity
|
|
1122
759
|
* @export
|
|
@@ -1311,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1311
948
|
* @memberof ClientDetailsModel
|
|
1312
949
|
*/
|
|
1313
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1314
957
|
}
|
|
1315
958
|
/**
|
|
1316
959
|
* OAuth client details
|
|
@@ -1472,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1472
1115
|
*/
|
|
1473
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1474
1117
|
}
|
|
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
|
-
}
|
|
1542
1118
|
/**
|
|
1543
1119
|
* Credit Account
|
|
1544
1120
|
* @export
|
|
@@ -1770,116 +1346,6 @@ export interface CustomerInformationModel {
|
|
|
1770
1346
|
*/
|
|
1771
1347
|
'contactLastName'?: string;
|
|
1772
1348
|
}
|
|
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
|
-
}
|
|
1883
1349
|
/**
|
|
1884
1350
|
* Customer Price List
|
|
1885
1351
|
* @export
|
|
@@ -2386,6 +1852,19 @@ export interface GenericFileModel {
|
|
|
2386
1852
|
*/
|
|
2387
1853
|
'type'?: string;
|
|
2388
1854
|
}
|
|
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
|
+
}
|
|
2389
1868
|
/**
|
|
2390
1869
|
*
|
|
2391
1870
|
* @export
|
|
@@ -2980,36 +2459,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2980
2459
|
* @interface ItemDTO
|
|
2981
2460
|
*/
|
|
2982
2461
|
export interface ItemDTO {
|
|
2983
|
-
/**
|
|
2984
|
-
* SKU
|
|
2985
|
-
* @type {string}
|
|
2986
|
-
* @memberof ItemDTO
|
|
2987
|
-
*/
|
|
2988
|
-
'sku'?: string;
|
|
2989
|
-
/**
|
|
2990
|
-
* Quantity
|
|
2991
|
-
* @type {number}
|
|
2992
|
-
* @memberof ItemDTO
|
|
2993
|
-
*/
|
|
2994
|
-
'quantity'?: number;
|
|
2995
2462
|
/**
|
|
2996
2463
|
* ID
|
|
2997
2464
|
* @type {number}
|
|
2998
2465
|
* @memberof ItemDTO
|
|
2999
2466
|
*/
|
|
3000
|
-
'id'?: number
|
|
2467
|
+
'id'?: number;
|
|
3001
2468
|
/**
|
|
3002
2469
|
* Order ID
|
|
3003
2470
|
* @type {number}
|
|
3004
2471
|
* @memberof ItemDTO
|
|
3005
2472
|
*/
|
|
3006
|
-
'orderId'?: number
|
|
2473
|
+
'orderId'?: number;
|
|
3007
2474
|
/**
|
|
3008
2475
|
* Title
|
|
3009
2476
|
* @type {string}
|
|
3010
2477
|
* @memberof ItemDTO
|
|
3011
2478
|
*/
|
|
3012
2479
|
'title'?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* SKU
|
|
2482
|
+
* @type {string}
|
|
2483
|
+
* @memberof ItemDTO
|
|
2484
|
+
*/
|
|
2485
|
+
'sku'?: string;
|
|
2486
|
+
/**
|
|
2487
|
+
* Quantity
|
|
2488
|
+
* @type {number}
|
|
2489
|
+
* @memberof ItemDTO
|
|
2490
|
+
*/
|
|
2491
|
+
'quantity'?: number;
|
|
3013
2492
|
/**
|
|
3014
2493
|
* Price
|
|
3015
2494
|
* @type {number}
|
|
@@ -3034,12 +2513,6 @@ export interface ItemDTO {
|
|
|
3034
2513
|
* @memberof ItemDTO
|
|
3035
2514
|
*/
|
|
3036
2515
|
'processDate'?: string;
|
|
3037
|
-
/**
|
|
3038
|
-
* 3CX Hosting
|
|
3039
|
-
* @type {boolean}
|
|
3040
|
-
* @memberof ItemDTO
|
|
3041
|
-
*/
|
|
3042
|
-
'hosting'?: boolean | null;
|
|
3043
2516
|
/**
|
|
3044
2517
|
* Promo Item
|
|
3045
2518
|
* @type {boolean}
|
|
@@ -3051,25 +2524,7 @@ export interface ItemDTO {
|
|
|
3051
2524
|
* @type {number}
|
|
3052
2525
|
* @memberof ItemDTO
|
|
3053
2526
|
*/
|
|
3054
|
-
'refunded'?: number
|
|
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;
|
|
2527
|
+
'refunded'?: number;
|
|
3073
2528
|
}
|
|
3074
2529
|
/**
|
|
3075
2530
|
* ItemsEntity
|
|
@@ -3203,31 +2658,6 @@ export interface ItemEntity {
|
|
|
3203
2658
|
* @memberof ItemEntity
|
|
3204
2659
|
*/
|
|
3205
2660
|
'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;
|
|
3231
2661
|
}
|
|
3232
2662
|
/**
|
|
3233
2663
|
* MFA Required
|
|
@@ -3881,19 +3311,13 @@ export interface OrderSummaryDTO {
|
|
|
3881
3311
|
* @type {string}
|
|
3882
3312
|
* @memberof OrderSummaryDTO
|
|
3883
3313
|
*/
|
|
3884
|
-
'reference'?: string
|
|
3314
|
+
'reference'?: string;
|
|
3885
3315
|
/**
|
|
3886
3316
|
* Invoice Number
|
|
3887
3317
|
* @type {string}
|
|
3888
3318
|
* @memberof OrderSummaryDTO
|
|
3889
3319
|
*/
|
|
3890
3320
|
'invoiceNumber'?: string;
|
|
3891
|
-
/**
|
|
3892
|
-
* Invoice ID
|
|
3893
|
-
* @type {string}
|
|
3894
|
-
* @memberof OrderSummaryDTO
|
|
3895
|
-
*/
|
|
3896
|
-
'invoiceId'?: string | null;
|
|
3897
3321
|
/**
|
|
3898
3322
|
* Date Time
|
|
3899
3323
|
* @type {string}
|
|
@@ -3948,24 +3372,6 @@ export interface OrderSummaryDTO {
|
|
|
3948
3372
|
* @memberof OrderSummaryDTO
|
|
3949
3373
|
*/
|
|
3950
3374
|
'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;
|
|
3969
3375
|
}
|
|
3970
3376
|
/**
|
|
3971
3377
|
* Order Totals
|
|
@@ -4015,12 +3421,6 @@ export interface OrderTotalModel {
|
|
|
4015
3421
|
* @memberof OrderTotalModel
|
|
4016
3422
|
*/
|
|
4017
3423
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4018
|
-
/**
|
|
4019
|
-
* Delivery
|
|
4020
|
-
* @type {number}
|
|
4021
|
-
* @memberof OrderTotalModel
|
|
4022
|
-
*/
|
|
4023
|
-
'delivery'?: number | null;
|
|
4024
3424
|
}
|
|
4025
3425
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
4026
3426
|
readonly Eur: "EUR";
|
|
@@ -4399,31 +3799,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4399
3799
|
*/
|
|
4400
3800
|
'scopes'?: Array<string>;
|
|
4401
3801
|
}
|
|
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
|
-
}
|
|
4427
3802
|
/**
|
|
4428
3803
|
* Price & Stock List
|
|
4429
3804
|
* @export
|
|
@@ -4512,10 +3887,10 @@ export interface PrizesEntity {
|
|
|
4512
3887
|
export interface ProductSearchResultsModel {
|
|
4513
3888
|
/**
|
|
4514
3889
|
* Results
|
|
4515
|
-
* @type {Array<
|
|
3890
|
+
* @type {Array<ProductSummaryModel>}
|
|
4516
3891
|
* @memberof ProductSearchResultsModel
|
|
4517
3892
|
*/
|
|
4518
|
-
'results'?: Array<
|
|
3893
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4519
3894
|
}
|
|
4520
3895
|
/**
|
|
4521
3896
|
* Product Serial Info
|
|
@@ -4551,51 +3926,45 @@ export interface ProductSerialInfoModel {
|
|
|
4551
3926
|
/**
|
|
4552
3927
|
* Product Summary
|
|
4553
3928
|
* @export
|
|
4554
|
-
* @interface
|
|
3929
|
+
* @interface ProductSummaryModel
|
|
4555
3930
|
*/
|
|
4556
|
-
export interface
|
|
3931
|
+
export interface ProductSummaryModel {
|
|
4557
3932
|
/**
|
|
4558
3933
|
* SKU
|
|
4559
3934
|
* @type {string}
|
|
4560
|
-
* @memberof
|
|
3935
|
+
* @memberof ProductSummaryModel
|
|
4561
3936
|
*/
|
|
4562
3937
|
'sku'?: string;
|
|
4563
3938
|
/**
|
|
4564
3939
|
* Title
|
|
4565
3940
|
* @type {string}
|
|
4566
|
-
* @memberof
|
|
3941
|
+
* @memberof ProductSummaryModel
|
|
4567
3942
|
*/
|
|
4568
3943
|
'title'?: string;
|
|
4569
3944
|
/**
|
|
4570
3945
|
* Stock Quantity
|
|
4571
3946
|
* @type {number}
|
|
4572
|
-
* @memberof
|
|
3947
|
+
* @memberof ProductSummaryModel
|
|
4573
3948
|
*/
|
|
4574
3949
|
'quantity'?: number | null;
|
|
4575
3950
|
/**
|
|
4576
3951
|
* Stock Product
|
|
4577
3952
|
* @type {boolean}
|
|
4578
|
-
* @memberof
|
|
3953
|
+
* @memberof ProductSummaryModel
|
|
4579
3954
|
*/
|
|
4580
3955
|
'stockProduct'?: boolean;
|
|
4581
3956
|
/**
|
|
4582
3957
|
* Price
|
|
4583
3958
|
* @type {number}
|
|
4584
|
-
* @memberof
|
|
3959
|
+
* @memberof ProductSummaryModel
|
|
4585
3960
|
*/
|
|
4586
3961
|
'price'?: number | null;
|
|
4587
3962
|
/**
|
|
4588
3963
|
* Carton Size
|
|
4589
3964
|
* @type {number}
|
|
4590
|
-
* @memberof
|
|
3965
|
+
* @memberof ProductSummaryModel
|
|
4591
3966
|
*/
|
|
4592
3967
|
'cartonSize'?: number | null;
|
|
4593
|
-
/**
|
|
4594
|
-
* RRP Price
|
|
4595
|
-
* @type {number}
|
|
4596
|
-
* @memberof ProductSummaryDTO
|
|
4597
|
-
*/
|
|
4598
|
-
'rrp'?: number | null;
|
|
4599
3968
|
}
|
|
4600
3969
|
/**
|
|
4601
3970
|
* PromoCodesEntity
|
|
@@ -4734,37 +4103,37 @@ export interface PromoItemsEntity {
|
|
|
4734
4103
|
/**
|
|
4735
4104
|
* Provisioning Group
|
|
4736
4105
|
* @export
|
|
4737
|
-
* @interface
|
|
4106
|
+
* @interface ProvisioningEntity
|
|
4738
4107
|
*/
|
|
4739
|
-
export interface
|
|
4108
|
+
export interface ProvisioningEntity {
|
|
4740
4109
|
/**
|
|
4741
4110
|
* Provisioning Group Name
|
|
4742
4111
|
* @type {string}
|
|
4743
|
-
* @memberof
|
|
4112
|
+
* @memberof ProvisioningEntity
|
|
4744
4113
|
*/
|
|
4745
4114
|
'groupName'?: string;
|
|
4746
4115
|
/**
|
|
4747
4116
|
* Provisioning URL (Static Provisioning Server)
|
|
4748
4117
|
* @type {string}
|
|
4749
|
-
* @memberof
|
|
4118
|
+
* @memberof ProvisioningEntity
|
|
4750
4119
|
*/
|
|
4751
4120
|
'provisioningUrl'?: string;
|
|
4752
4121
|
/**
|
|
4753
4122
|
* Additional Authentication Secret
|
|
4754
4123
|
* @type {string}
|
|
4755
|
-
* @memberof
|
|
4124
|
+
* @memberof ProvisioningEntity
|
|
4756
4125
|
*/
|
|
4757
4126
|
'auth'?: string;
|
|
4758
4127
|
/**
|
|
4759
4128
|
* Provisioning Group ID
|
|
4760
4129
|
* @type {number}
|
|
4761
|
-
* @memberof
|
|
4130
|
+
* @memberof ProvisioningEntity
|
|
4762
4131
|
*/
|
|
4763
4132
|
'id'?: number;
|
|
4764
4133
|
/**
|
|
4765
4134
|
* Owner ID
|
|
4766
4135
|
* @type {number}
|
|
4767
|
-
* @memberof
|
|
4136
|
+
* @memberof ProvisioningEntity
|
|
4768
4137
|
*/
|
|
4769
4138
|
'customerId'?: number;
|
|
4770
4139
|
}
|
|
@@ -5118,7 +4487,7 @@ export interface ShipmentEntity {
|
|
|
5118
4487
|
* @type {string}
|
|
5119
4488
|
* @memberof ShipmentEntity
|
|
5120
4489
|
*/
|
|
5121
|
-
'
|
|
4490
|
+
'date'?: string;
|
|
5122
4491
|
/**
|
|
5123
4492
|
* requestDate
|
|
5124
4493
|
* @type {string}
|
|
@@ -5169,149 +4538,6 @@ export interface ShipmentItemEntity {
|
|
|
5169
4538
|
*/
|
|
5170
4539
|
'itemId'?: string;
|
|
5171
4540
|
}
|
|
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
|
-
}
|
|
5315
4541
|
/**
|
|
5316
4542
|
* Change Response
|
|
5317
4543
|
* @export
|
|
@@ -8131,49 +7357,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8131
7357
|
*/
|
|
8132
7358
|
'secretAccessKey'?: string;
|
|
8133
7359
|
}
|
|
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
|
-
}
|
|
8177
7360
|
/**
|
|
8178
7361
|
* 3CX Wizard SBC
|
|
8179
7362
|
* @export
|
|
@@ -8278,7 +7461,7 @@ export interface TcxSbcEntity {
|
|
|
8278
7461
|
'technicalContact'?: string;
|
|
8279
7462
|
}
|
|
8280
7463
|
/**
|
|
8281
|
-
* 3CX
|
|
7464
|
+
* 3CX SBC Model
|
|
8282
7465
|
* @export
|
|
8283
7466
|
* @interface TcxSbcModel
|
|
8284
7467
|
*/
|
|
@@ -9356,14 +8539,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9356
8539
|
* @throws {RequiredError}
|
|
9357
8540
|
*/
|
|
9358
8541
|
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>;
|
|
9367
8542
|
/**
|
|
9368
8543
|
* Get Accounts
|
|
9369
8544
|
* @summary Get Accounts
|
|
@@ -9429,13 +8604,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9429
8604
|
* @throws {RequiredError}
|
|
9430
8605
|
*/
|
|
9431
8606
|
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>;
|
|
9439
8607
|
/**
|
|
9440
8608
|
* Create client credentials
|
|
9441
8609
|
* @summary Create client credentials
|
|
@@ -9516,14 +8684,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9516
8684
|
* @throws {RequiredError}
|
|
9517
8685
|
*/
|
|
9518
8686
|
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>>;
|
|
9527
8687
|
/**
|
|
9528
8688
|
* Get Accounts
|
|
9529
8689
|
* @summary Get Accounts
|
|
@@ -9589,13 +8749,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9589
8749
|
* @throws {RequiredError}
|
|
9590
8750
|
*/
|
|
9591
8751
|
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>>;
|
|
9599
8752
|
/**
|
|
9600
8753
|
* Create client credentials
|
|
9601
8754
|
* @summary Create client credentials
|
|
@@ -9676,14 +8829,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9676
8829
|
* @throws {RequiredError}
|
|
9677
8830
|
*/
|
|
9678
8831
|
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>;
|
|
9687
8832
|
/**
|
|
9688
8833
|
* Get Accounts
|
|
9689
8834
|
* @summary Get Accounts
|
|
@@ -9749,13 +8894,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9749
8894
|
* @throws {RequiredError}
|
|
9750
8895
|
*/
|
|
9751
8896
|
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>;
|
|
9759
8897
|
/**
|
|
9760
8898
|
* Create client credentials
|
|
9761
8899
|
* @summary Create client credentials
|
|
@@ -9834,23 +8972,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9834
8972
|
*/
|
|
9835
8973
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9836
8974
|
/**
|
|
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
|
|
8975
|
+
* Get Account Contacts
|
|
8976
|
+
* @summary Get Account Contacts
|
|
8977
|
+
* @param {string} [email] Contact Email Address
|
|
9849
8978
|
* @param {*} [options] Override http request option.
|
|
9850
8979
|
* @throws {RequiredError}
|
|
9851
8980
|
* @memberof AccountsApi
|
|
9852
8981
|
*/
|
|
9853
|
-
|
|
8982
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9854
8983
|
/**
|
|
9855
8984
|
* Get Accounts
|
|
9856
8985
|
* @summary Get Accounts
|
|
@@ -9924,14 +9053,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9924
9053
|
* @memberof AccountsApi
|
|
9925
9054
|
*/
|
|
9926
9055
|
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, {}>>;
|
|
9935
9056
|
/**
|
|
9936
9057
|
* Create client credentials
|
|
9937
9058
|
* @summary Create client credentials
|
|
@@ -10045,6 +9166,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10045
9166
|
* @throws {RequiredError}
|
|
10046
9167
|
*/
|
|
10047
9168
|
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>;
|
|
10048
9177
|
/**
|
|
10049
9178
|
* Get Bulk 3CX Licence Details
|
|
10050
9179
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10067,6 +9196,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
10067
9196
|
* @throws {RequiredError}
|
|
10068
9197
|
*/
|
|
10069
9198
|
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>>;
|
|
10070
9207
|
/**
|
|
10071
9208
|
* Get Bulk 3CX Licence Details
|
|
10072
9209
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10089,6 +9226,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
10089
9226
|
* @throws {RequiredError}
|
|
10090
9227
|
*/
|
|
10091
9228
|
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>;
|
|
10092
9237
|
/**
|
|
10093
9238
|
* Get Bulk 3CX Licence Details
|
|
10094
9239
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10114,6 +9259,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10114
9259
|
* @memberof Class3CXApi
|
|
10115
9260
|
*/
|
|
10116
9261
|
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, {}>>;
|
|
10117
9271
|
/**
|
|
10118
9272
|
* Get Bulk 3CX Licence Details
|
|
10119
9273
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12657,20 +11811,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12657
11811
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12658
11812
|
/**
|
|
12659
11813
|
* 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
|
|
12669
11814
|
* @param {number} id Order ID
|
|
12670
11815
|
* @param {*} [options] Override http request option.
|
|
12671
11816
|
* @throws {RequiredError}
|
|
12672
11817
|
*/
|
|
12673
|
-
|
|
11818
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12674
11819
|
/**
|
|
12675
11820
|
* Get Orders
|
|
12676
11821
|
* @summary Get Orders
|
|
@@ -12685,44 +11830,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12685
11830
|
* @throws {RequiredError}
|
|
12686
11831
|
*/
|
|
12687
11832
|
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>;
|
|
12726
11833
|
};
|
|
12727
11834
|
/**
|
|
12728
11835
|
* OrdersApi - functional programming interface
|
|
@@ -12731,20 +11838,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12731
11838
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12732
11839
|
/**
|
|
12733
11840
|
* 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
|
|
12743
11841
|
* @param {number} id Order ID
|
|
12744
11842
|
* @param {*} [options] Override http request option.
|
|
12745
11843
|
* @throws {RequiredError}
|
|
12746
11844
|
*/
|
|
12747
|
-
|
|
11845
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12748
11846
|
/**
|
|
12749
11847
|
* Get Orders
|
|
12750
11848
|
* @summary Get Orders
|
|
@@ -12759,44 +11857,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12759
11857
|
* @throws {RequiredError}
|
|
12760
11858
|
*/
|
|
12761
11859
|
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>>>;
|
|
12800
11860
|
};
|
|
12801
11861
|
/**
|
|
12802
11862
|
* OrdersApi - factory interface
|
|
@@ -12805,20 +11865,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12805
11865
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12806
11866
|
/**
|
|
12807
11867
|
* Delete Orders
|
|
12808
|
-
* @summary Delete Orders
|
|
12809
11868
|
* @param {number} id Order ID
|
|
12810
11869
|
* @param {*} [options] Override http request option.
|
|
12811
11870
|
* @throws {RequiredError}
|
|
12812
11871
|
*/
|
|
12813
|
-
|
|
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>;
|
|
11872
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12822
11873
|
/**
|
|
12823
11874
|
* Get Orders
|
|
12824
11875
|
* @summary Get Orders
|
|
@@ -12833,44 +11884,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12833
11884
|
* @throws {RequiredError}
|
|
12834
11885
|
*/
|
|
12835
11886
|
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>>;
|
|
12874
11887
|
};
|
|
12875
11888
|
/**
|
|
12876
11889
|
* OrdersApi - object-oriented interface
|
|
@@ -12881,22 +11894,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12881
11894
|
export declare class OrdersApi extends BaseAPI {
|
|
12882
11895
|
/**
|
|
12883
11896
|
* 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
|
|
12894
11897
|
* @param {number} id Order ID
|
|
12895
11898
|
* @param {*} [options] Override http request option.
|
|
12896
11899
|
* @throws {RequiredError}
|
|
12897
11900
|
* @memberof OrdersApi
|
|
12898
11901
|
*/
|
|
12899
|
-
|
|
11902
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12900
11903
|
/**
|
|
12901
11904
|
* Get Orders
|
|
12902
11905
|
* @summary Get Orders
|
|
@@ -12912,48 +11915,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12912
11915
|
* @memberof OrdersApi
|
|
12913
11916
|
*/
|
|
12914
11917
|
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, {}>>;
|
|
12957
11918
|
}
|
|
12958
11919
|
/**
|
|
12959
11920
|
* @export
|
|
@@ -13209,6 +12170,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13209
12170
|
* @throws {RequiredError}
|
|
13210
12171
|
*/
|
|
13211
12172
|
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>;
|
|
13212
12180
|
/**
|
|
13213
12181
|
* Get Current Stock & Pricing
|
|
13214
12182
|
* @summary Get Current Stock & Pricing
|
|
@@ -13221,10 +12189,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13221
12189
|
/**
|
|
13222
12190
|
* Get Products
|
|
13223
12191
|
* @summary Get Products
|
|
12192
|
+
* @param {number} [pageSize] Number Of Results
|
|
12193
|
+
* @param {number} [page] Page Number
|
|
12194
|
+
* @param {string} [search] Search
|
|
13224
12195
|
* @param {*} [options] Override http request option.
|
|
13225
12196
|
* @throws {RequiredError}
|
|
13226
12197
|
*/
|
|
13227
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12198
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13228
12199
|
/**
|
|
13229
12200
|
* Get Current Stock & Pricing
|
|
13230
12201
|
* @summary Get Current Stock & Pricing
|
|
@@ -13239,35 +12210,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13239
12210
|
* @throws {RequiredError}
|
|
13240
12211
|
*/
|
|
13241
12212
|
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>;
|
|
13271
12213
|
};
|
|
13272
12214
|
/**
|
|
13273
12215
|
* ProductsApi - functional programming interface
|
|
@@ -13281,6 +12223,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13281
12223
|
* @throws {RequiredError}
|
|
13282
12224
|
*/
|
|
13283
12225
|
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>>>;
|
|
13284
12233
|
/**
|
|
13285
12234
|
* Get Current Stock & Pricing
|
|
13286
12235
|
* @summary Get Current Stock & Pricing
|
|
@@ -13293,10 +12242,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13293
12242
|
/**
|
|
13294
12243
|
* Get Products
|
|
13295
12244
|
* @summary Get Products
|
|
12245
|
+
* @param {number} [pageSize] Number Of Results
|
|
12246
|
+
* @param {number} [page] Page Number
|
|
12247
|
+
* @param {string} [search] Search
|
|
13296
12248
|
* @param {*} [options] Override http request option.
|
|
13297
12249
|
* @throws {RequiredError}
|
|
13298
12250
|
*/
|
|
13299
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12251
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13300
12252
|
/**
|
|
13301
12253
|
* Get Current Stock & Pricing
|
|
13302
12254
|
* @summary Get Current Stock & Pricing
|
|
@@ -13311,35 +12263,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13311
12263
|
* @throws {RequiredError}
|
|
13312
12264
|
*/
|
|
13313
12265
|
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>>;
|
|
13343
12266
|
};
|
|
13344
12267
|
/**
|
|
13345
12268
|
* ProductsApi - factory interface
|
|
@@ -13353,6 +12276,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13353
12276
|
* @throws {RequiredError}
|
|
13354
12277
|
*/
|
|
13355
12278
|
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>>;
|
|
13356
12286
|
/**
|
|
13357
12287
|
* Get Current Stock & Pricing
|
|
13358
12288
|
* @summary Get Current Stock & Pricing
|
|
@@ -13365,10 +12295,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13365
12295
|
/**
|
|
13366
12296
|
* Get Products
|
|
13367
12297
|
* @summary Get Products
|
|
12298
|
+
* @param {number} [pageSize] Number Of Results
|
|
12299
|
+
* @param {number} [page] Page Number
|
|
12300
|
+
* @param {string} [search] Search
|
|
13368
12301
|
* @param {*} [options] Override http request option.
|
|
13369
12302
|
* @throws {RequiredError}
|
|
13370
12303
|
*/
|
|
13371
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12304
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13372
12305
|
/**
|
|
13373
12306
|
* Get Current Stock & Pricing
|
|
13374
12307
|
* @summary Get Current Stock & Pricing
|
|
@@ -13383,35 +12316,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13383
12316
|
* @throws {RequiredError}
|
|
13384
12317
|
*/
|
|
13385
12318
|
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>;
|
|
13415
12319
|
};
|
|
13416
12320
|
/**
|
|
13417
12321
|
* ProductsApi - object-oriented interface
|
|
@@ -13428,6 +12332,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13428
12332
|
* @memberof ProductsApi
|
|
13429
12333
|
*/
|
|
13430
12334
|
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, {}>>;
|
|
13431
12343
|
/**
|
|
13432
12344
|
* Get Current Stock & Pricing
|
|
13433
12345
|
* @summary Get Current Stock & Pricing
|
|
@@ -13441,11 +12353,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13441
12353
|
/**
|
|
13442
12354
|
* Get Products
|
|
13443
12355
|
* @summary Get Products
|
|
12356
|
+
* @param {number} [pageSize] Number Of Results
|
|
12357
|
+
* @param {number} [page] Page Number
|
|
12358
|
+
* @param {string} [search] Search
|
|
13444
12359
|
* @param {*} [options] Override http request option.
|
|
13445
12360
|
* @throws {RequiredError}
|
|
13446
12361
|
* @memberof ProductsApi
|
|
13447
12362
|
*/
|
|
13448
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12363
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13449
12364
|
/**
|
|
13450
12365
|
* Get Current Stock & Pricing
|
|
13451
12366
|
* @summary Get Current Stock & Pricing
|
|
@@ -13462,38 +12377,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13462
12377
|
* @memberof ProductsApi
|
|
13463
12378
|
*/
|
|
13464
12379
|
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, {}>>;
|
|
13497
12380
|
}
|
|
13498
12381
|
/**
|
|
13499
12382
|
* @export
|
|
@@ -13614,7 +12497,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13614
12497
|
* @param {*} [options] Override http request option.
|
|
13615
12498
|
* @throws {RequiredError}
|
|
13616
12499
|
*/
|
|
13617
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12500
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13618
12501
|
/**
|
|
13619
12502
|
* Create a Fanvil provisioning group
|
|
13620
12503
|
* @summary Add group to DB and FDPS
|
|
@@ -13622,7 +12505,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13622
12505
|
* @param {*} [options] Override http request option.
|
|
13623
12506
|
* @throws {RequiredError}
|
|
13624
12507
|
*/
|
|
13625
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12508
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13626
12509
|
/**
|
|
13627
12510
|
* Add MAC address to DB and FDPS group
|
|
13628
12511
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13679,7 +12562,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13679
12562
|
* @param {*} [options] Override http request option.
|
|
13680
12563
|
* @throws {RequiredError}
|
|
13681
12564
|
*/
|
|
13682
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12565
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13683
12566
|
/**
|
|
13684
12567
|
* Create a Fanvil provisioning group
|
|
13685
12568
|
* @summary Add group to DB and FDPS
|
|
@@ -13687,7 +12570,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13687
12570
|
* @param {*} [options] Override http request option.
|
|
13688
12571
|
* @throws {RequiredError}
|
|
13689
12572
|
*/
|
|
13690
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12573
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13691
12574
|
/**
|
|
13692
12575
|
* Add MAC address to DB and FDPS group
|
|
13693
12576
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13751,7 +12634,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13751
12634
|
* @throws {RequiredError}
|
|
13752
12635
|
* @memberof ProvisioningApi
|
|
13753
12636
|
*/
|
|
13754
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12637
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13755
12638
|
/**
|
|
13756
12639
|
* Create a Fanvil provisioning group
|
|
13757
12640
|
* @summary Add group to DB and FDPS
|
|
@@ -13760,7 +12643,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13760
12643
|
* @throws {RequiredError}
|
|
13761
12644
|
* @memberof ProvisioningApi
|
|
13762
12645
|
*/
|
|
13763
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12646
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13764
12647
|
/**
|
|
13765
12648
|
* Add MAC address to DB and FDPS group
|
|
13766
12649
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14635,65 +13518,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14635
13518
|
*/
|
|
14636
13519
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14637
13520
|
}
|
|
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
|
-
}
|
|
14697
13521
|
/**
|
|
14698
13522
|
* StockManagementApi - axios parameter creator
|
|
14699
13523
|
* @export
|
|
@@ -15023,7 +13847,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
15023
13847
|
* @param {*} [options] Override http request option.
|
|
15024
13848
|
* @throws {RequiredError}
|
|
15025
13849
|
*/
|
|
15026
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13850
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
15027
13851
|
/**
|
|
15028
13852
|
* Get Stock Order Supplier Invoice
|
|
15029
13853
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15238,7 +14062,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15238
14062
|
* @param {*} [options] Override http request option.
|
|
15239
14063
|
* @throws {RequiredError}
|
|
15240
14064
|
*/
|
|
15241
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14065
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15242
14066
|
/**
|
|
15243
14067
|
* Get Stock Order Supplier Invoice
|
|
15244
14068
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15468,7 +14292,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15468
14292
|
* @throws {RequiredError}
|
|
15469
14293
|
* @memberof StockManagementApi
|
|
15470
14294
|
*/
|
|
15471
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14295
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15472
14296
|
/**
|
|
15473
14297
|
* Get Stock Order Supplier Invoice
|
|
15474
14298
|
* @summary Get Stock Order Supplier Invoice
|