yellowgrid-api-ts 3.1.5-dev.0 → 3.1.5
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 +195 -213
- package/README.md +7 -34
- package/api.ts +254 -1865
- 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 -1351
- 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 -39
- 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 -35
- 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,203 +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
|
-
* 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];
|
|
847
528
|
/**
|
|
848
529
|
* Agent Hours Graph
|
|
849
530
|
* @export
|
|
@@ -1073,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1073
754
|
*/
|
|
1074
755
|
'redirect_uri'?: string | null;
|
|
1075
756
|
}
|
|
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
|
-
}
|
|
1114
757
|
/**
|
|
1115
758
|
* BatchesEntity
|
|
1116
759
|
* @export
|
|
@@ -1305,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1305
948
|
* @memberof ClientDetailsModel
|
|
1306
949
|
*/
|
|
1307
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1308
957
|
}
|
|
1309
958
|
/**
|
|
1310
959
|
* OAuth client details
|
|
@@ -1466,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1466
1115
|
*/
|
|
1467
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1468
1117
|
}
|
|
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
|
-
}
|
|
1536
1118
|
/**
|
|
1537
1119
|
* Credit Account
|
|
1538
1120
|
* @export
|
|
@@ -1715,110 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1715
1297
|
*/
|
|
1716
1298
|
'contactLastName'?: string;
|
|
1717
1299
|
}
|
|
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
|
-
}
|
|
1822
1300
|
/**
|
|
1823
1301
|
* Customer Price List
|
|
1824
1302
|
* @export
|
|
@@ -2325,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2325
1803
|
*/
|
|
2326
1804
|
'type'?: string;
|
|
2327
1805
|
}
|
|
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
|
+
}
|
|
2328
1819
|
/**
|
|
2329
1820
|
*
|
|
2330
1821
|
* @export
|
|
@@ -2911,44 +2402,44 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2911
2402
|
* @type {string}
|
|
2912
2403
|
* @memberof InstanceUserCredentialsEntity
|
|
2913
2404
|
*/
|
|
2914
|
-
'creationDate'?: string;
|
|
2915
|
-
}
|
|
2916
|
-
/**
|
|
2917
|
-
* Order Item
|
|
2918
|
-
* @export
|
|
2919
|
-
* @interface ItemDTO
|
|
2920
|
-
*/
|
|
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;
|
|
2405
|
+
'creationDate'?: string;
|
|
2406
|
+
}
|
|
2407
|
+
/**
|
|
2408
|
+
* Order Item
|
|
2409
|
+
* @export
|
|
2410
|
+
* @interface ItemDTO
|
|
2411
|
+
*/
|
|
2412
|
+
export interface ItemDTO {
|
|
2934
2413
|
/**
|
|
2935
2414
|
* ID
|
|
2936
2415
|
* @type {number}
|
|
2937
2416
|
* @memberof ItemDTO
|
|
2938
2417
|
*/
|
|
2939
|
-
'id'?: number
|
|
2418
|
+
'id'?: number;
|
|
2940
2419
|
/**
|
|
2941
2420
|
* Order ID
|
|
2942
2421
|
* @type {number}
|
|
2943
2422
|
* @memberof ItemDTO
|
|
2944
2423
|
*/
|
|
2945
|
-
'orderId'?: number
|
|
2424
|
+
'orderId'?: number;
|
|
2946
2425
|
/**
|
|
2947
2426
|
* Title
|
|
2948
2427
|
* @type {string}
|
|
2949
2428
|
* @memberof ItemDTO
|
|
2950
2429
|
*/
|
|
2951
2430
|
'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;
|
|
2952
2443
|
/**
|
|
2953
2444
|
* Price
|
|
2954
2445
|
* @type {number}
|
|
@@ -2973,12 +2464,6 @@ export interface ItemDTO {
|
|
|
2973
2464
|
* @memberof ItemDTO
|
|
2974
2465
|
*/
|
|
2975
2466
|
'processDate'?: string;
|
|
2976
|
-
/**
|
|
2977
|
-
* 3CX Hosting
|
|
2978
|
-
* @type {boolean}
|
|
2979
|
-
* @memberof ItemDTO
|
|
2980
|
-
*/
|
|
2981
|
-
'hosting'?: boolean | null;
|
|
2982
2467
|
/**
|
|
2983
2468
|
* Promo Item
|
|
2984
2469
|
* @type {boolean}
|
|
@@ -2990,25 +2475,7 @@ export interface ItemDTO {
|
|
|
2990
2475
|
* @type {number}
|
|
2991
2476
|
* @memberof ItemDTO
|
|
2992
2477
|
*/
|
|
2993
|
-
'refunded'?: number
|
|
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;
|
|
2478
|
+
'refunded'?: number;
|
|
3012
2479
|
}
|
|
3013
2480
|
/**
|
|
3014
2481
|
* ItemsEntity
|
|
@@ -3142,31 +2609,6 @@ export interface ItemEntity {
|
|
|
3142
2609
|
* @memberof ItemEntity
|
|
3143
2610
|
*/
|
|
3144
2611
|
'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;
|
|
3170
2612
|
}
|
|
3171
2613
|
/**
|
|
3172
2614
|
* MFA Required
|
|
@@ -3820,19 +3262,13 @@ export interface OrderSummaryDTO {
|
|
|
3820
3262
|
* @type {string}
|
|
3821
3263
|
* @memberof OrderSummaryDTO
|
|
3822
3264
|
*/
|
|
3823
|
-
'reference'?: string
|
|
3265
|
+
'reference'?: string;
|
|
3824
3266
|
/**
|
|
3825
3267
|
* Invoice Number
|
|
3826
3268
|
* @type {string}
|
|
3827
3269
|
* @memberof OrderSummaryDTO
|
|
3828
3270
|
*/
|
|
3829
3271
|
'invoiceNumber'?: string;
|
|
3830
|
-
/**
|
|
3831
|
-
* Invoice ID
|
|
3832
|
-
* @type {string}
|
|
3833
|
-
* @memberof OrderSummaryDTO
|
|
3834
|
-
*/
|
|
3835
|
-
'invoiceId'?: string | null;
|
|
3836
3272
|
/**
|
|
3837
3273
|
* Date Time
|
|
3838
3274
|
* @type {string}
|
|
@@ -3887,24 +3323,6 @@ export interface OrderSummaryDTO {
|
|
|
3887
3323
|
* @memberof OrderSummaryDTO
|
|
3888
3324
|
*/
|
|
3889
3325
|
'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;
|
|
3908
3326
|
}
|
|
3909
3327
|
/**
|
|
3910
3328
|
* Order Totals
|
|
@@ -3954,12 +3372,6 @@ export interface OrderTotalModel {
|
|
|
3954
3372
|
* @memberof OrderTotalModel
|
|
3955
3373
|
*/
|
|
3956
3374
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3957
|
-
/**
|
|
3958
|
-
* Delivery
|
|
3959
|
-
* @type {number}
|
|
3960
|
-
* @memberof OrderTotalModel
|
|
3961
|
-
*/
|
|
3962
|
-
'delivery'?: number | null;
|
|
3963
3375
|
}
|
|
3964
3376
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3965
3377
|
readonly Eur: "EUR";
|
|
@@ -4338,31 +3750,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4338
3750
|
*/
|
|
4339
3751
|
'scopes'?: Array<string>;
|
|
4340
3752
|
}
|
|
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
|
-
}
|
|
4366
3753
|
/**
|
|
4367
3754
|
* Price & Stock List
|
|
4368
3755
|
* @export
|
|
@@ -4451,10 +3838,10 @@ export interface PrizesEntity {
|
|
|
4451
3838
|
export interface ProductSearchResultsModel {
|
|
4452
3839
|
/**
|
|
4453
3840
|
* Results
|
|
4454
|
-
* @type {Array<
|
|
3841
|
+
* @type {Array<ProductSummaryModel>}
|
|
4455
3842
|
* @memberof ProductSearchResultsModel
|
|
4456
3843
|
*/
|
|
4457
|
-
'results'?: Array<
|
|
3844
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4458
3845
|
}
|
|
4459
3846
|
/**
|
|
4460
3847
|
* Product Serial Info
|
|
@@ -4490,51 +3877,45 @@ export interface ProductSerialInfoModel {
|
|
|
4490
3877
|
/**
|
|
4491
3878
|
* Product Summary
|
|
4492
3879
|
* @export
|
|
4493
|
-
* @interface
|
|
3880
|
+
* @interface ProductSummaryModel
|
|
4494
3881
|
*/
|
|
4495
|
-
export interface
|
|
3882
|
+
export interface ProductSummaryModel {
|
|
4496
3883
|
/**
|
|
4497
3884
|
* SKU
|
|
4498
3885
|
* @type {string}
|
|
4499
|
-
* @memberof
|
|
3886
|
+
* @memberof ProductSummaryModel
|
|
4500
3887
|
*/
|
|
4501
3888
|
'sku'?: string;
|
|
4502
3889
|
/**
|
|
4503
3890
|
* Title
|
|
4504
3891
|
* @type {string}
|
|
4505
|
-
* @memberof
|
|
3892
|
+
* @memberof ProductSummaryModel
|
|
4506
3893
|
*/
|
|
4507
3894
|
'title'?: string;
|
|
4508
3895
|
/**
|
|
4509
3896
|
* Stock Quantity
|
|
4510
3897
|
* @type {number}
|
|
4511
|
-
* @memberof
|
|
3898
|
+
* @memberof ProductSummaryModel
|
|
4512
3899
|
*/
|
|
4513
3900
|
'quantity'?: number | null;
|
|
4514
3901
|
/**
|
|
4515
3902
|
* Stock Product
|
|
4516
3903
|
* @type {boolean}
|
|
4517
|
-
* @memberof
|
|
3904
|
+
* @memberof ProductSummaryModel
|
|
4518
3905
|
*/
|
|
4519
3906
|
'stockProduct'?: boolean;
|
|
4520
3907
|
/**
|
|
4521
3908
|
* Price
|
|
4522
3909
|
* @type {number}
|
|
4523
|
-
* @memberof
|
|
3910
|
+
* @memberof ProductSummaryModel
|
|
4524
3911
|
*/
|
|
4525
3912
|
'price'?: number | null;
|
|
4526
3913
|
/**
|
|
4527
3914
|
* Carton Size
|
|
4528
3915
|
* @type {number}
|
|
4529
|
-
* @memberof
|
|
3916
|
+
* @memberof ProductSummaryModel
|
|
4530
3917
|
*/
|
|
4531
3918
|
'cartonSize'?: number | null;
|
|
4532
|
-
/**
|
|
4533
|
-
* RRP Price
|
|
4534
|
-
* @type {number}
|
|
4535
|
-
* @memberof ProductSummaryDTO
|
|
4536
|
-
*/
|
|
4537
|
-
'rrp'?: number | null;
|
|
4538
3919
|
}
|
|
4539
3920
|
/**
|
|
4540
3921
|
* PromoCodesEntity
|
|
@@ -4673,37 +4054,37 @@ export interface PromoItemsEntity {
|
|
|
4673
4054
|
/**
|
|
4674
4055
|
* Provisioning Group
|
|
4675
4056
|
* @export
|
|
4676
|
-
* @interface
|
|
4057
|
+
* @interface ProvisioningEntity
|
|
4677
4058
|
*/
|
|
4678
|
-
export interface
|
|
4059
|
+
export interface ProvisioningEntity {
|
|
4679
4060
|
/**
|
|
4680
4061
|
* Provisioning Group Name
|
|
4681
4062
|
* @type {string}
|
|
4682
|
-
* @memberof
|
|
4063
|
+
* @memberof ProvisioningEntity
|
|
4683
4064
|
*/
|
|
4684
4065
|
'groupName'?: string;
|
|
4685
4066
|
/**
|
|
4686
4067
|
* Provisioning URL (Static Provisioning Server)
|
|
4687
4068
|
* @type {string}
|
|
4688
|
-
* @memberof
|
|
4069
|
+
* @memberof ProvisioningEntity
|
|
4689
4070
|
*/
|
|
4690
4071
|
'provisioningUrl'?: string;
|
|
4691
4072
|
/**
|
|
4692
4073
|
* Additional Authentication Secret
|
|
4693
4074
|
* @type {string}
|
|
4694
|
-
* @memberof
|
|
4075
|
+
* @memberof ProvisioningEntity
|
|
4695
4076
|
*/
|
|
4696
4077
|
'auth'?: string;
|
|
4697
4078
|
/**
|
|
4698
4079
|
* Provisioning Group ID
|
|
4699
4080
|
* @type {number}
|
|
4700
|
-
* @memberof
|
|
4081
|
+
* @memberof ProvisioningEntity
|
|
4701
4082
|
*/
|
|
4702
4083
|
'id'?: number;
|
|
4703
4084
|
/**
|
|
4704
4085
|
* Owner ID
|
|
4705
4086
|
* @type {number}
|
|
4706
|
-
* @memberof
|
|
4087
|
+
* @memberof ProvisioningEntity
|
|
4707
4088
|
*/
|
|
4708
4089
|
'customerId'?: number;
|
|
4709
4090
|
}
|
|
@@ -5057,7 +4438,7 @@ export interface ShipmentEntity {
|
|
|
5057
4438
|
* @type {string}
|
|
5058
4439
|
* @memberof ShipmentEntity
|
|
5059
4440
|
*/
|
|
5060
|
-
'
|
|
4441
|
+
'date'?: string;
|
|
5061
4442
|
/**
|
|
5062
4443
|
* requestDate
|
|
5063
4444
|
* @type {string}
|
|
@@ -5108,149 +4489,6 @@ export interface ShipmentItemEntity {
|
|
|
5108
4489
|
*/
|
|
5109
4490
|
'itemId'?: string;
|
|
5110
4491
|
}
|
|
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
|
-
}
|
|
5254
4492
|
/**
|
|
5255
4493
|
* Change Response
|
|
5256
4494
|
* @export
|
|
@@ -8070,49 +7308,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8070
7308
|
*/
|
|
8071
7309
|
'secretAccessKey'?: string;
|
|
8072
7310
|
}
|
|
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
|
-
}
|
|
8116
7311
|
/**
|
|
8117
7312
|
* 3CX Wizard SBC
|
|
8118
7313
|
* @export
|
|
@@ -8217,7 +7412,7 @@ export interface TcxSbcEntity {
|
|
|
8217
7412
|
'technicalContact'?: string;
|
|
8218
7413
|
}
|
|
8219
7414
|
/**
|
|
8220
|
-
* 3CX
|
|
7415
|
+
* 3CX SBC Model
|
|
8221
7416
|
* @export
|
|
8222
7417
|
* @interface TcxSbcModel
|
|
8223
7418
|
*/
|
|
@@ -9295,14 +8490,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9295
8490
|
* @throws {RequiredError}
|
|
9296
8491
|
*/
|
|
9297
8492
|
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>;
|
|
9306
8493
|
/**
|
|
9307
8494
|
* Get Accounts
|
|
9308
8495
|
* @summary Get Accounts
|
|
@@ -9368,13 +8555,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9368
8555
|
* @throws {RequiredError}
|
|
9369
8556
|
*/
|
|
9370
8557
|
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>;
|
|
9378
8558
|
/**
|
|
9379
8559
|
* Create client credentials
|
|
9380
8560
|
* @summary Create client credentials
|
|
@@ -9455,14 +8635,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9455
8635
|
* @throws {RequiredError}
|
|
9456
8636
|
*/
|
|
9457
8637
|
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>>;
|
|
9466
8638
|
/**
|
|
9467
8639
|
* Get Accounts
|
|
9468
8640
|
* @summary Get Accounts
|
|
@@ -9528,13 +8700,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9528
8700
|
* @throws {RequiredError}
|
|
9529
8701
|
*/
|
|
9530
8702
|
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>>;
|
|
9538
8703
|
/**
|
|
9539
8704
|
* Create client credentials
|
|
9540
8705
|
* @summary Create client credentials
|
|
@@ -9615,14 +8780,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9615
8780
|
* @throws {RequiredError}
|
|
9616
8781
|
*/
|
|
9617
8782
|
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>;
|
|
9626
8783
|
/**
|
|
9627
8784
|
* Get Accounts
|
|
9628
8785
|
* @summary Get Accounts
|
|
@@ -9688,13 +8845,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9688
8845
|
* @throws {RequiredError}
|
|
9689
8846
|
*/
|
|
9690
8847
|
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>;
|
|
9698
8848
|
/**
|
|
9699
8849
|
* Create client credentials
|
|
9700
8850
|
* @summary Create client credentials
|
|
@@ -9781,15 +8931,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9781
8931
|
* @memberof AccountsApi
|
|
9782
8932
|
*/
|
|
9783
8933
|
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, {}>>;
|
|
9793
8934
|
/**
|
|
9794
8935
|
* Get Accounts
|
|
9795
8936
|
* @summary Get Accounts
|
|
@@ -9863,14 +9004,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9863
9004
|
* @memberof AccountsApi
|
|
9864
9005
|
*/
|
|
9865
9006
|
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, {}>>;
|
|
9874
9007
|
/**
|
|
9875
9008
|
* Create client credentials
|
|
9876
9009
|
* @summary Create client credentials
|
|
@@ -9933,6 +9066,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9933
9066
|
* @throws {RequiredError}
|
|
9934
9067
|
*/
|
|
9935
9068
|
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>;
|
|
9936
9077
|
/**
|
|
9937
9078
|
* Get Bulk 3CX Licence Details
|
|
9938
9079
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9955,6 +9096,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9955
9096
|
* @throws {RequiredError}
|
|
9956
9097
|
*/
|
|
9957
9098
|
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>>;
|
|
9958
9107
|
/**
|
|
9959
9108
|
* Get Bulk 3CX Licence Details
|
|
9960
9109
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9977,6 +9126,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9977
9126
|
* @throws {RequiredError}
|
|
9978
9127
|
*/
|
|
9979
9128
|
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>;
|
|
9980
9137
|
/**
|
|
9981
9138
|
* Get Bulk 3CX Licence Details
|
|
9982
9139
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10002,6 +9159,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10002
9159
|
* @memberof Class3CXApi
|
|
10003
9160
|
*/
|
|
10004
9161
|
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, {}>>;
|
|
10005
9171
|
/**
|
|
10006
9172
|
* Get Bulk 3CX Licence Details
|
|
10007
9173
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12531,28 +11697,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12531
11697
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12532
11698
|
/**
|
|
12533
11699
|
* 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
|
|
12551
11700
|
* @param {number} id Order ID
|
|
12552
11701
|
* @param {*} [options] Override http request option.
|
|
12553
11702
|
* @throws {RequiredError}
|
|
12554
11703
|
*/
|
|
12555
|
-
|
|
11704
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12556
11705
|
/**
|
|
12557
11706
|
* Get Orders
|
|
12558
11707
|
* @summary Get Orders
|
|
@@ -12567,44 +11716,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12567
11716
|
* @throws {RequiredError}
|
|
12568
11717
|
*/
|
|
12569
11718
|
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>;
|
|
12608
11719
|
};
|
|
12609
11720
|
/**
|
|
12610
11721
|
* OrdersApi - functional programming interface
|
|
@@ -12613,28 +11724,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12613
11724
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12614
11725
|
/**
|
|
12615
11726
|
* 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
|
|
12633
11727
|
* @param {number} id Order ID
|
|
12634
11728
|
* @param {*} [options] Override http request option.
|
|
12635
11729
|
* @throws {RequiredError}
|
|
12636
11730
|
*/
|
|
12637
|
-
|
|
11731
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12638
11732
|
/**
|
|
12639
11733
|
* Get Orders
|
|
12640
11734
|
* @summary Get Orders
|
|
@@ -12649,44 +11743,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12649
11743
|
* @throws {RequiredError}
|
|
12650
11744
|
*/
|
|
12651
11745
|
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>>>;
|
|
12690
11746
|
};
|
|
12691
11747
|
/**
|
|
12692
11748
|
* OrdersApi - factory interface
|
|
@@ -12695,28 +11751,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12695
11751
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12696
11752
|
/**
|
|
12697
11753
|
* 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
|
|
12715
11754
|
* @param {number} id Order ID
|
|
12716
11755
|
* @param {*} [options] Override http request option.
|
|
12717
11756
|
* @throws {RequiredError}
|
|
12718
11757
|
*/
|
|
12719
|
-
|
|
11758
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12720
11759
|
/**
|
|
12721
11760
|
* Get Orders
|
|
12722
11761
|
* @summary Get Orders
|
|
@@ -12731,44 +11770,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12731
11770
|
* @throws {RequiredError}
|
|
12732
11771
|
*/
|
|
12733
11772
|
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>>;
|
|
12772
11773
|
};
|
|
12773
11774
|
/**
|
|
12774
11775
|
* OrdersApi - object-oriented interface
|
|
@@ -12779,31 +11780,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12779
11780
|
export declare class OrdersApi extends BaseAPI {
|
|
12780
11781
|
/**
|
|
12781
11782
|
* 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
|
|
12801
11783
|
* @param {number} id Order ID
|
|
12802
11784
|
* @param {*} [options] Override http request option.
|
|
12803
11785
|
* @throws {RequiredError}
|
|
12804
11786
|
* @memberof OrdersApi
|
|
12805
11787
|
*/
|
|
12806
|
-
|
|
11788
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12807
11789
|
/**
|
|
12808
11790
|
* Get Orders
|
|
12809
11791
|
* @summary Get Orders
|
|
@@ -12819,48 +11801,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12819
11801
|
* @memberof OrdersApi
|
|
12820
11802
|
*/
|
|
12821
11803
|
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, {}>>;
|
|
12864
11804
|
}
|
|
12865
11805
|
/**
|
|
12866
11806
|
* @export
|
|
@@ -13116,6 +12056,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13116
12056
|
* @throws {RequiredError}
|
|
13117
12057
|
*/
|
|
13118
12058
|
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>;
|
|
13119
12066
|
/**
|
|
13120
12067
|
* Get Current Stock & Pricing
|
|
13121
12068
|
* @summary Get Current Stock & Pricing
|
|
@@ -13128,10 +12075,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13128
12075
|
/**
|
|
13129
12076
|
* Get Products
|
|
13130
12077
|
* @summary Get Products
|
|
12078
|
+
* @param {number} [pageSize] Number Of Results
|
|
12079
|
+
* @param {number} [page] Page Number
|
|
12080
|
+
* @param {string} [search] Search
|
|
13131
12081
|
* @param {*} [options] Override http request option.
|
|
13132
12082
|
* @throws {RequiredError}
|
|
13133
12083
|
*/
|
|
13134
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12084
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13135
12085
|
/**
|
|
13136
12086
|
* Get Current Stock & Pricing
|
|
13137
12087
|
* @summary Get Current Stock & Pricing
|
|
@@ -13146,35 +12096,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13146
12096
|
* @throws {RequiredError}
|
|
13147
12097
|
*/
|
|
13148
12098
|
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>;
|
|
13178
12099
|
};
|
|
13179
12100
|
/**
|
|
13180
12101
|
* ProductsApi - functional programming interface
|
|
@@ -13188,6 +12109,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13188
12109
|
* @throws {RequiredError}
|
|
13189
12110
|
*/
|
|
13190
12111
|
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>>>;
|
|
13191
12119
|
/**
|
|
13192
12120
|
* Get Current Stock & Pricing
|
|
13193
12121
|
* @summary Get Current Stock & Pricing
|
|
@@ -13200,10 +12128,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13200
12128
|
/**
|
|
13201
12129
|
* Get Products
|
|
13202
12130
|
* @summary Get Products
|
|
12131
|
+
* @param {number} [pageSize] Number Of Results
|
|
12132
|
+
* @param {number} [page] Page Number
|
|
12133
|
+
* @param {string} [search] Search
|
|
13203
12134
|
* @param {*} [options] Override http request option.
|
|
13204
12135
|
* @throws {RequiredError}
|
|
13205
12136
|
*/
|
|
13206
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12137
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13207
12138
|
/**
|
|
13208
12139
|
* Get Current Stock & Pricing
|
|
13209
12140
|
* @summary Get Current Stock & Pricing
|
|
@@ -13218,35 +12149,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13218
12149
|
* @throws {RequiredError}
|
|
13219
12150
|
*/
|
|
13220
12151
|
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>>;
|
|
13250
12152
|
};
|
|
13251
12153
|
/**
|
|
13252
12154
|
* ProductsApi - factory interface
|
|
@@ -13260,6 +12162,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13260
12162
|
* @throws {RequiredError}
|
|
13261
12163
|
*/
|
|
13262
12164
|
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>>;
|
|
13263
12172
|
/**
|
|
13264
12173
|
* Get Current Stock & Pricing
|
|
13265
12174
|
* @summary Get Current Stock & Pricing
|
|
@@ -13272,10 +12181,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13272
12181
|
/**
|
|
13273
12182
|
* Get Products
|
|
13274
12183
|
* @summary Get Products
|
|
12184
|
+
* @param {number} [pageSize] Number Of Results
|
|
12185
|
+
* @param {number} [page] Page Number
|
|
12186
|
+
* @param {string} [search] Search
|
|
13275
12187
|
* @param {*} [options] Override http request option.
|
|
13276
12188
|
* @throws {RequiredError}
|
|
13277
12189
|
*/
|
|
13278
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12190
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13279
12191
|
/**
|
|
13280
12192
|
* Get Current Stock & Pricing
|
|
13281
12193
|
* @summary Get Current Stock & Pricing
|
|
@@ -13290,35 +12202,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13290
12202
|
* @throws {RequiredError}
|
|
13291
12203
|
*/
|
|
13292
12204
|
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>;
|
|
13322
12205
|
};
|
|
13323
12206
|
/**
|
|
13324
12207
|
* ProductsApi - object-oriented interface
|
|
@@ -13335,6 +12218,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13335
12218
|
* @memberof ProductsApi
|
|
13336
12219
|
*/
|
|
13337
12220
|
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, {}>>;
|
|
13338
12229
|
/**
|
|
13339
12230
|
* Get Current Stock & Pricing
|
|
13340
12231
|
* @summary Get Current Stock & Pricing
|
|
@@ -13348,11 +12239,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13348
12239
|
/**
|
|
13349
12240
|
* Get Products
|
|
13350
12241
|
* @summary Get Products
|
|
12242
|
+
* @param {number} [pageSize] Number Of Results
|
|
12243
|
+
* @param {number} [page] Page Number
|
|
12244
|
+
* @param {string} [search] Search
|
|
13351
12245
|
* @param {*} [options] Override http request option.
|
|
13352
12246
|
* @throws {RequiredError}
|
|
13353
12247
|
* @memberof ProductsApi
|
|
13354
12248
|
*/
|
|
13355
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12249
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13356
12250
|
/**
|
|
13357
12251
|
* Get Current Stock & Pricing
|
|
13358
12252
|
* @summary Get Current Stock & Pricing
|
|
@@ -13369,38 +12263,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13369
12263
|
* @memberof ProductsApi
|
|
13370
12264
|
*/
|
|
13371
12265
|
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, {}>>;
|
|
13404
12266
|
}
|
|
13405
12267
|
/**
|
|
13406
12268
|
* @export
|
|
@@ -13521,7 +12383,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13521
12383
|
* @param {*} [options] Override http request option.
|
|
13522
12384
|
* @throws {RequiredError}
|
|
13523
12385
|
*/
|
|
13524
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12386
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13525
12387
|
/**
|
|
13526
12388
|
* Create a Fanvil provisioning group
|
|
13527
12389
|
* @summary Add group to DB and FDPS
|
|
@@ -13529,7 +12391,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13529
12391
|
* @param {*} [options] Override http request option.
|
|
13530
12392
|
* @throws {RequiredError}
|
|
13531
12393
|
*/
|
|
13532
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12394
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13533
12395
|
/**
|
|
13534
12396
|
* Add MAC address to DB and FDPS group
|
|
13535
12397
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13586,7 +12448,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13586
12448
|
* @param {*} [options] Override http request option.
|
|
13587
12449
|
* @throws {RequiredError}
|
|
13588
12450
|
*/
|
|
13589
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12451
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13590
12452
|
/**
|
|
13591
12453
|
* Create a Fanvil provisioning group
|
|
13592
12454
|
* @summary Add group to DB and FDPS
|
|
@@ -13594,7 +12456,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13594
12456
|
* @param {*} [options] Override http request option.
|
|
13595
12457
|
* @throws {RequiredError}
|
|
13596
12458
|
*/
|
|
13597
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12459
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13598
12460
|
/**
|
|
13599
12461
|
* Add MAC address to DB and FDPS group
|
|
13600
12462
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13658,7 +12520,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13658
12520
|
* @throws {RequiredError}
|
|
13659
12521
|
* @memberof ProvisioningApi
|
|
13660
12522
|
*/
|
|
13661
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12523
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13662
12524
|
/**
|
|
13663
12525
|
* Create a Fanvil provisioning group
|
|
13664
12526
|
* @summary Add group to DB and FDPS
|
|
@@ -13667,7 +12529,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13667
12529
|
* @throws {RequiredError}
|
|
13668
12530
|
* @memberof ProvisioningApi
|
|
13669
12531
|
*/
|
|
13670
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12532
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13671
12533
|
/**
|
|
13672
12534
|
* Add MAC address to DB and FDPS group
|
|
13673
12535
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14542,65 +13404,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14542
13404
|
*/
|
|
14543
13405
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14544
13406
|
}
|
|
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
|
-
}
|
|
14604
13407
|
/**
|
|
14605
13408
|
* StockManagementApi - axios parameter creator
|
|
14606
13409
|
* @export
|
|
@@ -14930,7 +13733,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14930
13733
|
* @param {*} [options] Override http request option.
|
|
14931
13734
|
* @throws {RequiredError}
|
|
14932
13735
|
*/
|
|
14933
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13736
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
14934
13737
|
/**
|
|
14935
13738
|
* Get Stock Order Supplier Invoice
|
|
14936
13739
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15145,7 +13948,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15145
13948
|
* @param {*} [options] Override http request option.
|
|
15146
13949
|
* @throws {RequiredError}
|
|
15147
13950
|
*/
|
|
15148
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13951
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15149
13952
|
/**
|
|
15150
13953
|
* Get Stock Order Supplier Invoice
|
|
15151
13954
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15375,7 +14178,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15375
14178
|
* @throws {RequiredError}
|
|
15376
14179
|
* @memberof StockManagementApi
|
|
15377
14180
|
*/
|
|
15378
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14181
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15379
14182
|
/**
|
|
15380
14183
|
* Get Stock Order Supplier Invoice
|
|
15381
14184
|
* @summary Get Stock Order Supplier Invoice
|