yellowgrid-api-ts 3.1.8-dev.0 → 3.1.8
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 -34
- package/api.ts +252 -1875
- 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 +154 -1363
- package/dist/api.js +197 -1135
- 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 -356
- 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
|
|
@@ -2972,44 +2451,44 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2972
2451
|
* @type {string}
|
|
2973
2452
|
* @memberof InstanceUserCredentialsEntity
|
|
2974
2453
|
*/
|
|
2975
|
-
'creationDate'?: string;
|
|
2976
|
-
}
|
|
2977
|
-
/**
|
|
2978
|
-
* Order Item
|
|
2979
|
-
* @export
|
|
2980
|
-
* @interface ItemDTO
|
|
2981
|
-
*/
|
|
2982
|
-
export interface ItemDTO {
|
|
2983
|
-
/**
|
|
2984
|
-
* SKU
|
|
2985
|
-
* @type {string}
|
|
2986
|
-
* @memberof ItemDTO
|
|
2987
|
-
*/
|
|
2988
|
-
'sku'?: string;
|
|
2989
|
-
/**
|
|
2990
|
-
* Quantity
|
|
2991
|
-
* @type {number}
|
|
2992
|
-
* @memberof ItemDTO
|
|
2993
|
-
*/
|
|
2994
|
-
'quantity'?: number;
|
|
2454
|
+
'creationDate'?: string;
|
|
2455
|
+
}
|
|
2456
|
+
/**
|
|
2457
|
+
* Order Item
|
|
2458
|
+
* @export
|
|
2459
|
+
* @interface ItemDTO
|
|
2460
|
+
*/
|
|
2461
|
+
export interface ItemDTO {
|
|
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
|
|
@@ -9842,15 +8980,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9842
8980
|
* @memberof AccountsApi
|
|
9843
8981
|
*/
|
|
9844
8982
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9845
|
-
/**
|
|
9846
|
-
* Get Account Detailed Summary
|
|
9847
|
-
* @summary Get Account Detailed Summary
|
|
9848
|
-
* @param {number} id Customer ID
|
|
9849
|
-
* @param {*} [options] Override http request option.
|
|
9850
|
-
* @throws {RequiredError}
|
|
9851
|
-
* @memberof AccountsApi
|
|
9852
|
-
*/
|
|
9853
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
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,28 +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 (Admin)
|
|
12668
|
-
* @summary Get Editable Order (Admin)
|
|
12669
|
-
* @param {number} id Order ID
|
|
12670
|
-
* @param {*} [options] Override http request option.
|
|
12671
|
-
* @throws {RequiredError}
|
|
12672
|
-
*/
|
|
12673
|
-
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12674
|
-
/**
|
|
12675
|
-
* Get Editable Order
|
|
12676
|
-
* @summary Get Editable Order
|
|
12677
11814
|
* @param {number} id Order ID
|
|
12678
11815
|
* @param {*} [options] Override http request option.
|
|
12679
11816
|
* @throws {RequiredError}
|
|
12680
11817
|
*/
|
|
12681
|
-
|
|
11818
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12682
11819
|
/**
|
|
12683
11820
|
* Get Orders
|
|
12684
11821
|
* @summary Get Orders
|
|
@@ -12693,44 +11830,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12693
11830
|
* @throws {RequiredError}
|
|
12694
11831
|
*/
|
|
12695
11832
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12696
|
-
/**
|
|
12697
|
-
* Create An Order (Admin)
|
|
12698
|
-
* @summary Create An Order (Admin)
|
|
12699
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12700
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12701
|
-
* @param {*} [options] Override http request option.
|
|
12702
|
-
* @throws {RequiredError}
|
|
12703
|
-
*/
|
|
12704
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12705
|
-
/**
|
|
12706
|
-
* Create An Order
|
|
12707
|
-
* @summary Create An Order
|
|
12708
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12709
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12710
|
-
* @param {*} [options] Override http request option.
|
|
12711
|
-
* @throws {RequiredError}
|
|
12712
|
-
*/
|
|
12713
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12714
|
-
/**
|
|
12715
|
-
* Update An Order (Admin)
|
|
12716
|
-
* @summary Update An Order (Admin)
|
|
12717
|
-
* @param {number} id Order ID
|
|
12718
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12719
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12720
|
-
* @param {*} [options] Override http request option.
|
|
12721
|
-
* @throws {RequiredError}
|
|
12722
|
-
*/
|
|
12723
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12724
|
-
/**
|
|
12725
|
-
* Update An Order
|
|
12726
|
-
* @summary Update An Order
|
|
12727
|
-
* @param {number} id Order ID
|
|
12728
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12729
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12730
|
-
* @param {*} [options] Override http request option.
|
|
12731
|
-
* @throws {RequiredError}
|
|
12732
|
-
*/
|
|
12733
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12734
11833
|
};
|
|
12735
11834
|
/**
|
|
12736
11835
|
* OrdersApi - functional programming interface
|
|
@@ -12739,28 +11838,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12739
11838
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12740
11839
|
/**
|
|
12741
11840
|
* Delete Orders
|
|
12742
|
-
* @summary Delete Orders
|
|
12743
|
-
* @param {number} id Order ID
|
|
12744
|
-
* @param {*} [options] Override http request option.
|
|
12745
|
-
* @throws {RequiredError}
|
|
12746
|
-
*/
|
|
12747
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12748
|
-
/**
|
|
12749
|
-
* Get Editable Order (Admin)
|
|
12750
|
-
* @summary Get Editable Order (Admin)
|
|
12751
|
-
* @param {number} id Order ID
|
|
12752
|
-
* @param {*} [options] Override http request option.
|
|
12753
|
-
* @throws {RequiredError}
|
|
12754
|
-
*/
|
|
12755
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12756
|
-
/**
|
|
12757
|
-
* Get Editable Order
|
|
12758
|
-
* @summary Get Editable Order
|
|
12759
11841
|
* @param {number} id Order ID
|
|
12760
11842
|
* @param {*} [options] Override http request option.
|
|
12761
11843
|
* @throws {RequiredError}
|
|
12762
11844
|
*/
|
|
12763
|
-
|
|
11845
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12764
11846
|
/**
|
|
12765
11847
|
* Get Orders
|
|
12766
11848
|
* @summary Get Orders
|
|
@@ -12775,44 +11857,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12775
11857
|
* @throws {RequiredError}
|
|
12776
11858
|
*/
|
|
12777
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>>;
|
|
12778
|
-
/**
|
|
12779
|
-
* Create An Order (Admin)
|
|
12780
|
-
* @summary Create An Order (Admin)
|
|
12781
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12782
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12783
|
-
* @param {*} [options] Override http request option.
|
|
12784
|
-
* @throws {RequiredError}
|
|
12785
|
-
*/
|
|
12786
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12787
|
-
/**
|
|
12788
|
-
* Create An Order
|
|
12789
|
-
* @summary Create An Order
|
|
12790
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12791
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12792
|
-
* @param {*} [options] Override http request option.
|
|
12793
|
-
* @throws {RequiredError}
|
|
12794
|
-
*/
|
|
12795
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12796
|
-
/**
|
|
12797
|
-
* Update An Order (Admin)
|
|
12798
|
-
* @summary Update An Order (Admin)
|
|
12799
|
-
* @param {number} id Order ID
|
|
12800
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12801
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12802
|
-
* @param {*} [options] Override http request option.
|
|
12803
|
-
* @throws {RequiredError}
|
|
12804
|
-
*/
|
|
12805
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12806
|
-
/**
|
|
12807
|
-
* Update An Order
|
|
12808
|
-
* @summary Update An Order
|
|
12809
|
-
* @param {number} id Order ID
|
|
12810
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12811
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12812
|
-
* @param {*} [options] Override http request option.
|
|
12813
|
-
* @throws {RequiredError}
|
|
12814
|
-
*/
|
|
12815
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12816
11860
|
};
|
|
12817
11861
|
/**
|
|
12818
11862
|
* OrdersApi - factory interface
|
|
@@ -12821,28 +11865,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12821
11865
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12822
11866
|
/**
|
|
12823
11867
|
* Delete Orders
|
|
12824
|
-
* @summary Delete Orders
|
|
12825
|
-
* @param {number} id Order ID
|
|
12826
|
-
* @param {*} [options] Override http request option.
|
|
12827
|
-
* @throws {RequiredError}
|
|
12828
|
-
*/
|
|
12829
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12830
|
-
/**
|
|
12831
|
-
* Get Editable Order (Admin)
|
|
12832
|
-
* @summary Get Editable Order (Admin)
|
|
12833
|
-
* @param {number} id Order ID
|
|
12834
|
-
* @param {*} [options] Override http request option.
|
|
12835
|
-
* @throws {RequiredError}
|
|
12836
|
-
*/
|
|
12837
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
12838
|
-
/**
|
|
12839
|
-
* Get Editable Order
|
|
12840
|
-
* @summary Get Editable Order
|
|
12841
11868
|
* @param {number} id Order ID
|
|
12842
11869
|
* @param {*} [options] Override http request option.
|
|
12843
11870
|
* @throws {RequiredError}
|
|
12844
11871
|
*/
|
|
12845
|
-
|
|
11872
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12846
11873
|
/**
|
|
12847
11874
|
* Get Orders
|
|
12848
11875
|
* @summary Get Orders
|
|
@@ -12857,44 +11884,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12857
11884
|
* @throws {RequiredError}
|
|
12858
11885
|
*/
|
|
12859
11886
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12860
|
-
/**
|
|
12861
|
-
* Create An Order (Admin)
|
|
12862
|
-
* @summary Create An Order (Admin)
|
|
12863
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12864
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12865
|
-
* @param {*} [options] Override http request option.
|
|
12866
|
-
* @throws {RequiredError}
|
|
12867
|
-
*/
|
|
12868
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12869
|
-
/**
|
|
12870
|
-
* Create An Order
|
|
12871
|
-
* @summary Create An Order
|
|
12872
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12873
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12874
|
-
* @param {*} [options] Override http request option.
|
|
12875
|
-
* @throws {RequiredError}
|
|
12876
|
-
*/
|
|
12877
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12878
|
-
/**
|
|
12879
|
-
* Update An Order (Admin)
|
|
12880
|
-
* @summary Update An Order (Admin)
|
|
12881
|
-
* @param {number} id Order ID
|
|
12882
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12883
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12884
|
-
* @param {*} [options] Override http request option.
|
|
12885
|
-
* @throws {RequiredError}
|
|
12886
|
-
*/
|
|
12887
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12888
|
-
/**
|
|
12889
|
-
* Update An Order
|
|
12890
|
-
* @summary Update An Order
|
|
12891
|
-
* @param {number} id Order ID
|
|
12892
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12893
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12894
|
-
* @param {*} [options] Override http request option.
|
|
12895
|
-
* @throws {RequiredError}
|
|
12896
|
-
*/
|
|
12897
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12898
11887
|
};
|
|
12899
11888
|
/**
|
|
12900
11889
|
* OrdersApi - object-oriented interface
|
|
@@ -12905,31 +11894,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12905
11894
|
export declare class OrdersApi extends BaseAPI {
|
|
12906
11895
|
/**
|
|
12907
11896
|
* Delete Orders
|
|
12908
|
-
* @summary Delete Orders
|
|
12909
|
-
* @param {number} id Order ID
|
|
12910
|
-
* @param {*} [options] Override http request option.
|
|
12911
|
-
* @throws {RequiredError}
|
|
12912
|
-
* @memberof OrdersApi
|
|
12913
|
-
*/
|
|
12914
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12915
|
-
/**
|
|
12916
|
-
* Get Editable Order (Admin)
|
|
12917
|
-
* @summary Get Editable Order (Admin)
|
|
12918
|
-
* @param {number} id Order ID
|
|
12919
|
-
* @param {*} [options] Override http request option.
|
|
12920
|
-
* @throws {RequiredError}
|
|
12921
|
-
* @memberof OrdersApi
|
|
12922
|
-
*/
|
|
12923
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
12924
|
-
/**
|
|
12925
|
-
* Get Editable Order
|
|
12926
|
-
* @summary Get Editable Order
|
|
12927
11897
|
* @param {number} id Order ID
|
|
12928
11898
|
* @param {*} [options] Override http request option.
|
|
12929
11899
|
* @throws {RequiredError}
|
|
12930
11900
|
* @memberof OrdersApi
|
|
12931
11901
|
*/
|
|
12932
|
-
|
|
11902
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12933
11903
|
/**
|
|
12934
11904
|
* Get Orders
|
|
12935
11905
|
* @summary Get Orders
|
|
@@ -12945,48 +11915,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12945
11915
|
* @memberof OrdersApi
|
|
12946
11916
|
*/
|
|
12947
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, {}>>;
|
|
12948
|
-
/**
|
|
12949
|
-
* Create An Order (Admin)
|
|
12950
|
-
* @summary Create An Order (Admin)
|
|
12951
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12952
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12953
|
-
* @param {*} [options] Override http request option.
|
|
12954
|
-
* @throws {RequiredError}
|
|
12955
|
-
* @memberof OrdersApi
|
|
12956
|
-
*/
|
|
12957
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12958
|
-
/**
|
|
12959
|
-
* Create An Order
|
|
12960
|
-
* @summary Create An Order
|
|
12961
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12962
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12963
|
-
* @param {*} [options] Override http request option.
|
|
12964
|
-
* @throws {RequiredError}
|
|
12965
|
-
* @memberof OrdersApi
|
|
12966
|
-
*/
|
|
12967
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12968
|
-
/**
|
|
12969
|
-
* Update An Order (Admin)
|
|
12970
|
-
* @summary Update An Order (Admin)
|
|
12971
|
-
* @param {number} id Order ID
|
|
12972
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12973
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12974
|
-
* @param {*} [options] Override http request option.
|
|
12975
|
-
* @throws {RequiredError}
|
|
12976
|
-
* @memberof OrdersApi
|
|
12977
|
-
*/
|
|
12978
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12979
|
-
/**
|
|
12980
|
-
* Update An Order
|
|
12981
|
-
* @summary Update An Order
|
|
12982
|
-
* @param {number} id Order ID
|
|
12983
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12984
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12985
|
-
* @param {*} [options] Override http request option.
|
|
12986
|
-
* @throws {RequiredError}
|
|
12987
|
-
* @memberof OrdersApi
|
|
12988
|
-
*/
|
|
12989
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12990
11918
|
}
|
|
12991
11919
|
/**
|
|
12992
11920
|
* @export
|
|
@@ -13242,6 +12170,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13242
12170
|
* @throws {RequiredError}
|
|
13243
12171
|
*/
|
|
13244
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>;
|
|
13245
12180
|
/**
|
|
13246
12181
|
* Get Current Stock & Pricing
|
|
13247
12182
|
* @summary Get Current Stock & Pricing
|
|
@@ -13254,10 +12189,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13254
12189
|
/**
|
|
13255
12190
|
* Get Products
|
|
13256
12191
|
* @summary Get Products
|
|
12192
|
+
* @param {number} [pageSize] Number Of Results
|
|
12193
|
+
* @param {number} [page] Page Number
|
|
12194
|
+
* @param {string} [search] Search
|
|
13257
12195
|
* @param {*} [options] Override http request option.
|
|
13258
12196
|
* @throws {RequiredError}
|
|
13259
12197
|
*/
|
|
13260
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12198
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13261
12199
|
/**
|
|
13262
12200
|
* Get Current Stock & Pricing
|
|
13263
12201
|
* @summary Get Current Stock & Pricing
|
|
@@ -13272,35 +12210,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13272
12210
|
* @throws {RequiredError}
|
|
13273
12211
|
*/
|
|
13274
12212
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13275
|
-
/**
|
|
13276
|
-
* Search Products
|
|
13277
|
-
* @summary Search Products
|
|
13278
|
-
* @param {number} [pageSize] Number Of Results
|
|
13279
|
-
* @param {number} [page] Page Number
|
|
13280
|
-
* @param {string} [search] Search
|
|
13281
|
-
* @param {*} [options] Override http request option.
|
|
13282
|
-
* @throws {RequiredError}
|
|
13283
|
-
*/
|
|
13284
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13285
|
-
/**
|
|
13286
|
-
* Get Product
|
|
13287
|
-
* @summary Get Product
|
|
13288
|
-
* @param {string} sku Product SKU
|
|
13289
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13290
|
-
* @param {*} [options] Override http request option.
|
|
13291
|
-
* @throws {RequiredError}
|
|
13292
|
-
*/
|
|
13293
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13294
|
-
/**
|
|
13295
|
-
* Get Product For Customer
|
|
13296
|
-
* @summary Get Product For Customer
|
|
13297
|
-
* @param {number} customerId Customer ID
|
|
13298
|
-
* @param {string} sku Product SKU
|
|
13299
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13300
|
-
* @param {*} [options] Override http request option.
|
|
13301
|
-
* @throws {RequiredError}
|
|
13302
|
-
*/
|
|
13303
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13304
12213
|
};
|
|
13305
12214
|
/**
|
|
13306
12215
|
* ProductsApi - functional programming interface
|
|
@@ -13314,6 +12223,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13314
12223
|
* @throws {RequiredError}
|
|
13315
12224
|
*/
|
|
13316
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>>>;
|
|
13317
12233
|
/**
|
|
13318
12234
|
* Get Current Stock & Pricing
|
|
13319
12235
|
* @summary Get Current Stock & Pricing
|
|
@@ -13326,10 +12242,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13326
12242
|
/**
|
|
13327
12243
|
* Get Products
|
|
13328
12244
|
* @summary Get Products
|
|
12245
|
+
* @param {number} [pageSize] Number Of Results
|
|
12246
|
+
* @param {number} [page] Page Number
|
|
12247
|
+
* @param {string} [search] Search
|
|
13329
12248
|
* @param {*} [options] Override http request option.
|
|
13330
12249
|
* @throws {RequiredError}
|
|
13331
12250
|
*/
|
|
13332
|
-
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>>;
|
|
13333
12252
|
/**
|
|
13334
12253
|
* Get Current Stock & Pricing
|
|
13335
12254
|
* @summary Get Current Stock & Pricing
|
|
@@ -13344,35 +12263,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13344
12263
|
* @throws {RequiredError}
|
|
13345
12264
|
*/
|
|
13346
12265
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13347
|
-
/**
|
|
13348
|
-
* Search Products
|
|
13349
|
-
* @summary Search Products
|
|
13350
|
-
* @param {number} [pageSize] Number Of Results
|
|
13351
|
-
* @param {number} [page] Page Number
|
|
13352
|
-
* @param {string} [search] Search
|
|
13353
|
-
* @param {*} [options] Override http request option.
|
|
13354
|
-
* @throws {RequiredError}
|
|
13355
|
-
*/
|
|
13356
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13357
|
-
/**
|
|
13358
|
-
* Get Product
|
|
13359
|
-
* @summary Get Product
|
|
13360
|
-
* @param {string} sku Product SKU
|
|
13361
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13362
|
-
* @param {*} [options] Override http request option.
|
|
13363
|
-
* @throws {RequiredError}
|
|
13364
|
-
*/
|
|
13365
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13366
|
-
/**
|
|
13367
|
-
* Get Product For Customer
|
|
13368
|
-
* @summary Get Product For Customer
|
|
13369
|
-
* @param {number} customerId Customer ID
|
|
13370
|
-
* @param {string} sku Product SKU
|
|
13371
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13372
|
-
* @param {*} [options] Override http request option.
|
|
13373
|
-
* @throws {RequiredError}
|
|
13374
|
-
*/
|
|
13375
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13376
12266
|
};
|
|
13377
12267
|
/**
|
|
13378
12268
|
* ProductsApi - factory interface
|
|
@@ -13386,6 +12276,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13386
12276
|
* @throws {RequiredError}
|
|
13387
12277
|
*/
|
|
13388
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>>;
|
|
13389
12286
|
/**
|
|
13390
12287
|
* Get Current Stock & Pricing
|
|
13391
12288
|
* @summary Get Current Stock & Pricing
|
|
@@ -13398,10 +12295,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13398
12295
|
/**
|
|
13399
12296
|
* Get Products
|
|
13400
12297
|
* @summary Get Products
|
|
12298
|
+
* @param {number} [pageSize] Number Of Results
|
|
12299
|
+
* @param {number} [page] Page Number
|
|
12300
|
+
* @param {string} [search] Search
|
|
13401
12301
|
* @param {*} [options] Override http request option.
|
|
13402
12302
|
* @throws {RequiredError}
|
|
13403
12303
|
*/
|
|
13404
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12304
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13405
12305
|
/**
|
|
13406
12306
|
* Get Current Stock & Pricing
|
|
13407
12307
|
* @summary Get Current Stock & Pricing
|
|
@@ -13416,35 +12316,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13416
12316
|
* @throws {RequiredError}
|
|
13417
12317
|
*/
|
|
13418
12318
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13419
|
-
/**
|
|
13420
|
-
* Search Products
|
|
13421
|
-
* @summary Search Products
|
|
13422
|
-
* @param {number} [pageSize] Number Of Results
|
|
13423
|
-
* @param {number} [page] Page Number
|
|
13424
|
-
* @param {string} [search] Search
|
|
13425
|
-
* @param {*} [options] Override http request option.
|
|
13426
|
-
* @throws {RequiredError}
|
|
13427
|
-
*/
|
|
13428
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13429
|
-
/**
|
|
13430
|
-
* Get Product
|
|
13431
|
-
* @summary Get Product
|
|
13432
|
-
* @param {string} sku Product SKU
|
|
13433
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13434
|
-
* @param {*} [options] Override http request option.
|
|
13435
|
-
* @throws {RequiredError}
|
|
13436
|
-
*/
|
|
13437
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13438
|
-
/**
|
|
13439
|
-
* Get Product For Customer
|
|
13440
|
-
* @summary Get Product For Customer
|
|
13441
|
-
* @param {number} customerId Customer ID
|
|
13442
|
-
* @param {string} sku Product SKU
|
|
13443
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13444
|
-
* @param {*} [options] Override http request option.
|
|
13445
|
-
* @throws {RequiredError}
|
|
13446
|
-
*/
|
|
13447
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13448
12319
|
};
|
|
13449
12320
|
/**
|
|
13450
12321
|
* ProductsApi - object-oriented interface
|
|
@@ -13461,6 +12332,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13461
12332
|
* @memberof ProductsApi
|
|
13462
12333
|
*/
|
|
13463
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, {}>>;
|
|
13464
12343
|
/**
|
|
13465
12344
|
* Get Current Stock & Pricing
|
|
13466
12345
|
* @summary Get Current Stock & Pricing
|
|
@@ -13474,11 +12353,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13474
12353
|
/**
|
|
13475
12354
|
* Get Products
|
|
13476
12355
|
* @summary Get Products
|
|
12356
|
+
* @param {number} [pageSize] Number Of Results
|
|
12357
|
+
* @param {number} [page] Page Number
|
|
12358
|
+
* @param {string} [search] Search
|
|
13477
12359
|
* @param {*} [options] Override http request option.
|
|
13478
12360
|
* @throws {RequiredError}
|
|
13479
12361
|
* @memberof ProductsApi
|
|
13480
12362
|
*/
|
|
13481
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12363
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13482
12364
|
/**
|
|
13483
12365
|
* Get Current Stock & Pricing
|
|
13484
12366
|
* @summary Get Current Stock & Pricing
|
|
@@ -13495,38 +12377,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13495
12377
|
* @memberof ProductsApi
|
|
13496
12378
|
*/
|
|
13497
12379
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13498
|
-
/**
|
|
13499
|
-
* Search Products
|
|
13500
|
-
* @summary Search Products
|
|
13501
|
-
* @param {number} [pageSize] Number Of Results
|
|
13502
|
-
* @param {number} [page] Page Number
|
|
13503
|
-
* @param {string} [search] Search
|
|
13504
|
-
* @param {*} [options] Override http request option.
|
|
13505
|
-
* @throws {RequiredError}
|
|
13506
|
-
* @memberof ProductsApi
|
|
13507
|
-
*/
|
|
13508
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13509
|
-
/**
|
|
13510
|
-
* Get Product
|
|
13511
|
-
* @summary Get Product
|
|
13512
|
-
* @param {string} sku Product SKU
|
|
13513
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13514
|
-
* @param {*} [options] Override http request option.
|
|
13515
|
-
* @throws {RequiredError}
|
|
13516
|
-
* @memberof ProductsApi
|
|
13517
|
-
*/
|
|
13518
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13519
|
-
/**
|
|
13520
|
-
* Get Product For Customer
|
|
13521
|
-
* @summary Get Product For Customer
|
|
13522
|
-
* @param {number} customerId Customer ID
|
|
13523
|
-
* @param {string} sku Product SKU
|
|
13524
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13525
|
-
* @param {*} [options] Override http request option.
|
|
13526
|
-
* @throws {RequiredError}
|
|
13527
|
-
* @memberof ProductsApi
|
|
13528
|
-
*/
|
|
13529
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13530
12380
|
}
|
|
13531
12381
|
/**
|
|
13532
12382
|
* @export
|
|
@@ -13647,7 +12497,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13647
12497
|
* @param {*} [options] Override http request option.
|
|
13648
12498
|
* @throws {RequiredError}
|
|
13649
12499
|
*/
|
|
13650
|
-
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>>>;
|
|
13651
12501
|
/**
|
|
13652
12502
|
* Create a Fanvil provisioning group
|
|
13653
12503
|
* @summary Add group to DB and FDPS
|
|
@@ -13655,7 +12505,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13655
12505
|
* @param {*} [options] Override http request option.
|
|
13656
12506
|
* @throws {RequiredError}
|
|
13657
12507
|
*/
|
|
13658
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12508
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13659
12509
|
/**
|
|
13660
12510
|
* Add MAC address to DB and FDPS group
|
|
13661
12511
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13712,7 +12562,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13712
12562
|
* @param {*} [options] Override http request option.
|
|
13713
12563
|
* @throws {RequiredError}
|
|
13714
12564
|
*/
|
|
13715
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12565
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13716
12566
|
/**
|
|
13717
12567
|
* Create a Fanvil provisioning group
|
|
13718
12568
|
* @summary Add group to DB and FDPS
|
|
@@ -13720,7 +12570,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13720
12570
|
* @param {*} [options] Override http request option.
|
|
13721
12571
|
* @throws {RequiredError}
|
|
13722
12572
|
*/
|
|
13723
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12573
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13724
12574
|
/**
|
|
13725
12575
|
* Add MAC address to DB and FDPS group
|
|
13726
12576
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13784,7 +12634,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13784
12634
|
* @throws {RequiredError}
|
|
13785
12635
|
* @memberof ProvisioningApi
|
|
13786
12636
|
*/
|
|
13787
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12637
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13788
12638
|
/**
|
|
13789
12639
|
* Create a Fanvil provisioning group
|
|
13790
12640
|
* @summary Add group to DB and FDPS
|
|
@@ -13793,7 +12643,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13793
12643
|
* @throws {RequiredError}
|
|
13794
12644
|
* @memberof ProvisioningApi
|
|
13795
12645
|
*/
|
|
13796
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12646
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13797
12647
|
/**
|
|
13798
12648
|
* Add MAC address to DB and FDPS group
|
|
13799
12649
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14668,65 +13518,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14668
13518
|
*/
|
|
14669
13519
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14670
13520
|
}
|
|
14671
|
-
/**
|
|
14672
|
-
* ShippingApi - axios parameter creator
|
|
14673
|
-
* @export
|
|
14674
|
-
*/
|
|
14675
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14676
|
-
/**
|
|
14677
|
-
* Get Shipping Services
|
|
14678
|
-
* @summary Get Shipping Services
|
|
14679
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14680
|
-
* @param {*} [options] Override http request option.
|
|
14681
|
-
* @throws {RequiredError}
|
|
14682
|
-
*/
|
|
14683
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14684
|
-
};
|
|
14685
|
-
/**
|
|
14686
|
-
* ShippingApi - functional programming interface
|
|
14687
|
-
* @export
|
|
14688
|
-
*/
|
|
14689
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14690
|
-
/**
|
|
14691
|
-
* Get Shipping Services
|
|
14692
|
-
* @summary Get Shipping Services
|
|
14693
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14694
|
-
* @param {*} [options] Override http request option.
|
|
14695
|
-
* @throws {RequiredError}
|
|
14696
|
-
*/
|
|
14697
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14698
|
-
};
|
|
14699
|
-
/**
|
|
14700
|
-
* ShippingApi - factory interface
|
|
14701
|
-
* @export
|
|
14702
|
-
*/
|
|
14703
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14704
|
-
/**
|
|
14705
|
-
* Get Shipping Services
|
|
14706
|
-
* @summary Get Shipping Services
|
|
14707
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14708
|
-
* @param {*} [options] Override http request option.
|
|
14709
|
-
* @throws {RequiredError}
|
|
14710
|
-
*/
|
|
14711
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14712
|
-
};
|
|
14713
|
-
/**
|
|
14714
|
-
* ShippingApi - object-oriented interface
|
|
14715
|
-
* @export
|
|
14716
|
-
* @class ShippingApi
|
|
14717
|
-
* @extends {BaseAPI}
|
|
14718
|
-
*/
|
|
14719
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14720
|
-
/**
|
|
14721
|
-
* Get Shipping Services
|
|
14722
|
-
* @summary Get Shipping Services
|
|
14723
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14724
|
-
* @param {*} [options] Override http request option.
|
|
14725
|
-
* @throws {RequiredError}
|
|
14726
|
-
* @memberof ShippingApi
|
|
14727
|
-
*/
|
|
14728
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14729
|
-
}
|
|
14730
13521
|
/**
|
|
14731
13522
|
* StockManagementApi - axios parameter creator
|
|
14732
13523
|
* @export
|
|
@@ -15056,7 +13847,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
15056
13847
|
* @param {*} [options] Override http request option.
|
|
15057
13848
|
* @throws {RequiredError}
|
|
15058
13849
|
*/
|
|
15059
|
-
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>>>;
|
|
15060
13851
|
/**
|
|
15061
13852
|
* Get Stock Order Supplier Invoice
|
|
15062
13853
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15271,7 +14062,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15271
14062
|
* @param {*} [options] Override http request option.
|
|
15272
14063
|
* @throws {RequiredError}
|
|
15273
14064
|
*/
|
|
15274
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14065
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15275
14066
|
/**
|
|
15276
14067
|
* Get Stock Order Supplier Invoice
|
|
15277
14068
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15501,7 +14292,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15501
14292
|
* @throws {RequiredError}
|
|
15502
14293
|
* @memberof StockManagementApi
|
|
15503
14294
|
*/
|
|
15504
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14295
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15505
14296
|
/**
|
|
15506
14297
|
* Get Stock Order Supplier Invoice
|
|
15507
14298
|
* @summary Get Stock Order Supplier Invoice
|