yellowgrid-api-ts 3.0.107 → 3.0.109-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +213 -195
- package/README.md +33 -7
- package/api.ts +1780 -260
- 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 +1292 -150
- package/dist/api.js +1059 -207
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AbstractOrderRequestDTO.md +33 -0
- package/docs/AccountDetailedSummaryDTO.md +39 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AdminItemRequestDTO.md +37 -0
- package/docs/AdminOrderRequestDTO.md +45 -0
- package/docs/AdminUserModel.md +29 -0
- package/docs/BasicItemDTO.md +23 -0
- package/docs/BasicProductDTO.md +23 -0
- package/docs/Class3CXApi.md +0 -55
- package/docs/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CustomerItemRequestDTO.md +33 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +12 -4
- package/docs/ItemEntity.md +2 -0
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +301 -4
- package/docs/PostGetProductForCustomerRequest.md +24 -0
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +5 -3
- package/docs/ProductsApi.md +164 -43
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningEntity.md → ProvisioningModel.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/ShippingApi.md +63 -0
- package/docs/ShippingConsignmentModel.md +26 -0
- package/docs/ShippingInformationDTO.md +25 -0
- package/docs/ShippingServiceDTO.md +23 -0
- package/docs/ShippingServiceModel.md +31 -0
- package/docs/{GetGetPasswordHash200Response.md → ShippingServicesModel.md} +5 -5
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcDTO.md +31 -0
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,6 +13,55 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
* Order Request
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AbstractOrderRequestDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface AbstractOrderRequestDTO {
|
|
22
|
+
/**
|
|
23
|
+
* Order Reference
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AbstractOrderRequestDTO
|
|
26
|
+
*/
|
|
27
|
+
'orderReference'?: string | null;
|
|
28
|
+
/**
|
|
29
|
+
* Items
|
|
30
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
+
* @memberof AbstractOrderRequestDTO
|
|
32
|
+
*/
|
|
33
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {ShippingServiceDTO}
|
|
37
|
+
* @memberof AbstractOrderRequestDTO
|
|
38
|
+
*/
|
|
39
|
+
'shippingService'?: ShippingServiceDTO;
|
|
40
|
+
/**
|
|
41
|
+
* Provisioning URL
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof AbstractOrderRequestDTO
|
|
44
|
+
*/
|
|
45
|
+
'provisioningUrl'?: string | null;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {AddressModel}
|
|
49
|
+
* @memberof AbstractOrderRequestDTO
|
|
50
|
+
*/
|
|
51
|
+
'shippingAddress'?: AddressModel | null;
|
|
52
|
+
/**
|
|
53
|
+
* Part Ship Order
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof AbstractOrderRequestDTO
|
|
56
|
+
*/
|
|
57
|
+
'partShip'?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Quote
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof AbstractOrderRequestDTO
|
|
62
|
+
*/
|
|
63
|
+
'quote'?: boolean;
|
|
64
|
+
}
|
|
16
65
|
/**
|
|
17
66
|
* AccountContactsEntity
|
|
18
67
|
* @export
|
|
@@ -244,6 +293,73 @@ export interface AccountContactRequestModel {
|
|
|
244
293
|
*/
|
|
245
294
|
'despatchEmails'?: boolean;
|
|
246
295
|
}
|
|
296
|
+
/**
|
|
297
|
+
* Account Details
|
|
298
|
+
* @export
|
|
299
|
+
* @interface AccountDetailedSummaryDTO
|
|
300
|
+
*/
|
|
301
|
+
export interface AccountDetailedSummaryDTO {
|
|
302
|
+
/**
|
|
303
|
+
* ID
|
|
304
|
+
* @type {number}
|
|
305
|
+
* @memberof AccountDetailedSummaryDTO
|
|
306
|
+
*/
|
|
307
|
+
'id'?: number;
|
|
308
|
+
/**
|
|
309
|
+
* Xero ID
|
|
310
|
+
* @type {string}
|
|
311
|
+
* @memberof AccountDetailedSummaryDTO
|
|
312
|
+
*/
|
|
313
|
+
'xeroId'?: string;
|
|
314
|
+
/**
|
|
315
|
+
* Company
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof AccountDetailedSummaryDTO
|
|
318
|
+
*/
|
|
319
|
+
'company'?: string;
|
|
320
|
+
/**
|
|
321
|
+
* Credit Limit
|
|
322
|
+
* @type {number}
|
|
323
|
+
* @memberof AccountDetailedSummaryDTO
|
|
324
|
+
*/
|
|
325
|
+
'creditLimit'?: number;
|
|
326
|
+
/**
|
|
327
|
+
* Contacts
|
|
328
|
+
* @type {Array<AccountContactModel>}
|
|
329
|
+
* @memberof AccountDetailedSummaryDTO
|
|
330
|
+
*/
|
|
331
|
+
'contacts'?: Array<AccountContactModel>;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @type {AddressModel}
|
|
335
|
+
* @memberof AccountDetailedSummaryDTO
|
|
336
|
+
*/
|
|
337
|
+
'billingAddress'?: AddressModel;
|
|
338
|
+
/**
|
|
339
|
+
* Addresses
|
|
340
|
+
* @type {Array<AddressModel>}
|
|
341
|
+
* @memberof AccountDetailedSummaryDTO
|
|
342
|
+
*/
|
|
343
|
+
'addresses'?: Array<AddressModel>;
|
|
344
|
+
/**
|
|
345
|
+
* Provisioning URLs
|
|
346
|
+
* @type {Array<ProvisioningModel>}
|
|
347
|
+
* @memberof AccountDetailedSummaryDTO
|
|
348
|
+
*/
|
|
349
|
+
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
+
/**
|
|
351
|
+
* On Hold
|
|
352
|
+
* @type {boolean}
|
|
353
|
+
* @memberof AccountDetailedSummaryDTO
|
|
354
|
+
*/
|
|
355
|
+
'onHold'?: boolean;
|
|
356
|
+
/**
|
|
357
|
+
* Balance (£)
|
|
358
|
+
* @type {number}
|
|
359
|
+
* @memberof AccountDetailedSummaryDTO
|
|
360
|
+
*/
|
|
361
|
+
'balance'?: number | null;
|
|
362
|
+
}
|
|
247
363
|
/**
|
|
248
364
|
* New Account Request
|
|
249
365
|
* @export
|
|
@@ -525,6 +641,197 @@ export interface AddressRequestModel {
|
|
|
525
641
|
*/
|
|
526
642
|
'addressPostcode'?: string;
|
|
527
643
|
}
|
|
644
|
+
/**
|
|
645
|
+
* Admin Order Item Request
|
|
646
|
+
* @export
|
|
647
|
+
* @interface AdminItemRequestDTO
|
|
648
|
+
*/
|
|
649
|
+
export interface AdminItemRequestDTO {
|
|
650
|
+
/**
|
|
651
|
+
* SKU
|
|
652
|
+
* @type {string}
|
|
653
|
+
* @memberof AdminItemRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
'sku'?: string;
|
|
656
|
+
/**
|
|
657
|
+
* Quantity
|
|
658
|
+
* @type {number}
|
|
659
|
+
* @memberof AdminItemRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'quantity'?: number;
|
|
662
|
+
/**
|
|
663
|
+
* ID
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof AdminItemRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'id'?: number | null;
|
|
668
|
+
/**
|
|
669
|
+
* 3CX Licence Key
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof AdminItemRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'licenceKey'?: string | null;
|
|
674
|
+
/**
|
|
675
|
+
* 3CX Hosting
|
|
676
|
+
* @type {boolean}
|
|
677
|
+
* @memberof AdminItemRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'hosting'?: boolean | null;
|
|
680
|
+
/**
|
|
681
|
+
* Date Time
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof AdminItemRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'processDate'?: string;
|
|
686
|
+
/**
|
|
687
|
+
* SBCS
|
|
688
|
+
* @type {Array<TcxSbcDTO>}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
692
|
+
/**
|
|
693
|
+
* Title
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof AdminItemRequestDTO
|
|
696
|
+
*/
|
|
697
|
+
'title'?: string | null;
|
|
698
|
+
/**
|
|
699
|
+
* Price (£)
|
|
700
|
+
* @type {number}
|
|
701
|
+
* @memberof AdminItemRequestDTO
|
|
702
|
+
*/
|
|
703
|
+
'itemPrice'?: number | null;
|
|
704
|
+
}
|
|
705
|
+
/**
|
|
706
|
+
* Admin Order Request
|
|
707
|
+
* @export
|
|
708
|
+
* @interface AdminOrderRequestDTO
|
|
709
|
+
*/
|
|
710
|
+
export interface AdminOrderRequestDTO {
|
|
711
|
+
/**
|
|
712
|
+
* Order Reference
|
|
713
|
+
* @type {string}
|
|
714
|
+
* @memberof AdminOrderRequestDTO
|
|
715
|
+
*/
|
|
716
|
+
'orderReference'?: string | null;
|
|
717
|
+
/**
|
|
718
|
+
* Items
|
|
719
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
720
|
+
* @memberof AdminOrderRequestDTO
|
|
721
|
+
*/
|
|
722
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {ShippingServiceDTO}
|
|
726
|
+
* @memberof AdminOrderRequestDTO
|
|
727
|
+
*/
|
|
728
|
+
'shippingService'?: ShippingServiceDTO;
|
|
729
|
+
/**
|
|
730
|
+
* Provisioning URL
|
|
731
|
+
* @type {string}
|
|
732
|
+
* @memberof AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
'provisioningUrl'?: string | null;
|
|
735
|
+
/**
|
|
736
|
+
*
|
|
737
|
+
* @type {AddressModel}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'shippingAddress'?: AddressModel;
|
|
741
|
+
/**
|
|
742
|
+
* Part Ship Order
|
|
743
|
+
* @type {boolean}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'partShip'?: boolean;
|
|
747
|
+
/**
|
|
748
|
+
* Quote
|
|
749
|
+
* @type {boolean}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'quote'?: boolean;
|
|
753
|
+
/**
|
|
754
|
+
* Customer ID
|
|
755
|
+
* @type {number}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'customerId'?: number;
|
|
759
|
+
/**
|
|
760
|
+
* Contact
|
|
761
|
+
* @type {string}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'contact'?: string;
|
|
765
|
+
/**
|
|
766
|
+
* Ignore Customer On Hold
|
|
767
|
+
* @type {boolean}
|
|
768
|
+
* @memberof AdminOrderRequestDTO
|
|
769
|
+
*/
|
|
770
|
+
'ignoreOnHold'?: boolean;
|
|
771
|
+
/**
|
|
772
|
+
* Ignore Customer Credit Limit
|
|
773
|
+
* @type {boolean}
|
|
774
|
+
* @memberof AdminOrderRequestDTO
|
|
775
|
+
*/
|
|
776
|
+
'ignoreCreditLimit'?: boolean;
|
|
777
|
+
/**
|
|
778
|
+
* Include NFR Promos
|
|
779
|
+
* @type {boolean}
|
|
780
|
+
* @memberof AdminOrderRequestDTO
|
|
781
|
+
*/
|
|
782
|
+
'includeNfrPromos'?: boolean;
|
|
783
|
+
/**
|
|
784
|
+
* Carriage Charge
|
|
785
|
+
* @type {number}
|
|
786
|
+
* @memberof AdminOrderRequestDTO
|
|
787
|
+
*/
|
|
788
|
+
'carriageCharge'?: number;
|
|
789
|
+
}
|
|
790
|
+
/**
|
|
791
|
+
* Admin User
|
|
792
|
+
* @export
|
|
793
|
+
* @interface AdminUserModel
|
|
794
|
+
*/
|
|
795
|
+
export interface AdminUserModel {
|
|
796
|
+
/**
|
|
797
|
+
* First Name
|
|
798
|
+
* @type {string}
|
|
799
|
+
* @memberof AdminUserModel
|
|
800
|
+
*/
|
|
801
|
+
'firstName'?: string;
|
|
802
|
+
/**
|
|
803
|
+
* Last Name
|
|
804
|
+
* @type {string}
|
|
805
|
+
* @memberof AdminUserModel
|
|
806
|
+
*/
|
|
807
|
+
'lastName'?: string;
|
|
808
|
+
/**
|
|
809
|
+
* Avatar
|
|
810
|
+
* @type {string}
|
|
811
|
+
* @memberof AdminUserModel
|
|
812
|
+
*/
|
|
813
|
+
'avatar'?: string | null;
|
|
814
|
+
/**
|
|
815
|
+
* Role
|
|
816
|
+
* @type {number}
|
|
817
|
+
* @memberof AdminUserModel
|
|
818
|
+
*/
|
|
819
|
+
'role'?: AdminUserModelRoleEnum;
|
|
820
|
+
/**
|
|
821
|
+
* Email
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof AdminUserModel
|
|
824
|
+
*/
|
|
825
|
+
'email'?: string | null;
|
|
826
|
+
}
|
|
827
|
+
export declare const AdminUserModelRoleEnum: {
|
|
828
|
+
readonly NUMBER_0: 0;
|
|
829
|
+
readonly NUMBER_1: 1;
|
|
830
|
+
readonly NUMBER_2: 2;
|
|
831
|
+
readonly NUMBER_3: 3;
|
|
832
|
+
readonly NUMBER_4: 4;
|
|
833
|
+
};
|
|
834
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
835
|
/**
|
|
529
836
|
* Agent Hours Graph
|
|
530
837
|
* @export
|
|
@@ -754,6 +1061,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1061
|
*/
|
|
755
1062
|
'redirect_uri'?: string | null;
|
|
756
1063
|
}
|
|
1064
|
+
/**
|
|
1065
|
+
* Basic Order Item
|
|
1066
|
+
* @export
|
|
1067
|
+
* @interface BasicItemDTO
|
|
1068
|
+
*/
|
|
1069
|
+
export interface BasicItemDTO {
|
|
1070
|
+
/**
|
|
1071
|
+
* SKU
|
|
1072
|
+
* @type {string}
|
|
1073
|
+
* @memberof BasicItemDTO
|
|
1074
|
+
*/
|
|
1075
|
+
'sku'?: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* Quantity
|
|
1078
|
+
* @type {number}
|
|
1079
|
+
* @memberof BasicItemDTO
|
|
1080
|
+
*/
|
|
1081
|
+
'quantity'?: number;
|
|
1082
|
+
}
|
|
1083
|
+
/**
|
|
1084
|
+
* Basic Product
|
|
1085
|
+
* @export
|
|
1086
|
+
* @interface BasicProductDTO
|
|
1087
|
+
*/
|
|
1088
|
+
export interface BasicProductDTO {
|
|
1089
|
+
/**
|
|
1090
|
+
* SKU
|
|
1091
|
+
* @type {string}
|
|
1092
|
+
* @memberof BasicProductDTO
|
|
1093
|
+
*/
|
|
1094
|
+
'sku'?: string;
|
|
1095
|
+
/**
|
|
1096
|
+
* Title
|
|
1097
|
+
* @type {string}
|
|
1098
|
+
* @memberof BasicProductDTO
|
|
1099
|
+
*/
|
|
1100
|
+
'title'?: string;
|
|
1101
|
+
}
|
|
757
1102
|
/**
|
|
758
1103
|
* BatchesEntity
|
|
759
1104
|
* @export
|
|
@@ -948,12 +1293,6 @@ export interface ClientDetailsModel {
|
|
|
948
1293
|
* @memberof ClientDetailsModel
|
|
949
1294
|
*/
|
|
950
1295
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1296
|
}
|
|
958
1297
|
/**
|
|
959
1298
|
* OAuth client details
|
|
@@ -1115,6 +1454,73 @@ export interface ConversationModel {
|
|
|
1115
1454
|
*/
|
|
1116
1455
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1456
|
}
|
|
1457
|
+
/**
|
|
1458
|
+
* CourierPricesEntity
|
|
1459
|
+
* @export
|
|
1460
|
+
* @interface CourierPriceEntity
|
|
1461
|
+
*/
|
|
1462
|
+
export interface CourierPriceEntity {
|
|
1463
|
+
/**
|
|
1464
|
+
* id
|
|
1465
|
+
* @type {number}
|
|
1466
|
+
* @memberof CourierPriceEntity
|
|
1467
|
+
*/
|
|
1468
|
+
'id'?: number;
|
|
1469
|
+
/**
|
|
1470
|
+
* courier
|
|
1471
|
+
* @type {string}
|
|
1472
|
+
* @memberof CourierPriceEntity
|
|
1473
|
+
*/
|
|
1474
|
+
'courier'?: string;
|
|
1475
|
+
/**
|
|
1476
|
+
* destinationIso
|
|
1477
|
+
* @type {string}
|
|
1478
|
+
* @memberof CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
'destinationIso'?: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* serviceDescription
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'serviceDescription'?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* flatRate
|
|
1489
|
+
* @type {number}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'flatRate'?: number;
|
|
1493
|
+
/**
|
|
1494
|
+
* initialBox
|
|
1495
|
+
* @type {number}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'initialBox'?: number;
|
|
1499
|
+
/**
|
|
1500
|
+
* initialKg
|
|
1501
|
+
* @type {number}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'initialKg'?: number;
|
|
1505
|
+
/**
|
|
1506
|
+
* perBox
|
|
1507
|
+
* @type {number}
|
|
1508
|
+
* @memberof CourierPriceEntity
|
|
1509
|
+
*/
|
|
1510
|
+
'perBox'?: number;
|
|
1511
|
+
/**
|
|
1512
|
+
* perKg
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof CourierPriceEntity
|
|
1515
|
+
*/
|
|
1516
|
+
'perKg'?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
* maxKg
|
|
1519
|
+
* @type {number}
|
|
1520
|
+
* @memberof CourierPriceEntity
|
|
1521
|
+
*/
|
|
1522
|
+
'maxKg'?: number;
|
|
1523
|
+
}
|
|
1118
1524
|
/**
|
|
1119
1525
|
* Credit Account
|
|
1120
1526
|
* @export
|
|
@@ -1297,6 +1703,104 @@ export interface CustomerInformationModel {
|
|
|
1297
1703
|
*/
|
|
1298
1704
|
'contactLastName'?: string;
|
|
1299
1705
|
}
|
|
1706
|
+
/**
|
|
1707
|
+
* Order Item Request
|
|
1708
|
+
* @export
|
|
1709
|
+
* @interface CustomerItemRequestDTO
|
|
1710
|
+
*/
|
|
1711
|
+
export interface CustomerItemRequestDTO {
|
|
1712
|
+
/**
|
|
1713
|
+
* SKU
|
|
1714
|
+
* @type {string}
|
|
1715
|
+
* @memberof CustomerItemRequestDTO
|
|
1716
|
+
*/
|
|
1717
|
+
'sku'?: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* Quantity
|
|
1720
|
+
* @type {number}
|
|
1721
|
+
* @memberof CustomerItemRequestDTO
|
|
1722
|
+
*/
|
|
1723
|
+
'quantity'?: number;
|
|
1724
|
+
/**
|
|
1725
|
+
* ID
|
|
1726
|
+
* @type {number}
|
|
1727
|
+
* @memberof CustomerItemRequestDTO
|
|
1728
|
+
*/
|
|
1729
|
+
'id'?: number | null;
|
|
1730
|
+
/**
|
|
1731
|
+
* 3CX Licence Key
|
|
1732
|
+
* @type {string}
|
|
1733
|
+
* @memberof CustomerItemRequestDTO
|
|
1734
|
+
*/
|
|
1735
|
+
'licenceKey'?: string | null;
|
|
1736
|
+
/**
|
|
1737
|
+
* 3CX Hosting
|
|
1738
|
+
* @type {boolean}
|
|
1739
|
+
* @memberof CustomerItemRequestDTO
|
|
1740
|
+
*/
|
|
1741
|
+
'hosting'?: boolean | null;
|
|
1742
|
+
/**
|
|
1743
|
+
* Date Time
|
|
1744
|
+
* @type {string}
|
|
1745
|
+
* @memberof CustomerItemRequestDTO
|
|
1746
|
+
*/
|
|
1747
|
+
'processDate'?: string;
|
|
1748
|
+
/**
|
|
1749
|
+
* SBCS
|
|
1750
|
+
* @type {Array<TcxSbcDTO>}
|
|
1751
|
+
* @memberof CustomerItemRequestDTO
|
|
1752
|
+
*/
|
|
1753
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1754
|
+
}
|
|
1755
|
+
/**
|
|
1756
|
+
* Order Request
|
|
1757
|
+
* @export
|
|
1758
|
+
* @interface CustomerOrderRequestDTO
|
|
1759
|
+
*/
|
|
1760
|
+
export interface CustomerOrderRequestDTO {
|
|
1761
|
+
/**
|
|
1762
|
+
* Order Reference
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof CustomerOrderRequestDTO
|
|
1765
|
+
*/
|
|
1766
|
+
'orderReference'?: string | null;
|
|
1767
|
+
/**
|
|
1768
|
+
* Items
|
|
1769
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1770
|
+
* @memberof CustomerOrderRequestDTO
|
|
1771
|
+
*/
|
|
1772
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @type {ShippingServiceDTO}
|
|
1776
|
+
* @memberof CustomerOrderRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1779
|
+
/**
|
|
1780
|
+
* Provisioning URL
|
|
1781
|
+
* @type {string}
|
|
1782
|
+
* @memberof CustomerOrderRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'provisioningUrl'?: string | null;
|
|
1785
|
+
/**
|
|
1786
|
+
*
|
|
1787
|
+
* @type {AddressModel}
|
|
1788
|
+
* @memberof CustomerOrderRequestDTO
|
|
1789
|
+
*/
|
|
1790
|
+
'shippingAddress'?: AddressModel;
|
|
1791
|
+
/**
|
|
1792
|
+
* Part Ship Order
|
|
1793
|
+
* @type {boolean}
|
|
1794
|
+
* @memberof CustomerOrderRequestDTO
|
|
1795
|
+
*/
|
|
1796
|
+
'partShip'?: boolean;
|
|
1797
|
+
/**
|
|
1798
|
+
* Quote
|
|
1799
|
+
* @type {boolean}
|
|
1800
|
+
* @memberof CustomerOrderRequestDTO
|
|
1801
|
+
*/
|
|
1802
|
+
'quote'?: boolean;
|
|
1803
|
+
}
|
|
1300
1804
|
/**
|
|
1301
1805
|
* Customer Price List
|
|
1302
1806
|
* @export
|
|
@@ -1803,19 +2307,6 @@ export interface GenericFileModel {
|
|
|
1803
2307
|
*/
|
|
1804
2308
|
'type'?: string;
|
|
1805
2309
|
}
|
|
1806
|
-
/**
|
|
1807
|
-
*
|
|
1808
|
-
* @export
|
|
1809
|
-
* @interface GetGetPasswordHash200Response
|
|
1810
|
-
*/
|
|
1811
|
-
export interface GetGetPasswordHash200Response {
|
|
1812
|
-
/**
|
|
1813
|
-
*
|
|
1814
|
-
* @type {string}
|
|
1815
|
-
* @memberof GetGetPasswordHash200Response
|
|
1816
|
-
*/
|
|
1817
|
-
'hash'?: string;
|
|
1818
|
-
}
|
|
1819
2310
|
/**
|
|
1820
2311
|
*
|
|
1821
2312
|
* @export
|
|
@@ -2411,35 +2902,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2411
2902
|
*/
|
|
2412
2903
|
export interface ItemDTO {
|
|
2413
2904
|
/**
|
|
2414
|
-
*
|
|
2415
|
-
* @type {
|
|
2905
|
+
* SKU
|
|
2906
|
+
* @type {string}
|
|
2416
2907
|
* @memberof ItemDTO
|
|
2417
2908
|
*/
|
|
2418
|
-
'
|
|
2909
|
+
'sku'?: string;
|
|
2419
2910
|
/**
|
|
2420
|
-
*
|
|
2911
|
+
* Quantity
|
|
2421
2912
|
* @type {number}
|
|
2422
2913
|
* @memberof ItemDTO
|
|
2423
2914
|
*/
|
|
2424
|
-
'
|
|
2915
|
+
'quantity'?: number;
|
|
2425
2916
|
/**
|
|
2426
|
-
*
|
|
2427
|
-
* @type {
|
|
2917
|
+
* ID
|
|
2918
|
+
* @type {number}
|
|
2428
2919
|
* @memberof ItemDTO
|
|
2429
2920
|
*/
|
|
2430
|
-
'
|
|
2921
|
+
'id'?: number | null;
|
|
2431
2922
|
/**
|
|
2432
|
-
*
|
|
2433
|
-
* @type {
|
|
2923
|
+
* Order ID
|
|
2924
|
+
* @type {number}
|
|
2434
2925
|
* @memberof ItemDTO
|
|
2435
2926
|
*/
|
|
2436
|
-
'
|
|
2927
|
+
'orderId'?: number | null;
|
|
2437
2928
|
/**
|
|
2438
|
-
*
|
|
2439
|
-
* @type {
|
|
2929
|
+
* Title
|
|
2930
|
+
* @type {string}
|
|
2440
2931
|
* @memberof ItemDTO
|
|
2441
2932
|
*/
|
|
2442
|
-
'
|
|
2933
|
+
'title'?: string;
|
|
2443
2934
|
/**
|
|
2444
2935
|
* Price
|
|
2445
2936
|
* @type {number}
|
|
@@ -2464,6 +2955,12 @@ export interface ItemDTO {
|
|
|
2464
2955
|
* @memberof ItemDTO
|
|
2465
2956
|
*/
|
|
2466
2957
|
'processDate'?: string;
|
|
2958
|
+
/**
|
|
2959
|
+
* 3CX Hosting
|
|
2960
|
+
* @type {boolean}
|
|
2961
|
+
* @memberof ItemDTO
|
|
2962
|
+
*/
|
|
2963
|
+
'hosting'?: boolean | null;
|
|
2467
2964
|
/**
|
|
2468
2965
|
* Promo Item
|
|
2469
2966
|
* @type {boolean}
|
|
@@ -2475,7 +2972,25 @@ export interface ItemDTO {
|
|
|
2475
2972
|
* @type {number}
|
|
2476
2973
|
* @memberof ItemDTO
|
|
2477
2974
|
*/
|
|
2478
|
-
'refunded'?: number;
|
|
2975
|
+
'refunded'?: number | null;
|
|
2976
|
+
/**
|
|
2977
|
+
* SBCs
|
|
2978
|
+
* @type {Array<TcxSbcDTO>}
|
|
2979
|
+
* @memberof ItemDTO
|
|
2980
|
+
*/
|
|
2981
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2982
|
+
/**
|
|
2983
|
+
* Readonly
|
|
2984
|
+
* @type {boolean}
|
|
2985
|
+
* @memberof ItemDTO
|
|
2986
|
+
*/
|
|
2987
|
+
'readonly'?: boolean;
|
|
2988
|
+
/**
|
|
2989
|
+
* 3CX Sales Code
|
|
2990
|
+
* @type {string}
|
|
2991
|
+
* @memberof ItemDTO
|
|
2992
|
+
*/
|
|
2993
|
+
'tcxSalesCode'?: string | null;
|
|
2479
2994
|
}
|
|
2480
2995
|
/**
|
|
2481
2996
|
* ItemsEntity
|
|
@@ -2609,6 +3124,31 @@ export interface ItemEntity {
|
|
|
2609
3124
|
* @memberof ItemEntity
|
|
2610
3125
|
*/
|
|
2611
3126
|
'promoItem'?: number;
|
|
3127
|
+
/**
|
|
3128
|
+
* 3CX Sales Code
|
|
3129
|
+
* @type {string}
|
|
3130
|
+
* @memberof ItemEntity
|
|
3131
|
+
*/
|
|
3132
|
+
'tcxSalesCode'?: string | null;
|
|
3133
|
+
}
|
|
3134
|
+
/**
|
|
3135
|
+
* LinkedOrdersEntity
|
|
3136
|
+
* @export
|
|
3137
|
+
* @interface LinkedOrderEntity
|
|
3138
|
+
*/
|
|
3139
|
+
export interface LinkedOrderEntity {
|
|
3140
|
+
/**
|
|
3141
|
+
* orderId
|
|
3142
|
+
* @type {number}
|
|
3143
|
+
* @memberof LinkedOrderEntity
|
|
3144
|
+
*/
|
|
3145
|
+
'orderId'?: number;
|
|
3146
|
+
/**
|
|
3147
|
+
* linkedOrderId
|
|
3148
|
+
* @type {number}
|
|
3149
|
+
* @memberof LinkedOrderEntity
|
|
3150
|
+
*/
|
|
3151
|
+
'linkedOrderId'?: number;
|
|
2612
3152
|
}
|
|
2613
3153
|
/**
|
|
2614
3154
|
* MFA Required
|
|
@@ -3262,13 +3802,19 @@ export interface OrderSummaryDTO {
|
|
|
3262
3802
|
* @type {string}
|
|
3263
3803
|
* @memberof OrderSummaryDTO
|
|
3264
3804
|
*/
|
|
3265
|
-
'reference'?: string;
|
|
3805
|
+
'reference'?: string | null;
|
|
3266
3806
|
/**
|
|
3267
3807
|
* Invoice Number
|
|
3268
3808
|
* @type {string}
|
|
3269
3809
|
* @memberof OrderSummaryDTO
|
|
3270
3810
|
*/
|
|
3271
3811
|
'invoiceNumber'?: string;
|
|
3812
|
+
/**
|
|
3813
|
+
* Invoice ID
|
|
3814
|
+
* @type {string}
|
|
3815
|
+
* @memberof OrderSummaryDTO
|
|
3816
|
+
*/
|
|
3817
|
+
'invoiceId'?: string | null;
|
|
3272
3818
|
/**
|
|
3273
3819
|
* Date Time
|
|
3274
3820
|
* @type {string}
|
|
@@ -3323,6 +3869,24 @@ export interface OrderSummaryDTO {
|
|
|
3323
3869
|
* @memberof OrderSummaryDTO
|
|
3324
3870
|
*/
|
|
3325
3871
|
'fulfillable'?: boolean | null;
|
|
3872
|
+
/**
|
|
3873
|
+
* Provisioning URL
|
|
3874
|
+
* @type {string}
|
|
3875
|
+
* @memberof OrderSummaryDTO
|
|
3876
|
+
*/
|
|
3877
|
+
'provisioningUrl'?: string | null;
|
|
3878
|
+
/**
|
|
3879
|
+
*
|
|
3880
|
+
* @type {ShippingServiceDTO}
|
|
3881
|
+
* @memberof OrderSummaryDTO
|
|
3882
|
+
*/
|
|
3883
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
3884
|
+
/**
|
|
3885
|
+
* Readonly
|
|
3886
|
+
* @type {boolean}
|
|
3887
|
+
* @memberof OrderSummaryDTO
|
|
3888
|
+
*/
|
|
3889
|
+
'readonly'?: boolean;
|
|
3326
3890
|
}
|
|
3327
3891
|
/**
|
|
3328
3892
|
* Order Totals
|
|
@@ -3372,6 +3936,12 @@ export interface OrderTotalModel {
|
|
|
3372
3936
|
* @memberof OrderTotalModel
|
|
3373
3937
|
*/
|
|
3374
3938
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3939
|
+
/**
|
|
3940
|
+
* Delivery
|
|
3941
|
+
* @type {number}
|
|
3942
|
+
* @memberof OrderTotalModel
|
|
3943
|
+
*/
|
|
3944
|
+
'delivery'?: number | null;
|
|
3375
3945
|
}
|
|
3376
3946
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3377
3947
|
readonly Eur: "EUR";
|
|
@@ -3750,6 +4320,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3750
4320
|
*/
|
|
3751
4321
|
'scopes'?: Array<string>;
|
|
3752
4322
|
}
|
|
4323
|
+
/**
|
|
4324
|
+
*
|
|
4325
|
+
* @export
|
|
4326
|
+
* @interface PostGetProductForCustomerRequest
|
|
4327
|
+
*/
|
|
4328
|
+
export interface PostGetProductForCustomerRequest {
|
|
4329
|
+
/**
|
|
4330
|
+
* Quantity
|
|
4331
|
+
* @type {number}
|
|
4332
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4333
|
+
*/
|
|
4334
|
+
'quantity'?: number | null;
|
|
4335
|
+
/**
|
|
4336
|
+
* 3CX Licence Key
|
|
4337
|
+
* @type {string}
|
|
4338
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4339
|
+
*/
|
|
4340
|
+
'licenceKey'?: string | null;
|
|
4341
|
+
/**
|
|
4342
|
+
* 3CX Hosting
|
|
4343
|
+
* @type {boolean}
|
|
4344
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4345
|
+
*/
|
|
4346
|
+
'hosting'?: boolean | null;
|
|
4347
|
+
}
|
|
3753
4348
|
/**
|
|
3754
4349
|
* Price & Stock List
|
|
3755
4350
|
* @export
|
|
@@ -3838,10 +4433,10 @@ export interface PrizesEntity {
|
|
|
3838
4433
|
export interface ProductSearchResultsModel {
|
|
3839
4434
|
/**
|
|
3840
4435
|
* Results
|
|
3841
|
-
* @type {Array<
|
|
4436
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3842
4437
|
* @memberof ProductSearchResultsModel
|
|
3843
4438
|
*/
|
|
3844
|
-
'results'?: Array<
|
|
4439
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3845
4440
|
}
|
|
3846
4441
|
/**
|
|
3847
4442
|
* Product Serial Info
|
|
@@ -3877,45 +4472,51 @@ export interface ProductSerialInfoModel {
|
|
|
3877
4472
|
/**
|
|
3878
4473
|
* Product Summary
|
|
3879
4474
|
* @export
|
|
3880
|
-
* @interface
|
|
4475
|
+
* @interface ProductSummaryDTO
|
|
3881
4476
|
*/
|
|
3882
|
-
export interface
|
|
4477
|
+
export interface ProductSummaryDTO {
|
|
3883
4478
|
/**
|
|
3884
4479
|
* SKU
|
|
3885
4480
|
* @type {string}
|
|
3886
|
-
* @memberof
|
|
4481
|
+
* @memberof ProductSummaryDTO
|
|
3887
4482
|
*/
|
|
3888
4483
|
'sku'?: string;
|
|
3889
4484
|
/**
|
|
3890
4485
|
* Title
|
|
3891
4486
|
* @type {string}
|
|
3892
|
-
* @memberof
|
|
4487
|
+
* @memberof ProductSummaryDTO
|
|
3893
4488
|
*/
|
|
3894
4489
|
'title'?: string;
|
|
3895
4490
|
/**
|
|
3896
4491
|
* Stock Quantity
|
|
3897
4492
|
* @type {number}
|
|
3898
|
-
* @memberof
|
|
4493
|
+
* @memberof ProductSummaryDTO
|
|
3899
4494
|
*/
|
|
3900
4495
|
'quantity'?: number | null;
|
|
3901
4496
|
/**
|
|
3902
4497
|
* Stock Product
|
|
3903
4498
|
* @type {boolean}
|
|
3904
|
-
* @memberof
|
|
4499
|
+
* @memberof ProductSummaryDTO
|
|
3905
4500
|
*/
|
|
3906
4501
|
'stockProduct'?: boolean;
|
|
3907
4502
|
/**
|
|
3908
4503
|
* Price
|
|
3909
4504
|
* @type {number}
|
|
3910
|
-
* @memberof
|
|
4505
|
+
* @memberof ProductSummaryDTO
|
|
3911
4506
|
*/
|
|
3912
4507
|
'price'?: number | null;
|
|
3913
4508
|
/**
|
|
3914
4509
|
* Carton Size
|
|
3915
4510
|
* @type {number}
|
|
3916
|
-
* @memberof
|
|
4511
|
+
* @memberof ProductSummaryDTO
|
|
3917
4512
|
*/
|
|
3918
4513
|
'cartonSize'?: number | null;
|
|
4514
|
+
/**
|
|
4515
|
+
* RRP Price
|
|
4516
|
+
* @type {number}
|
|
4517
|
+
* @memberof ProductSummaryDTO
|
|
4518
|
+
*/
|
|
4519
|
+
'rrp'?: number | null;
|
|
3919
4520
|
}
|
|
3920
4521
|
/**
|
|
3921
4522
|
* PromoCodesEntity
|
|
@@ -4054,37 +4655,37 @@ export interface PromoItemsEntity {
|
|
|
4054
4655
|
/**
|
|
4055
4656
|
* Provisioning Group
|
|
4056
4657
|
* @export
|
|
4057
|
-
* @interface
|
|
4658
|
+
* @interface ProvisioningModel
|
|
4058
4659
|
*/
|
|
4059
|
-
export interface
|
|
4660
|
+
export interface ProvisioningModel {
|
|
4060
4661
|
/**
|
|
4061
4662
|
* Provisioning Group Name
|
|
4062
4663
|
* @type {string}
|
|
4063
|
-
* @memberof
|
|
4664
|
+
* @memberof ProvisioningModel
|
|
4064
4665
|
*/
|
|
4065
4666
|
'groupName'?: string;
|
|
4066
4667
|
/**
|
|
4067
4668
|
* Provisioning URL (Static Provisioning Server)
|
|
4068
4669
|
* @type {string}
|
|
4069
|
-
* @memberof
|
|
4670
|
+
* @memberof ProvisioningModel
|
|
4070
4671
|
*/
|
|
4071
4672
|
'provisioningUrl'?: string;
|
|
4072
4673
|
/**
|
|
4073
4674
|
* Additional Authentication Secret
|
|
4074
4675
|
* @type {string}
|
|
4075
|
-
* @memberof
|
|
4676
|
+
* @memberof ProvisioningModel
|
|
4076
4677
|
*/
|
|
4077
4678
|
'auth'?: string;
|
|
4078
4679
|
/**
|
|
4079
4680
|
* Provisioning Group ID
|
|
4080
4681
|
* @type {number}
|
|
4081
|
-
* @memberof
|
|
4682
|
+
* @memberof ProvisioningModel
|
|
4082
4683
|
*/
|
|
4083
4684
|
'id'?: number;
|
|
4084
4685
|
/**
|
|
4085
4686
|
* Owner ID
|
|
4086
4687
|
* @type {number}
|
|
4087
|
-
* @memberof
|
|
4688
|
+
* @memberof ProvisioningModel
|
|
4088
4689
|
*/
|
|
4089
4690
|
'customerId'?: number;
|
|
4090
4691
|
}
|
|
@@ -4438,7 +5039,7 @@ export interface ShipmentEntity {
|
|
|
4438
5039
|
* @type {string}
|
|
4439
5040
|
* @memberof ShipmentEntity
|
|
4440
5041
|
*/
|
|
4441
|
-
'
|
|
5042
|
+
'dateShipped'?: string;
|
|
4442
5043
|
/**
|
|
4443
5044
|
* requestDate
|
|
4444
5045
|
* @type {string}
|
|
@@ -4489,6 +5090,149 @@ export interface ShipmentItemEntity {
|
|
|
4489
5090
|
*/
|
|
4490
5091
|
'itemId'?: string;
|
|
4491
5092
|
}
|
|
5093
|
+
/**
|
|
5094
|
+
*
|
|
5095
|
+
* @export
|
|
5096
|
+
* @interface ShippingConsignmentModel
|
|
5097
|
+
*/
|
|
5098
|
+
export interface ShippingConsignmentModel {
|
|
5099
|
+
/**
|
|
5100
|
+
*
|
|
5101
|
+
* @type {ShippingServiceModel}
|
|
5102
|
+
* @memberof ShippingConsignmentModel
|
|
5103
|
+
*/
|
|
5104
|
+
'service'?: ShippingServiceModel;
|
|
5105
|
+
/**
|
|
5106
|
+
* ID/Number
|
|
5107
|
+
* @type {string}
|
|
5108
|
+
* @memberof ShippingConsignmentModel
|
|
5109
|
+
*/
|
|
5110
|
+
'id'?: string;
|
|
5111
|
+
/**
|
|
5112
|
+
* Tracking Number
|
|
5113
|
+
* @type {string}
|
|
5114
|
+
* @memberof ShippingConsignmentModel
|
|
5115
|
+
*/
|
|
5116
|
+
'trackingNumber'?: string;
|
|
5117
|
+
/**
|
|
5118
|
+
* Parcels
|
|
5119
|
+
* @type {Array<string>}
|
|
5120
|
+
* @memberof ShippingConsignmentModel
|
|
5121
|
+
*/
|
|
5122
|
+
'parcelIds'?: Array<string>;
|
|
5123
|
+
}
|
|
5124
|
+
/**
|
|
5125
|
+
* Shipping Information
|
|
5126
|
+
* @export
|
|
5127
|
+
* @interface ShippingInformationDTO
|
|
5128
|
+
*/
|
|
5129
|
+
export interface ShippingInformationDTO {
|
|
5130
|
+
/**
|
|
5131
|
+
* Items
|
|
5132
|
+
* @type {Array<BasicItemDTO>}
|
|
5133
|
+
* @memberof ShippingInformationDTO
|
|
5134
|
+
*/
|
|
5135
|
+
'items'?: Array<BasicItemDTO>;
|
|
5136
|
+
/**
|
|
5137
|
+
* Destination Post Code
|
|
5138
|
+
* @type {string}
|
|
5139
|
+
* @memberof ShippingInformationDTO
|
|
5140
|
+
*/
|
|
5141
|
+
'postalCode'?: string;
|
|
5142
|
+
/**
|
|
5143
|
+
* Destination ISO
|
|
5144
|
+
* @type {string}
|
|
5145
|
+
* @memberof ShippingInformationDTO
|
|
5146
|
+
*/
|
|
5147
|
+
'iso'?: string;
|
|
5148
|
+
}
|
|
5149
|
+
/**
|
|
5150
|
+
* Shipping Service
|
|
5151
|
+
* @export
|
|
5152
|
+
* @interface ShippingServiceDTO
|
|
5153
|
+
*/
|
|
5154
|
+
export interface ShippingServiceDTO {
|
|
5155
|
+
/**
|
|
5156
|
+
* Courier
|
|
5157
|
+
* @type {string}
|
|
5158
|
+
* @memberof ShippingServiceDTO
|
|
5159
|
+
*/
|
|
5160
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5161
|
+
/**
|
|
5162
|
+
* Service Name
|
|
5163
|
+
* @type {string}
|
|
5164
|
+
* @memberof ShippingServiceDTO
|
|
5165
|
+
*/
|
|
5166
|
+
'serviceName'?: string;
|
|
5167
|
+
}
|
|
5168
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5169
|
+
readonly Dpd: "DPD";
|
|
5170
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5171
|
+
readonly Pops: "POPS";
|
|
5172
|
+
};
|
|
5173
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5174
|
+
/**
|
|
5175
|
+
* Shipping Service
|
|
5176
|
+
* @export
|
|
5177
|
+
* @interface ShippingServiceModel
|
|
5178
|
+
*/
|
|
5179
|
+
export interface ShippingServiceModel {
|
|
5180
|
+
/**
|
|
5181
|
+
* Courier
|
|
5182
|
+
* @type {string}
|
|
5183
|
+
* @memberof ShippingServiceModel
|
|
5184
|
+
*/
|
|
5185
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5186
|
+
/**
|
|
5187
|
+
* Code
|
|
5188
|
+
* @type {string}
|
|
5189
|
+
* @memberof ShippingServiceModel
|
|
5190
|
+
*/
|
|
5191
|
+
'code'?: string;
|
|
5192
|
+
/**
|
|
5193
|
+
* Name
|
|
5194
|
+
* @type {string}
|
|
5195
|
+
* @memberof ShippingServiceModel
|
|
5196
|
+
*/
|
|
5197
|
+
'name'?: string;
|
|
5198
|
+
/**
|
|
5199
|
+
* Description
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof ShippingServiceModel
|
|
5202
|
+
*/
|
|
5203
|
+
'description'?: string;
|
|
5204
|
+
/**
|
|
5205
|
+
* Label
|
|
5206
|
+
* @type {string}
|
|
5207
|
+
* @memberof ShippingServiceModel
|
|
5208
|
+
*/
|
|
5209
|
+
'label'?: string | null;
|
|
5210
|
+
/**
|
|
5211
|
+
* Price
|
|
5212
|
+
* @type {number}
|
|
5213
|
+
* @memberof ShippingServiceModel
|
|
5214
|
+
*/
|
|
5215
|
+
'price'?: number | null;
|
|
5216
|
+
}
|
|
5217
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5218
|
+
readonly Dpd: "DPD";
|
|
5219
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5220
|
+
readonly Pops: "POPS";
|
|
5221
|
+
};
|
|
5222
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5223
|
+
/**
|
|
5224
|
+
*
|
|
5225
|
+
* @export
|
|
5226
|
+
* @interface ShippingServicesModel
|
|
5227
|
+
*/
|
|
5228
|
+
export interface ShippingServicesModel {
|
|
5229
|
+
/**
|
|
5230
|
+
* Services
|
|
5231
|
+
* @type {Array<ShippingServiceModel>}
|
|
5232
|
+
* @memberof ShippingServicesModel
|
|
5233
|
+
*/
|
|
5234
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5235
|
+
}
|
|
4492
5236
|
/**
|
|
4493
5237
|
* Change Response
|
|
4494
5238
|
* @export
|
|
@@ -7308,6 +8052,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7308
8052
|
*/
|
|
7309
8053
|
'secretAccessKey'?: string;
|
|
7310
8054
|
}
|
|
8055
|
+
/**
|
|
8056
|
+
* SBC Data
|
|
8057
|
+
* @export
|
|
8058
|
+
* @interface TcxSbcDTO
|
|
8059
|
+
*/
|
|
8060
|
+
export interface TcxSbcDTO {
|
|
8061
|
+
/**
|
|
8062
|
+
* LAN IP Address
|
|
8063
|
+
* @type {string}
|
|
8064
|
+
* @memberof TcxSbcDTO
|
|
8065
|
+
*/
|
|
8066
|
+
'ipAddress'?: string;
|
|
8067
|
+
/**
|
|
8068
|
+
* LAN Default Gateway
|
|
8069
|
+
* @type {string}
|
|
8070
|
+
* @memberof TcxSbcDTO
|
|
8071
|
+
*/
|
|
8072
|
+
'defaultGateway'?: string;
|
|
8073
|
+
/**
|
|
8074
|
+
* LAN Subnet Mask
|
|
8075
|
+
* @type {string}
|
|
8076
|
+
* @memberof TcxSbcDTO
|
|
8077
|
+
*/
|
|
8078
|
+
'netmask'?: string;
|
|
8079
|
+
/**
|
|
8080
|
+
* DNS
|
|
8081
|
+
* @type {string}
|
|
8082
|
+
* @memberof TcxSbcDTO
|
|
8083
|
+
*/
|
|
8084
|
+
'dns'?: string;
|
|
8085
|
+
/**
|
|
8086
|
+
* 3CX URL
|
|
8087
|
+
* @type {string}
|
|
8088
|
+
* @memberof TcxSbcDTO
|
|
8089
|
+
*/
|
|
8090
|
+
'tcxUrl'?: string;
|
|
8091
|
+
/**
|
|
8092
|
+
* 3CX SBC Key
|
|
8093
|
+
* @type {string}
|
|
8094
|
+
* @memberof TcxSbcDTO
|
|
8095
|
+
*/
|
|
8096
|
+
'tcxKey'?: string;
|
|
8097
|
+
}
|
|
7311
8098
|
/**
|
|
7312
8099
|
* 3CX Wizard SBC
|
|
7313
8100
|
* @export
|
|
@@ -7412,7 +8199,7 @@ export interface TcxSbcEntity {
|
|
|
7412
8199
|
'technicalContact'?: string;
|
|
7413
8200
|
}
|
|
7414
8201
|
/**
|
|
7415
|
-
* 3CX SBC
|
|
8202
|
+
* 3CX Wizard SBC
|
|
7416
8203
|
* @export
|
|
7417
8204
|
* @interface TcxSbcModel
|
|
7418
8205
|
*/
|
|
@@ -8490,6 +9277,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8490
9277
|
* @throws {RequiredError}
|
|
8491
9278
|
*/
|
|
8492
9279
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9280
|
+
/**
|
|
9281
|
+
* Get Account Detailed Summary
|
|
9282
|
+
* @summary Get Account Detailed Summary
|
|
9283
|
+
* @param {number} id Customer ID
|
|
9284
|
+
* @param {*} [options] Override http request option.
|
|
9285
|
+
* @throws {RequiredError}
|
|
9286
|
+
*/
|
|
9287
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8493
9288
|
/**
|
|
8494
9289
|
* Get Accounts
|
|
8495
9290
|
* @summary Get Accounts
|
|
@@ -8555,6 +9350,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8555
9350
|
* @throws {RequiredError}
|
|
8556
9351
|
*/
|
|
8557
9352
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9353
|
+
/**
|
|
9354
|
+
* Get Admin Account
|
|
9355
|
+
* @summary Get Admin Account
|
|
9356
|
+
* @param {*} [options] Override http request option.
|
|
9357
|
+
* @throws {RequiredError}
|
|
9358
|
+
*/
|
|
9359
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8558
9360
|
/**
|
|
8559
9361
|
* Create client credentials
|
|
8560
9362
|
* @summary Create client credentials
|
|
@@ -8635,6 +9437,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8635
9437
|
* @throws {RequiredError}
|
|
8636
9438
|
*/
|
|
8637
9439
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9440
|
+
/**
|
|
9441
|
+
* Get Account Detailed Summary
|
|
9442
|
+
* @summary Get Account Detailed Summary
|
|
9443
|
+
* @param {number} id Customer ID
|
|
9444
|
+
* @param {*} [options] Override http request option.
|
|
9445
|
+
* @throws {RequiredError}
|
|
9446
|
+
*/
|
|
9447
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8638
9448
|
/**
|
|
8639
9449
|
* Get Accounts
|
|
8640
9450
|
* @summary Get Accounts
|
|
@@ -8700,6 +9510,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8700
9510
|
* @throws {RequiredError}
|
|
8701
9511
|
*/
|
|
8702
9512
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9513
|
+
/**
|
|
9514
|
+
* Get Admin Account
|
|
9515
|
+
* @summary Get Admin Account
|
|
9516
|
+
* @param {*} [options] Override http request option.
|
|
9517
|
+
* @throws {RequiredError}
|
|
9518
|
+
*/
|
|
9519
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8703
9520
|
/**
|
|
8704
9521
|
* Create client credentials
|
|
8705
9522
|
* @summary Create client credentials
|
|
@@ -8780,6 +9597,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8780
9597
|
* @throws {RequiredError}
|
|
8781
9598
|
*/
|
|
8782
9599
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9600
|
+
/**
|
|
9601
|
+
* Get Account Detailed Summary
|
|
9602
|
+
* @summary Get Account Detailed Summary
|
|
9603
|
+
* @param {number} id Customer ID
|
|
9604
|
+
* @param {*} [options] Override http request option.
|
|
9605
|
+
* @throws {RequiredError}
|
|
9606
|
+
*/
|
|
9607
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8783
9608
|
/**
|
|
8784
9609
|
* Get Accounts
|
|
8785
9610
|
* @summary Get Accounts
|
|
@@ -8845,6 +9670,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8845
9670
|
* @throws {RequiredError}
|
|
8846
9671
|
*/
|
|
8847
9672
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9673
|
+
/**
|
|
9674
|
+
* Get Admin Account
|
|
9675
|
+
* @summary Get Admin Account
|
|
9676
|
+
* @param {*} [options] Override http request option.
|
|
9677
|
+
* @throws {RequiredError}
|
|
9678
|
+
*/
|
|
9679
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8848
9680
|
/**
|
|
8849
9681
|
* Create client credentials
|
|
8850
9682
|
* @summary Create client credentials
|
|
@@ -8923,14 +9755,23 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8923
9755
|
*/
|
|
8924
9756
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
8925
9757
|
/**
|
|
8926
|
-
* Get Account Contacts
|
|
8927
|
-
* @summary Get Account Contacts
|
|
8928
|
-
* @param {string} [email] Contact Email Address
|
|
9758
|
+
* Get Account Contacts
|
|
9759
|
+
* @summary Get Account Contacts
|
|
9760
|
+
* @param {string} [email] Contact Email Address
|
|
9761
|
+
* @param {*} [options] Override http request option.
|
|
9762
|
+
* @throws {RequiredError}
|
|
9763
|
+
* @memberof AccountsApi
|
|
9764
|
+
*/
|
|
9765
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9766
|
+
/**
|
|
9767
|
+
* Get Account Detailed Summary
|
|
9768
|
+
* @summary Get Account Detailed Summary
|
|
9769
|
+
* @param {number} id Customer ID
|
|
8929
9770
|
* @param {*} [options] Override http request option.
|
|
8930
9771
|
* @throws {RequiredError}
|
|
8931
9772
|
* @memberof AccountsApi
|
|
8932
9773
|
*/
|
|
8933
|
-
|
|
9774
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
8934
9775
|
/**
|
|
8935
9776
|
* Get Accounts
|
|
8936
9777
|
* @summary Get Accounts
|
|
@@ -9004,6 +9845,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9004
9845
|
* @memberof AccountsApi
|
|
9005
9846
|
*/
|
|
9006
9847
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9848
|
+
/**
|
|
9849
|
+
* Get Admin Account
|
|
9850
|
+
* @summary Get Admin Account
|
|
9851
|
+
* @param {*} [options] Override http request option.
|
|
9852
|
+
* @throws {RequiredError}
|
|
9853
|
+
* @memberof AccountsApi
|
|
9854
|
+
*/
|
|
9855
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9007
9856
|
/**
|
|
9008
9857
|
* Create client credentials
|
|
9009
9858
|
* @summary Create client credentials
|
|
@@ -9066,14 +9915,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9066
9915
|
* @throws {RequiredError}
|
|
9067
9916
|
*/
|
|
9068
9917
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9069
|
-
/**
|
|
9070
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9071
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9072
|
-
* @param {string} password Desired 3CX web access password
|
|
9073
|
-
* @param {*} [options] Override http request option.
|
|
9074
|
-
* @throws {RequiredError}
|
|
9075
|
-
*/
|
|
9076
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9077
9918
|
/**
|
|
9078
9919
|
* Get Bulk 3CX Licence Details
|
|
9079
9920
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9096,14 +9937,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9096
9937
|
* @throws {RequiredError}
|
|
9097
9938
|
*/
|
|
9098
9939
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9099
|
-
/**
|
|
9100
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9101
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9102
|
-
* @param {string} password Desired 3CX web access password
|
|
9103
|
-
* @param {*} [options] Override http request option.
|
|
9104
|
-
* @throws {RequiredError}
|
|
9105
|
-
*/
|
|
9106
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9107
9940
|
/**
|
|
9108
9941
|
* Get Bulk 3CX Licence Details
|
|
9109
9942
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9126,14 +9959,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9126
9959
|
* @throws {RequiredError}
|
|
9127
9960
|
*/
|
|
9128
9961
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9129
|
-
/**
|
|
9130
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9131
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9132
|
-
* @param {string} password Desired 3CX web access password
|
|
9133
|
-
* @param {*} [options] Override http request option.
|
|
9134
|
-
* @throws {RequiredError}
|
|
9135
|
-
*/
|
|
9136
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9137
9962
|
/**
|
|
9138
9963
|
* Get Bulk 3CX Licence Details
|
|
9139
9964
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9159,15 +9984,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9159
9984
|
* @memberof Class3CXApi
|
|
9160
9985
|
*/
|
|
9161
9986
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9162
|
-
/**
|
|
9163
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9164
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9165
|
-
* @param {string} password Desired 3CX web access password
|
|
9166
|
-
* @param {*} [options] Override http request option.
|
|
9167
|
-
* @throws {RequiredError}
|
|
9168
|
-
* @memberof Class3CXApi
|
|
9169
|
-
*/
|
|
9170
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9171
9987
|
/**
|
|
9172
9988
|
* Get Bulk 3CX Licence Details
|
|
9173
9989
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11697,11 +12513,19 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11697
12513
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11698
12514
|
/**
|
|
11699
12515
|
* Delete Orders
|
|
12516
|
+
* @summary Delete Orders
|
|
12517
|
+
* @param {number} id Order ID
|
|
12518
|
+
* @param {*} [options] Override http request option.
|
|
12519
|
+
* @throws {RequiredError}
|
|
12520
|
+
*/
|
|
12521
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12522
|
+
/**
|
|
12523
|
+
* Get Editable Order
|
|
11700
12524
|
* @param {number} id Order ID
|
|
11701
12525
|
* @param {*} [options] Override http request option.
|
|
11702
12526
|
* @throws {RequiredError}
|
|
11703
12527
|
*/
|
|
11704
|
-
|
|
12528
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11705
12529
|
/**
|
|
11706
12530
|
* Get Orders
|
|
11707
12531
|
* @summary Get Orders
|
|
@@ -11716,6 +12540,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11716
12540
|
* @throws {RequiredError}
|
|
11717
12541
|
*/
|
|
11718
12542
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12543
|
+
/**
|
|
12544
|
+
* Create An Order (Admin)
|
|
12545
|
+
* @summary Create An Order (Admin)
|
|
12546
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12547
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12548
|
+
* @param {*} [options] Override http request option.
|
|
12549
|
+
* @throws {RequiredError}
|
|
12550
|
+
*/
|
|
12551
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12552
|
+
/**
|
|
12553
|
+
* Create An Order
|
|
12554
|
+
* @summary Create An Order
|
|
12555
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12556
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12557
|
+
* @param {*} [options] Override http request option.
|
|
12558
|
+
* @throws {RequiredError}
|
|
12559
|
+
*/
|
|
12560
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12561
|
+
/**
|
|
12562
|
+
* Update An Order (Admin)
|
|
12563
|
+
* @summary Update An Order (Admin)
|
|
12564
|
+
* @param {number} id Order ID
|
|
12565
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12566
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12567
|
+
* @param {*} [options] Override http request option.
|
|
12568
|
+
* @throws {RequiredError}
|
|
12569
|
+
*/
|
|
12570
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12571
|
+
/**
|
|
12572
|
+
* Update An Order
|
|
12573
|
+
* @summary Update An Order
|
|
12574
|
+
* @param {number} id Order ID
|
|
12575
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12576
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12577
|
+
* @param {*} [options] Override http request option.
|
|
12578
|
+
* @throws {RequiredError}
|
|
12579
|
+
*/
|
|
12580
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11719
12581
|
};
|
|
11720
12582
|
/**
|
|
11721
12583
|
* OrdersApi - functional programming interface
|
|
@@ -11724,11 +12586,19 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11724
12586
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11725
12587
|
/**
|
|
11726
12588
|
* Delete Orders
|
|
12589
|
+
* @summary Delete Orders
|
|
12590
|
+
* @param {number} id Order ID
|
|
12591
|
+
* @param {*} [options] Override http request option.
|
|
12592
|
+
* @throws {RequiredError}
|
|
12593
|
+
*/
|
|
12594
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12595
|
+
/**
|
|
12596
|
+
* Get Editable Order
|
|
11727
12597
|
* @param {number} id Order ID
|
|
11728
12598
|
* @param {*} [options] Override http request option.
|
|
11729
12599
|
* @throws {RequiredError}
|
|
11730
12600
|
*/
|
|
11731
|
-
|
|
12601
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummaryDTO>>;
|
|
11732
12602
|
/**
|
|
11733
12603
|
* Get Orders
|
|
11734
12604
|
* @summary Get Orders
|
|
@@ -11743,6 +12613,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11743
12613
|
* @throws {RequiredError}
|
|
11744
12614
|
*/
|
|
11745
12615
|
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>>;
|
|
12616
|
+
/**
|
|
12617
|
+
* Create An Order (Admin)
|
|
12618
|
+
* @summary Create An Order (Admin)
|
|
12619
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12620
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12621
|
+
* @param {*} [options] Override http request option.
|
|
12622
|
+
* @throws {RequiredError}
|
|
12623
|
+
*/
|
|
12624
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12625
|
+
/**
|
|
12626
|
+
* Create An Order
|
|
12627
|
+
* @summary Create An Order
|
|
12628
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12629
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12630
|
+
* @param {*} [options] Override http request option.
|
|
12631
|
+
* @throws {RequiredError}
|
|
12632
|
+
*/
|
|
12633
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12634
|
+
/**
|
|
12635
|
+
* Update An Order (Admin)
|
|
12636
|
+
* @summary Update An Order (Admin)
|
|
12637
|
+
* @param {number} id Order ID
|
|
12638
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12639
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12640
|
+
* @param {*} [options] Override http request option.
|
|
12641
|
+
* @throws {RequiredError}
|
|
12642
|
+
*/
|
|
12643
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12644
|
+
/**
|
|
12645
|
+
* Update An Order
|
|
12646
|
+
* @summary Update An Order
|
|
12647
|
+
* @param {number} id Order ID
|
|
12648
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12649
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12650
|
+
* @param {*} [options] Override http request option.
|
|
12651
|
+
* @throws {RequiredError}
|
|
12652
|
+
*/
|
|
12653
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11746
12654
|
};
|
|
11747
12655
|
/**
|
|
11748
12656
|
* OrdersApi - factory interface
|
|
@@ -11751,11 +12659,19 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11751
12659
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11752
12660
|
/**
|
|
11753
12661
|
* Delete Orders
|
|
12662
|
+
* @summary Delete Orders
|
|
11754
12663
|
* @param {number} id Order ID
|
|
11755
12664
|
* @param {*} [options] Override http request option.
|
|
11756
12665
|
* @throws {RequiredError}
|
|
11757
12666
|
*/
|
|
11758
|
-
|
|
12667
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12668
|
+
/**
|
|
12669
|
+
* Get Editable Order
|
|
12670
|
+
* @param {number} id Order ID
|
|
12671
|
+
* @param {*} [options] Override http request option.
|
|
12672
|
+
* @throws {RequiredError}
|
|
12673
|
+
*/
|
|
12674
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11759
12675
|
/**
|
|
11760
12676
|
* Get Orders
|
|
11761
12677
|
* @summary Get Orders
|
|
@@ -11770,6 +12686,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11770
12686
|
* @throws {RequiredError}
|
|
11771
12687
|
*/
|
|
11772
12688
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12689
|
+
/**
|
|
12690
|
+
* Create An Order (Admin)
|
|
12691
|
+
* @summary Create An Order (Admin)
|
|
12692
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12693
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12694
|
+
* @param {*} [options] Override http request option.
|
|
12695
|
+
* @throws {RequiredError}
|
|
12696
|
+
*/
|
|
12697
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12698
|
+
/**
|
|
12699
|
+
* Create An Order
|
|
12700
|
+
* @summary Create An Order
|
|
12701
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12702
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12703
|
+
* @param {*} [options] Override http request option.
|
|
12704
|
+
* @throws {RequiredError}
|
|
12705
|
+
*/
|
|
12706
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12707
|
+
/**
|
|
12708
|
+
* Update An Order (Admin)
|
|
12709
|
+
* @summary Update An Order (Admin)
|
|
12710
|
+
* @param {number} id Order ID
|
|
12711
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12712
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12713
|
+
* @param {*} [options] Override http request option.
|
|
12714
|
+
* @throws {RequiredError}
|
|
12715
|
+
*/
|
|
12716
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12717
|
+
/**
|
|
12718
|
+
* Update An Order
|
|
12719
|
+
* @summary Update An Order
|
|
12720
|
+
* @param {number} id Order ID
|
|
12721
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12722
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12723
|
+
* @param {*} [options] Override http request option.
|
|
12724
|
+
* @throws {RequiredError}
|
|
12725
|
+
*/
|
|
12726
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11773
12727
|
};
|
|
11774
12728
|
/**
|
|
11775
12729
|
* OrdersApi - object-oriented interface
|
|
@@ -11780,12 +12734,21 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11780
12734
|
export declare class OrdersApi extends BaseAPI {
|
|
11781
12735
|
/**
|
|
11782
12736
|
* Delete Orders
|
|
12737
|
+
* @summary Delete Orders
|
|
12738
|
+
* @param {number} id Order ID
|
|
12739
|
+
* @param {*} [options] Override http request option.
|
|
12740
|
+
* @throws {RequiredError}
|
|
12741
|
+
* @memberof OrdersApi
|
|
12742
|
+
*/
|
|
12743
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12744
|
+
/**
|
|
12745
|
+
* Get Editable Order
|
|
11783
12746
|
* @param {number} id Order ID
|
|
11784
12747
|
* @param {*} [options] Override http request option.
|
|
11785
12748
|
* @throws {RequiredError}
|
|
11786
12749
|
* @memberof OrdersApi
|
|
11787
12750
|
*/
|
|
11788
|
-
|
|
12751
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO, any, {}>>;
|
|
11789
12752
|
/**
|
|
11790
12753
|
* Get Orders
|
|
11791
12754
|
* @summary Get Orders
|
|
@@ -11801,6 +12764,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11801
12764
|
* @memberof OrdersApi
|
|
11802
12765
|
*/
|
|
11803
12766
|
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, {}>>;
|
|
12767
|
+
/**
|
|
12768
|
+
* Create An Order (Admin)
|
|
12769
|
+
* @summary Create An Order (Admin)
|
|
12770
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12771
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12772
|
+
* @param {*} [options] Override http request option.
|
|
12773
|
+
* @throws {RequiredError}
|
|
12774
|
+
* @memberof OrdersApi
|
|
12775
|
+
*/
|
|
12776
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12777
|
+
/**
|
|
12778
|
+
* Create An Order
|
|
12779
|
+
* @summary Create An Order
|
|
12780
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12781
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12782
|
+
* @param {*} [options] Override http request option.
|
|
12783
|
+
* @throws {RequiredError}
|
|
12784
|
+
* @memberof OrdersApi
|
|
12785
|
+
*/
|
|
12786
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12787
|
+
/**
|
|
12788
|
+
* Update An Order (Admin)
|
|
12789
|
+
* @summary Update An Order (Admin)
|
|
12790
|
+
* @param {number} id Order ID
|
|
12791
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12792
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12793
|
+
* @param {*} [options] Override http request option.
|
|
12794
|
+
* @throws {RequiredError}
|
|
12795
|
+
* @memberof OrdersApi
|
|
12796
|
+
*/
|
|
12797
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12798
|
+
/**
|
|
12799
|
+
* Update An Order
|
|
12800
|
+
* @summary Update An Order
|
|
12801
|
+
* @param {number} id Order ID
|
|
12802
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12803
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12804
|
+
* @param {*} [options] Override http request option.
|
|
12805
|
+
* @throws {RequiredError}
|
|
12806
|
+
* @memberof OrdersApi
|
|
12807
|
+
*/
|
|
12808
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11804
12809
|
}
|
|
11805
12810
|
/**
|
|
11806
12811
|
* @export
|
|
@@ -12056,13 +13061,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12056
13061
|
* @throws {RequiredError}
|
|
12057
13062
|
*/
|
|
12058
13063
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12059
|
-
/**
|
|
12060
|
-
* Get Customer Price Lists
|
|
12061
|
-
* @summary Get Customer Price Lists
|
|
12062
|
-
* @param {*} [options] Override http request option.
|
|
12063
|
-
* @throws {RequiredError}
|
|
12064
|
-
*/
|
|
12065
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12066
13064
|
/**
|
|
12067
13065
|
* Get Current Stock & Pricing
|
|
12068
13066
|
* @summary Get Current Stock & Pricing
|
|
@@ -12075,13 +13073,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12075
13073
|
/**
|
|
12076
13074
|
* Get Products
|
|
12077
13075
|
* @summary Get Products
|
|
12078
|
-
* @param {number} [pageSize] Number Of Results
|
|
12079
|
-
* @param {number} [page] Page Number
|
|
12080
|
-
* @param {string} [search] Search
|
|
12081
13076
|
* @param {*} [options] Override http request option.
|
|
12082
13077
|
* @throws {RequiredError}
|
|
12083
13078
|
*/
|
|
12084
|
-
getGetProducts: (
|
|
13079
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12085
13080
|
/**
|
|
12086
13081
|
* Get Current Stock & Pricing
|
|
12087
13082
|
* @summary Get Current Stock & Pricing
|
|
@@ -12096,6 +13091,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12096
13091
|
* @throws {RequiredError}
|
|
12097
13092
|
*/
|
|
12098
13093
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13094
|
+
/**
|
|
13095
|
+
* Search Products
|
|
13096
|
+
* @summary Search Products
|
|
13097
|
+
* @param {number} [pageSize] Number Of Results
|
|
13098
|
+
* @param {number} [page] Page Number
|
|
13099
|
+
* @param {string} [search] Search
|
|
13100
|
+
* @param {*} [options] Override http request option.
|
|
13101
|
+
* @throws {RequiredError}
|
|
13102
|
+
*/
|
|
13103
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13104
|
+
/**
|
|
13105
|
+
* Get Product
|
|
13106
|
+
* @summary Get Product
|
|
13107
|
+
* @param {string} sku Product SKU
|
|
13108
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13109
|
+
* @param {*} [options] Override http request option.
|
|
13110
|
+
* @throws {RequiredError}
|
|
13111
|
+
*/
|
|
13112
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13113
|
+
/**
|
|
13114
|
+
* Get Product For Customer
|
|
13115
|
+
* @summary Get Product For Customer
|
|
13116
|
+
* @param {number} customerId Customer ID
|
|
13117
|
+
* @param {string} sku Product SKU
|
|
13118
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13119
|
+
* @param {*} [options] Override http request option.
|
|
13120
|
+
* @throws {RequiredError}
|
|
13121
|
+
*/
|
|
13122
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12099
13123
|
};
|
|
12100
13124
|
/**
|
|
12101
13125
|
* ProductsApi - functional programming interface
|
|
@@ -12109,13 +13133,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12109
13133
|
* @throws {RequiredError}
|
|
12110
13134
|
*/
|
|
12111
13135
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12112
|
-
/**
|
|
12113
|
-
* Get Customer Price Lists
|
|
12114
|
-
* @summary Get Customer Price Lists
|
|
12115
|
-
* @param {*} [options] Override http request option.
|
|
12116
|
-
* @throws {RequiredError}
|
|
12117
|
-
*/
|
|
12118
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12119
13136
|
/**
|
|
12120
13137
|
* Get Current Stock & Pricing
|
|
12121
13138
|
* @summary Get Current Stock & Pricing
|
|
@@ -12128,13 +13145,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12128
13145
|
/**
|
|
12129
13146
|
* Get Products
|
|
12130
13147
|
* @summary Get Products
|
|
12131
|
-
* @param {number} [pageSize] Number Of Results
|
|
12132
|
-
* @param {number} [page] Page Number
|
|
12133
|
-
* @param {string} [search] Search
|
|
12134
13148
|
* @param {*} [options] Override http request option.
|
|
12135
13149
|
* @throws {RequiredError}
|
|
12136
13150
|
*/
|
|
12137
|
-
getGetProducts(
|
|
13151
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12138
13152
|
/**
|
|
12139
13153
|
* Get Current Stock & Pricing
|
|
12140
13154
|
* @summary Get Current Stock & Pricing
|
|
@@ -12149,6 +13163,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12149
13163
|
* @throws {RequiredError}
|
|
12150
13164
|
*/
|
|
12151
13165
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13166
|
+
/**
|
|
13167
|
+
* Search Products
|
|
13168
|
+
* @summary Search Products
|
|
13169
|
+
* @param {number} [pageSize] Number Of Results
|
|
13170
|
+
* @param {number} [page] Page Number
|
|
13171
|
+
* @param {string} [search] Search
|
|
13172
|
+
* @param {*} [options] Override http request option.
|
|
13173
|
+
* @throws {RequiredError}
|
|
13174
|
+
*/
|
|
13175
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13176
|
+
/**
|
|
13177
|
+
* Get Product
|
|
13178
|
+
* @summary Get Product
|
|
13179
|
+
* @param {string} sku Product SKU
|
|
13180
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13181
|
+
* @param {*} [options] Override http request option.
|
|
13182
|
+
* @throws {RequiredError}
|
|
13183
|
+
*/
|
|
13184
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13185
|
+
/**
|
|
13186
|
+
* Get Product For Customer
|
|
13187
|
+
* @summary Get Product For Customer
|
|
13188
|
+
* @param {number} customerId Customer ID
|
|
13189
|
+
* @param {string} sku Product SKU
|
|
13190
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13191
|
+
* @param {*} [options] Override http request option.
|
|
13192
|
+
* @throws {RequiredError}
|
|
13193
|
+
*/
|
|
13194
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12152
13195
|
};
|
|
12153
13196
|
/**
|
|
12154
13197
|
* ProductsApi - factory interface
|
|
@@ -12162,13 +13205,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12162
13205
|
* @throws {RequiredError}
|
|
12163
13206
|
*/
|
|
12164
13207
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12165
|
-
/**
|
|
12166
|
-
* Get Customer Price Lists
|
|
12167
|
-
* @summary Get Customer Price Lists
|
|
12168
|
-
* @param {*} [options] Override http request option.
|
|
12169
|
-
* @throws {RequiredError}
|
|
12170
|
-
*/
|
|
12171
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12172
13208
|
/**
|
|
12173
13209
|
* Get Current Stock & Pricing
|
|
12174
13210
|
* @summary Get Current Stock & Pricing
|
|
@@ -12181,13 +13217,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12181
13217
|
/**
|
|
12182
13218
|
* Get Products
|
|
12183
13219
|
* @summary Get Products
|
|
12184
|
-
* @param {number} [pageSize] Number Of Results
|
|
12185
|
-
* @param {number} [page] Page Number
|
|
12186
|
-
* @param {string} [search] Search
|
|
12187
13220
|
* @param {*} [options] Override http request option.
|
|
12188
13221
|
* @throws {RequiredError}
|
|
12189
13222
|
*/
|
|
12190
|
-
getGetProducts(
|
|
13223
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12191
13224
|
/**
|
|
12192
13225
|
* Get Current Stock & Pricing
|
|
12193
13226
|
* @summary Get Current Stock & Pricing
|
|
@@ -12202,6 +13235,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12202
13235
|
* @throws {RequiredError}
|
|
12203
13236
|
*/
|
|
12204
13237
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13238
|
+
/**
|
|
13239
|
+
* Search Products
|
|
13240
|
+
* @summary Search Products
|
|
13241
|
+
* @param {number} [pageSize] Number Of Results
|
|
13242
|
+
* @param {number} [page] Page Number
|
|
13243
|
+
* @param {string} [search] Search
|
|
13244
|
+
* @param {*} [options] Override http request option.
|
|
13245
|
+
* @throws {RequiredError}
|
|
13246
|
+
*/
|
|
13247
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13248
|
+
/**
|
|
13249
|
+
* Get Product
|
|
13250
|
+
* @summary Get Product
|
|
13251
|
+
* @param {string} sku Product SKU
|
|
13252
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13253
|
+
* @param {*} [options] Override http request option.
|
|
13254
|
+
* @throws {RequiredError}
|
|
13255
|
+
*/
|
|
13256
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13257
|
+
/**
|
|
13258
|
+
* Get Product For Customer
|
|
13259
|
+
* @summary Get Product For Customer
|
|
13260
|
+
* @param {number} customerId Customer ID
|
|
13261
|
+
* @param {string} sku Product SKU
|
|
13262
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13263
|
+
* @param {*} [options] Override http request option.
|
|
13264
|
+
* @throws {RequiredError}
|
|
13265
|
+
*/
|
|
13266
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12205
13267
|
};
|
|
12206
13268
|
/**
|
|
12207
13269
|
* ProductsApi - object-oriented interface
|
|
@@ -12218,14 +13280,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12218
13280
|
* @memberof ProductsApi
|
|
12219
13281
|
*/
|
|
12220
13282
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12221
|
-
/**
|
|
12222
|
-
* Get Customer Price Lists
|
|
12223
|
-
* @summary Get Customer Price Lists
|
|
12224
|
-
* @param {*} [options] Override http request option.
|
|
12225
|
-
* @throws {RequiredError}
|
|
12226
|
-
* @memberof ProductsApi
|
|
12227
|
-
*/
|
|
12228
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12229
13283
|
/**
|
|
12230
13284
|
* Get Current Stock & Pricing
|
|
12231
13285
|
* @summary Get Current Stock & Pricing
|
|
@@ -12239,14 +13293,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12239
13293
|
/**
|
|
12240
13294
|
* Get Products
|
|
12241
13295
|
* @summary Get Products
|
|
12242
|
-
* @param {number} [pageSize] Number Of Results
|
|
12243
|
-
* @param {number} [page] Page Number
|
|
12244
|
-
* @param {string} [search] Search
|
|
12245
13296
|
* @param {*} [options] Override http request option.
|
|
12246
13297
|
* @throws {RequiredError}
|
|
12247
13298
|
* @memberof ProductsApi
|
|
12248
13299
|
*/
|
|
12249
|
-
getGetProducts(
|
|
13300
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12250
13301
|
/**
|
|
12251
13302
|
* Get Current Stock & Pricing
|
|
12252
13303
|
* @summary Get Current Stock & Pricing
|
|
@@ -12263,6 +13314,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12263
13314
|
* @memberof ProductsApi
|
|
12264
13315
|
*/
|
|
12265
13316
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13317
|
+
/**
|
|
13318
|
+
* Search Products
|
|
13319
|
+
* @summary Search Products
|
|
13320
|
+
* @param {number} [pageSize] Number Of Results
|
|
13321
|
+
* @param {number} [page] Page Number
|
|
13322
|
+
* @param {string} [search] Search
|
|
13323
|
+
* @param {*} [options] Override http request option.
|
|
13324
|
+
* @throws {RequiredError}
|
|
13325
|
+
* @memberof ProductsApi
|
|
13326
|
+
*/
|
|
13327
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13328
|
+
/**
|
|
13329
|
+
* Get Product
|
|
13330
|
+
* @summary Get Product
|
|
13331
|
+
* @param {string} sku Product SKU
|
|
13332
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13333
|
+
* @param {*} [options] Override http request option.
|
|
13334
|
+
* @throws {RequiredError}
|
|
13335
|
+
* @memberof ProductsApi
|
|
13336
|
+
*/
|
|
13337
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13338
|
+
/**
|
|
13339
|
+
* Get Product For Customer
|
|
13340
|
+
* @summary Get Product For Customer
|
|
13341
|
+
* @param {number} customerId Customer ID
|
|
13342
|
+
* @param {string} sku Product SKU
|
|
13343
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13344
|
+
* @param {*} [options] Override http request option.
|
|
13345
|
+
* @throws {RequiredError}
|
|
13346
|
+
* @memberof ProductsApi
|
|
13347
|
+
*/
|
|
13348
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12266
13349
|
}
|
|
12267
13350
|
/**
|
|
12268
13351
|
* @export
|
|
@@ -12383,7 +13466,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12383
13466
|
* @param {*} [options] Override http request option.
|
|
12384
13467
|
* @throws {RequiredError}
|
|
12385
13468
|
*/
|
|
12386
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13469
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12387
13470
|
/**
|
|
12388
13471
|
* Create a Fanvil provisioning group
|
|
12389
13472
|
* @summary Add group to DB and FDPS
|
|
@@ -12391,7 +13474,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12391
13474
|
* @param {*} [options] Override http request option.
|
|
12392
13475
|
* @throws {RequiredError}
|
|
12393
13476
|
*/
|
|
12394
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13477
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12395
13478
|
/**
|
|
12396
13479
|
* Add MAC address to DB and FDPS group
|
|
12397
13480
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12448,7 +13531,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12448
13531
|
* @param {*} [options] Override http request option.
|
|
12449
13532
|
* @throws {RequiredError}
|
|
12450
13533
|
*/
|
|
12451
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13534
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12452
13535
|
/**
|
|
12453
13536
|
* Create a Fanvil provisioning group
|
|
12454
13537
|
* @summary Add group to DB and FDPS
|
|
@@ -12456,7 +13539,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12456
13539
|
* @param {*} [options] Override http request option.
|
|
12457
13540
|
* @throws {RequiredError}
|
|
12458
13541
|
*/
|
|
12459
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13542
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12460
13543
|
/**
|
|
12461
13544
|
* Add MAC address to DB and FDPS group
|
|
12462
13545
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12520,7 +13603,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12520
13603
|
* @throws {RequiredError}
|
|
12521
13604
|
* @memberof ProvisioningApi
|
|
12522
13605
|
*/
|
|
12523
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13606
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12524
13607
|
/**
|
|
12525
13608
|
* Create a Fanvil provisioning group
|
|
12526
13609
|
* @summary Add group to DB and FDPS
|
|
@@ -12529,7 +13612,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12529
13612
|
* @throws {RequiredError}
|
|
12530
13613
|
* @memberof ProvisioningApi
|
|
12531
13614
|
*/
|
|
12532
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13615
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12533
13616
|
/**
|
|
12534
13617
|
* Add MAC address to DB and FDPS group
|
|
12535
13618
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13404,6 +14487,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13404
14487
|
*/
|
|
13405
14488
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13406
14489
|
}
|
|
14490
|
+
/**
|
|
14491
|
+
* ShippingApi - axios parameter creator
|
|
14492
|
+
* @export
|
|
14493
|
+
*/
|
|
14494
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14495
|
+
/**
|
|
14496
|
+
* Get Shipping Services
|
|
14497
|
+
* @summary Get Shipping Services
|
|
14498
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14499
|
+
* @param {*} [options] Override http request option.
|
|
14500
|
+
* @throws {RequiredError}
|
|
14501
|
+
*/
|
|
14502
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14503
|
+
};
|
|
14504
|
+
/**
|
|
14505
|
+
* ShippingApi - functional programming interface
|
|
14506
|
+
* @export
|
|
14507
|
+
*/
|
|
14508
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14509
|
+
/**
|
|
14510
|
+
* Get Shipping Services
|
|
14511
|
+
* @summary Get Shipping Services
|
|
14512
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14513
|
+
* @param {*} [options] Override http request option.
|
|
14514
|
+
* @throws {RequiredError}
|
|
14515
|
+
*/
|
|
14516
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14517
|
+
};
|
|
14518
|
+
/**
|
|
14519
|
+
* ShippingApi - factory interface
|
|
14520
|
+
* @export
|
|
14521
|
+
*/
|
|
14522
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14523
|
+
/**
|
|
14524
|
+
* Get Shipping Services
|
|
14525
|
+
* @summary Get Shipping Services
|
|
14526
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14527
|
+
* @param {*} [options] Override http request option.
|
|
14528
|
+
* @throws {RequiredError}
|
|
14529
|
+
*/
|
|
14530
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14531
|
+
};
|
|
14532
|
+
/**
|
|
14533
|
+
* ShippingApi - object-oriented interface
|
|
14534
|
+
* @export
|
|
14535
|
+
* @class ShippingApi
|
|
14536
|
+
* @extends {BaseAPI}
|
|
14537
|
+
*/
|
|
14538
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14539
|
+
/**
|
|
14540
|
+
* Get Shipping Services
|
|
14541
|
+
* @summary Get Shipping Services
|
|
14542
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14543
|
+
* @param {*} [options] Override http request option.
|
|
14544
|
+
* @throws {RequiredError}
|
|
14545
|
+
* @memberof ShippingApi
|
|
14546
|
+
*/
|
|
14547
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14548
|
+
}
|
|
13407
14549
|
/**
|
|
13408
14550
|
* StockManagementApi - axios parameter creator
|
|
13409
14551
|
* @export
|
|
@@ -13733,7 +14875,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13733
14875
|
* @param {*} [options] Override http request option.
|
|
13734
14876
|
* @throws {RequiredError}
|
|
13735
14877
|
*/
|
|
13736
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
14878
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13737
14879
|
/**
|
|
13738
14880
|
* Get Stock Order Supplier Invoice
|
|
13739
14881
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13948,7 +15090,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
13948
15090
|
* @param {*} [options] Override http request option.
|
|
13949
15091
|
* @throws {RequiredError}
|
|
13950
15092
|
*/
|
|
13951
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15093
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
13952
15094
|
/**
|
|
13953
15095
|
* Get Stock Order Supplier Invoice
|
|
13954
15096
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14178,7 +15320,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14178
15320
|
* @throws {RequiredError}
|
|
14179
15321
|
* @memberof StockManagementApi
|
|
14180
15322
|
*/
|
|
14181
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15323
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14182
15324
|
/**
|
|
14183
15325
|
* Get Stock Order Supplier Invoice
|
|
14184
15326
|
* @summary Get Stock Order Supplier Invoice
|