yellowgrid-api-ts 3.1.4 → 3.1.5-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +213 -195
- package/.openapi-generator/VERSION +1 -1
- package/README.md +34 -7
- package/api.ts +1865 -254
- package/base.ts +1 -1
- package/common.ts +5 -5
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1343 -146
- package/dist/api.js +1135 -197
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AbstractOrderRequestDTO.md +33 -0
- package/docs/AccountDetailedSummaryDTO.md +39 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AddressModel.md +2 -0
- package/docs/AdminItemRequestDTO.md +39 -0
- package/docs/AdminOrderRequestDTO.md +45 -0
- package/docs/AdminUserModel.md +29 -0
- package/docs/BasicItemDTO.md +23 -0
- package/docs/BasicProductDTO.md +23 -0
- package/docs/Class3CXApi.md +0 -55
- package/docs/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CustomerItemRequestDTO.md +35 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +12 -4
- package/docs/ItemEntity.md +2 -0
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +356 -4
- package/docs/PostGetProductForCustomerRequest.md +24 -0
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +5 -3
- package/docs/ProductsApi.md +164 -43
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningEntity.md → ProvisioningModel.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/ShippingApi.md +63 -0
- package/docs/ShippingConsignmentModel.md +26 -0
- package/docs/ShippingInformationDTO.md +25 -0
- package/docs/ShippingServiceDTO.md +23 -0
- package/docs/ShippingServiceModel.md +31 -0
- package/docs/{GetGetPasswordHash200Response.md → ShippingServicesModel.md} +5 -5
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcDTO.md +31 -0
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/openapitools.json +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,6 +13,55 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
* Order Request
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AbstractOrderRequestDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface AbstractOrderRequestDTO {
|
|
22
|
+
/**
|
|
23
|
+
* Order Reference
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AbstractOrderRequestDTO
|
|
26
|
+
*/
|
|
27
|
+
'orderReference'?: string | null;
|
|
28
|
+
/**
|
|
29
|
+
* Items
|
|
30
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
+
* @memberof AbstractOrderRequestDTO
|
|
32
|
+
*/
|
|
33
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {ShippingServiceDTO}
|
|
37
|
+
* @memberof AbstractOrderRequestDTO
|
|
38
|
+
*/
|
|
39
|
+
'shippingService'?: ShippingServiceDTO;
|
|
40
|
+
/**
|
|
41
|
+
* Provisioning URL
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof AbstractOrderRequestDTO
|
|
44
|
+
*/
|
|
45
|
+
'provisioningUrl'?: string | null;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {AddressModel}
|
|
49
|
+
* @memberof AbstractOrderRequestDTO
|
|
50
|
+
*/
|
|
51
|
+
'shippingAddress'?: AddressModel | null;
|
|
52
|
+
/**
|
|
53
|
+
* Part Ship Order
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof AbstractOrderRequestDTO
|
|
56
|
+
*/
|
|
57
|
+
'partShip'?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Quote
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof AbstractOrderRequestDTO
|
|
62
|
+
*/
|
|
63
|
+
'quote'?: boolean;
|
|
64
|
+
}
|
|
16
65
|
/**
|
|
17
66
|
* AccountContactsEntity
|
|
18
67
|
* @export
|
|
@@ -244,6 +293,73 @@ export interface AccountContactRequestModel {
|
|
|
244
293
|
*/
|
|
245
294
|
'despatchEmails'?: boolean;
|
|
246
295
|
}
|
|
296
|
+
/**
|
|
297
|
+
* Account Details
|
|
298
|
+
* @export
|
|
299
|
+
* @interface AccountDetailedSummaryDTO
|
|
300
|
+
*/
|
|
301
|
+
export interface AccountDetailedSummaryDTO {
|
|
302
|
+
/**
|
|
303
|
+
* ID
|
|
304
|
+
* @type {number}
|
|
305
|
+
* @memberof AccountDetailedSummaryDTO
|
|
306
|
+
*/
|
|
307
|
+
'id'?: number;
|
|
308
|
+
/**
|
|
309
|
+
* Xero ID
|
|
310
|
+
* @type {string}
|
|
311
|
+
* @memberof AccountDetailedSummaryDTO
|
|
312
|
+
*/
|
|
313
|
+
'xeroId'?: string;
|
|
314
|
+
/**
|
|
315
|
+
* Company
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof AccountDetailedSummaryDTO
|
|
318
|
+
*/
|
|
319
|
+
'company'?: string;
|
|
320
|
+
/**
|
|
321
|
+
* Credit Limit
|
|
322
|
+
* @type {number}
|
|
323
|
+
* @memberof AccountDetailedSummaryDTO
|
|
324
|
+
*/
|
|
325
|
+
'creditLimit'?: number;
|
|
326
|
+
/**
|
|
327
|
+
* Contacts
|
|
328
|
+
* @type {Array<AccountContactModel>}
|
|
329
|
+
* @memberof AccountDetailedSummaryDTO
|
|
330
|
+
*/
|
|
331
|
+
'contacts'?: Array<AccountContactModel>;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @type {AddressModel}
|
|
335
|
+
* @memberof AccountDetailedSummaryDTO
|
|
336
|
+
*/
|
|
337
|
+
'billingAddress'?: AddressModel;
|
|
338
|
+
/**
|
|
339
|
+
* Addresses
|
|
340
|
+
* @type {Array<AddressModel>}
|
|
341
|
+
* @memberof AccountDetailedSummaryDTO
|
|
342
|
+
*/
|
|
343
|
+
'addresses'?: Array<AddressModel>;
|
|
344
|
+
/**
|
|
345
|
+
* Provisioning URLs
|
|
346
|
+
* @type {Array<ProvisioningModel>}
|
|
347
|
+
* @memberof AccountDetailedSummaryDTO
|
|
348
|
+
*/
|
|
349
|
+
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
+
/**
|
|
351
|
+
* On Hold
|
|
352
|
+
* @type {boolean}
|
|
353
|
+
* @memberof AccountDetailedSummaryDTO
|
|
354
|
+
*/
|
|
355
|
+
'onHold'?: boolean;
|
|
356
|
+
/**
|
|
357
|
+
* Balance (£)
|
|
358
|
+
* @type {number}
|
|
359
|
+
* @memberof AccountDetailedSummaryDTO
|
|
360
|
+
*/
|
|
361
|
+
'balance'?: number | null;
|
|
362
|
+
}
|
|
247
363
|
/**
|
|
248
364
|
* New Account Request
|
|
249
365
|
* @export
|
|
@@ -493,6 +609,12 @@ export interface AddressModel {
|
|
|
493
609
|
* @memberof AddressModel
|
|
494
610
|
*/
|
|
495
611
|
'company'?: string;
|
|
612
|
+
/**
|
|
613
|
+
* Default
|
|
614
|
+
* @type {boolean}
|
|
615
|
+
* @memberof AddressModel
|
|
616
|
+
*/
|
|
617
|
+
'default'?: boolean;
|
|
496
618
|
}
|
|
497
619
|
/**
|
|
498
620
|
* Address Request
|
|
@@ -525,6 +647,203 @@ export interface AddressRequestModel {
|
|
|
525
647
|
*/
|
|
526
648
|
'addressPostcode'?: string;
|
|
527
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* Admin Order Item Request
|
|
652
|
+
* @export
|
|
653
|
+
* @interface AdminItemRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
export interface AdminItemRequestDTO {
|
|
656
|
+
/**
|
|
657
|
+
* SKU
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof AdminItemRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'sku'?: string;
|
|
662
|
+
/**
|
|
663
|
+
* Quantity
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof AdminItemRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'quantity'?: number;
|
|
668
|
+
/**
|
|
669
|
+
* ID
|
|
670
|
+
* @type {number}
|
|
671
|
+
* @memberof AdminItemRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'id'?: number | null;
|
|
674
|
+
/**
|
|
675
|
+
* 3CX Licence Key
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof AdminItemRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'licenceKey'?: string | null;
|
|
680
|
+
/**
|
|
681
|
+
* 3CX Hosting
|
|
682
|
+
* @type {boolean}
|
|
683
|
+
* @memberof AdminItemRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'hosting'?: boolean | null;
|
|
686
|
+
/**
|
|
687
|
+
* Date Time
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'processDate'?: string;
|
|
692
|
+
/**
|
|
693
|
+
* 3CX Sales Code
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof AdminItemRequestDTO
|
|
696
|
+
*/
|
|
697
|
+
'tcxSalesCode'?: string | null;
|
|
698
|
+
/**
|
|
699
|
+
* SBCS
|
|
700
|
+
* @type {Array<TcxSbcDTO>}
|
|
701
|
+
* @memberof AdminItemRequestDTO
|
|
702
|
+
*/
|
|
703
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
704
|
+
/**
|
|
705
|
+
* Title
|
|
706
|
+
* @type {string}
|
|
707
|
+
* @memberof AdminItemRequestDTO
|
|
708
|
+
*/
|
|
709
|
+
'title'?: string | null;
|
|
710
|
+
/**
|
|
711
|
+
* Price (£)
|
|
712
|
+
* @type {number}
|
|
713
|
+
* @memberof AdminItemRequestDTO
|
|
714
|
+
*/
|
|
715
|
+
'itemPrice'?: number | null;
|
|
716
|
+
}
|
|
717
|
+
/**
|
|
718
|
+
* Admin Order Request
|
|
719
|
+
* @export
|
|
720
|
+
* @interface AdminOrderRequestDTO
|
|
721
|
+
*/
|
|
722
|
+
export interface AdminOrderRequestDTO {
|
|
723
|
+
/**
|
|
724
|
+
* Order Reference
|
|
725
|
+
* @type {string}
|
|
726
|
+
* @memberof AdminOrderRequestDTO
|
|
727
|
+
*/
|
|
728
|
+
'orderReference'?: string | null;
|
|
729
|
+
/**
|
|
730
|
+
* Items
|
|
731
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
732
|
+
* @memberof AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
735
|
+
/**
|
|
736
|
+
*
|
|
737
|
+
* @type {ShippingServiceDTO}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'shippingService'?: ShippingServiceDTO;
|
|
741
|
+
/**
|
|
742
|
+
* Provisioning URL
|
|
743
|
+
* @type {string}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'provisioningUrl'?: string | null;
|
|
747
|
+
/**
|
|
748
|
+
*
|
|
749
|
+
* @type {AddressModel}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'shippingAddress'?: AddressModel;
|
|
753
|
+
/**
|
|
754
|
+
* Part Ship Order
|
|
755
|
+
* @type {boolean}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'partShip'?: boolean;
|
|
759
|
+
/**
|
|
760
|
+
* Quote
|
|
761
|
+
* @type {boolean}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'quote'?: boolean;
|
|
765
|
+
/**
|
|
766
|
+
* Customer ID
|
|
767
|
+
* @type {number}
|
|
768
|
+
* @memberof AdminOrderRequestDTO
|
|
769
|
+
*/
|
|
770
|
+
'customerId'?: number;
|
|
771
|
+
/**
|
|
772
|
+
* Contact
|
|
773
|
+
* @type {string}
|
|
774
|
+
* @memberof AdminOrderRequestDTO
|
|
775
|
+
*/
|
|
776
|
+
'contact'?: string;
|
|
777
|
+
/**
|
|
778
|
+
* Ignore Customer On Hold
|
|
779
|
+
* @type {boolean}
|
|
780
|
+
* @memberof AdminOrderRequestDTO
|
|
781
|
+
*/
|
|
782
|
+
'ignoreOnHold'?: boolean;
|
|
783
|
+
/**
|
|
784
|
+
* Ignore Customer Credit Limit
|
|
785
|
+
* @type {boolean}
|
|
786
|
+
* @memberof AdminOrderRequestDTO
|
|
787
|
+
*/
|
|
788
|
+
'ignoreCreditLimit'?: boolean;
|
|
789
|
+
/**
|
|
790
|
+
* Include NFR Promos
|
|
791
|
+
* @type {boolean}
|
|
792
|
+
* @memberof AdminOrderRequestDTO
|
|
793
|
+
*/
|
|
794
|
+
'includeNfrPromos'?: boolean;
|
|
795
|
+
/**
|
|
796
|
+
* Carriage Charge
|
|
797
|
+
* @type {number}
|
|
798
|
+
* @memberof AdminOrderRequestDTO
|
|
799
|
+
*/
|
|
800
|
+
'carriageCharge'?: number;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* Admin User
|
|
804
|
+
* @export
|
|
805
|
+
* @interface AdminUserModel
|
|
806
|
+
*/
|
|
807
|
+
export interface AdminUserModel {
|
|
808
|
+
/**
|
|
809
|
+
* First Name
|
|
810
|
+
* @type {string}
|
|
811
|
+
* @memberof AdminUserModel
|
|
812
|
+
*/
|
|
813
|
+
'firstName'?: string;
|
|
814
|
+
/**
|
|
815
|
+
* Last Name
|
|
816
|
+
* @type {string}
|
|
817
|
+
* @memberof AdminUserModel
|
|
818
|
+
*/
|
|
819
|
+
'lastName'?: string;
|
|
820
|
+
/**
|
|
821
|
+
* Avatar
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof AdminUserModel
|
|
824
|
+
*/
|
|
825
|
+
'avatar'?: string | null;
|
|
826
|
+
/**
|
|
827
|
+
* Role
|
|
828
|
+
* @type {number}
|
|
829
|
+
* @memberof AdminUserModel
|
|
830
|
+
*/
|
|
831
|
+
'role'?: AdminUserModelRoleEnum;
|
|
832
|
+
/**
|
|
833
|
+
* Email
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof AdminUserModel
|
|
836
|
+
*/
|
|
837
|
+
'email'?: string | null;
|
|
838
|
+
}
|
|
839
|
+
export declare const AdminUserModelRoleEnum: {
|
|
840
|
+
readonly NUMBER_0: 0;
|
|
841
|
+
readonly NUMBER_1: 1;
|
|
842
|
+
readonly NUMBER_2: 2;
|
|
843
|
+
readonly NUMBER_3: 3;
|
|
844
|
+
readonly NUMBER_4: 4;
|
|
845
|
+
};
|
|
846
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
847
|
/**
|
|
529
848
|
* Agent Hours Graph
|
|
530
849
|
* @export
|
|
@@ -754,6 +1073,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1073
|
*/
|
|
755
1074
|
'redirect_uri'?: string | null;
|
|
756
1075
|
}
|
|
1076
|
+
/**
|
|
1077
|
+
* Basic Order Item
|
|
1078
|
+
* @export
|
|
1079
|
+
* @interface BasicItemDTO
|
|
1080
|
+
*/
|
|
1081
|
+
export interface BasicItemDTO {
|
|
1082
|
+
/**
|
|
1083
|
+
* SKU
|
|
1084
|
+
* @type {string}
|
|
1085
|
+
* @memberof BasicItemDTO
|
|
1086
|
+
*/
|
|
1087
|
+
'sku'?: string;
|
|
1088
|
+
/**
|
|
1089
|
+
* Quantity
|
|
1090
|
+
* @type {number}
|
|
1091
|
+
* @memberof BasicItemDTO
|
|
1092
|
+
*/
|
|
1093
|
+
'quantity'?: number;
|
|
1094
|
+
}
|
|
1095
|
+
/**
|
|
1096
|
+
* Basic Product
|
|
1097
|
+
* @export
|
|
1098
|
+
* @interface BasicProductDTO
|
|
1099
|
+
*/
|
|
1100
|
+
export interface BasicProductDTO {
|
|
1101
|
+
/**
|
|
1102
|
+
* SKU
|
|
1103
|
+
* @type {string}
|
|
1104
|
+
* @memberof BasicProductDTO
|
|
1105
|
+
*/
|
|
1106
|
+
'sku'?: string;
|
|
1107
|
+
/**
|
|
1108
|
+
* Title
|
|
1109
|
+
* @type {string}
|
|
1110
|
+
* @memberof BasicProductDTO
|
|
1111
|
+
*/
|
|
1112
|
+
'title'?: string;
|
|
1113
|
+
}
|
|
757
1114
|
/**
|
|
758
1115
|
* BatchesEntity
|
|
759
1116
|
* @export
|
|
@@ -948,12 +1305,6 @@ export interface ClientDetailsModel {
|
|
|
948
1305
|
* @memberof ClientDetailsModel
|
|
949
1306
|
*/
|
|
950
1307
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1308
|
}
|
|
958
1309
|
/**
|
|
959
1310
|
* OAuth client details
|
|
@@ -1115,6 +1466,73 @@ export interface ConversationModel {
|
|
|
1115
1466
|
*/
|
|
1116
1467
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1468
|
}
|
|
1469
|
+
/**
|
|
1470
|
+
* CourierPricesEntity
|
|
1471
|
+
* @export
|
|
1472
|
+
* @interface CourierPriceEntity
|
|
1473
|
+
*/
|
|
1474
|
+
export interface CourierPriceEntity {
|
|
1475
|
+
/**
|
|
1476
|
+
* id
|
|
1477
|
+
* @type {number}
|
|
1478
|
+
* @memberof CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
'id'?: number;
|
|
1481
|
+
/**
|
|
1482
|
+
* courier
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'courier'?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* destinationIso
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'destinationIso'?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* serviceDescription
|
|
1495
|
+
* @type {string}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'serviceDescription'?: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* flatRate
|
|
1501
|
+
* @type {number}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'flatRate'?: number;
|
|
1505
|
+
/**
|
|
1506
|
+
* initialBox
|
|
1507
|
+
* @type {number}
|
|
1508
|
+
* @memberof CourierPriceEntity
|
|
1509
|
+
*/
|
|
1510
|
+
'initialBox'?: number;
|
|
1511
|
+
/**
|
|
1512
|
+
* initialKg
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof CourierPriceEntity
|
|
1515
|
+
*/
|
|
1516
|
+
'initialKg'?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
* perBox
|
|
1519
|
+
* @type {number}
|
|
1520
|
+
* @memberof CourierPriceEntity
|
|
1521
|
+
*/
|
|
1522
|
+
'perBox'?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* perKg
|
|
1525
|
+
* @type {number}
|
|
1526
|
+
* @memberof CourierPriceEntity
|
|
1527
|
+
*/
|
|
1528
|
+
'perKg'?: number;
|
|
1529
|
+
/**
|
|
1530
|
+
* maxKg
|
|
1531
|
+
* @type {number}
|
|
1532
|
+
* @memberof CourierPriceEntity
|
|
1533
|
+
*/
|
|
1534
|
+
'maxKg'?: number;
|
|
1535
|
+
}
|
|
1118
1536
|
/**
|
|
1119
1537
|
* Credit Account
|
|
1120
1538
|
* @export
|
|
@@ -1297,6 +1715,110 @@ export interface CustomerInformationModel {
|
|
|
1297
1715
|
*/
|
|
1298
1716
|
'contactLastName'?: string;
|
|
1299
1717
|
}
|
|
1718
|
+
/**
|
|
1719
|
+
* Order Item Request
|
|
1720
|
+
* @export
|
|
1721
|
+
* @interface CustomerItemRequestDTO
|
|
1722
|
+
*/
|
|
1723
|
+
export interface CustomerItemRequestDTO {
|
|
1724
|
+
/**
|
|
1725
|
+
* SKU
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof CustomerItemRequestDTO
|
|
1728
|
+
*/
|
|
1729
|
+
'sku'?: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* Quantity
|
|
1732
|
+
* @type {number}
|
|
1733
|
+
* @memberof CustomerItemRequestDTO
|
|
1734
|
+
*/
|
|
1735
|
+
'quantity'?: number;
|
|
1736
|
+
/**
|
|
1737
|
+
* ID
|
|
1738
|
+
* @type {number}
|
|
1739
|
+
* @memberof CustomerItemRequestDTO
|
|
1740
|
+
*/
|
|
1741
|
+
'id'?: number | null;
|
|
1742
|
+
/**
|
|
1743
|
+
* 3CX Licence Key
|
|
1744
|
+
* @type {string}
|
|
1745
|
+
* @memberof CustomerItemRequestDTO
|
|
1746
|
+
*/
|
|
1747
|
+
'licenceKey'?: string | null;
|
|
1748
|
+
/**
|
|
1749
|
+
* 3CX Hosting
|
|
1750
|
+
* @type {boolean}
|
|
1751
|
+
* @memberof CustomerItemRequestDTO
|
|
1752
|
+
*/
|
|
1753
|
+
'hosting'?: boolean | null;
|
|
1754
|
+
/**
|
|
1755
|
+
* Date Time
|
|
1756
|
+
* @type {string}
|
|
1757
|
+
* @memberof CustomerItemRequestDTO
|
|
1758
|
+
*/
|
|
1759
|
+
'processDate'?: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* 3CX Sales Code
|
|
1762
|
+
* @type {string}
|
|
1763
|
+
* @memberof CustomerItemRequestDTO
|
|
1764
|
+
*/
|
|
1765
|
+
'tcxSalesCode'?: string | null;
|
|
1766
|
+
/**
|
|
1767
|
+
* SBCS
|
|
1768
|
+
* @type {Array<TcxSbcDTO>}
|
|
1769
|
+
* @memberof CustomerItemRequestDTO
|
|
1770
|
+
*/
|
|
1771
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1772
|
+
}
|
|
1773
|
+
/**
|
|
1774
|
+
* Order Request
|
|
1775
|
+
* @export
|
|
1776
|
+
* @interface CustomerOrderRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
export interface CustomerOrderRequestDTO {
|
|
1779
|
+
/**
|
|
1780
|
+
* Order Reference
|
|
1781
|
+
* @type {string}
|
|
1782
|
+
* @memberof CustomerOrderRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'orderReference'?: string | null;
|
|
1785
|
+
/**
|
|
1786
|
+
* Items
|
|
1787
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1788
|
+
* @memberof CustomerOrderRequestDTO
|
|
1789
|
+
*/
|
|
1790
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1791
|
+
/**
|
|
1792
|
+
*
|
|
1793
|
+
* @type {ShippingServiceDTO}
|
|
1794
|
+
* @memberof CustomerOrderRequestDTO
|
|
1795
|
+
*/
|
|
1796
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1797
|
+
/**
|
|
1798
|
+
* Provisioning URL
|
|
1799
|
+
* @type {string}
|
|
1800
|
+
* @memberof CustomerOrderRequestDTO
|
|
1801
|
+
*/
|
|
1802
|
+
'provisioningUrl'?: string | null;
|
|
1803
|
+
/**
|
|
1804
|
+
*
|
|
1805
|
+
* @type {AddressModel}
|
|
1806
|
+
* @memberof CustomerOrderRequestDTO
|
|
1807
|
+
*/
|
|
1808
|
+
'shippingAddress'?: AddressModel;
|
|
1809
|
+
/**
|
|
1810
|
+
* Part Ship Order
|
|
1811
|
+
* @type {boolean}
|
|
1812
|
+
* @memberof CustomerOrderRequestDTO
|
|
1813
|
+
*/
|
|
1814
|
+
'partShip'?: boolean;
|
|
1815
|
+
/**
|
|
1816
|
+
* Quote
|
|
1817
|
+
* @type {boolean}
|
|
1818
|
+
* @memberof CustomerOrderRequestDTO
|
|
1819
|
+
*/
|
|
1820
|
+
'quote'?: boolean;
|
|
1821
|
+
}
|
|
1300
1822
|
/**
|
|
1301
1823
|
* Customer Price List
|
|
1302
1824
|
* @export
|
|
@@ -1803,19 +2325,6 @@ export interface GenericFileModel {
|
|
|
1803
2325
|
*/
|
|
1804
2326
|
'type'?: string;
|
|
1805
2327
|
}
|
|
1806
|
-
/**
|
|
1807
|
-
*
|
|
1808
|
-
* @export
|
|
1809
|
-
* @interface GetGetPasswordHash200Response
|
|
1810
|
-
*/
|
|
1811
|
-
export interface GetGetPasswordHash200Response {
|
|
1812
|
-
/**
|
|
1813
|
-
*
|
|
1814
|
-
* @type {string}
|
|
1815
|
-
* @memberof GetGetPasswordHash200Response
|
|
1816
|
-
*/
|
|
1817
|
-
'hash'?: string;
|
|
1818
|
-
}
|
|
1819
2328
|
/**
|
|
1820
2329
|
*
|
|
1821
2330
|
* @export
|
|
@@ -2410,36 +2919,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2410
2919
|
* @interface ItemDTO
|
|
2411
2920
|
*/
|
|
2412
2921
|
export interface ItemDTO {
|
|
2922
|
+
/**
|
|
2923
|
+
* SKU
|
|
2924
|
+
* @type {string}
|
|
2925
|
+
* @memberof ItemDTO
|
|
2926
|
+
*/
|
|
2927
|
+
'sku'?: string;
|
|
2928
|
+
/**
|
|
2929
|
+
* Quantity
|
|
2930
|
+
* @type {number}
|
|
2931
|
+
* @memberof ItemDTO
|
|
2932
|
+
*/
|
|
2933
|
+
'quantity'?: number;
|
|
2413
2934
|
/**
|
|
2414
2935
|
* ID
|
|
2415
2936
|
* @type {number}
|
|
2416
2937
|
* @memberof ItemDTO
|
|
2417
2938
|
*/
|
|
2418
|
-
'id'?: number;
|
|
2939
|
+
'id'?: number | null;
|
|
2419
2940
|
/**
|
|
2420
2941
|
* Order ID
|
|
2421
2942
|
* @type {number}
|
|
2422
2943
|
* @memberof ItemDTO
|
|
2423
2944
|
*/
|
|
2424
|
-
'orderId'?: number;
|
|
2945
|
+
'orderId'?: number | null;
|
|
2425
2946
|
/**
|
|
2426
2947
|
* Title
|
|
2427
2948
|
* @type {string}
|
|
2428
2949
|
* @memberof ItemDTO
|
|
2429
2950
|
*/
|
|
2430
2951
|
'title'?: string;
|
|
2431
|
-
/**
|
|
2432
|
-
* SKU
|
|
2433
|
-
* @type {string}
|
|
2434
|
-
* @memberof ItemDTO
|
|
2435
|
-
*/
|
|
2436
|
-
'sku'?: string;
|
|
2437
|
-
/**
|
|
2438
|
-
* Quantity
|
|
2439
|
-
* @type {number}
|
|
2440
|
-
* @memberof ItemDTO
|
|
2441
|
-
*/
|
|
2442
|
-
'quantity'?: number;
|
|
2443
2952
|
/**
|
|
2444
2953
|
* Price
|
|
2445
2954
|
* @type {number}
|
|
@@ -2464,6 +2973,12 @@ export interface ItemDTO {
|
|
|
2464
2973
|
* @memberof ItemDTO
|
|
2465
2974
|
*/
|
|
2466
2975
|
'processDate'?: string;
|
|
2976
|
+
/**
|
|
2977
|
+
* 3CX Hosting
|
|
2978
|
+
* @type {boolean}
|
|
2979
|
+
* @memberof ItemDTO
|
|
2980
|
+
*/
|
|
2981
|
+
'hosting'?: boolean | null;
|
|
2467
2982
|
/**
|
|
2468
2983
|
* Promo Item
|
|
2469
2984
|
* @type {boolean}
|
|
@@ -2475,7 +2990,25 @@ export interface ItemDTO {
|
|
|
2475
2990
|
* @type {number}
|
|
2476
2991
|
* @memberof ItemDTO
|
|
2477
2992
|
*/
|
|
2478
|
-
'refunded'?: number;
|
|
2993
|
+
'refunded'?: number | null;
|
|
2994
|
+
/**
|
|
2995
|
+
* SBCs
|
|
2996
|
+
* @type {Array<TcxSbcDTO>}
|
|
2997
|
+
* @memberof ItemDTO
|
|
2998
|
+
*/
|
|
2999
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3000
|
+
/**
|
|
3001
|
+
* Readonly
|
|
3002
|
+
* @type {boolean}
|
|
3003
|
+
* @memberof ItemDTO
|
|
3004
|
+
*/
|
|
3005
|
+
'readonly'?: boolean;
|
|
3006
|
+
/**
|
|
3007
|
+
* 3CX Sales Code
|
|
3008
|
+
* @type {string}
|
|
3009
|
+
* @memberof ItemDTO
|
|
3010
|
+
*/
|
|
3011
|
+
'tcxSalesCode'?: string | null;
|
|
2479
3012
|
}
|
|
2480
3013
|
/**
|
|
2481
3014
|
* ItemsEntity
|
|
@@ -2609,6 +3142,31 @@ export interface ItemEntity {
|
|
|
2609
3142
|
* @memberof ItemEntity
|
|
2610
3143
|
*/
|
|
2611
3144
|
'promoItem'?: number;
|
|
3145
|
+
/**
|
|
3146
|
+
* 3CX Sales Code
|
|
3147
|
+
* @type {string}
|
|
3148
|
+
* @memberof ItemEntity
|
|
3149
|
+
*/
|
|
3150
|
+
'tcxSalesCode'?: string | null;
|
|
3151
|
+
}
|
|
3152
|
+
/**
|
|
3153
|
+
* LinkedOrdersEntity
|
|
3154
|
+
* @export
|
|
3155
|
+
* @interface LinkedOrderEntity
|
|
3156
|
+
*/
|
|
3157
|
+
export interface LinkedOrderEntity {
|
|
3158
|
+
/**
|
|
3159
|
+
* orderId
|
|
3160
|
+
* @type {number}
|
|
3161
|
+
* @memberof LinkedOrderEntity
|
|
3162
|
+
*/
|
|
3163
|
+
'orderId'?: number;
|
|
3164
|
+
/**
|
|
3165
|
+
* linkedOrderId
|
|
3166
|
+
* @type {number}
|
|
3167
|
+
* @memberof LinkedOrderEntity
|
|
3168
|
+
*/
|
|
3169
|
+
'linkedOrderId'?: number;
|
|
2612
3170
|
}
|
|
2613
3171
|
/**
|
|
2614
3172
|
* MFA Required
|
|
@@ -3262,13 +3820,19 @@ export interface OrderSummaryDTO {
|
|
|
3262
3820
|
* @type {string}
|
|
3263
3821
|
* @memberof OrderSummaryDTO
|
|
3264
3822
|
*/
|
|
3265
|
-
'reference'?: string;
|
|
3823
|
+
'reference'?: string | null;
|
|
3266
3824
|
/**
|
|
3267
3825
|
* Invoice Number
|
|
3268
3826
|
* @type {string}
|
|
3269
3827
|
* @memberof OrderSummaryDTO
|
|
3270
3828
|
*/
|
|
3271
3829
|
'invoiceNumber'?: string;
|
|
3830
|
+
/**
|
|
3831
|
+
* Invoice ID
|
|
3832
|
+
* @type {string}
|
|
3833
|
+
* @memberof OrderSummaryDTO
|
|
3834
|
+
*/
|
|
3835
|
+
'invoiceId'?: string | null;
|
|
3272
3836
|
/**
|
|
3273
3837
|
* Date Time
|
|
3274
3838
|
* @type {string}
|
|
@@ -3323,6 +3887,24 @@ export interface OrderSummaryDTO {
|
|
|
3323
3887
|
* @memberof OrderSummaryDTO
|
|
3324
3888
|
*/
|
|
3325
3889
|
'fulfillable'?: boolean | null;
|
|
3890
|
+
/**
|
|
3891
|
+
* Provisioning URL
|
|
3892
|
+
* @type {string}
|
|
3893
|
+
* @memberof OrderSummaryDTO
|
|
3894
|
+
*/
|
|
3895
|
+
'provisioningUrl'?: string | null;
|
|
3896
|
+
/**
|
|
3897
|
+
*
|
|
3898
|
+
* @type {ShippingServiceDTO}
|
|
3899
|
+
* @memberof OrderSummaryDTO
|
|
3900
|
+
*/
|
|
3901
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
3902
|
+
/**
|
|
3903
|
+
* Readonly
|
|
3904
|
+
* @type {boolean}
|
|
3905
|
+
* @memberof OrderSummaryDTO
|
|
3906
|
+
*/
|
|
3907
|
+
'readonly'?: boolean;
|
|
3326
3908
|
}
|
|
3327
3909
|
/**
|
|
3328
3910
|
* Order Totals
|
|
@@ -3372,6 +3954,12 @@ export interface OrderTotalModel {
|
|
|
3372
3954
|
* @memberof OrderTotalModel
|
|
3373
3955
|
*/
|
|
3374
3956
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3957
|
+
/**
|
|
3958
|
+
* Delivery
|
|
3959
|
+
* @type {number}
|
|
3960
|
+
* @memberof OrderTotalModel
|
|
3961
|
+
*/
|
|
3962
|
+
'delivery'?: number | null;
|
|
3375
3963
|
}
|
|
3376
3964
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3377
3965
|
readonly Eur: "EUR";
|
|
@@ -3750,6 +4338,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3750
4338
|
*/
|
|
3751
4339
|
'scopes'?: Array<string>;
|
|
3752
4340
|
}
|
|
4341
|
+
/**
|
|
4342
|
+
*
|
|
4343
|
+
* @export
|
|
4344
|
+
* @interface PostGetProductForCustomerRequest
|
|
4345
|
+
*/
|
|
4346
|
+
export interface PostGetProductForCustomerRequest {
|
|
4347
|
+
/**
|
|
4348
|
+
* Quantity
|
|
4349
|
+
* @type {number}
|
|
4350
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4351
|
+
*/
|
|
4352
|
+
'quantity'?: number | null;
|
|
4353
|
+
/**
|
|
4354
|
+
* 3CX Licence Key
|
|
4355
|
+
* @type {string}
|
|
4356
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4357
|
+
*/
|
|
4358
|
+
'licenceKey'?: string | null;
|
|
4359
|
+
/**
|
|
4360
|
+
* 3CX Hosting
|
|
4361
|
+
* @type {boolean}
|
|
4362
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4363
|
+
*/
|
|
4364
|
+
'hosting'?: boolean | null;
|
|
4365
|
+
}
|
|
3753
4366
|
/**
|
|
3754
4367
|
* Price & Stock List
|
|
3755
4368
|
* @export
|
|
@@ -3838,10 +4451,10 @@ export interface PrizesEntity {
|
|
|
3838
4451
|
export interface ProductSearchResultsModel {
|
|
3839
4452
|
/**
|
|
3840
4453
|
* Results
|
|
3841
|
-
* @type {Array<
|
|
4454
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3842
4455
|
* @memberof ProductSearchResultsModel
|
|
3843
4456
|
*/
|
|
3844
|
-
'results'?: Array<
|
|
4457
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3845
4458
|
}
|
|
3846
4459
|
/**
|
|
3847
4460
|
* Product Serial Info
|
|
@@ -3877,45 +4490,51 @@ export interface ProductSerialInfoModel {
|
|
|
3877
4490
|
/**
|
|
3878
4491
|
* Product Summary
|
|
3879
4492
|
* @export
|
|
3880
|
-
* @interface
|
|
4493
|
+
* @interface ProductSummaryDTO
|
|
3881
4494
|
*/
|
|
3882
|
-
export interface
|
|
4495
|
+
export interface ProductSummaryDTO {
|
|
3883
4496
|
/**
|
|
3884
4497
|
* SKU
|
|
3885
4498
|
* @type {string}
|
|
3886
|
-
* @memberof
|
|
4499
|
+
* @memberof ProductSummaryDTO
|
|
3887
4500
|
*/
|
|
3888
4501
|
'sku'?: string;
|
|
3889
4502
|
/**
|
|
3890
4503
|
* Title
|
|
3891
4504
|
* @type {string}
|
|
3892
|
-
* @memberof
|
|
4505
|
+
* @memberof ProductSummaryDTO
|
|
3893
4506
|
*/
|
|
3894
4507
|
'title'?: string;
|
|
3895
4508
|
/**
|
|
3896
4509
|
* Stock Quantity
|
|
3897
4510
|
* @type {number}
|
|
3898
|
-
* @memberof
|
|
4511
|
+
* @memberof ProductSummaryDTO
|
|
3899
4512
|
*/
|
|
3900
4513
|
'quantity'?: number | null;
|
|
3901
4514
|
/**
|
|
3902
4515
|
* Stock Product
|
|
3903
4516
|
* @type {boolean}
|
|
3904
|
-
* @memberof
|
|
4517
|
+
* @memberof ProductSummaryDTO
|
|
3905
4518
|
*/
|
|
3906
4519
|
'stockProduct'?: boolean;
|
|
3907
4520
|
/**
|
|
3908
4521
|
* Price
|
|
3909
4522
|
* @type {number}
|
|
3910
|
-
* @memberof
|
|
4523
|
+
* @memberof ProductSummaryDTO
|
|
3911
4524
|
*/
|
|
3912
4525
|
'price'?: number | null;
|
|
3913
4526
|
/**
|
|
3914
4527
|
* Carton Size
|
|
3915
4528
|
* @type {number}
|
|
3916
|
-
* @memberof
|
|
4529
|
+
* @memberof ProductSummaryDTO
|
|
3917
4530
|
*/
|
|
3918
4531
|
'cartonSize'?: number | null;
|
|
4532
|
+
/**
|
|
4533
|
+
* RRP Price
|
|
4534
|
+
* @type {number}
|
|
4535
|
+
* @memberof ProductSummaryDTO
|
|
4536
|
+
*/
|
|
4537
|
+
'rrp'?: number | null;
|
|
3919
4538
|
}
|
|
3920
4539
|
/**
|
|
3921
4540
|
* PromoCodesEntity
|
|
@@ -4054,37 +4673,37 @@ export interface PromoItemsEntity {
|
|
|
4054
4673
|
/**
|
|
4055
4674
|
* Provisioning Group
|
|
4056
4675
|
* @export
|
|
4057
|
-
* @interface
|
|
4676
|
+
* @interface ProvisioningModel
|
|
4058
4677
|
*/
|
|
4059
|
-
export interface
|
|
4678
|
+
export interface ProvisioningModel {
|
|
4060
4679
|
/**
|
|
4061
4680
|
* Provisioning Group Name
|
|
4062
4681
|
* @type {string}
|
|
4063
|
-
* @memberof
|
|
4682
|
+
* @memberof ProvisioningModel
|
|
4064
4683
|
*/
|
|
4065
4684
|
'groupName'?: string;
|
|
4066
4685
|
/**
|
|
4067
4686
|
* Provisioning URL (Static Provisioning Server)
|
|
4068
4687
|
* @type {string}
|
|
4069
|
-
* @memberof
|
|
4688
|
+
* @memberof ProvisioningModel
|
|
4070
4689
|
*/
|
|
4071
4690
|
'provisioningUrl'?: string;
|
|
4072
4691
|
/**
|
|
4073
4692
|
* Additional Authentication Secret
|
|
4074
4693
|
* @type {string}
|
|
4075
|
-
* @memberof
|
|
4694
|
+
* @memberof ProvisioningModel
|
|
4076
4695
|
*/
|
|
4077
4696
|
'auth'?: string;
|
|
4078
4697
|
/**
|
|
4079
4698
|
* Provisioning Group ID
|
|
4080
4699
|
* @type {number}
|
|
4081
|
-
* @memberof
|
|
4700
|
+
* @memberof ProvisioningModel
|
|
4082
4701
|
*/
|
|
4083
4702
|
'id'?: number;
|
|
4084
4703
|
/**
|
|
4085
4704
|
* Owner ID
|
|
4086
4705
|
* @type {number}
|
|
4087
|
-
* @memberof
|
|
4706
|
+
* @memberof ProvisioningModel
|
|
4088
4707
|
*/
|
|
4089
4708
|
'customerId'?: number;
|
|
4090
4709
|
}
|
|
@@ -4438,7 +5057,7 @@ export interface ShipmentEntity {
|
|
|
4438
5057
|
* @type {string}
|
|
4439
5058
|
* @memberof ShipmentEntity
|
|
4440
5059
|
*/
|
|
4441
|
-
'
|
|
5060
|
+
'dateShipped'?: string;
|
|
4442
5061
|
/**
|
|
4443
5062
|
* requestDate
|
|
4444
5063
|
* @type {string}
|
|
@@ -4489,6 +5108,149 @@ export interface ShipmentItemEntity {
|
|
|
4489
5108
|
*/
|
|
4490
5109
|
'itemId'?: string;
|
|
4491
5110
|
}
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @export
|
|
5114
|
+
* @interface ShippingConsignmentModel
|
|
5115
|
+
*/
|
|
5116
|
+
export interface ShippingConsignmentModel {
|
|
5117
|
+
/**
|
|
5118
|
+
*
|
|
5119
|
+
* @type {ShippingServiceModel}
|
|
5120
|
+
* @memberof ShippingConsignmentModel
|
|
5121
|
+
*/
|
|
5122
|
+
'service'?: ShippingServiceModel;
|
|
5123
|
+
/**
|
|
5124
|
+
* ID/Number
|
|
5125
|
+
* @type {string}
|
|
5126
|
+
* @memberof ShippingConsignmentModel
|
|
5127
|
+
*/
|
|
5128
|
+
'id'?: string;
|
|
5129
|
+
/**
|
|
5130
|
+
* Tracking Number
|
|
5131
|
+
* @type {string}
|
|
5132
|
+
* @memberof ShippingConsignmentModel
|
|
5133
|
+
*/
|
|
5134
|
+
'trackingNumber'?: string;
|
|
5135
|
+
/**
|
|
5136
|
+
* Parcels
|
|
5137
|
+
* @type {Array<string>}
|
|
5138
|
+
* @memberof ShippingConsignmentModel
|
|
5139
|
+
*/
|
|
5140
|
+
'parcelIds'?: Array<string>;
|
|
5141
|
+
}
|
|
5142
|
+
/**
|
|
5143
|
+
* Shipping Information
|
|
5144
|
+
* @export
|
|
5145
|
+
* @interface ShippingInformationDTO
|
|
5146
|
+
*/
|
|
5147
|
+
export interface ShippingInformationDTO {
|
|
5148
|
+
/**
|
|
5149
|
+
* Items
|
|
5150
|
+
* @type {Array<BasicItemDTO>}
|
|
5151
|
+
* @memberof ShippingInformationDTO
|
|
5152
|
+
*/
|
|
5153
|
+
'items'?: Array<BasicItemDTO>;
|
|
5154
|
+
/**
|
|
5155
|
+
* Destination Post Code
|
|
5156
|
+
* @type {string}
|
|
5157
|
+
* @memberof ShippingInformationDTO
|
|
5158
|
+
*/
|
|
5159
|
+
'postalCode'?: string;
|
|
5160
|
+
/**
|
|
5161
|
+
* Destination ISO
|
|
5162
|
+
* @type {string}
|
|
5163
|
+
* @memberof ShippingInformationDTO
|
|
5164
|
+
*/
|
|
5165
|
+
'iso'?: string;
|
|
5166
|
+
}
|
|
5167
|
+
/**
|
|
5168
|
+
* Shipping Service
|
|
5169
|
+
* @export
|
|
5170
|
+
* @interface ShippingServiceDTO
|
|
5171
|
+
*/
|
|
5172
|
+
export interface ShippingServiceDTO {
|
|
5173
|
+
/**
|
|
5174
|
+
* Courier
|
|
5175
|
+
* @type {string}
|
|
5176
|
+
* @memberof ShippingServiceDTO
|
|
5177
|
+
*/
|
|
5178
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5179
|
+
/**
|
|
5180
|
+
* Service Name
|
|
5181
|
+
* @type {string}
|
|
5182
|
+
* @memberof ShippingServiceDTO
|
|
5183
|
+
*/
|
|
5184
|
+
'serviceName'?: string;
|
|
5185
|
+
}
|
|
5186
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5187
|
+
readonly Dpd: "DPD";
|
|
5188
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5189
|
+
readonly Pops: "POPS";
|
|
5190
|
+
};
|
|
5191
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5192
|
+
/**
|
|
5193
|
+
* Shipping Service
|
|
5194
|
+
* @export
|
|
5195
|
+
* @interface ShippingServiceModel
|
|
5196
|
+
*/
|
|
5197
|
+
export interface ShippingServiceModel {
|
|
5198
|
+
/**
|
|
5199
|
+
* Courier
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof ShippingServiceModel
|
|
5202
|
+
*/
|
|
5203
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5204
|
+
/**
|
|
5205
|
+
* Code
|
|
5206
|
+
* @type {string}
|
|
5207
|
+
* @memberof ShippingServiceModel
|
|
5208
|
+
*/
|
|
5209
|
+
'code'?: string;
|
|
5210
|
+
/**
|
|
5211
|
+
* Name
|
|
5212
|
+
* @type {string}
|
|
5213
|
+
* @memberof ShippingServiceModel
|
|
5214
|
+
*/
|
|
5215
|
+
'name'?: string;
|
|
5216
|
+
/**
|
|
5217
|
+
* Description
|
|
5218
|
+
* @type {string}
|
|
5219
|
+
* @memberof ShippingServiceModel
|
|
5220
|
+
*/
|
|
5221
|
+
'description'?: string;
|
|
5222
|
+
/**
|
|
5223
|
+
* Label
|
|
5224
|
+
* @type {string}
|
|
5225
|
+
* @memberof ShippingServiceModel
|
|
5226
|
+
*/
|
|
5227
|
+
'label'?: string | null;
|
|
5228
|
+
/**
|
|
5229
|
+
* Price
|
|
5230
|
+
* @type {number}
|
|
5231
|
+
* @memberof ShippingServiceModel
|
|
5232
|
+
*/
|
|
5233
|
+
'price'?: number | null;
|
|
5234
|
+
}
|
|
5235
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5236
|
+
readonly Dpd: "DPD";
|
|
5237
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5238
|
+
readonly Pops: "POPS";
|
|
5239
|
+
};
|
|
5240
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5241
|
+
/**
|
|
5242
|
+
*
|
|
5243
|
+
* @export
|
|
5244
|
+
* @interface ShippingServicesModel
|
|
5245
|
+
*/
|
|
5246
|
+
export interface ShippingServicesModel {
|
|
5247
|
+
/**
|
|
5248
|
+
* Services
|
|
5249
|
+
* @type {Array<ShippingServiceModel>}
|
|
5250
|
+
* @memberof ShippingServicesModel
|
|
5251
|
+
*/
|
|
5252
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5253
|
+
}
|
|
4492
5254
|
/**
|
|
4493
5255
|
* Change Response
|
|
4494
5256
|
* @export
|
|
@@ -7308,6 +8070,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7308
8070
|
*/
|
|
7309
8071
|
'secretAccessKey'?: string;
|
|
7310
8072
|
}
|
|
8073
|
+
/**
|
|
8074
|
+
* SBC Data
|
|
8075
|
+
* @export
|
|
8076
|
+
* @interface TcxSbcDTO
|
|
8077
|
+
*/
|
|
8078
|
+
export interface TcxSbcDTO {
|
|
8079
|
+
/**
|
|
8080
|
+
* LAN IP Address
|
|
8081
|
+
* @type {string}
|
|
8082
|
+
* @memberof TcxSbcDTO
|
|
8083
|
+
*/
|
|
8084
|
+
'ipAddress'?: string;
|
|
8085
|
+
/**
|
|
8086
|
+
* LAN Default Gateway
|
|
8087
|
+
* @type {string}
|
|
8088
|
+
* @memberof TcxSbcDTO
|
|
8089
|
+
*/
|
|
8090
|
+
'defaultGateway'?: string;
|
|
8091
|
+
/**
|
|
8092
|
+
* LAN Subnet Mask
|
|
8093
|
+
* @type {string}
|
|
8094
|
+
* @memberof TcxSbcDTO
|
|
8095
|
+
*/
|
|
8096
|
+
'netmask'?: string;
|
|
8097
|
+
/**
|
|
8098
|
+
* DNS
|
|
8099
|
+
* @type {string}
|
|
8100
|
+
* @memberof TcxSbcDTO
|
|
8101
|
+
*/
|
|
8102
|
+
'dns'?: string;
|
|
8103
|
+
/**
|
|
8104
|
+
* 3CX URL
|
|
8105
|
+
* @type {string}
|
|
8106
|
+
* @memberof TcxSbcDTO
|
|
8107
|
+
*/
|
|
8108
|
+
'tcxUrl'?: string;
|
|
8109
|
+
/**
|
|
8110
|
+
* 3CX SBC Key
|
|
8111
|
+
* @type {string}
|
|
8112
|
+
* @memberof TcxSbcDTO
|
|
8113
|
+
*/
|
|
8114
|
+
'tcxKey'?: string;
|
|
8115
|
+
}
|
|
7311
8116
|
/**
|
|
7312
8117
|
* 3CX Wizard SBC
|
|
7313
8118
|
* @export
|
|
@@ -7412,7 +8217,7 @@ export interface TcxSbcEntity {
|
|
|
7412
8217
|
'technicalContact'?: string;
|
|
7413
8218
|
}
|
|
7414
8219
|
/**
|
|
7415
|
-
* 3CX SBC
|
|
8220
|
+
* 3CX Wizard SBC
|
|
7416
8221
|
* @export
|
|
7417
8222
|
* @interface TcxSbcModel
|
|
7418
8223
|
*/
|
|
@@ -8490,6 +9295,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8490
9295
|
* @throws {RequiredError}
|
|
8491
9296
|
*/
|
|
8492
9297
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9298
|
+
/**
|
|
9299
|
+
* Get Account Detailed Summary
|
|
9300
|
+
* @summary Get Account Detailed Summary
|
|
9301
|
+
* @param {number} id Customer ID
|
|
9302
|
+
* @param {*} [options] Override http request option.
|
|
9303
|
+
* @throws {RequiredError}
|
|
9304
|
+
*/
|
|
9305
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8493
9306
|
/**
|
|
8494
9307
|
* Get Accounts
|
|
8495
9308
|
* @summary Get Accounts
|
|
@@ -8555,6 +9368,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8555
9368
|
* @throws {RequiredError}
|
|
8556
9369
|
*/
|
|
8557
9370
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9371
|
+
/**
|
|
9372
|
+
* Get Admin Account
|
|
9373
|
+
* @summary Get Admin Account
|
|
9374
|
+
* @param {*} [options] Override http request option.
|
|
9375
|
+
* @throws {RequiredError}
|
|
9376
|
+
*/
|
|
9377
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8558
9378
|
/**
|
|
8559
9379
|
* Create client credentials
|
|
8560
9380
|
* @summary Create client credentials
|
|
@@ -8635,6 +9455,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8635
9455
|
* @throws {RequiredError}
|
|
8636
9456
|
*/
|
|
8637
9457
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9458
|
+
/**
|
|
9459
|
+
* Get Account Detailed Summary
|
|
9460
|
+
* @summary Get Account Detailed Summary
|
|
9461
|
+
* @param {number} id Customer ID
|
|
9462
|
+
* @param {*} [options] Override http request option.
|
|
9463
|
+
* @throws {RequiredError}
|
|
9464
|
+
*/
|
|
9465
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8638
9466
|
/**
|
|
8639
9467
|
* Get Accounts
|
|
8640
9468
|
* @summary Get Accounts
|
|
@@ -8700,6 +9528,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8700
9528
|
* @throws {RequiredError}
|
|
8701
9529
|
*/
|
|
8702
9530
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9531
|
+
/**
|
|
9532
|
+
* Get Admin Account
|
|
9533
|
+
* @summary Get Admin Account
|
|
9534
|
+
* @param {*} [options] Override http request option.
|
|
9535
|
+
* @throws {RequiredError}
|
|
9536
|
+
*/
|
|
9537
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8703
9538
|
/**
|
|
8704
9539
|
* Create client credentials
|
|
8705
9540
|
* @summary Create client credentials
|
|
@@ -8780,6 +9615,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8780
9615
|
* @throws {RequiredError}
|
|
8781
9616
|
*/
|
|
8782
9617
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9618
|
+
/**
|
|
9619
|
+
* Get Account Detailed Summary
|
|
9620
|
+
* @summary Get Account Detailed Summary
|
|
9621
|
+
* @param {number} id Customer ID
|
|
9622
|
+
* @param {*} [options] Override http request option.
|
|
9623
|
+
* @throws {RequiredError}
|
|
9624
|
+
*/
|
|
9625
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8783
9626
|
/**
|
|
8784
9627
|
* Get Accounts
|
|
8785
9628
|
* @summary Get Accounts
|
|
@@ -8845,6 +9688,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8845
9688
|
* @throws {RequiredError}
|
|
8846
9689
|
*/
|
|
8847
9690
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9691
|
+
/**
|
|
9692
|
+
* Get Admin Account
|
|
9693
|
+
* @summary Get Admin Account
|
|
9694
|
+
* @param {*} [options] Override http request option.
|
|
9695
|
+
* @throws {RequiredError}
|
|
9696
|
+
*/
|
|
9697
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8848
9698
|
/**
|
|
8849
9699
|
* Create client credentials
|
|
8850
9700
|
* @summary Create client credentials
|
|
@@ -8931,6 +9781,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8931
9781
|
* @memberof AccountsApi
|
|
8932
9782
|
*/
|
|
8933
9783
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9784
|
+
/**
|
|
9785
|
+
* Get Account Detailed Summary
|
|
9786
|
+
* @summary Get Account Detailed Summary
|
|
9787
|
+
* @param {number} id Customer ID
|
|
9788
|
+
* @param {*} [options] Override http request option.
|
|
9789
|
+
* @throws {RequiredError}
|
|
9790
|
+
* @memberof AccountsApi
|
|
9791
|
+
*/
|
|
9792
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
8934
9793
|
/**
|
|
8935
9794
|
* Get Accounts
|
|
8936
9795
|
* @summary Get Accounts
|
|
@@ -9004,6 +9863,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9004
9863
|
* @memberof AccountsApi
|
|
9005
9864
|
*/
|
|
9006
9865
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9866
|
+
/**
|
|
9867
|
+
* Get Admin Account
|
|
9868
|
+
* @summary Get Admin Account
|
|
9869
|
+
* @param {*} [options] Override http request option.
|
|
9870
|
+
* @throws {RequiredError}
|
|
9871
|
+
* @memberof AccountsApi
|
|
9872
|
+
*/
|
|
9873
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9007
9874
|
/**
|
|
9008
9875
|
* Create client credentials
|
|
9009
9876
|
* @summary Create client credentials
|
|
@@ -9066,14 +9933,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9066
9933
|
* @throws {RequiredError}
|
|
9067
9934
|
*/
|
|
9068
9935
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9069
|
-
/**
|
|
9070
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9071
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9072
|
-
* @param {string} password Desired 3CX web access password
|
|
9073
|
-
* @param {*} [options] Override http request option.
|
|
9074
|
-
* @throws {RequiredError}
|
|
9075
|
-
*/
|
|
9076
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9077
9936
|
/**
|
|
9078
9937
|
* Get Bulk 3CX Licence Details
|
|
9079
9938
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9096,14 +9955,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9096
9955
|
* @throws {RequiredError}
|
|
9097
9956
|
*/
|
|
9098
9957
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9099
|
-
/**
|
|
9100
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9101
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9102
|
-
* @param {string} password Desired 3CX web access password
|
|
9103
|
-
* @param {*} [options] Override http request option.
|
|
9104
|
-
* @throws {RequiredError}
|
|
9105
|
-
*/
|
|
9106
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9107
9958
|
/**
|
|
9108
9959
|
* Get Bulk 3CX Licence Details
|
|
9109
9960
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9126,14 +9977,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9126
9977
|
* @throws {RequiredError}
|
|
9127
9978
|
*/
|
|
9128
9979
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9129
|
-
/**
|
|
9130
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9131
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9132
|
-
* @param {string} password Desired 3CX web access password
|
|
9133
|
-
* @param {*} [options] Override http request option.
|
|
9134
|
-
* @throws {RequiredError}
|
|
9135
|
-
*/
|
|
9136
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9137
9980
|
/**
|
|
9138
9981
|
* Get Bulk 3CX Licence Details
|
|
9139
9982
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9159,15 +10002,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9159
10002
|
* @memberof Class3CXApi
|
|
9160
10003
|
*/
|
|
9161
10004
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9162
|
-
/**
|
|
9163
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9164
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9165
|
-
* @param {string} password Desired 3CX web access password
|
|
9166
|
-
* @param {*} [options] Override http request option.
|
|
9167
|
-
* @throws {RequiredError}
|
|
9168
|
-
* @memberof Class3CXApi
|
|
9169
|
-
*/
|
|
9170
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9171
10005
|
/**
|
|
9172
10006
|
* Get Bulk 3CX Licence Details
|
|
9173
10007
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11697,11 +12531,28 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11697
12531
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11698
12532
|
/**
|
|
11699
12533
|
* Delete Orders
|
|
12534
|
+
* @summary Delete Orders
|
|
12535
|
+
* @param {number} id Order ID
|
|
12536
|
+
* @param {*} [options] Override http request option.
|
|
12537
|
+
* @throws {RequiredError}
|
|
12538
|
+
*/
|
|
12539
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12540
|
+
/**
|
|
12541
|
+
* Get Editable Order (Admin)
|
|
12542
|
+
* @summary Get Editable Order (Admin)
|
|
12543
|
+
* @param {number} id Order ID
|
|
12544
|
+
* @param {*} [options] Override http request option.
|
|
12545
|
+
* @throws {RequiredError}
|
|
12546
|
+
*/
|
|
12547
|
+
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12548
|
+
/**
|
|
12549
|
+
* Get Editable Order
|
|
12550
|
+
* @summary Get Editable Order
|
|
11700
12551
|
* @param {number} id Order ID
|
|
11701
12552
|
* @param {*} [options] Override http request option.
|
|
11702
12553
|
* @throws {RequiredError}
|
|
11703
12554
|
*/
|
|
11704
|
-
|
|
12555
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11705
12556
|
/**
|
|
11706
12557
|
* Get Orders
|
|
11707
12558
|
* @summary Get Orders
|
|
@@ -11716,6 +12567,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11716
12567
|
* @throws {RequiredError}
|
|
11717
12568
|
*/
|
|
11718
12569
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12570
|
+
/**
|
|
12571
|
+
* Create An Order (Admin)
|
|
12572
|
+
* @summary Create An Order (Admin)
|
|
12573
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12574
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12575
|
+
* @param {*} [options] Override http request option.
|
|
12576
|
+
* @throws {RequiredError}
|
|
12577
|
+
*/
|
|
12578
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12579
|
+
/**
|
|
12580
|
+
* Create An Order
|
|
12581
|
+
* @summary Create An Order
|
|
12582
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12583
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12584
|
+
* @param {*} [options] Override http request option.
|
|
12585
|
+
* @throws {RequiredError}
|
|
12586
|
+
*/
|
|
12587
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12588
|
+
/**
|
|
12589
|
+
* Update An Order (Admin)
|
|
12590
|
+
* @summary Update An Order (Admin)
|
|
12591
|
+
* @param {number} id Order ID
|
|
12592
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12593
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12594
|
+
* @param {*} [options] Override http request option.
|
|
12595
|
+
* @throws {RequiredError}
|
|
12596
|
+
*/
|
|
12597
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12598
|
+
/**
|
|
12599
|
+
* Update An Order
|
|
12600
|
+
* @summary Update An Order
|
|
12601
|
+
* @param {number} id Order ID
|
|
12602
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12603
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12604
|
+
* @param {*} [options] Override http request option.
|
|
12605
|
+
* @throws {RequiredError}
|
|
12606
|
+
*/
|
|
12607
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11719
12608
|
};
|
|
11720
12609
|
/**
|
|
11721
12610
|
* OrdersApi - functional programming interface
|
|
@@ -11724,11 +12613,28 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11724
12613
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11725
12614
|
/**
|
|
11726
12615
|
* Delete Orders
|
|
12616
|
+
* @summary Delete Orders
|
|
12617
|
+
* @param {number} id Order ID
|
|
12618
|
+
* @param {*} [options] Override http request option.
|
|
12619
|
+
* @throws {RequiredError}
|
|
12620
|
+
*/
|
|
12621
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12622
|
+
/**
|
|
12623
|
+
* Get Editable Order (Admin)
|
|
12624
|
+
* @summary Get Editable Order (Admin)
|
|
12625
|
+
* @param {number} id Order ID
|
|
12626
|
+
* @param {*} [options] Override http request option.
|
|
12627
|
+
* @throws {RequiredError}
|
|
12628
|
+
*/
|
|
12629
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12630
|
+
/**
|
|
12631
|
+
* Get Editable Order
|
|
12632
|
+
* @summary Get Editable Order
|
|
11727
12633
|
* @param {number} id Order ID
|
|
11728
12634
|
* @param {*} [options] Override http request option.
|
|
11729
12635
|
* @throws {RequiredError}
|
|
11730
12636
|
*/
|
|
11731
|
-
|
|
12637
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CustomerOrderRequestDTO>>;
|
|
11732
12638
|
/**
|
|
11733
12639
|
* Get Orders
|
|
11734
12640
|
* @summary Get Orders
|
|
@@ -11743,6 +12649,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11743
12649
|
* @throws {RequiredError}
|
|
11744
12650
|
*/
|
|
11745
12651
|
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>>;
|
|
12652
|
+
/**
|
|
12653
|
+
* Create An Order (Admin)
|
|
12654
|
+
* @summary Create An Order (Admin)
|
|
12655
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12656
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12657
|
+
* @param {*} [options] Override http request option.
|
|
12658
|
+
* @throws {RequiredError}
|
|
12659
|
+
*/
|
|
12660
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12661
|
+
/**
|
|
12662
|
+
* Create An Order
|
|
12663
|
+
* @summary Create An Order
|
|
12664
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12665
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12666
|
+
* @param {*} [options] Override http request option.
|
|
12667
|
+
* @throws {RequiredError}
|
|
12668
|
+
*/
|
|
12669
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12670
|
+
/**
|
|
12671
|
+
* Update An Order (Admin)
|
|
12672
|
+
* @summary Update An Order (Admin)
|
|
12673
|
+
* @param {number} id Order ID
|
|
12674
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12675
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12676
|
+
* @param {*} [options] Override http request option.
|
|
12677
|
+
* @throws {RequiredError}
|
|
12678
|
+
*/
|
|
12679
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12680
|
+
/**
|
|
12681
|
+
* Update An Order
|
|
12682
|
+
* @summary Update An Order
|
|
12683
|
+
* @param {number} id Order ID
|
|
12684
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12685
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12686
|
+
* @param {*} [options] Override http request option.
|
|
12687
|
+
* @throws {RequiredError}
|
|
12688
|
+
*/
|
|
12689
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11746
12690
|
};
|
|
11747
12691
|
/**
|
|
11748
12692
|
* OrdersApi - factory interface
|
|
@@ -11751,11 +12695,28 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11751
12695
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11752
12696
|
/**
|
|
11753
12697
|
* Delete Orders
|
|
12698
|
+
* @summary Delete Orders
|
|
12699
|
+
* @param {number} id Order ID
|
|
12700
|
+
* @param {*} [options] Override http request option.
|
|
12701
|
+
* @throws {RequiredError}
|
|
12702
|
+
*/
|
|
12703
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12704
|
+
/**
|
|
12705
|
+
* Get Editable Order (Admin)
|
|
12706
|
+
* @summary Get Editable Order (Admin)
|
|
12707
|
+
* @param {number} id Order ID
|
|
12708
|
+
* @param {*} [options] Override http request option.
|
|
12709
|
+
* @throws {RequiredError}
|
|
12710
|
+
*/
|
|
12711
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
12712
|
+
/**
|
|
12713
|
+
* Get Editable Order
|
|
12714
|
+
* @summary Get Editable Order
|
|
11754
12715
|
* @param {number} id Order ID
|
|
11755
12716
|
* @param {*} [options] Override http request option.
|
|
11756
12717
|
* @throws {RequiredError}
|
|
11757
12718
|
*/
|
|
11758
|
-
|
|
12719
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<CustomerOrderRequestDTO>;
|
|
11759
12720
|
/**
|
|
11760
12721
|
* Get Orders
|
|
11761
12722
|
* @summary Get Orders
|
|
@@ -11770,6 +12731,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11770
12731
|
* @throws {RequiredError}
|
|
11771
12732
|
*/
|
|
11772
12733
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12734
|
+
/**
|
|
12735
|
+
* Create An Order (Admin)
|
|
12736
|
+
* @summary Create An Order (Admin)
|
|
12737
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12738
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12739
|
+
* @param {*} [options] Override http request option.
|
|
12740
|
+
* @throws {RequiredError}
|
|
12741
|
+
*/
|
|
12742
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12743
|
+
/**
|
|
12744
|
+
* Create An Order
|
|
12745
|
+
* @summary Create An Order
|
|
12746
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12747
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12748
|
+
* @param {*} [options] Override http request option.
|
|
12749
|
+
* @throws {RequiredError}
|
|
12750
|
+
*/
|
|
12751
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12752
|
+
/**
|
|
12753
|
+
* Update An Order (Admin)
|
|
12754
|
+
* @summary Update An Order (Admin)
|
|
12755
|
+
* @param {number} id Order ID
|
|
12756
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12757
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12758
|
+
* @param {*} [options] Override http request option.
|
|
12759
|
+
* @throws {RequiredError}
|
|
12760
|
+
*/
|
|
12761
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12762
|
+
/**
|
|
12763
|
+
* Update An Order
|
|
12764
|
+
* @summary Update An Order
|
|
12765
|
+
* @param {number} id Order ID
|
|
12766
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12767
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12768
|
+
* @param {*} [options] Override http request option.
|
|
12769
|
+
* @throws {RequiredError}
|
|
12770
|
+
*/
|
|
12771
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11773
12772
|
};
|
|
11774
12773
|
/**
|
|
11775
12774
|
* OrdersApi - object-oriented interface
|
|
@@ -11780,12 +12779,31 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11780
12779
|
export declare class OrdersApi extends BaseAPI {
|
|
11781
12780
|
/**
|
|
11782
12781
|
* Delete Orders
|
|
12782
|
+
* @summary Delete Orders
|
|
12783
|
+
* @param {number} id Order ID
|
|
12784
|
+
* @param {*} [options] Override http request option.
|
|
12785
|
+
* @throws {RequiredError}
|
|
12786
|
+
* @memberof OrdersApi
|
|
12787
|
+
*/
|
|
12788
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12789
|
+
/**
|
|
12790
|
+
* Get Editable Order (Admin)
|
|
12791
|
+
* @summary Get Editable Order (Admin)
|
|
12792
|
+
* @param {number} id Order ID
|
|
12793
|
+
* @param {*} [options] Override http request option.
|
|
12794
|
+
* @throws {RequiredError}
|
|
12795
|
+
* @memberof OrdersApi
|
|
12796
|
+
*/
|
|
12797
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
12798
|
+
/**
|
|
12799
|
+
* Get Editable Order
|
|
12800
|
+
* @summary Get Editable Order
|
|
11783
12801
|
* @param {number} id Order ID
|
|
11784
12802
|
* @param {*} [options] Override http request option.
|
|
11785
12803
|
* @throws {RequiredError}
|
|
11786
12804
|
* @memberof OrdersApi
|
|
11787
12805
|
*/
|
|
11788
|
-
|
|
12806
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerOrderRequestDTO, any, {}>>;
|
|
11789
12807
|
/**
|
|
11790
12808
|
* Get Orders
|
|
11791
12809
|
* @summary Get Orders
|
|
@@ -11801,6 +12819,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11801
12819
|
* @memberof OrdersApi
|
|
11802
12820
|
*/
|
|
11803
12821
|
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, {}>>;
|
|
12822
|
+
/**
|
|
12823
|
+
* Create An Order (Admin)
|
|
12824
|
+
* @summary Create An Order (Admin)
|
|
12825
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12826
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12827
|
+
* @param {*} [options] Override http request option.
|
|
12828
|
+
* @throws {RequiredError}
|
|
12829
|
+
* @memberof OrdersApi
|
|
12830
|
+
*/
|
|
12831
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12832
|
+
/**
|
|
12833
|
+
* Create An Order
|
|
12834
|
+
* @summary Create An Order
|
|
12835
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12836
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12837
|
+
* @param {*} [options] Override http request option.
|
|
12838
|
+
* @throws {RequiredError}
|
|
12839
|
+
* @memberof OrdersApi
|
|
12840
|
+
*/
|
|
12841
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12842
|
+
/**
|
|
12843
|
+
* Update An Order (Admin)
|
|
12844
|
+
* @summary Update An Order (Admin)
|
|
12845
|
+
* @param {number} id Order ID
|
|
12846
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12847
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12848
|
+
* @param {*} [options] Override http request option.
|
|
12849
|
+
* @throws {RequiredError}
|
|
12850
|
+
* @memberof OrdersApi
|
|
12851
|
+
*/
|
|
12852
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12853
|
+
/**
|
|
12854
|
+
* Update An Order
|
|
12855
|
+
* @summary Update An Order
|
|
12856
|
+
* @param {number} id Order ID
|
|
12857
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12858
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12859
|
+
* @param {*} [options] Override http request option.
|
|
12860
|
+
* @throws {RequiredError}
|
|
12861
|
+
* @memberof OrdersApi
|
|
12862
|
+
*/
|
|
12863
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11804
12864
|
}
|
|
11805
12865
|
/**
|
|
11806
12866
|
* @export
|
|
@@ -12056,13 +13116,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12056
13116
|
* @throws {RequiredError}
|
|
12057
13117
|
*/
|
|
12058
13118
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12059
|
-
/**
|
|
12060
|
-
* Get Customer Price Lists
|
|
12061
|
-
* @summary Get Customer Price Lists
|
|
12062
|
-
* @param {*} [options] Override http request option.
|
|
12063
|
-
* @throws {RequiredError}
|
|
12064
|
-
*/
|
|
12065
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12066
13119
|
/**
|
|
12067
13120
|
* Get Current Stock & Pricing
|
|
12068
13121
|
* @summary Get Current Stock & Pricing
|
|
@@ -12075,13 +13128,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12075
13128
|
/**
|
|
12076
13129
|
* Get Products
|
|
12077
13130
|
* @summary Get Products
|
|
12078
|
-
* @param {number} [pageSize] Number Of Results
|
|
12079
|
-
* @param {number} [page] Page Number
|
|
12080
|
-
* @param {string} [search] Search
|
|
12081
13131
|
* @param {*} [options] Override http request option.
|
|
12082
13132
|
* @throws {RequiredError}
|
|
12083
13133
|
*/
|
|
12084
|
-
getGetProducts: (
|
|
13134
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12085
13135
|
/**
|
|
12086
13136
|
* Get Current Stock & Pricing
|
|
12087
13137
|
* @summary Get Current Stock & Pricing
|
|
@@ -12096,6 +13146,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12096
13146
|
* @throws {RequiredError}
|
|
12097
13147
|
*/
|
|
12098
13148
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13149
|
+
/**
|
|
13150
|
+
* Search Products
|
|
13151
|
+
* @summary Search Products
|
|
13152
|
+
* @param {number} [pageSize] Number Of Results
|
|
13153
|
+
* @param {number} [page] Page Number
|
|
13154
|
+
* @param {string} [search] Search
|
|
13155
|
+
* @param {*} [options] Override http request option.
|
|
13156
|
+
* @throws {RequiredError}
|
|
13157
|
+
*/
|
|
13158
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13159
|
+
/**
|
|
13160
|
+
* Get Product
|
|
13161
|
+
* @summary Get Product
|
|
13162
|
+
* @param {string} sku Product SKU
|
|
13163
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13164
|
+
* @param {*} [options] Override http request option.
|
|
13165
|
+
* @throws {RequiredError}
|
|
13166
|
+
*/
|
|
13167
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13168
|
+
/**
|
|
13169
|
+
* Get Product For Customer
|
|
13170
|
+
* @summary Get Product For Customer
|
|
13171
|
+
* @param {number} customerId Customer ID
|
|
13172
|
+
* @param {string} sku Product SKU
|
|
13173
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13174
|
+
* @param {*} [options] Override http request option.
|
|
13175
|
+
* @throws {RequiredError}
|
|
13176
|
+
*/
|
|
13177
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12099
13178
|
};
|
|
12100
13179
|
/**
|
|
12101
13180
|
* ProductsApi - functional programming interface
|
|
@@ -12109,13 +13188,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12109
13188
|
* @throws {RequiredError}
|
|
12110
13189
|
*/
|
|
12111
13190
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12112
|
-
/**
|
|
12113
|
-
* Get Customer Price Lists
|
|
12114
|
-
* @summary Get Customer Price Lists
|
|
12115
|
-
* @param {*} [options] Override http request option.
|
|
12116
|
-
* @throws {RequiredError}
|
|
12117
|
-
*/
|
|
12118
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12119
13191
|
/**
|
|
12120
13192
|
* Get Current Stock & Pricing
|
|
12121
13193
|
* @summary Get Current Stock & Pricing
|
|
@@ -12128,13 +13200,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12128
13200
|
/**
|
|
12129
13201
|
* Get Products
|
|
12130
13202
|
* @summary Get Products
|
|
12131
|
-
* @param {number} [pageSize] Number Of Results
|
|
12132
|
-
* @param {number} [page] Page Number
|
|
12133
|
-
* @param {string} [search] Search
|
|
12134
13203
|
* @param {*} [options] Override http request option.
|
|
12135
13204
|
* @throws {RequiredError}
|
|
12136
13205
|
*/
|
|
12137
|
-
getGetProducts(
|
|
13206
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12138
13207
|
/**
|
|
12139
13208
|
* Get Current Stock & Pricing
|
|
12140
13209
|
* @summary Get Current Stock & Pricing
|
|
@@ -12149,6 +13218,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12149
13218
|
* @throws {RequiredError}
|
|
12150
13219
|
*/
|
|
12151
13220
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13221
|
+
/**
|
|
13222
|
+
* Search Products
|
|
13223
|
+
* @summary Search Products
|
|
13224
|
+
* @param {number} [pageSize] Number Of Results
|
|
13225
|
+
* @param {number} [page] Page Number
|
|
13226
|
+
* @param {string} [search] Search
|
|
13227
|
+
* @param {*} [options] Override http request option.
|
|
13228
|
+
* @throws {RequiredError}
|
|
13229
|
+
*/
|
|
13230
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13231
|
+
/**
|
|
13232
|
+
* Get Product
|
|
13233
|
+
* @summary Get Product
|
|
13234
|
+
* @param {string} sku Product SKU
|
|
13235
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13236
|
+
* @param {*} [options] Override http request option.
|
|
13237
|
+
* @throws {RequiredError}
|
|
13238
|
+
*/
|
|
13239
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13240
|
+
/**
|
|
13241
|
+
* Get Product For Customer
|
|
13242
|
+
* @summary Get Product For Customer
|
|
13243
|
+
* @param {number} customerId Customer ID
|
|
13244
|
+
* @param {string} sku Product SKU
|
|
13245
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13246
|
+
* @param {*} [options] Override http request option.
|
|
13247
|
+
* @throws {RequiredError}
|
|
13248
|
+
*/
|
|
13249
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12152
13250
|
};
|
|
12153
13251
|
/**
|
|
12154
13252
|
* ProductsApi - factory interface
|
|
@@ -12162,13 +13260,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12162
13260
|
* @throws {RequiredError}
|
|
12163
13261
|
*/
|
|
12164
13262
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12165
|
-
/**
|
|
12166
|
-
* Get Customer Price Lists
|
|
12167
|
-
* @summary Get Customer Price Lists
|
|
12168
|
-
* @param {*} [options] Override http request option.
|
|
12169
|
-
* @throws {RequiredError}
|
|
12170
|
-
*/
|
|
12171
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12172
13263
|
/**
|
|
12173
13264
|
* Get Current Stock & Pricing
|
|
12174
13265
|
* @summary Get Current Stock & Pricing
|
|
@@ -12181,13 +13272,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12181
13272
|
/**
|
|
12182
13273
|
* Get Products
|
|
12183
13274
|
* @summary Get Products
|
|
12184
|
-
* @param {number} [pageSize] Number Of Results
|
|
12185
|
-
* @param {number} [page] Page Number
|
|
12186
|
-
* @param {string} [search] Search
|
|
12187
13275
|
* @param {*} [options] Override http request option.
|
|
12188
13276
|
* @throws {RequiredError}
|
|
12189
13277
|
*/
|
|
12190
|
-
getGetProducts(
|
|
13278
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12191
13279
|
/**
|
|
12192
13280
|
* Get Current Stock & Pricing
|
|
12193
13281
|
* @summary Get Current Stock & Pricing
|
|
@@ -12202,6 +13290,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12202
13290
|
* @throws {RequiredError}
|
|
12203
13291
|
*/
|
|
12204
13292
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13293
|
+
/**
|
|
13294
|
+
* Search Products
|
|
13295
|
+
* @summary Search Products
|
|
13296
|
+
* @param {number} [pageSize] Number Of Results
|
|
13297
|
+
* @param {number} [page] Page Number
|
|
13298
|
+
* @param {string} [search] Search
|
|
13299
|
+
* @param {*} [options] Override http request option.
|
|
13300
|
+
* @throws {RequiredError}
|
|
13301
|
+
*/
|
|
13302
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13303
|
+
/**
|
|
13304
|
+
* Get Product
|
|
13305
|
+
* @summary Get Product
|
|
13306
|
+
* @param {string} sku Product SKU
|
|
13307
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13308
|
+
* @param {*} [options] Override http request option.
|
|
13309
|
+
* @throws {RequiredError}
|
|
13310
|
+
*/
|
|
13311
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13312
|
+
/**
|
|
13313
|
+
* Get Product For Customer
|
|
13314
|
+
* @summary Get Product For Customer
|
|
13315
|
+
* @param {number} customerId Customer ID
|
|
13316
|
+
* @param {string} sku Product SKU
|
|
13317
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13318
|
+
* @param {*} [options] Override http request option.
|
|
13319
|
+
* @throws {RequiredError}
|
|
13320
|
+
*/
|
|
13321
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12205
13322
|
};
|
|
12206
13323
|
/**
|
|
12207
13324
|
* ProductsApi - object-oriented interface
|
|
@@ -12218,14 +13335,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12218
13335
|
* @memberof ProductsApi
|
|
12219
13336
|
*/
|
|
12220
13337
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12221
|
-
/**
|
|
12222
|
-
* Get Customer Price Lists
|
|
12223
|
-
* @summary Get Customer Price Lists
|
|
12224
|
-
* @param {*} [options] Override http request option.
|
|
12225
|
-
* @throws {RequiredError}
|
|
12226
|
-
* @memberof ProductsApi
|
|
12227
|
-
*/
|
|
12228
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12229
13338
|
/**
|
|
12230
13339
|
* Get Current Stock & Pricing
|
|
12231
13340
|
* @summary Get Current Stock & Pricing
|
|
@@ -12239,14 +13348,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12239
13348
|
/**
|
|
12240
13349
|
* Get Products
|
|
12241
13350
|
* @summary Get Products
|
|
12242
|
-
* @param {number} [pageSize] Number Of Results
|
|
12243
|
-
* @param {number} [page] Page Number
|
|
12244
|
-
* @param {string} [search] Search
|
|
12245
13351
|
* @param {*} [options] Override http request option.
|
|
12246
13352
|
* @throws {RequiredError}
|
|
12247
13353
|
* @memberof ProductsApi
|
|
12248
13354
|
*/
|
|
12249
|
-
getGetProducts(
|
|
13355
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12250
13356
|
/**
|
|
12251
13357
|
* Get Current Stock & Pricing
|
|
12252
13358
|
* @summary Get Current Stock & Pricing
|
|
@@ -12263,6 +13369,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12263
13369
|
* @memberof ProductsApi
|
|
12264
13370
|
*/
|
|
12265
13371
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13372
|
+
/**
|
|
13373
|
+
* Search Products
|
|
13374
|
+
* @summary Search Products
|
|
13375
|
+
* @param {number} [pageSize] Number Of Results
|
|
13376
|
+
* @param {number} [page] Page Number
|
|
13377
|
+
* @param {string} [search] Search
|
|
13378
|
+
* @param {*} [options] Override http request option.
|
|
13379
|
+
* @throws {RequiredError}
|
|
13380
|
+
* @memberof ProductsApi
|
|
13381
|
+
*/
|
|
13382
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13383
|
+
/**
|
|
13384
|
+
* Get Product
|
|
13385
|
+
* @summary Get Product
|
|
13386
|
+
* @param {string} sku Product SKU
|
|
13387
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13388
|
+
* @param {*} [options] Override http request option.
|
|
13389
|
+
* @throws {RequiredError}
|
|
13390
|
+
* @memberof ProductsApi
|
|
13391
|
+
*/
|
|
13392
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13393
|
+
/**
|
|
13394
|
+
* Get Product For Customer
|
|
13395
|
+
* @summary Get Product For Customer
|
|
13396
|
+
* @param {number} customerId Customer ID
|
|
13397
|
+
* @param {string} sku Product SKU
|
|
13398
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13399
|
+
* @param {*} [options] Override http request option.
|
|
13400
|
+
* @throws {RequiredError}
|
|
13401
|
+
* @memberof ProductsApi
|
|
13402
|
+
*/
|
|
13403
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12266
13404
|
}
|
|
12267
13405
|
/**
|
|
12268
13406
|
* @export
|
|
@@ -12383,7 +13521,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12383
13521
|
* @param {*} [options] Override http request option.
|
|
12384
13522
|
* @throws {RequiredError}
|
|
12385
13523
|
*/
|
|
12386
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13524
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12387
13525
|
/**
|
|
12388
13526
|
* Create a Fanvil provisioning group
|
|
12389
13527
|
* @summary Add group to DB and FDPS
|
|
@@ -12391,7 +13529,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12391
13529
|
* @param {*} [options] Override http request option.
|
|
12392
13530
|
* @throws {RequiredError}
|
|
12393
13531
|
*/
|
|
12394
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13532
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12395
13533
|
/**
|
|
12396
13534
|
* Add MAC address to DB and FDPS group
|
|
12397
13535
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12448,7 +13586,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12448
13586
|
* @param {*} [options] Override http request option.
|
|
12449
13587
|
* @throws {RequiredError}
|
|
12450
13588
|
*/
|
|
12451
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13589
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12452
13590
|
/**
|
|
12453
13591
|
* Create a Fanvil provisioning group
|
|
12454
13592
|
* @summary Add group to DB and FDPS
|
|
@@ -12456,7 +13594,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12456
13594
|
* @param {*} [options] Override http request option.
|
|
12457
13595
|
* @throws {RequiredError}
|
|
12458
13596
|
*/
|
|
12459
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13597
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12460
13598
|
/**
|
|
12461
13599
|
* Add MAC address to DB and FDPS group
|
|
12462
13600
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12520,7 +13658,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12520
13658
|
* @throws {RequiredError}
|
|
12521
13659
|
* @memberof ProvisioningApi
|
|
12522
13660
|
*/
|
|
12523
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13661
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12524
13662
|
/**
|
|
12525
13663
|
* Create a Fanvil provisioning group
|
|
12526
13664
|
* @summary Add group to DB and FDPS
|
|
@@ -12529,7 +13667,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12529
13667
|
* @throws {RequiredError}
|
|
12530
13668
|
* @memberof ProvisioningApi
|
|
12531
13669
|
*/
|
|
12532
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13670
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12533
13671
|
/**
|
|
12534
13672
|
* Add MAC address to DB and FDPS group
|
|
12535
13673
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13404,6 +14542,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13404
14542
|
*/
|
|
13405
14543
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13406
14544
|
}
|
|
14545
|
+
/**
|
|
14546
|
+
* ShippingApi - axios parameter creator
|
|
14547
|
+
* @export
|
|
14548
|
+
*/
|
|
14549
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14550
|
+
/**
|
|
14551
|
+
* Get Shipping Services
|
|
14552
|
+
* @summary Get Shipping Services
|
|
14553
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14554
|
+
* @param {*} [options] Override http request option.
|
|
14555
|
+
* @throws {RequiredError}
|
|
14556
|
+
*/
|
|
14557
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14558
|
+
};
|
|
14559
|
+
/**
|
|
14560
|
+
* ShippingApi - functional programming interface
|
|
14561
|
+
* @export
|
|
14562
|
+
*/
|
|
14563
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14564
|
+
/**
|
|
14565
|
+
* Get Shipping Services
|
|
14566
|
+
* @summary Get Shipping Services
|
|
14567
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14568
|
+
* @param {*} [options] Override http request option.
|
|
14569
|
+
* @throws {RequiredError}
|
|
14570
|
+
*/
|
|
14571
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14572
|
+
};
|
|
14573
|
+
/**
|
|
14574
|
+
* ShippingApi - factory interface
|
|
14575
|
+
* @export
|
|
14576
|
+
*/
|
|
14577
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14578
|
+
/**
|
|
14579
|
+
* Get Shipping Services
|
|
14580
|
+
* @summary Get Shipping Services
|
|
14581
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14582
|
+
* @param {*} [options] Override http request option.
|
|
14583
|
+
* @throws {RequiredError}
|
|
14584
|
+
*/
|
|
14585
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14586
|
+
};
|
|
14587
|
+
/**
|
|
14588
|
+
* ShippingApi - object-oriented interface
|
|
14589
|
+
* @export
|
|
14590
|
+
* @class ShippingApi
|
|
14591
|
+
* @extends {BaseAPI}
|
|
14592
|
+
*/
|
|
14593
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14594
|
+
/**
|
|
14595
|
+
* Get Shipping Services
|
|
14596
|
+
* @summary Get Shipping Services
|
|
14597
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14598
|
+
* @param {*} [options] Override http request option.
|
|
14599
|
+
* @throws {RequiredError}
|
|
14600
|
+
* @memberof ShippingApi
|
|
14601
|
+
*/
|
|
14602
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14603
|
+
}
|
|
13407
14604
|
/**
|
|
13408
14605
|
* StockManagementApi - axios parameter creator
|
|
13409
14606
|
* @export
|
|
@@ -13733,7 +14930,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13733
14930
|
* @param {*} [options] Override http request option.
|
|
13734
14931
|
* @throws {RequiredError}
|
|
13735
14932
|
*/
|
|
13736
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
14933
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13737
14934
|
/**
|
|
13738
14935
|
* Get Stock Order Supplier Invoice
|
|
13739
14936
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13948,7 +15145,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
13948
15145
|
* @param {*} [options] Override http request option.
|
|
13949
15146
|
* @throws {RequiredError}
|
|
13950
15147
|
*/
|
|
13951
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15148
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
13952
15149
|
/**
|
|
13953
15150
|
* Get Stock Order Supplier Invoice
|
|
13954
15151
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14178,7 +15375,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14178
15375
|
* @throws {RequiredError}
|
|
14179
15376
|
* @memberof StockManagementApi
|
|
14180
15377
|
*/
|
|
14181
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15378
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14182
15379
|
/**
|
|
14183
15380
|
* Get Stock Order Supplier Invoice
|
|
14184
15381
|
* @summary Get Stock Order Supplier Invoice
|