yellowgrid-api-ts 3.1.14 → 3.1.16-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 +218 -198
- package/README.md +38 -7
- package/api.ts +2123 -241
- 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 +1589 -166
- package/dist/api.js +1236 -203
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AbstractOrderRequestDTO.md +33 -0
- package/docs/AccountDetailedSummaryDTO.md +39 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AddressModel.md +2 -0
- package/docs/AdminItemRequestDTO.md +43 -0
- package/docs/AdminOrderRequestDTO.md +45 -0
- package/docs/AdminUserModel.md +29 -0
- package/docs/AuditLogEntity.md +37 -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 +37 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/DetailedItemRequestDTO.md +43 -0
- package/docs/DetailedOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +12 -4
- package/docs/ItemDiscountEntity.md +33 -0
- package/docs/ItemEntity.md +4 -2
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +356 -4
- package/docs/PostGetProductForCustomerRequest.md +24 -0
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +7 -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 +122 -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/hs_err_pid58424.log +247 -0
- 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
|
|
@@ -493,6 +609,12 @@ export interface AddressModel {
|
|
|
493
609
|
* @memberof AddressModel
|
|
494
610
|
*/
|
|
495
611
|
'company'?: string;
|
|
612
|
+
/**
|
|
613
|
+
* Default
|
|
614
|
+
* @type {boolean}
|
|
615
|
+
* @memberof AddressModel
|
|
616
|
+
*/
|
|
617
|
+
'default'?: boolean;
|
|
496
618
|
}
|
|
497
619
|
/**
|
|
498
620
|
* Address Request
|
|
@@ -525,6 +647,136 @@ export interface AddressRequestModel {
|
|
|
525
647
|
*/
|
|
526
648
|
'addressPostcode'?: string;
|
|
527
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* Admin Order Request
|
|
652
|
+
* @export
|
|
653
|
+
* @interface AdminOrderRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
export interface AdminOrderRequestDTO {
|
|
656
|
+
/**
|
|
657
|
+
* Order Reference
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof AdminOrderRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'orderReference'?: string | null;
|
|
662
|
+
/**
|
|
663
|
+
* Items
|
|
664
|
+
* @type {Array<DetailedItemRequestDTO>}
|
|
665
|
+
* @memberof AdminOrderRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'items'?: Array<DetailedItemRequestDTO>;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {ShippingServiceDTO}
|
|
671
|
+
* @memberof AdminOrderRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'shippingService'?: ShippingServiceDTO;
|
|
674
|
+
/**
|
|
675
|
+
* Provisioning URL
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof AdminOrderRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'provisioningUrl'?: string | null;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {AddressModel}
|
|
683
|
+
* @memberof AdminOrderRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'shippingAddress'?: AddressModel;
|
|
686
|
+
/**
|
|
687
|
+
* Part Ship Order
|
|
688
|
+
* @type {boolean}
|
|
689
|
+
* @memberof AdminOrderRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'partShip'?: boolean;
|
|
692
|
+
/**
|
|
693
|
+
* Quote
|
|
694
|
+
* @type {boolean}
|
|
695
|
+
* @memberof AdminOrderRequestDTO
|
|
696
|
+
*/
|
|
697
|
+
'quote'?: boolean;
|
|
698
|
+
/**
|
|
699
|
+
* Customer ID
|
|
700
|
+
* @type {number}
|
|
701
|
+
* @memberof AdminOrderRequestDTO
|
|
702
|
+
*/
|
|
703
|
+
'customerId'?: number;
|
|
704
|
+
/**
|
|
705
|
+
* Contact
|
|
706
|
+
* @type {string}
|
|
707
|
+
* @memberof AdminOrderRequestDTO
|
|
708
|
+
*/
|
|
709
|
+
'contact'?: string;
|
|
710
|
+
/**
|
|
711
|
+
* Ignore Customer On Hold
|
|
712
|
+
* @type {boolean}
|
|
713
|
+
* @memberof AdminOrderRequestDTO
|
|
714
|
+
*/
|
|
715
|
+
'ignoreOnHold'?: boolean;
|
|
716
|
+
/**
|
|
717
|
+
* Ignore Customer Credit Limit
|
|
718
|
+
* @type {boolean}
|
|
719
|
+
* @memberof AdminOrderRequestDTO
|
|
720
|
+
*/
|
|
721
|
+
'ignoreCreditLimit'?: boolean;
|
|
722
|
+
/**
|
|
723
|
+
* Include NFR Promos
|
|
724
|
+
* @type {boolean}
|
|
725
|
+
* @memberof AdminOrderRequestDTO
|
|
726
|
+
*/
|
|
727
|
+
'includeNfrPromos'?: boolean;
|
|
728
|
+
/**
|
|
729
|
+
* Carriage Charge
|
|
730
|
+
* @type {number}
|
|
731
|
+
* @memberof AdminOrderRequestDTO
|
|
732
|
+
*/
|
|
733
|
+
'carriageCharge'?: number;
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* Admin User
|
|
737
|
+
* @export
|
|
738
|
+
* @interface AdminUserModel
|
|
739
|
+
*/
|
|
740
|
+
export interface AdminUserModel {
|
|
741
|
+
/**
|
|
742
|
+
* First Name
|
|
743
|
+
* @type {string}
|
|
744
|
+
* @memberof AdminUserModel
|
|
745
|
+
*/
|
|
746
|
+
'firstName'?: string;
|
|
747
|
+
/**
|
|
748
|
+
* Last Name
|
|
749
|
+
* @type {string}
|
|
750
|
+
* @memberof AdminUserModel
|
|
751
|
+
*/
|
|
752
|
+
'lastName'?: string;
|
|
753
|
+
/**
|
|
754
|
+
* Avatar
|
|
755
|
+
* @type {string}
|
|
756
|
+
* @memberof AdminUserModel
|
|
757
|
+
*/
|
|
758
|
+
'avatar'?: string | null;
|
|
759
|
+
/**
|
|
760
|
+
* Role
|
|
761
|
+
* @type {number}
|
|
762
|
+
* @memberof AdminUserModel
|
|
763
|
+
*/
|
|
764
|
+
'role'?: AdminUserModelRoleEnum;
|
|
765
|
+
/**
|
|
766
|
+
* Email
|
|
767
|
+
* @type {string}
|
|
768
|
+
* @memberof AdminUserModel
|
|
769
|
+
*/
|
|
770
|
+
'email'?: string | null;
|
|
771
|
+
}
|
|
772
|
+
export declare const AdminUserModelRoleEnum: {
|
|
773
|
+
readonly NUMBER_0: 0;
|
|
774
|
+
readonly NUMBER_1: 1;
|
|
775
|
+
readonly NUMBER_2: 2;
|
|
776
|
+
readonly NUMBER_3: 3;
|
|
777
|
+
readonly NUMBER_4: 4;
|
|
778
|
+
};
|
|
779
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
780
|
/**
|
|
529
781
|
* Agent Hours Graph
|
|
530
782
|
* @export
|
|
@@ -729,6 +981,67 @@ export interface AttributeSetEnum {
|
|
|
729
981
|
*/
|
|
730
982
|
'name'?: string;
|
|
731
983
|
}
|
|
984
|
+
/**
|
|
985
|
+
* AuditLogEntity
|
|
986
|
+
* @export
|
|
987
|
+
* @interface AuditLogEntity
|
|
988
|
+
*/
|
|
989
|
+
export interface AuditLogEntity {
|
|
990
|
+
/**
|
|
991
|
+
* id
|
|
992
|
+
* @type {number}
|
|
993
|
+
* @memberof AuditLogEntity
|
|
994
|
+
*/
|
|
995
|
+
'id'?: number;
|
|
996
|
+
/**
|
|
997
|
+
* action
|
|
998
|
+
* @type {string}
|
|
999
|
+
* @memberof AuditLogEntity
|
|
1000
|
+
*/
|
|
1001
|
+
'action'?: string;
|
|
1002
|
+
/**
|
|
1003
|
+
* type
|
|
1004
|
+
* @type {string}
|
|
1005
|
+
* @memberof AuditLogEntity
|
|
1006
|
+
*/
|
|
1007
|
+
'type'?: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* identifier
|
|
1010
|
+
* @type {string}
|
|
1011
|
+
* @memberof AuditLogEntity
|
|
1012
|
+
*/
|
|
1013
|
+
'identifier'?: string;
|
|
1014
|
+
/**
|
|
1015
|
+
* user
|
|
1016
|
+
* @type {string}
|
|
1017
|
+
* @memberof AuditLogEntity
|
|
1018
|
+
*/
|
|
1019
|
+
'user'?: string;
|
|
1020
|
+
/**
|
|
1021
|
+
* timestamp
|
|
1022
|
+
* @type {string}
|
|
1023
|
+
* @memberof AuditLogEntity
|
|
1024
|
+
*/
|
|
1025
|
+
'timestamp'?: string;
|
|
1026
|
+
/**
|
|
1027
|
+
* beforeData
|
|
1028
|
+
* @type {string}
|
|
1029
|
+
* @memberof AuditLogEntity
|
|
1030
|
+
*/
|
|
1031
|
+
'beforeData'?: string;
|
|
1032
|
+
/**
|
|
1033
|
+
* afterData
|
|
1034
|
+
* @type {string}
|
|
1035
|
+
* @memberof AuditLogEntity
|
|
1036
|
+
*/
|
|
1037
|
+
'afterData'?: string;
|
|
1038
|
+
/**
|
|
1039
|
+
* description
|
|
1040
|
+
* @type {string}
|
|
1041
|
+
* @memberof AuditLogEntity
|
|
1042
|
+
*/
|
|
1043
|
+
'description'?: string;
|
|
1044
|
+
}
|
|
732
1045
|
/**
|
|
733
1046
|
* OAuth Auth Code Response
|
|
734
1047
|
* @export
|
|
@@ -754,6 +1067,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1067
|
*/
|
|
755
1068
|
'redirect_uri'?: string | null;
|
|
756
1069
|
}
|
|
1070
|
+
/**
|
|
1071
|
+
* Basic Order Item
|
|
1072
|
+
* @export
|
|
1073
|
+
* @interface BasicItemDTO
|
|
1074
|
+
*/
|
|
1075
|
+
export interface BasicItemDTO {
|
|
1076
|
+
/**
|
|
1077
|
+
* SKU
|
|
1078
|
+
* @type {string}
|
|
1079
|
+
* @memberof BasicItemDTO
|
|
1080
|
+
*/
|
|
1081
|
+
'sku'?: string;
|
|
1082
|
+
/**
|
|
1083
|
+
* Quantity
|
|
1084
|
+
* @type {number}
|
|
1085
|
+
* @memberof BasicItemDTO
|
|
1086
|
+
*/
|
|
1087
|
+
'quantity'?: number;
|
|
1088
|
+
}
|
|
1089
|
+
/**
|
|
1090
|
+
* Basic Product
|
|
1091
|
+
* @export
|
|
1092
|
+
* @interface BasicProductDTO
|
|
1093
|
+
*/
|
|
1094
|
+
export interface BasicProductDTO {
|
|
1095
|
+
/**
|
|
1096
|
+
* SKU
|
|
1097
|
+
* @type {string}
|
|
1098
|
+
* @memberof BasicProductDTO
|
|
1099
|
+
*/
|
|
1100
|
+
'sku'?: string;
|
|
1101
|
+
/**
|
|
1102
|
+
* Title
|
|
1103
|
+
* @type {string}
|
|
1104
|
+
* @memberof BasicProductDTO
|
|
1105
|
+
*/
|
|
1106
|
+
'title'?: string;
|
|
1107
|
+
}
|
|
757
1108
|
/**
|
|
758
1109
|
* BatchesEntity
|
|
759
1110
|
* @export
|
|
@@ -948,12 +1299,6 @@ export interface ClientDetailsModel {
|
|
|
948
1299
|
* @memberof ClientDetailsModel
|
|
949
1300
|
*/
|
|
950
1301
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1302
|
}
|
|
958
1303
|
/**
|
|
959
1304
|
* OAuth client details
|
|
@@ -1113,7 +1458,74 @@ export interface ConversationModel {
|
|
|
1113
1458
|
* @type {Array<AttachmentModel>}
|
|
1114
1459
|
* @memberof ConversationModel
|
|
1115
1460
|
*/
|
|
1116
|
-
'attachments'?: Array<AttachmentModel>;
|
|
1461
|
+
'attachments'?: Array<AttachmentModel>;
|
|
1462
|
+
}
|
|
1463
|
+
/**
|
|
1464
|
+
* CourierPricesEntity
|
|
1465
|
+
* @export
|
|
1466
|
+
* @interface CourierPriceEntity
|
|
1467
|
+
*/
|
|
1468
|
+
export interface CourierPriceEntity {
|
|
1469
|
+
/**
|
|
1470
|
+
* id
|
|
1471
|
+
* @type {number}
|
|
1472
|
+
* @memberof CourierPriceEntity
|
|
1473
|
+
*/
|
|
1474
|
+
'id'?: number;
|
|
1475
|
+
/**
|
|
1476
|
+
* courier
|
|
1477
|
+
* @type {string}
|
|
1478
|
+
* @memberof CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
'courier'?: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* destinationIso
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'destinationIso'?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* serviceDescription
|
|
1489
|
+
* @type {string}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'serviceDescription'?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* flatRate
|
|
1495
|
+
* @type {number}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'flatRate'?: number;
|
|
1499
|
+
/**
|
|
1500
|
+
* initialBox
|
|
1501
|
+
* @type {number}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'initialBox'?: number;
|
|
1505
|
+
/**
|
|
1506
|
+
* initialKg
|
|
1507
|
+
* @type {number}
|
|
1508
|
+
* @memberof CourierPriceEntity
|
|
1509
|
+
*/
|
|
1510
|
+
'initialKg'?: number;
|
|
1511
|
+
/**
|
|
1512
|
+
* perBox
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof CourierPriceEntity
|
|
1515
|
+
*/
|
|
1516
|
+
'perBox'?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
* perKg
|
|
1519
|
+
* @type {number}
|
|
1520
|
+
* @memberof CourierPriceEntity
|
|
1521
|
+
*/
|
|
1522
|
+
'perKg'?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* maxKg
|
|
1525
|
+
* @type {number}
|
|
1526
|
+
* @memberof CourierPriceEntity
|
|
1527
|
+
*/
|
|
1528
|
+
'maxKg'?: number;
|
|
1117
1529
|
}
|
|
1118
1530
|
/**
|
|
1119
1531
|
* Credit Account
|
|
@@ -1346,6 +1758,116 @@ export interface CustomerInformationModel {
|
|
|
1346
1758
|
*/
|
|
1347
1759
|
'contactLastName'?: string;
|
|
1348
1760
|
}
|
|
1761
|
+
/**
|
|
1762
|
+
* Order Item Request
|
|
1763
|
+
* @export
|
|
1764
|
+
* @interface CustomerItemRequestDTO
|
|
1765
|
+
*/
|
|
1766
|
+
export interface CustomerItemRequestDTO {
|
|
1767
|
+
/**
|
|
1768
|
+
* SKU
|
|
1769
|
+
* @type {string}
|
|
1770
|
+
* @memberof CustomerItemRequestDTO
|
|
1771
|
+
*/
|
|
1772
|
+
'sku'?: string;
|
|
1773
|
+
/**
|
|
1774
|
+
* Quantity
|
|
1775
|
+
* @type {number}
|
|
1776
|
+
* @memberof CustomerItemRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
'quantity'?: number;
|
|
1779
|
+
/**
|
|
1780
|
+
* ID
|
|
1781
|
+
* @type {number}
|
|
1782
|
+
* @memberof CustomerItemRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'id'?: number | null;
|
|
1785
|
+
/**
|
|
1786
|
+
* 3CX Licence Key
|
|
1787
|
+
* @type {string}
|
|
1788
|
+
* @memberof CustomerItemRequestDTO
|
|
1789
|
+
*/
|
|
1790
|
+
'licenceKey'?: string | null;
|
|
1791
|
+
/**
|
|
1792
|
+
* 3CX Hosting
|
|
1793
|
+
* @type {boolean}
|
|
1794
|
+
* @memberof CustomerItemRequestDTO
|
|
1795
|
+
*/
|
|
1796
|
+
'hosting'?: boolean | null;
|
|
1797
|
+
/**
|
|
1798
|
+
* Date Time
|
|
1799
|
+
* @type {string}
|
|
1800
|
+
* @memberof CustomerItemRequestDTO
|
|
1801
|
+
*/
|
|
1802
|
+
'processDate'?: string;
|
|
1803
|
+
/**
|
|
1804
|
+
* 3CX Sales Code
|
|
1805
|
+
* @type {string}
|
|
1806
|
+
* @memberof CustomerItemRequestDTO
|
|
1807
|
+
*/
|
|
1808
|
+
'tcxSalesCode'?: string | null;
|
|
1809
|
+
/**
|
|
1810
|
+
* SBCS
|
|
1811
|
+
* @type {Array<TcxSbcDTO>}
|
|
1812
|
+
* @memberof CustomerItemRequestDTO
|
|
1813
|
+
*/
|
|
1814
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1815
|
+
/**
|
|
1816
|
+
* Read Only (Cannot be edited)
|
|
1817
|
+
* @type {boolean}
|
|
1818
|
+
* @memberof CustomerItemRequestDTO
|
|
1819
|
+
*/
|
|
1820
|
+
'readOnly'?: boolean;
|
|
1821
|
+
}
|
|
1822
|
+
/**
|
|
1823
|
+
* Order Request
|
|
1824
|
+
* @export
|
|
1825
|
+
* @interface CustomerOrderRequestDTO
|
|
1826
|
+
*/
|
|
1827
|
+
export interface CustomerOrderRequestDTO {
|
|
1828
|
+
/**
|
|
1829
|
+
* Order Reference
|
|
1830
|
+
* @type {string}
|
|
1831
|
+
* @memberof CustomerOrderRequestDTO
|
|
1832
|
+
*/
|
|
1833
|
+
'orderReference'?: string | null;
|
|
1834
|
+
/**
|
|
1835
|
+
* Items
|
|
1836
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1837
|
+
* @memberof CustomerOrderRequestDTO
|
|
1838
|
+
*/
|
|
1839
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1840
|
+
/**
|
|
1841
|
+
*
|
|
1842
|
+
* @type {ShippingServiceDTO}
|
|
1843
|
+
* @memberof CustomerOrderRequestDTO
|
|
1844
|
+
*/
|
|
1845
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1846
|
+
/**
|
|
1847
|
+
* Provisioning URL
|
|
1848
|
+
* @type {string}
|
|
1849
|
+
* @memberof CustomerOrderRequestDTO
|
|
1850
|
+
*/
|
|
1851
|
+
'provisioningUrl'?: string | null;
|
|
1852
|
+
/**
|
|
1853
|
+
*
|
|
1854
|
+
* @type {AddressModel}
|
|
1855
|
+
* @memberof CustomerOrderRequestDTO
|
|
1856
|
+
*/
|
|
1857
|
+
'shippingAddress'?: AddressModel;
|
|
1858
|
+
/**
|
|
1859
|
+
* Part Ship Order
|
|
1860
|
+
* @type {boolean}
|
|
1861
|
+
* @memberof CustomerOrderRequestDTO
|
|
1862
|
+
*/
|
|
1863
|
+
'partShip'?: boolean;
|
|
1864
|
+
/**
|
|
1865
|
+
* Quote
|
|
1866
|
+
* @type {boolean}
|
|
1867
|
+
* @memberof CustomerOrderRequestDTO
|
|
1868
|
+
*/
|
|
1869
|
+
'quote'?: boolean;
|
|
1870
|
+
}
|
|
1349
1871
|
/**
|
|
1350
1872
|
* Customer Price List
|
|
1351
1873
|
* @export
|
|
@@ -1446,6 +1968,134 @@ export interface DdiRangesRequestModel {
|
|
|
1446
1968
|
*/
|
|
1447
1969
|
'ranges'?: Array<DdiRangeRequestModel>;
|
|
1448
1970
|
}
|
|
1971
|
+
/**
|
|
1972
|
+
* Detailed Order Item Request
|
|
1973
|
+
* @export
|
|
1974
|
+
* @interface DetailedItemRequestDTO
|
|
1975
|
+
*/
|
|
1976
|
+
export interface DetailedItemRequestDTO {
|
|
1977
|
+
/**
|
|
1978
|
+
* SKU
|
|
1979
|
+
* @type {string}
|
|
1980
|
+
* @memberof DetailedItemRequestDTO
|
|
1981
|
+
*/
|
|
1982
|
+
'sku'?: string;
|
|
1983
|
+
/**
|
|
1984
|
+
* Quantity
|
|
1985
|
+
* @type {number}
|
|
1986
|
+
* @memberof DetailedItemRequestDTO
|
|
1987
|
+
*/
|
|
1988
|
+
'quantity'?: number;
|
|
1989
|
+
/**
|
|
1990
|
+
* ID
|
|
1991
|
+
* @type {number}
|
|
1992
|
+
* @memberof DetailedItemRequestDTO
|
|
1993
|
+
*/
|
|
1994
|
+
'id'?: number | null;
|
|
1995
|
+
/**
|
|
1996
|
+
* 3CX Licence Key
|
|
1997
|
+
* @type {string}
|
|
1998
|
+
* @memberof DetailedItemRequestDTO
|
|
1999
|
+
*/
|
|
2000
|
+
'licenceKey'?: string | null;
|
|
2001
|
+
/**
|
|
2002
|
+
* 3CX Hosting
|
|
2003
|
+
* @type {boolean}
|
|
2004
|
+
* @memberof DetailedItemRequestDTO
|
|
2005
|
+
*/
|
|
2006
|
+
'hosting'?: boolean | null;
|
|
2007
|
+
/**
|
|
2008
|
+
* Date Time
|
|
2009
|
+
* @type {string}
|
|
2010
|
+
* @memberof DetailedItemRequestDTO
|
|
2011
|
+
*/
|
|
2012
|
+
'processDate'?: string;
|
|
2013
|
+
/**
|
|
2014
|
+
* 3CX Sales Code
|
|
2015
|
+
* @type {string}
|
|
2016
|
+
* @memberof DetailedItemRequestDTO
|
|
2017
|
+
*/
|
|
2018
|
+
'tcxSalesCode'?: string | null;
|
|
2019
|
+
/**
|
|
2020
|
+
* SBCS
|
|
2021
|
+
* @type {Array<TcxSbcDTO>}
|
|
2022
|
+
* @memberof DetailedItemRequestDTO
|
|
2023
|
+
*/
|
|
2024
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
2025
|
+
/**
|
|
2026
|
+
* Read Only (Cannot be edited)
|
|
2027
|
+
* @type {boolean}
|
|
2028
|
+
* @memberof DetailedItemRequestDTO
|
|
2029
|
+
*/
|
|
2030
|
+
'readOnly'?: boolean;
|
|
2031
|
+
/**
|
|
2032
|
+
* Title
|
|
2033
|
+
* @type {string}
|
|
2034
|
+
* @memberof DetailedItemRequestDTO
|
|
2035
|
+
*/
|
|
2036
|
+
'title'?: string | null;
|
|
2037
|
+
/**
|
|
2038
|
+
* Price (£)
|
|
2039
|
+
* @type {number}
|
|
2040
|
+
* @memberof DetailedItemRequestDTO
|
|
2041
|
+
*/
|
|
2042
|
+
'itemPrice'?: number | null;
|
|
2043
|
+
/**
|
|
2044
|
+
* Additional Discount
|
|
2045
|
+
* @type {number}
|
|
2046
|
+
* @memberof DetailedItemRequestDTO
|
|
2047
|
+
*/
|
|
2048
|
+
'additionalDiscount'?: number | null;
|
|
2049
|
+
}
|
|
2050
|
+
/**
|
|
2051
|
+
* Detailed Order Request
|
|
2052
|
+
* @export
|
|
2053
|
+
* @interface DetailedOrderRequestDTO
|
|
2054
|
+
*/
|
|
2055
|
+
export interface DetailedOrderRequestDTO {
|
|
2056
|
+
/**
|
|
2057
|
+
* Order Reference
|
|
2058
|
+
* @type {string}
|
|
2059
|
+
* @memberof DetailedOrderRequestDTO
|
|
2060
|
+
*/
|
|
2061
|
+
'orderReference'?: string | null;
|
|
2062
|
+
/**
|
|
2063
|
+
* Items
|
|
2064
|
+
* @type {Array<DetailedItemRequestDTO>}
|
|
2065
|
+
* @memberof DetailedOrderRequestDTO
|
|
2066
|
+
*/
|
|
2067
|
+
'items'?: Array<DetailedItemRequestDTO>;
|
|
2068
|
+
/**
|
|
2069
|
+
*
|
|
2070
|
+
* @type {ShippingServiceDTO}
|
|
2071
|
+
* @memberof DetailedOrderRequestDTO
|
|
2072
|
+
*/
|
|
2073
|
+
'shippingService'?: ShippingServiceDTO;
|
|
2074
|
+
/**
|
|
2075
|
+
* Provisioning URL
|
|
2076
|
+
* @type {string}
|
|
2077
|
+
* @memberof DetailedOrderRequestDTO
|
|
2078
|
+
*/
|
|
2079
|
+
'provisioningUrl'?: string | null;
|
|
2080
|
+
/**
|
|
2081
|
+
*
|
|
2082
|
+
* @type {AddressModel}
|
|
2083
|
+
* @memberof DetailedOrderRequestDTO
|
|
2084
|
+
*/
|
|
2085
|
+
'shippingAddress'?: AddressModel;
|
|
2086
|
+
/**
|
|
2087
|
+
* Part Ship Order
|
|
2088
|
+
* @type {boolean}
|
|
2089
|
+
* @memberof DetailedOrderRequestDTO
|
|
2090
|
+
*/
|
|
2091
|
+
'partShip'?: boolean;
|
|
2092
|
+
/**
|
|
2093
|
+
* Quote
|
|
2094
|
+
* @type {boolean}
|
|
2095
|
+
* @memberof DetailedOrderRequestDTO
|
|
2096
|
+
*/
|
|
2097
|
+
'quote'?: boolean;
|
|
2098
|
+
}
|
|
1449
2099
|
/**
|
|
1450
2100
|
* Divert Request
|
|
1451
2101
|
* @export
|
|
@@ -1852,19 +2502,6 @@ export interface GenericFileModel {
|
|
|
1852
2502
|
*/
|
|
1853
2503
|
'type'?: string;
|
|
1854
2504
|
}
|
|
1855
|
-
/**
|
|
1856
|
-
*
|
|
1857
|
-
* @export
|
|
1858
|
-
* @interface GetGetPasswordHash200Response
|
|
1859
|
-
*/
|
|
1860
|
-
export interface GetGetPasswordHash200Response {
|
|
1861
|
-
/**
|
|
1862
|
-
*
|
|
1863
|
-
* @type {string}
|
|
1864
|
-
* @memberof GetGetPasswordHash200Response
|
|
1865
|
-
*/
|
|
1866
|
-
'hash'?: string;
|
|
1867
|
-
}
|
|
1868
2505
|
/**
|
|
1869
2506
|
*
|
|
1870
2507
|
* @export
|
|
@@ -2460,35 +3097,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2460
3097
|
*/
|
|
2461
3098
|
export interface ItemDTO {
|
|
2462
3099
|
/**
|
|
2463
|
-
*
|
|
2464
|
-
* @type {
|
|
3100
|
+
* SKU
|
|
3101
|
+
* @type {string}
|
|
2465
3102
|
* @memberof ItemDTO
|
|
2466
3103
|
*/
|
|
2467
|
-
'
|
|
3104
|
+
'sku'?: string;
|
|
2468
3105
|
/**
|
|
2469
|
-
*
|
|
3106
|
+
* Quantity
|
|
2470
3107
|
* @type {number}
|
|
2471
3108
|
* @memberof ItemDTO
|
|
2472
3109
|
*/
|
|
2473
|
-
'
|
|
3110
|
+
'quantity'?: number;
|
|
2474
3111
|
/**
|
|
2475
|
-
*
|
|
2476
|
-
* @type {
|
|
3112
|
+
* ID
|
|
3113
|
+
* @type {number}
|
|
2477
3114
|
* @memberof ItemDTO
|
|
2478
3115
|
*/
|
|
2479
|
-
'
|
|
3116
|
+
'id'?: number | null;
|
|
2480
3117
|
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @type {
|
|
3118
|
+
* Order ID
|
|
3119
|
+
* @type {number}
|
|
2483
3120
|
* @memberof ItemDTO
|
|
2484
3121
|
*/
|
|
2485
|
-
'
|
|
3122
|
+
'orderId'?: number | null;
|
|
2486
3123
|
/**
|
|
2487
|
-
*
|
|
2488
|
-
* @type {
|
|
3124
|
+
* Title
|
|
3125
|
+
* @type {string}
|
|
2489
3126
|
* @memberof ItemDTO
|
|
2490
3127
|
*/
|
|
2491
|
-
'
|
|
3128
|
+
'title'?: string;
|
|
2492
3129
|
/**
|
|
2493
3130
|
* Price
|
|
2494
3131
|
* @type {number}
|
|
@@ -2513,6 +3150,12 @@ export interface ItemDTO {
|
|
|
2513
3150
|
* @memberof ItemDTO
|
|
2514
3151
|
*/
|
|
2515
3152
|
'processDate'?: string;
|
|
3153
|
+
/**
|
|
3154
|
+
* 3CX Hosting
|
|
3155
|
+
* @type {boolean}
|
|
3156
|
+
* @memberof ItemDTO
|
|
3157
|
+
*/
|
|
3158
|
+
'hosting'?: boolean | null;
|
|
2516
3159
|
/**
|
|
2517
3160
|
* Promo Item
|
|
2518
3161
|
* @type {boolean}
|
|
@@ -2524,8 +3167,81 @@ export interface ItemDTO {
|
|
|
2524
3167
|
* @type {number}
|
|
2525
3168
|
* @memberof ItemDTO
|
|
2526
3169
|
*/
|
|
2527
|
-
'refunded'?: number;
|
|
3170
|
+
'refunded'?: number | null;
|
|
3171
|
+
/**
|
|
3172
|
+
* SBCs
|
|
3173
|
+
* @type {Array<TcxSbcDTO>}
|
|
3174
|
+
* @memberof ItemDTO
|
|
3175
|
+
*/
|
|
3176
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3177
|
+
/**
|
|
3178
|
+
* Readonly
|
|
3179
|
+
* @type {boolean}
|
|
3180
|
+
* @memberof ItemDTO
|
|
3181
|
+
*/
|
|
3182
|
+
'readonly'?: boolean;
|
|
3183
|
+
/**
|
|
3184
|
+
* 3CX Sales Code
|
|
3185
|
+
* @type {string}
|
|
3186
|
+
* @memberof ItemDTO
|
|
3187
|
+
*/
|
|
3188
|
+
'tcxSalesCode'?: string | null;
|
|
3189
|
+
}
|
|
3190
|
+
/**
|
|
3191
|
+
* ItemDiscountsEntity
|
|
3192
|
+
* @export
|
|
3193
|
+
* @interface ItemDiscountEntity
|
|
3194
|
+
*/
|
|
3195
|
+
export interface ItemDiscountEntity {
|
|
3196
|
+
/**
|
|
3197
|
+
* id
|
|
3198
|
+
* @type {number}
|
|
3199
|
+
* @memberof ItemDiscountEntity
|
|
3200
|
+
*/
|
|
3201
|
+
'id'?: number;
|
|
3202
|
+
/**
|
|
3203
|
+
* itemId
|
|
3204
|
+
* @type {number}
|
|
3205
|
+
* @memberof ItemDiscountEntity
|
|
3206
|
+
*/
|
|
3207
|
+
'itemId'?: number;
|
|
3208
|
+
/**
|
|
3209
|
+
* priceList
|
|
3210
|
+
* @type {string}
|
|
3211
|
+
* @memberof ItemDiscountEntity
|
|
3212
|
+
*/
|
|
3213
|
+
'priceList'?: string;
|
|
3214
|
+
/**
|
|
3215
|
+
* discount
|
|
3216
|
+
* @type {number}
|
|
3217
|
+
* @memberof ItemDiscountEntity
|
|
3218
|
+
*/
|
|
3219
|
+
'discount'?: number;
|
|
3220
|
+
/**
|
|
3221
|
+
* type
|
|
3222
|
+
* @type {string}
|
|
3223
|
+
* @memberof ItemDiscountEntity
|
|
3224
|
+
*/
|
|
3225
|
+
'type'?: ItemDiscountEntityTypeEnum | null;
|
|
3226
|
+
/**
|
|
3227
|
+
* description
|
|
3228
|
+
* @type {string}
|
|
3229
|
+
* @memberof ItemDiscountEntity
|
|
3230
|
+
*/
|
|
3231
|
+
'description'?: string;
|
|
3232
|
+
/**
|
|
3233
|
+
* priority
|
|
3234
|
+
* @type {number}
|
|
3235
|
+
* @memberof ItemDiscountEntity
|
|
3236
|
+
*/
|
|
3237
|
+
'priority'?: number;
|
|
2528
3238
|
}
|
|
3239
|
+
export declare const ItemDiscountEntityTypeEnum: {
|
|
3240
|
+
readonly TcxPhones: "TCX_PHONES";
|
|
3241
|
+
readonly PhoneBulk: "PHONE_BULK";
|
|
3242
|
+
readonly Additional: "ADDITIONAL";
|
|
3243
|
+
};
|
|
3244
|
+
export type ItemDiscountEntityTypeEnum = typeof ItemDiscountEntityTypeEnum[keyof typeof ItemDiscountEntityTypeEnum];
|
|
2529
3245
|
/**
|
|
2530
3246
|
* ItemsEntity
|
|
2531
3247
|
* @export
|
|
@@ -2633,7 +3349,7 @@ export interface ItemEntity {
|
|
|
2633
3349
|
* @type {string}
|
|
2634
3350
|
* @memberof ItemEntity
|
|
2635
3351
|
*/
|
|
2636
|
-
'
|
|
3352
|
+
'licenceKey'?: string;
|
|
2637
3353
|
/**
|
|
2638
3354
|
* addHosting
|
|
2639
3355
|
* @type {number}
|
|
@@ -2647,17 +3363,42 @@ export interface ItemEntity {
|
|
|
2647
3363
|
*/
|
|
2648
3364
|
'licenceExpiryDate'?: string;
|
|
2649
3365
|
/**
|
|
2650
|
-
* processDate
|
|
2651
|
-
* @type {string}
|
|
2652
|
-
* @memberof ItemEntity
|
|
3366
|
+
* processDate
|
|
3367
|
+
* @type {string}
|
|
3368
|
+
* @memberof ItemEntity
|
|
3369
|
+
*/
|
|
3370
|
+
'processDate'?: string;
|
|
3371
|
+
/**
|
|
3372
|
+
* promo
|
|
3373
|
+
* @type {number}
|
|
3374
|
+
* @memberof ItemEntity
|
|
3375
|
+
*/
|
|
3376
|
+
'promoItem'?: number;
|
|
3377
|
+
/**
|
|
3378
|
+
* 3CX Sales Code
|
|
3379
|
+
* @type {string}
|
|
3380
|
+
* @memberof ItemEntity
|
|
3381
|
+
*/
|
|
3382
|
+
'tcxSalesCode'?: string | null;
|
|
3383
|
+
}
|
|
3384
|
+
/**
|
|
3385
|
+
* LinkedOrdersEntity
|
|
3386
|
+
* @export
|
|
3387
|
+
* @interface LinkedOrderEntity
|
|
3388
|
+
*/
|
|
3389
|
+
export interface LinkedOrderEntity {
|
|
3390
|
+
/**
|
|
3391
|
+
* orderId
|
|
3392
|
+
* @type {number}
|
|
3393
|
+
* @memberof LinkedOrderEntity
|
|
2653
3394
|
*/
|
|
2654
|
-
'
|
|
3395
|
+
'orderId'?: number;
|
|
2655
3396
|
/**
|
|
2656
|
-
*
|
|
3397
|
+
* linkedOrderId
|
|
2657
3398
|
* @type {number}
|
|
2658
|
-
* @memberof
|
|
3399
|
+
* @memberof LinkedOrderEntity
|
|
2659
3400
|
*/
|
|
2660
|
-
'
|
|
3401
|
+
'linkedOrderId'?: number;
|
|
2661
3402
|
}
|
|
2662
3403
|
/**
|
|
2663
3404
|
* MFA Required
|
|
@@ -3311,13 +4052,19 @@ export interface OrderSummaryDTO {
|
|
|
3311
4052
|
* @type {string}
|
|
3312
4053
|
* @memberof OrderSummaryDTO
|
|
3313
4054
|
*/
|
|
3314
|
-
'reference'?: string;
|
|
4055
|
+
'reference'?: string | null;
|
|
3315
4056
|
/**
|
|
3316
4057
|
* Invoice Number
|
|
3317
4058
|
* @type {string}
|
|
3318
4059
|
* @memberof OrderSummaryDTO
|
|
3319
4060
|
*/
|
|
3320
4061
|
'invoiceNumber'?: string;
|
|
4062
|
+
/**
|
|
4063
|
+
* Invoice ID
|
|
4064
|
+
* @type {string}
|
|
4065
|
+
* @memberof OrderSummaryDTO
|
|
4066
|
+
*/
|
|
4067
|
+
'invoiceId'?: string | null;
|
|
3321
4068
|
/**
|
|
3322
4069
|
* Date Time
|
|
3323
4070
|
* @type {string}
|
|
@@ -3372,6 +4119,24 @@ export interface OrderSummaryDTO {
|
|
|
3372
4119
|
* @memberof OrderSummaryDTO
|
|
3373
4120
|
*/
|
|
3374
4121
|
'fulfillable'?: boolean | null;
|
|
4122
|
+
/**
|
|
4123
|
+
* Provisioning URL
|
|
4124
|
+
* @type {string}
|
|
4125
|
+
* @memberof OrderSummaryDTO
|
|
4126
|
+
*/
|
|
4127
|
+
'provisioningUrl'?: string | null;
|
|
4128
|
+
/**
|
|
4129
|
+
*
|
|
4130
|
+
* @type {ShippingServiceDTO}
|
|
4131
|
+
* @memberof OrderSummaryDTO
|
|
4132
|
+
*/
|
|
4133
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
4134
|
+
/**
|
|
4135
|
+
* Readonly
|
|
4136
|
+
* @type {boolean}
|
|
4137
|
+
* @memberof OrderSummaryDTO
|
|
4138
|
+
*/
|
|
4139
|
+
'readonly'?: boolean;
|
|
3375
4140
|
}
|
|
3376
4141
|
/**
|
|
3377
4142
|
* Order Totals
|
|
@@ -3421,6 +4186,12 @@ export interface OrderTotalModel {
|
|
|
3421
4186
|
* @memberof OrderTotalModel
|
|
3422
4187
|
*/
|
|
3423
4188
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4189
|
+
/**
|
|
4190
|
+
* Delivery
|
|
4191
|
+
* @type {number}
|
|
4192
|
+
* @memberof OrderTotalModel
|
|
4193
|
+
*/
|
|
4194
|
+
'delivery'?: number | null;
|
|
3424
4195
|
}
|
|
3425
4196
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3426
4197
|
readonly Eur: "EUR";
|
|
@@ -3799,6 +4570,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3799
4570
|
*/
|
|
3800
4571
|
'scopes'?: Array<string>;
|
|
3801
4572
|
}
|
|
4573
|
+
/**
|
|
4574
|
+
*
|
|
4575
|
+
* @export
|
|
4576
|
+
* @interface PostGetProductForCustomerRequest
|
|
4577
|
+
*/
|
|
4578
|
+
export interface PostGetProductForCustomerRequest {
|
|
4579
|
+
/**
|
|
4580
|
+
* Quantity
|
|
4581
|
+
* @type {number}
|
|
4582
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4583
|
+
*/
|
|
4584
|
+
'quantity'?: number | null;
|
|
4585
|
+
/**
|
|
4586
|
+
* 3CX Licence Key
|
|
4587
|
+
* @type {string}
|
|
4588
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4589
|
+
*/
|
|
4590
|
+
'licenceKey'?: string | null;
|
|
4591
|
+
/**
|
|
4592
|
+
* 3CX Hosting
|
|
4593
|
+
* @type {boolean}
|
|
4594
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4595
|
+
*/
|
|
4596
|
+
'hosting'?: boolean | null;
|
|
4597
|
+
}
|
|
3802
4598
|
/**
|
|
3803
4599
|
* Price & Stock List
|
|
3804
4600
|
* @export
|
|
@@ -3930,10 +4726,10 @@ export interface ProductPriceListItemModel {
|
|
|
3930
4726
|
export interface ProductSearchResultsModel {
|
|
3931
4727
|
/**
|
|
3932
4728
|
* Results
|
|
3933
|
-
* @type {Array<
|
|
4729
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3934
4730
|
* @memberof ProductSearchResultsModel
|
|
3935
4731
|
*/
|
|
3936
|
-
'results'?: Array<
|
|
4732
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3937
4733
|
}
|
|
3938
4734
|
/**
|
|
3939
4735
|
* Product Serial Info
|
|
@@ -3969,45 +4765,57 @@ export interface ProductSerialInfoModel {
|
|
|
3969
4765
|
/**
|
|
3970
4766
|
* Product Summary
|
|
3971
4767
|
* @export
|
|
3972
|
-
* @interface
|
|
4768
|
+
* @interface ProductSummaryDTO
|
|
3973
4769
|
*/
|
|
3974
|
-
export interface
|
|
4770
|
+
export interface ProductSummaryDTO {
|
|
3975
4771
|
/**
|
|
3976
4772
|
* SKU
|
|
3977
4773
|
* @type {string}
|
|
3978
|
-
* @memberof
|
|
4774
|
+
* @memberof ProductSummaryDTO
|
|
3979
4775
|
*/
|
|
3980
4776
|
'sku'?: string;
|
|
3981
4777
|
/**
|
|
3982
4778
|
* Title
|
|
3983
4779
|
* @type {string}
|
|
3984
|
-
* @memberof
|
|
4780
|
+
* @memberof ProductSummaryDTO
|
|
3985
4781
|
*/
|
|
3986
4782
|
'title'?: string;
|
|
3987
4783
|
/**
|
|
3988
4784
|
* Stock Quantity
|
|
3989
4785
|
* @type {number}
|
|
3990
|
-
* @memberof
|
|
4786
|
+
* @memberof ProductSummaryDTO
|
|
3991
4787
|
*/
|
|
3992
4788
|
'quantity'?: number | null;
|
|
3993
4789
|
/**
|
|
3994
4790
|
* Stock Product
|
|
3995
4791
|
* @type {boolean}
|
|
3996
|
-
* @memberof
|
|
4792
|
+
* @memberof ProductSummaryDTO
|
|
3997
4793
|
*/
|
|
3998
4794
|
'stockProduct'?: boolean;
|
|
3999
4795
|
/**
|
|
4000
4796
|
* Price
|
|
4001
4797
|
* @type {number}
|
|
4002
|
-
* @memberof
|
|
4798
|
+
* @memberof ProductSummaryDTO
|
|
4003
4799
|
*/
|
|
4004
4800
|
'price'?: number | null;
|
|
4005
4801
|
/**
|
|
4006
4802
|
* Carton Size
|
|
4007
4803
|
* @type {number}
|
|
4008
|
-
* @memberof
|
|
4804
|
+
* @memberof ProductSummaryDTO
|
|
4009
4805
|
*/
|
|
4010
4806
|
'cartonSize'?: number | null;
|
|
4807
|
+
/**
|
|
4808
|
+
* RRP Price
|
|
4809
|
+
* @type {number}
|
|
4810
|
+
* @memberof ProductSummaryDTO
|
|
4811
|
+
*/
|
|
4812
|
+
'rrp'?: number | null;
|
|
4813
|
+
/**
|
|
4814
|
+
*
|
|
4815
|
+
* @type {TcxLicenceDetailsModel}
|
|
4816
|
+
* @memberof ProductSummaryDTO
|
|
4817
|
+
*/
|
|
4818
|
+
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4011
4819
|
}
|
|
4012
4820
|
/**
|
|
4013
4821
|
* PromoCodesEntity
|
|
@@ -4146,37 +4954,37 @@ export interface PromoItemsEntity {
|
|
|
4146
4954
|
/**
|
|
4147
4955
|
* Provisioning Group
|
|
4148
4956
|
* @export
|
|
4149
|
-
* @interface
|
|
4957
|
+
* @interface ProvisioningModel
|
|
4150
4958
|
*/
|
|
4151
|
-
export interface
|
|
4959
|
+
export interface ProvisioningModel {
|
|
4152
4960
|
/**
|
|
4153
4961
|
* Provisioning Group Name
|
|
4154
4962
|
* @type {string}
|
|
4155
|
-
* @memberof
|
|
4963
|
+
* @memberof ProvisioningModel
|
|
4156
4964
|
*/
|
|
4157
4965
|
'groupName'?: string;
|
|
4158
4966
|
/**
|
|
4159
4967
|
* Provisioning URL (Static Provisioning Server)
|
|
4160
4968
|
* @type {string}
|
|
4161
|
-
* @memberof
|
|
4969
|
+
* @memberof ProvisioningModel
|
|
4162
4970
|
*/
|
|
4163
4971
|
'provisioningUrl'?: string;
|
|
4164
4972
|
/**
|
|
4165
4973
|
* Additional Authentication Secret
|
|
4166
4974
|
* @type {string}
|
|
4167
|
-
* @memberof
|
|
4975
|
+
* @memberof ProvisioningModel
|
|
4168
4976
|
*/
|
|
4169
4977
|
'auth'?: string;
|
|
4170
4978
|
/**
|
|
4171
4979
|
* Provisioning Group ID
|
|
4172
4980
|
* @type {number}
|
|
4173
|
-
* @memberof
|
|
4981
|
+
* @memberof ProvisioningModel
|
|
4174
4982
|
*/
|
|
4175
4983
|
'id'?: number;
|
|
4176
4984
|
/**
|
|
4177
4985
|
* Owner ID
|
|
4178
4986
|
* @type {number}
|
|
4179
|
-
* @memberof
|
|
4987
|
+
* @memberof ProvisioningModel
|
|
4180
4988
|
*/
|
|
4181
4989
|
'customerId'?: number;
|
|
4182
4990
|
}
|
|
@@ -4530,7 +5338,7 @@ export interface ShipmentEntity {
|
|
|
4530
5338
|
* @type {string}
|
|
4531
5339
|
* @memberof ShipmentEntity
|
|
4532
5340
|
*/
|
|
4533
|
-
'
|
|
5341
|
+
'dateShipped'?: string;
|
|
4534
5342
|
/**
|
|
4535
5343
|
* requestDate
|
|
4536
5344
|
* @type {string}
|
|
@@ -4581,6 +5389,149 @@ export interface ShipmentItemEntity {
|
|
|
4581
5389
|
*/
|
|
4582
5390
|
'itemId'?: string;
|
|
4583
5391
|
}
|
|
5392
|
+
/**
|
|
5393
|
+
*
|
|
5394
|
+
* @export
|
|
5395
|
+
* @interface ShippingConsignmentModel
|
|
5396
|
+
*/
|
|
5397
|
+
export interface ShippingConsignmentModel {
|
|
5398
|
+
/**
|
|
5399
|
+
*
|
|
5400
|
+
* @type {ShippingServiceModel}
|
|
5401
|
+
* @memberof ShippingConsignmentModel
|
|
5402
|
+
*/
|
|
5403
|
+
'service'?: ShippingServiceModel;
|
|
5404
|
+
/**
|
|
5405
|
+
* ID/Number
|
|
5406
|
+
* @type {string}
|
|
5407
|
+
* @memberof ShippingConsignmentModel
|
|
5408
|
+
*/
|
|
5409
|
+
'id'?: string;
|
|
5410
|
+
/**
|
|
5411
|
+
* Tracking Number
|
|
5412
|
+
* @type {string}
|
|
5413
|
+
* @memberof ShippingConsignmentModel
|
|
5414
|
+
*/
|
|
5415
|
+
'trackingNumber'?: string;
|
|
5416
|
+
/**
|
|
5417
|
+
* Parcels
|
|
5418
|
+
* @type {Array<string>}
|
|
5419
|
+
* @memberof ShippingConsignmentModel
|
|
5420
|
+
*/
|
|
5421
|
+
'parcelIds'?: Array<string>;
|
|
5422
|
+
}
|
|
5423
|
+
/**
|
|
5424
|
+
* Shipping Information
|
|
5425
|
+
* @export
|
|
5426
|
+
* @interface ShippingInformationDTO
|
|
5427
|
+
*/
|
|
5428
|
+
export interface ShippingInformationDTO {
|
|
5429
|
+
/**
|
|
5430
|
+
* Items
|
|
5431
|
+
* @type {Array<BasicItemDTO>}
|
|
5432
|
+
* @memberof ShippingInformationDTO
|
|
5433
|
+
*/
|
|
5434
|
+
'items'?: Array<BasicItemDTO>;
|
|
5435
|
+
/**
|
|
5436
|
+
* Destination Post Code
|
|
5437
|
+
* @type {string}
|
|
5438
|
+
* @memberof ShippingInformationDTO
|
|
5439
|
+
*/
|
|
5440
|
+
'postalCode'?: string;
|
|
5441
|
+
/**
|
|
5442
|
+
* Destination ISO
|
|
5443
|
+
* @type {string}
|
|
5444
|
+
* @memberof ShippingInformationDTO
|
|
5445
|
+
*/
|
|
5446
|
+
'iso'?: string;
|
|
5447
|
+
}
|
|
5448
|
+
/**
|
|
5449
|
+
* Shipping Service
|
|
5450
|
+
* @export
|
|
5451
|
+
* @interface ShippingServiceDTO
|
|
5452
|
+
*/
|
|
5453
|
+
export interface ShippingServiceDTO {
|
|
5454
|
+
/**
|
|
5455
|
+
* Courier
|
|
5456
|
+
* @type {string}
|
|
5457
|
+
* @memberof ShippingServiceDTO
|
|
5458
|
+
*/
|
|
5459
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5460
|
+
/**
|
|
5461
|
+
* Service Name
|
|
5462
|
+
* @type {string}
|
|
5463
|
+
* @memberof ShippingServiceDTO
|
|
5464
|
+
*/
|
|
5465
|
+
'serviceName'?: string;
|
|
5466
|
+
}
|
|
5467
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5468
|
+
readonly Dpd: "DPD";
|
|
5469
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5470
|
+
readonly Pops: "POPS";
|
|
5471
|
+
};
|
|
5472
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5473
|
+
/**
|
|
5474
|
+
* Shipping Service
|
|
5475
|
+
* @export
|
|
5476
|
+
* @interface ShippingServiceModel
|
|
5477
|
+
*/
|
|
5478
|
+
export interface ShippingServiceModel {
|
|
5479
|
+
/**
|
|
5480
|
+
* Courier
|
|
5481
|
+
* @type {string}
|
|
5482
|
+
* @memberof ShippingServiceModel
|
|
5483
|
+
*/
|
|
5484
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5485
|
+
/**
|
|
5486
|
+
* Code
|
|
5487
|
+
* @type {string}
|
|
5488
|
+
* @memberof ShippingServiceModel
|
|
5489
|
+
*/
|
|
5490
|
+
'code'?: string;
|
|
5491
|
+
/**
|
|
5492
|
+
* Name
|
|
5493
|
+
* @type {string}
|
|
5494
|
+
* @memberof ShippingServiceModel
|
|
5495
|
+
*/
|
|
5496
|
+
'name'?: string;
|
|
5497
|
+
/**
|
|
5498
|
+
* Description
|
|
5499
|
+
* @type {string}
|
|
5500
|
+
* @memberof ShippingServiceModel
|
|
5501
|
+
*/
|
|
5502
|
+
'description'?: string;
|
|
5503
|
+
/**
|
|
5504
|
+
* Label
|
|
5505
|
+
* @type {string}
|
|
5506
|
+
* @memberof ShippingServiceModel
|
|
5507
|
+
*/
|
|
5508
|
+
'label'?: string | null;
|
|
5509
|
+
/**
|
|
5510
|
+
* Price
|
|
5511
|
+
* @type {number}
|
|
5512
|
+
* @memberof ShippingServiceModel
|
|
5513
|
+
*/
|
|
5514
|
+
'price'?: number | null;
|
|
5515
|
+
}
|
|
5516
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5517
|
+
readonly Dpd: "DPD";
|
|
5518
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5519
|
+
readonly Pops: "POPS";
|
|
5520
|
+
};
|
|
5521
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5522
|
+
/**
|
|
5523
|
+
*
|
|
5524
|
+
* @export
|
|
5525
|
+
* @interface ShippingServicesModel
|
|
5526
|
+
*/
|
|
5527
|
+
export interface ShippingServicesModel {
|
|
5528
|
+
/**
|
|
5529
|
+
* Services
|
|
5530
|
+
* @type {Array<ShippingServiceModel>}
|
|
5531
|
+
* @memberof ShippingServicesModel
|
|
5532
|
+
*/
|
|
5533
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5534
|
+
}
|
|
4584
5535
|
/**
|
|
4585
5536
|
* Change Response
|
|
4586
5537
|
* @export
|
|
@@ -7400,6 +8351,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7400
8351
|
*/
|
|
7401
8352
|
'secretAccessKey'?: string;
|
|
7402
8353
|
}
|
|
8354
|
+
/**
|
|
8355
|
+
* SBC Data
|
|
8356
|
+
* @export
|
|
8357
|
+
* @interface TcxSbcDTO
|
|
8358
|
+
*/
|
|
8359
|
+
export interface TcxSbcDTO {
|
|
8360
|
+
/**
|
|
8361
|
+
* LAN IP Address
|
|
8362
|
+
* @type {string}
|
|
8363
|
+
* @memberof TcxSbcDTO
|
|
8364
|
+
*/
|
|
8365
|
+
'ipAddress'?: string;
|
|
8366
|
+
/**
|
|
8367
|
+
* LAN Default Gateway
|
|
8368
|
+
* @type {string}
|
|
8369
|
+
* @memberof TcxSbcDTO
|
|
8370
|
+
*/
|
|
8371
|
+
'defaultGateway'?: string;
|
|
8372
|
+
/**
|
|
8373
|
+
* LAN Subnet Mask
|
|
8374
|
+
* @type {string}
|
|
8375
|
+
* @memberof TcxSbcDTO
|
|
8376
|
+
*/
|
|
8377
|
+
'netmask'?: string;
|
|
8378
|
+
/**
|
|
8379
|
+
* DNS
|
|
8380
|
+
* @type {string}
|
|
8381
|
+
* @memberof TcxSbcDTO
|
|
8382
|
+
*/
|
|
8383
|
+
'dns'?: string;
|
|
8384
|
+
/**
|
|
8385
|
+
* 3CX URL
|
|
8386
|
+
* @type {string}
|
|
8387
|
+
* @memberof TcxSbcDTO
|
|
8388
|
+
*/
|
|
8389
|
+
'tcxUrl'?: string;
|
|
8390
|
+
/**
|
|
8391
|
+
* 3CX SBC Key
|
|
8392
|
+
* @type {string}
|
|
8393
|
+
* @memberof TcxSbcDTO
|
|
8394
|
+
*/
|
|
8395
|
+
'tcxKey'?: string;
|
|
8396
|
+
}
|
|
7403
8397
|
/**
|
|
7404
8398
|
* 3CX Wizard SBC
|
|
7405
8399
|
* @export
|
|
@@ -7504,7 +8498,7 @@ export interface TcxSbcEntity {
|
|
|
7504
8498
|
'technicalContact'?: string;
|
|
7505
8499
|
}
|
|
7506
8500
|
/**
|
|
7507
|
-
* 3CX SBC
|
|
8501
|
+
* 3CX Wizard SBC
|
|
7508
8502
|
* @export
|
|
7509
8503
|
* @interface TcxSbcModel
|
|
7510
8504
|
*/
|
|
@@ -8582,6 +9576,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8582
9576
|
* @throws {RequiredError}
|
|
8583
9577
|
*/
|
|
8584
9578
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9579
|
+
/**
|
|
9580
|
+
* Get Account Detailed Summary
|
|
9581
|
+
* @summary Get Account Detailed Summary
|
|
9582
|
+
* @param {number} id Customer ID
|
|
9583
|
+
* @param {*} [options] Override http request option.
|
|
9584
|
+
* @throws {RequiredError}
|
|
9585
|
+
*/
|
|
9586
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8585
9587
|
/**
|
|
8586
9588
|
* Get Accounts
|
|
8587
9589
|
* @summary Get Accounts
|
|
@@ -8647,6 +9649,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8647
9649
|
* @throws {RequiredError}
|
|
8648
9650
|
*/
|
|
8649
9651
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9652
|
+
/**
|
|
9653
|
+
* Get Admin Account
|
|
9654
|
+
* @summary Get Admin Account
|
|
9655
|
+
* @param {*} [options] Override http request option.
|
|
9656
|
+
* @throws {RequiredError}
|
|
9657
|
+
*/
|
|
9658
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8650
9659
|
/**
|
|
8651
9660
|
* Create client credentials
|
|
8652
9661
|
* @summary Create client credentials
|
|
@@ -8727,6 +9736,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8727
9736
|
* @throws {RequiredError}
|
|
8728
9737
|
*/
|
|
8729
9738
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9739
|
+
/**
|
|
9740
|
+
* Get Account Detailed Summary
|
|
9741
|
+
* @summary Get Account Detailed Summary
|
|
9742
|
+
* @param {number} id Customer ID
|
|
9743
|
+
* @param {*} [options] Override http request option.
|
|
9744
|
+
* @throws {RequiredError}
|
|
9745
|
+
*/
|
|
9746
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8730
9747
|
/**
|
|
8731
9748
|
* Get Accounts
|
|
8732
9749
|
* @summary Get Accounts
|
|
@@ -8792,6 +9809,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8792
9809
|
* @throws {RequiredError}
|
|
8793
9810
|
*/
|
|
8794
9811
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9812
|
+
/**
|
|
9813
|
+
* Get Admin Account
|
|
9814
|
+
* @summary Get Admin Account
|
|
9815
|
+
* @param {*} [options] Override http request option.
|
|
9816
|
+
* @throws {RequiredError}
|
|
9817
|
+
*/
|
|
9818
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8795
9819
|
/**
|
|
8796
9820
|
* Create client credentials
|
|
8797
9821
|
* @summary Create client credentials
|
|
@@ -8872,6 +9896,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8872
9896
|
* @throws {RequiredError}
|
|
8873
9897
|
*/
|
|
8874
9898
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9899
|
+
/**
|
|
9900
|
+
* Get Account Detailed Summary
|
|
9901
|
+
* @summary Get Account Detailed Summary
|
|
9902
|
+
* @param {number} id Customer ID
|
|
9903
|
+
* @param {*} [options] Override http request option.
|
|
9904
|
+
* @throws {RequiredError}
|
|
9905
|
+
*/
|
|
9906
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8875
9907
|
/**
|
|
8876
9908
|
* Get Accounts
|
|
8877
9909
|
* @summary Get Accounts
|
|
@@ -8937,6 +9969,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8937
9969
|
* @throws {RequiredError}
|
|
8938
9970
|
*/
|
|
8939
9971
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9972
|
+
/**
|
|
9973
|
+
* Get Admin Account
|
|
9974
|
+
* @summary Get Admin Account
|
|
9975
|
+
* @param {*} [options] Override http request option.
|
|
9976
|
+
* @throws {RequiredError}
|
|
9977
|
+
*/
|
|
9978
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8940
9979
|
/**
|
|
8941
9980
|
* Create client credentials
|
|
8942
9981
|
* @summary Create client credentials
|
|
@@ -9023,6 +10062,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9023
10062
|
* @memberof AccountsApi
|
|
9024
10063
|
*/
|
|
9025
10064
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
10065
|
+
/**
|
|
10066
|
+
* Get Account Detailed Summary
|
|
10067
|
+
* @summary Get Account Detailed Summary
|
|
10068
|
+
* @param {number} id Customer ID
|
|
10069
|
+
* @param {*} [options] Override http request option.
|
|
10070
|
+
* @throws {RequiredError}
|
|
10071
|
+
* @memberof AccountsApi
|
|
10072
|
+
*/
|
|
10073
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
9026
10074
|
/**
|
|
9027
10075
|
* Get Accounts
|
|
9028
10076
|
* @summary Get Accounts
|
|
@@ -9096,6 +10144,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9096
10144
|
* @memberof AccountsApi
|
|
9097
10145
|
*/
|
|
9098
10146
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
10147
|
+
/**
|
|
10148
|
+
* Get Admin Account
|
|
10149
|
+
* @summary Get Admin Account
|
|
10150
|
+
* @param {*} [options] Override http request option.
|
|
10151
|
+
* @throws {RequiredError}
|
|
10152
|
+
* @memberof AccountsApi
|
|
10153
|
+
*/
|
|
10154
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9099
10155
|
/**
|
|
9100
10156
|
* Create client credentials
|
|
9101
10157
|
* @summary Create client credentials
|
|
@@ -9209,14 +10265,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9209
10265
|
* @throws {RequiredError}
|
|
9210
10266
|
*/
|
|
9211
10267
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9212
|
-
/**
|
|
9213
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9214
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9215
|
-
* @param {string} password Desired 3CX web access password
|
|
9216
|
-
* @param {*} [options] Override http request option.
|
|
9217
|
-
* @throws {RequiredError}
|
|
9218
|
-
*/
|
|
9219
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9220
10268
|
/**
|
|
9221
10269
|
* Get Bulk 3CX Licence Details
|
|
9222
10270
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9239,14 +10287,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9239
10287
|
* @throws {RequiredError}
|
|
9240
10288
|
*/
|
|
9241
10289
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9242
|
-
/**
|
|
9243
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9244
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9245
|
-
* @param {string} password Desired 3CX web access password
|
|
9246
|
-
* @param {*} [options] Override http request option.
|
|
9247
|
-
* @throws {RequiredError}
|
|
9248
|
-
*/
|
|
9249
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9250
10290
|
/**
|
|
9251
10291
|
* Get Bulk 3CX Licence Details
|
|
9252
10292
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9269,14 +10309,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9269
10309
|
* @throws {RequiredError}
|
|
9270
10310
|
*/
|
|
9271
10311
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9272
|
-
/**
|
|
9273
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9274
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9275
|
-
* @param {string} password Desired 3CX web access password
|
|
9276
|
-
* @param {*} [options] Override http request option.
|
|
9277
|
-
* @throws {RequiredError}
|
|
9278
|
-
*/
|
|
9279
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9280
10312
|
/**
|
|
9281
10313
|
* Get Bulk 3CX Licence Details
|
|
9282
10314
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9302,15 +10334,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9302
10334
|
* @memberof Class3CXApi
|
|
9303
10335
|
*/
|
|
9304
10336
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9305
|
-
/**
|
|
9306
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9307
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9308
|
-
* @param {string} password Desired 3CX web access password
|
|
9309
|
-
* @param {*} [options] Override http request option.
|
|
9310
|
-
* @throws {RequiredError}
|
|
9311
|
-
* @memberof Class3CXApi
|
|
9312
|
-
*/
|
|
9313
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9314
10337
|
/**
|
|
9315
10338
|
* Get Bulk 3CX Licence Details
|
|
9316
10339
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11853,26 +12876,81 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11853
12876
|
*/
|
|
11854
12877
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11855
12878
|
/**
|
|
11856
|
-
* Delete Orders
|
|
12879
|
+
* Delete Orders
|
|
12880
|
+
* @summary Delete Orders
|
|
12881
|
+
* @param {number} id Order ID
|
|
12882
|
+
* @param {*} [options] Override http request option.
|
|
12883
|
+
* @throws {RequiredError}
|
|
12884
|
+
*/
|
|
12885
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12886
|
+
/**
|
|
12887
|
+
* Get Editable Order (Admin)
|
|
12888
|
+
* @summary Get Editable Order (Admin)
|
|
12889
|
+
* @param {number} id Order ID
|
|
12890
|
+
* @param {*} [options] Override http request option.
|
|
12891
|
+
* @throws {RequiredError}
|
|
12892
|
+
*/
|
|
12893
|
+
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12894
|
+
/**
|
|
12895
|
+
* Get Editable Order
|
|
12896
|
+
* @summary Get Editable Order
|
|
12897
|
+
* @param {number} id Order ID
|
|
12898
|
+
* @param {*} [options] Override http request option.
|
|
12899
|
+
* @throws {RequiredError}
|
|
12900
|
+
*/
|
|
12901
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12902
|
+
/**
|
|
12903
|
+
* Get Orders
|
|
12904
|
+
* @summary Get Orders
|
|
12905
|
+
* @param {number} [pageSize] Number Of Results
|
|
12906
|
+
* @param {number} [page] Page Number
|
|
12907
|
+
* @param {string} [search] Search
|
|
12908
|
+
* @param {boolean | null} [fulfillable] Fulfillable
|
|
12909
|
+
* @param {GetGetOrdersStatusEnum} [status] Status
|
|
12910
|
+
* @param {GetGetOrdersFilterEnum} [filter] Filter
|
|
12911
|
+
* @param {number | null} [customerId] Customer ID
|
|
12912
|
+
* @param {*} [options] Override http request option.
|
|
12913
|
+
* @throws {RequiredError}
|
|
12914
|
+
*/
|
|
12915
|
+
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12916
|
+
/**
|
|
12917
|
+
* Create An Order (Admin)
|
|
12918
|
+
* @summary Create An Order (Admin)
|
|
12919
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12920
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12921
|
+
* @param {*} [options] Override http request option.
|
|
12922
|
+
* @throws {RequiredError}
|
|
12923
|
+
*/
|
|
12924
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12925
|
+
/**
|
|
12926
|
+
* Create An Order
|
|
12927
|
+
* @summary Create An Order
|
|
12928
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12929
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12930
|
+
* @param {*} [options] Override http request option.
|
|
12931
|
+
* @throws {RequiredError}
|
|
12932
|
+
*/
|
|
12933
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12934
|
+
/**
|
|
12935
|
+
* Update An Order (Admin)
|
|
12936
|
+
* @summary Update An Order (Admin)
|
|
11857
12937
|
* @param {number} id Order ID
|
|
12938
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12939
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
11858
12940
|
* @param {*} [options] Override http request option.
|
|
11859
12941
|
* @throws {RequiredError}
|
|
11860
12942
|
*/
|
|
11861
|
-
|
|
12943
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11862
12944
|
/**
|
|
11863
|
-
*
|
|
11864
|
-
* @summary
|
|
11865
|
-
* @param {number}
|
|
11866
|
-
* @param {
|
|
11867
|
-
* @param {
|
|
11868
|
-
* @param {boolean | null} [fulfillable] Fulfillable
|
|
11869
|
-
* @param {GetGetOrdersStatusEnum} [status] Status
|
|
11870
|
-
* @param {GetGetOrdersFilterEnum} [filter] Filter
|
|
11871
|
-
* @param {number | null} [customerId] Customer ID
|
|
12945
|
+
* Update An Order
|
|
12946
|
+
* @summary Update An Order
|
|
12947
|
+
* @param {number} id Order ID
|
|
12948
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12949
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
11872
12950
|
* @param {*} [options] Override http request option.
|
|
11873
12951
|
* @throws {RequiredError}
|
|
11874
12952
|
*/
|
|
11875
|
-
|
|
12953
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11876
12954
|
};
|
|
11877
12955
|
/**
|
|
11878
12956
|
* OrdersApi - functional programming interface
|
|
@@ -11881,11 +12959,28 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11881
12959
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11882
12960
|
/**
|
|
11883
12961
|
* Delete Orders
|
|
12962
|
+
* @summary Delete Orders
|
|
12963
|
+
* @param {number} id Order ID
|
|
12964
|
+
* @param {*} [options] Override http request option.
|
|
12965
|
+
* @throws {RequiredError}
|
|
12966
|
+
*/
|
|
12967
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12968
|
+
/**
|
|
12969
|
+
* Get Editable Order (Admin)
|
|
12970
|
+
* @summary Get Editable Order (Admin)
|
|
12971
|
+
* @param {number} id Order ID
|
|
12972
|
+
* @param {*} [options] Override http request option.
|
|
12973
|
+
* @throws {RequiredError}
|
|
12974
|
+
*/
|
|
12975
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12976
|
+
/**
|
|
12977
|
+
* Get Editable Order
|
|
12978
|
+
* @summary Get Editable Order
|
|
11884
12979
|
* @param {number} id Order ID
|
|
11885
12980
|
* @param {*} [options] Override http request option.
|
|
11886
12981
|
* @throws {RequiredError}
|
|
11887
12982
|
*/
|
|
11888
|
-
|
|
12983
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
11889
12984
|
/**
|
|
11890
12985
|
* Get Orders
|
|
11891
12986
|
* @summary Get Orders
|
|
@@ -11900,6 +12995,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11900
12995
|
* @throws {RequiredError}
|
|
11901
12996
|
*/
|
|
11902
12997
|
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>>;
|
|
12998
|
+
/**
|
|
12999
|
+
* Create An Order (Admin)
|
|
13000
|
+
* @summary Create An Order (Admin)
|
|
13001
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13002
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13003
|
+
* @param {*} [options] Override http request option.
|
|
13004
|
+
* @throws {RequiredError}
|
|
13005
|
+
*/
|
|
13006
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
13007
|
+
/**
|
|
13008
|
+
* Create An Order
|
|
13009
|
+
* @summary Create An Order
|
|
13010
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13011
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13012
|
+
* @param {*} [options] Override http request option.
|
|
13013
|
+
* @throws {RequiredError}
|
|
13014
|
+
*/
|
|
13015
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
13016
|
+
/**
|
|
13017
|
+
* Update An Order (Admin)
|
|
13018
|
+
* @summary Update An Order (Admin)
|
|
13019
|
+
* @param {number} id Order ID
|
|
13020
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13021
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13022
|
+
* @param {*} [options] Override http request option.
|
|
13023
|
+
* @throws {RequiredError}
|
|
13024
|
+
*/
|
|
13025
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
13026
|
+
/**
|
|
13027
|
+
* Update An Order
|
|
13028
|
+
* @summary Update An Order
|
|
13029
|
+
* @param {number} id Order ID
|
|
13030
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13031
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13032
|
+
* @param {*} [options] Override http request option.
|
|
13033
|
+
* @throws {RequiredError}
|
|
13034
|
+
*/
|
|
13035
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11903
13036
|
};
|
|
11904
13037
|
/**
|
|
11905
13038
|
* OrdersApi - factory interface
|
|
@@ -11908,11 +13041,28 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11908
13041
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11909
13042
|
/**
|
|
11910
13043
|
* Delete Orders
|
|
13044
|
+
* @summary Delete Orders
|
|
13045
|
+
* @param {number} id Order ID
|
|
13046
|
+
* @param {*} [options] Override http request option.
|
|
13047
|
+
* @throws {RequiredError}
|
|
13048
|
+
*/
|
|
13049
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13050
|
+
/**
|
|
13051
|
+
* Get Editable Order (Admin)
|
|
13052
|
+
* @summary Get Editable Order (Admin)
|
|
13053
|
+
* @param {number} id Order ID
|
|
13054
|
+
* @param {*} [options] Override http request option.
|
|
13055
|
+
* @throws {RequiredError}
|
|
13056
|
+
*/
|
|
13057
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
13058
|
+
/**
|
|
13059
|
+
* Get Editable Order
|
|
13060
|
+
* @summary Get Editable Order
|
|
11911
13061
|
* @param {number} id Order ID
|
|
11912
13062
|
* @param {*} [options] Override http request option.
|
|
11913
13063
|
* @throws {RequiredError}
|
|
11914
13064
|
*/
|
|
11915
|
-
|
|
13065
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
11916
13066
|
/**
|
|
11917
13067
|
* Get Orders
|
|
11918
13068
|
* @summary Get Orders
|
|
@@ -11927,6 +13077,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11927
13077
|
* @throws {RequiredError}
|
|
11928
13078
|
*/
|
|
11929
13079
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
13080
|
+
/**
|
|
13081
|
+
* Create An Order (Admin)
|
|
13082
|
+
* @summary Create An Order (Admin)
|
|
13083
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13084
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13085
|
+
* @param {*} [options] Override http request option.
|
|
13086
|
+
* @throws {RequiredError}
|
|
13087
|
+
*/
|
|
13088
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13089
|
+
/**
|
|
13090
|
+
* Create An Order
|
|
13091
|
+
* @summary Create An Order
|
|
13092
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13093
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13094
|
+
* @param {*} [options] Override http request option.
|
|
13095
|
+
* @throws {RequiredError}
|
|
13096
|
+
*/
|
|
13097
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13098
|
+
/**
|
|
13099
|
+
* Update An Order (Admin)
|
|
13100
|
+
* @summary Update An Order (Admin)
|
|
13101
|
+
* @param {number} id Order ID
|
|
13102
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13103
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13104
|
+
* @param {*} [options] Override http request option.
|
|
13105
|
+
* @throws {RequiredError}
|
|
13106
|
+
*/
|
|
13107
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13108
|
+
/**
|
|
13109
|
+
* Update An Order
|
|
13110
|
+
* @summary Update An Order
|
|
13111
|
+
* @param {number} id Order ID
|
|
13112
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13113
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13114
|
+
* @param {*} [options] Override http request option.
|
|
13115
|
+
* @throws {RequiredError}
|
|
13116
|
+
*/
|
|
13117
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11930
13118
|
};
|
|
11931
13119
|
/**
|
|
11932
13120
|
* OrdersApi - object-oriented interface
|
|
@@ -11937,12 +13125,31 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11937
13125
|
export declare class OrdersApi extends BaseAPI {
|
|
11938
13126
|
/**
|
|
11939
13127
|
* Delete Orders
|
|
13128
|
+
* @summary Delete Orders
|
|
13129
|
+
* @param {number} id Order ID
|
|
13130
|
+
* @param {*} [options] Override http request option.
|
|
13131
|
+
* @throws {RequiredError}
|
|
13132
|
+
* @memberof OrdersApi
|
|
13133
|
+
*/
|
|
13134
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13135
|
+
/**
|
|
13136
|
+
* Get Editable Order (Admin)
|
|
13137
|
+
* @summary Get Editable Order (Admin)
|
|
13138
|
+
* @param {number} id Order ID
|
|
13139
|
+
* @param {*} [options] Override http request option.
|
|
13140
|
+
* @throws {RequiredError}
|
|
13141
|
+
* @memberof OrdersApi
|
|
13142
|
+
*/
|
|
13143
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
13144
|
+
/**
|
|
13145
|
+
* Get Editable Order
|
|
13146
|
+
* @summary Get Editable Order
|
|
11940
13147
|
* @param {number} id Order ID
|
|
11941
13148
|
* @param {*} [options] Override http request option.
|
|
11942
13149
|
* @throws {RequiredError}
|
|
11943
13150
|
* @memberof OrdersApi
|
|
11944
13151
|
*/
|
|
11945
|
-
|
|
13152
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
11946
13153
|
/**
|
|
11947
13154
|
* Get Orders
|
|
11948
13155
|
* @summary Get Orders
|
|
@@ -11958,6 +13165,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11958
13165
|
* @memberof OrdersApi
|
|
11959
13166
|
*/
|
|
11960
13167
|
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, {}>>;
|
|
13168
|
+
/**
|
|
13169
|
+
* Create An Order (Admin)
|
|
13170
|
+
* @summary Create An Order (Admin)
|
|
13171
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13172
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13173
|
+
* @param {*} [options] Override http request option.
|
|
13174
|
+
* @throws {RequiredError}
|
|
13175
|
+
* @memberof OrdersApi
|
|
13176
|
+
*/
|
|
13177
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13178
|
+
/**
|
|
13179
|
+
* Create An Order
|
|
13180
|
+
* @summary Create An Order
|
|
13181
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13182
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13183
|
+
* @param {*} [options] Override http request option.
|
|
13184
|
+
* @throws {RequiredError}
|
|
13185
|
+
* @memberof OrdersApi
|
|
13186
|
+
*/
|
|
13187
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13188
|
+
/**
|
|
13189
|
+
* Update An Order (Admin)
|
|
13190
|
+
* @summary Update An Order (Admin)
|
|
13191
|
+
* @param {number} id Order ID
|
|
13192
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13193
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13194
|
+
* @param {*} [options] Override http request option.
|
|
13195
|
+
* @throws {RequiredError}
|
|
13196
|
+
* @memberof OrdersApi
|
|
13197
|
+
*/
|
|
13198
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13199
|
+
/**
|
|
13200
|
+
* Update An Order
|
|
13201
|
+
* @summary Update An Order
|
|
13202
|
+
* @param {number} id Order ID
|
|
13203
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13204
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13205
|
+
* @param {*} [options] Override http request option.
|
|
13206
|
+
* @throws {RequiredError}
|
|
13207
|
+
* @memberof OrdersApi
|
|
13208
|
+
*/
|
|
13209
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11961
13210
|
}
|
|
11962
13211
|
/**
|
|
11963
13212
|
* @export
|
|
@@ -12213,13 +13462,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12213
13462
|
* @throws {RequiredError}
|
|
12214
13463
|
*/
|
|
12215
13464
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12216
|
-
/**
|
|
12217
|
-
* Get Customer Price Lists
|
|
12218
|
-
* @summary Get Customer Price Lists
|
|
12219
|
-
* @param {*} [options] Override http request option.
|
|
12220
|
-
* @throws {RequiredError}
|
|
12221
|
-
*/
|
|
12222
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12223
13465
|
/**
|
|
12224
13466
|
* Get Current Stock & Pricing
|
|
12225
13467
|
* @summary Get Current Stock & Pricing
|
|
@@ -12232,13 +13474,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12232
13474
|
/**
|
|
12233
13475
|
* Get Products
|
|
12234
13476
|
* @summary Get Products
|
|
12235
|
-
* @param {number} [pageSize] Number Of Results
|
|
12236
|
-
* @param {number} [page] Page Number
|
|
12237
|
-
* @param {string} [search] Search
|
|
12238
13477
|
* @param {*} [options] Override http request option.
|
|
12239
13478
|
* @throws {RequiredError}
|
|
12240
13479
|
*/
|
|
12241
|
-
getGetProducts: (
|
|
13480
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12242
13481
|
/**
|
|
12243
13482
|
* Get Current Stock & Pricing
|
|
12244
13483
|
* @summary Get Current Stock & Pricing
|
|
@@ -12253,6 +13492,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12253
13492
|
* @throws {RequiredError}
|
|
12254
13493
|
*/
|
|
12255
13494
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13495
|
+
/**
|
|
13496
|
+
* Search Products
|
|
13497
|
+
* @summary Search Products
|
|
13498
|
+
* @param {number} [pageSize] Number Of Results
|
|
13499
|
+
* @param {number} [page] Page Number
|
|
13500
|
+
* @param {string} [search] Search
|
|
13501
|
+
* @param {*} [options] Override http request option.
|
|
13502
|
+
* @throws {RequiredError}
|
|
13503
|
+
*/
|
|
13504
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13505
|
+
/**
|
|
13506
|
+
* Get Product
|
|
13507
|
+
* @summary Get Product
|
|
13508
|
+
* @param {string} sku Product SKU
|
|
13509
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13510
|
+
* @param {*} [options] Override http request option.
|
|
13511
|
+
* @throws {RequiredError}
|
|
13512
|
+
*/
|
|
13513
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13514
|
+
/**
|
|
13515
|
+
* Get Product For Customer
|
|
13516
|
+
* @summary Get Product For Customer
|
|
13517
|
+
* @param {number} customerId Customer ID
|
|
13518
|
+
* @param {string} sku Product SKU
|
|
13519
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13520
|
+
* @param {*} [options] Override http request option.
|
|
13521
|
+
* @throws {RequiredError}
|
|
13522
|
+
*/
|
|
13523
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12256
13524
|
};
|
|
12257
13525
|
/**
|
|
12258
13526
|
* ProductsApi - functional programming interface
|
|
@@ -12266,13 +13534,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12266
13534
|
* @throws {RequiredError}
|
|
12267
13535
|
*/
|
|
12268
13536
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12269
|
-
/**
|
|
12270
|
-
* Get Customer Price Lists
|
|
12271
|
-
* @summary Get Customer Price Lists
|
|
12272
|
-
* @param {*} [options] Override http request option.
|
|
12273
|
-
* @throws {RequiredError}
|
|
12274
|
-
*/
|
|
12275
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12276
13537
|
/**
|
|
12277
13538
|
* Get Current Stock & Pricing
|
|
12278
13539
|
* @summary Get Current Stock & Pricing
|
|
@@ -12285,13 +13546,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12285
13546
|
/**
|
|
12286
13547
|
* Get Products
|
|
12287
13548
|
* @summary Get Products
|
|
12288
|
-
* @param {number} [pageSize] Number Of Results
|
|
12289
|
-
* @param {number} [page] Page Number
|
|
12290
|
-
* @param {string} [search] Search
|
|
12291
13549
|
* @param {*} [options] Override http request option.
|
|
12292
13550
|
* @throws {RequiredError}
|
|
12293
13551
|
*/
|
|
12294
|
-
getGetProducts(
|
|
13552
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12295
13553
|
/**
|
|
12296
13554
|
* Get Current Stock & Pricing
|
|
12297
13555
|
* @summary Get Current Stock & Pricing
|
|
@@ -12306,6 +13564,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12306
13564
|
* @throws {RequiredError}
|
|
12307
13565
|
*/
|
|
12308
13566
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13567
|
+
/**
|
|
13568
|
+
* Search Products
|
|
13569
|
+
* @summary Search Products
|
|
13570
|
+
* @param {number} [pageSize] Number Of Results
|
|
13571
|
+
* @param {number} [page] Page Number
|
|
13572
|
+
* @param {string} [search] Search
|
|
13573
|
+
* @param {*} [options] Override http request option.
|
|
13574
|
+
* @throws {RequiredError}
|
|
13575
|
+
*/
|
|
13576
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13577
|
+
/**
|
|
13578
|
+
* Get Product
|
|
13579
|
+
* @summary Get Product
|
|
13580
|
+
* @param {string} sku Product SKU
|
|
13581
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13582
|
+
* @param {*} [options] Override http request option.
|
|
13583
|
+
* @throws {RequiredError}
|
|
13584
|
+
*/
|
|
13585
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13586
|
+
/**
|
|
13587
|
+
* Get Product For Customer
|
|
13588
|
+
* @summary Get Product For Customer
|
|
13589
|
+
* @param {number} customerId Customer ID
|
|
13590
|
+
* @param {string} sku Product SKU
|
|
13591
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13592
|
+
* @param {*} [options] Override http request option.
|
|
13593
|
+
* @throws {RequiredError}
|
|
13594
|
+
*/
|
|
13595
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12309
13596
|
};
|
|
12310
13597
|
/**
|
|
12311
13598
|
* ProductsApi - factory interface
|
|
@@ -12319,13 +13606,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12319
13606
|
* @throws {RequiredError}
|
|
12320
13607
|
*/
|
|
12321
13608
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12322
|
-
/**
|
|
12323
|
-
* Get Customer Price Lists
|
|
12324
|
-
* @summary Get Customer Price Lists
|
|
12325
|
-
* @param {*} [options] Override http request option.
|
|
12326
|
-
* @throws {RequiredError}
|
|
12327
|
-
*/
|
|
12328
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12329
13609
|
/**
|
|
12330
13610
|
* Get Current Stock & Pricing
|
|
12331
13611
|
* @summary Get Current Stock & Pricing
|
|
@@ -12338,13 +13618,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12338
13618
|
/**
|
|
12339
13619
|
* Get Products
|
|
12340
13620
|
* @summary Get Products
|
|
12341
|
-
* @param {number} [pageSize] Number Of Results
|
|
12342
|
-
* @param {number} [page] Page Number
|
|
12343
|
-
* @param {string} [search] Search
|
|
12344
13621
|
* @param {*} [options] Override http request option.
|
|
12345
13622
|
* @throws {RequiredError}
|
|
12346
13623
|
*/
|
|
12347
|
-
getGetProducts(
|
|
13624
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12348
13625
|
/**
|
|
12349
13626
|
* Get Current Stock & Pricing
|
|
12350
13627
|
* @summary Get Current Stock & Pricing
|
|
@@ -12359,6 +13636,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12359
13636
|
* @throws {RequiredError}
|
|
12360
13637
|
*/
|
|
12361
13638
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13639
|
+
/**
|
|
13640
|
+
* Search Products
|
|
13641
|
+
* @summary Search Products
|
|
13642
|
+
* @param {number} [pageSize] Number Of Results
|
|
13643
|
+
* @param {number} [page] Page Number
|
|
13644
|
+
* @param {string} [search] Search
|
|
13645
|
+
* @param {*} [options] Override http request option.
|
|
13646
|
+
* @throws {RequiredError}
|
|
13647
|
+
*/
|
|
13648
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13649
|
+
/**
|
|
13650
|
+
* Get Product
|
|
13651
|
+
* @summary Get Product
|
|
13652
|
+
* @param {string} sku Product SKU
|
|
13653
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13654
|
+
* @param {*} [options] Override http request option.
|
|
13655
|
+
* @throws {RequiredError}
|
|
13656
|
+
*/
|
|
13657
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13658
|
+
/**
|
|
13659
|
+
* Get Product For Customer
|
|
13660
|
+
* @summary Get Product For Customer
|
|
13661
|
+
* @param {number} customerId Customer ID
|
|
13662
|
+
* @param {string} sku Product SKU
|
|
13663
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13664
|
+
* @param {*} [options] Override http request option.
|
|
13665
|
+
* @throws {RequiredError}
|
|
13666
|
+
*/
|
|
13667
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12362
13668
|
};
|
|
12363
13669
|
/**
|
|
12364
13670
|
* ProductsApi - object-oriented interface
|
|
@@ -12375,14 +13681,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12375
13681
|
* @memberof ProductsApi
|
|
12376
13682
|
*/
|
|
12377
13683
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12378
|
-
/**
|
|
12379
|
-
* Get Customer Price Lists
|
|
12380
|
-
* @summary Get Customer Price Lists
|
|
12381
|
-
* @param {*} [options] Override http request option.
|
|
12382
|
-
* @throws {RequiredError}
|
|
12383
|
-
* @memberof ProductsApi
|
|
12384
|
-
*/
|
|
12385
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12386
13684
|
/**
|
|
12387
13685
|
* Get Current Stock & Pricing
|
|
12388
13686
|
* @summary Get Current Stock & Pricing
|
|
@@ -12396,14 +13694,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12396
13694
|
/**
|
|
12397
13695
|
* Get Products
|
|
12398
13696
|
* @summary Get Products
|
|
12399
|
-
* @param {number} [pageSize] Number Of Results
|
|
12400
|
-
* @param {number} [page] Page Number
|
|
12401
|
-
* @param {string} [search] Search
|
|
12402
13697
|
* @param {*} [options] Override http request option.
|
|
12403
13698
|
* @throws {RequiredError}
|
|
12404
13699
|
* @memberof ProductsApi
|
|
12405
13700
|
*/
|
|
12406
|
-
getGetProducts(
|
|
13701
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12407
13702
|
/**
|
|
12408
13703
|
* Get Current Stock & Pricing
|
|
12409
13704
|
* @summary Get Current Stock & Pricing
|
|
@@ -12420,6 +13715,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12420
13715
|
* @memberof ProductsApi
|
|
12421
13716
|
*/
|
|
12422
13717
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13718
|
+
/**
|
|
13719
|
+
* Search Products
|
|
13720
|
+
* @summary Search Products
|
|
13721
|
+
* @param {number} [pageSize] Number Of Results
|
|
13722
|
+
* @param {number} [page] Page Number
|
|
13723
|
+
* @param {string} [search] Search
|
|
13724
|
+
* @param {*} [options] Override http request option.
|
|
13725
|
+
* @throws {RequiredError}
|
|
13726
|
+
* @memberof ProductsApi
|
|
13727
|
+
*/
|
|
13728
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13729
|
+
/**
|
|
13730
|
+
* Get Product
|
|
13731
|
+
* @summary Get Product
|
|
13732
|
+
* @param {string} sku Product SKU
|
|
13733
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13734
|
+
* @param {*} [options] Override http request option.
|
|
13735
|
+
* @throws {RequiredError}
|
|
13736
|
+
* @memberof ProductsApi
|
|
13737
|
+
*/
|
|
13738
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13739
|
+
/**
|
|
13740
|
+
* Get Product For Customer
|
|
13741
|
+
* @summary Get Product For Customer
|
|
13742
|
+
* @param {number} customerId Customer ID
|
|
13743
|
+
* @param {string} sku Product SKU
|
|
13744
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13745
|
+
* @param {*} [options] Override http request option.
|
|
13746
|
+
* @throws {RequiredError}
|
|
13747
|
+
* @memberof ProductsApi
|
|
13748
|
+
*/
|
|
13749
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12423
13750
|
}
|
|
12424
13751
|
/**
|
|
12425
13752
|
* @export
|
|
@@ -12540,7 +13867,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12540
13867
|
* @param {*} [options] Override http request option.
|
|
12541
13868
|
* @throws {RequiredError}
|
|
12542
13869
|
*/
|
|
12543
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13870
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12544
13871
|
/**
|
|
12545
13872
|
* Create a Fanvil provisioning group
|
|
12546
13873
|
* @summary Add group to DB and FDPS
|
|
@@ -12548,7 +13875,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12548
13875
|
* @param {*} [options] Override http request option.
|
|
12549
13876
|
* @throws {RequiredError}
|
|
12550
13877
|
*/
|
|
12551
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13878
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12552
13879
|
/**
|
|
12553
13880
|
* Add MAC address to DB and FDPS group
|
|
12554
13881
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12605,7 +13932,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12605
13932
|
* @param {*} [options] Override http request option.
|
|
12606
13933
|
* @throws {RequiredError}
|
|
12607
13934
|
*/
|
|
12608
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13935
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12609
13936
|
/**
|
|
12610
13937
|
* Create a Fanvil provisioning group
|
|
12611
13938
|
* @summary Add group to DB and FDPS
|
|
@@ -12613,7 +13940,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12613
13940
|
* @param {*} [options] Override http request option.
|
|
12614
13941
|
* @throws {RequiredError}
|
|
12615
13942
|
*/
|
|
12616
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13943
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12617
13944
|
/**
|
|
12618
13945
|
* Add MAC address to DB and FDPS group
|
|
12619
13946
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12677,7 +14004,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12677
14004
|
* @throws {RequiredError}
|
|
12678
14005
|
* @memberof ProvisioningApi
|
|
12679
14006
|
*/
|
|
12680
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14007
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12681
14008
|
/**
|
|
12682
14009
|
* Create a Fanvil provisioning group
|
|
12683
14010
|
* @summary Add group to DB and FDPS
|
|
@@ -12686,7 +14013,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12686
14013
|
* @throws {RequiredError}
|
|
12687
14014
|
* @memberof ProvisioningApi
|
|
12688
14015
|
*/
|
|
12689
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14016
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12690
14017
|
/**
|
|
12691
14018
|
* Add MAC address to DB and FDPS group
|
|
12692
14019
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13561,6 +14888,102 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13561
14888
|
*/
|
|
13562
14889
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13563
14890
|
}
|
|
14891
|
+
/**
|
|
14892
|
+
* ShippingApi - axios parameter creator
|
|
14893
|
+
* @export
|
|
14894
|
+
*/
|
|
14895
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14896
|
+
/**
|
|
14897
|
+
* Get Shipping Services (Admin)
|
|
14898
|
+
* @summary Get Shipping Services
|
|
14899
|
+
* @param {number} customerId Customer ID
|
|
14900
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14901
|
+
* @param {*} [options] Override http request option.
|
|
14902
|
+
* @throws {RequiredError}
|
|
14903
|
+
*/
|
|
14904
|
+
postGetAdminShippingServices: (customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14905
|
+
/**
|
|
14906
|
+
* Get Shipping Services
|
|
14907
|
+
* @summary Get Shipping Services
|
|
14908
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14909
|
+
* @param {*} [options] Override http request option.
|
|
14910
|
+
* @throws {RequiredError}
|
|
14911
|
+
*/
|
|
14912
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14913
|
+
};
|
|
14914
|
+
/**
|
|
14915
|
+
* ShippingApi - functional programming interface
|
|
14916
|
+
* @export
|
|
14917
|
+
*/
|
|
14918
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14919
|
+
/**
|
|
14920
|
+
* Get Shipping Services (Admin)
|
|
14921
|
+
* @summary Get Shipping Services
|
|
14922
|
+
* @param {number} customerId Customer ID
|
|
14923
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14924
|
+
* @param {*} [options] Override http request option.
|
|
14925
|
+
* @throws {RequiredError}
|
|
14926
|
+
*/
|
|
14927
|
+
postGetAdminShippingServices(customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14928
|
+
/**
|
|
14929
|
+
* Get Shipping Services
|
|
14930
|
+
* @summary Get Shipping Services
|
|
14931
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14932
|
+
* @param {*} [options] Override http request option.
|
|
14933
|
+
* @throws {RequiredError}
|
|
14934
|
+
*/
|
|
14935
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14936
|
+
};
|
|
14937
|
+
/**
|
|
14938
|
+
* ShippingApi - factory interface
|
|
14939
|
+
* @export
|
|
14940
|
+
*/
|
|
14941
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14942
|
+
/**
|
|
14943
|
+
* Get Shipping Services (Admin)
|
|
14944
|
+
* @summary Get Shipping Services
|
|
14945
|
+
* @param {number} customerId Customer ID
|
|
14946
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14947
|
+
* @param {*} [options] Override http request option.
|
|
14948
|
+
* @throws {RequiredError}
|
|
14949
|
+
*/
|
|
14950
|
+
postGetAdminShippingServices(customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14951
|
+
/**
|
|
14952
|
+
* Get Shipping Services
|
|
14953
|
+
* @summary Get Shipping Services
|
|
14954
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14955
|
+
* @param {*} [options] Override http request option.
|
|
14956
|
+
* @throws {RequiredError}
|
|
14957
|
+
*/
|
|
14958
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14959
|
+
};
|
|
14960
|
+
/**
|
|
14961
|
+
* ShippingApi - object-oriented interface
|
|
14962
|
+
* @export
|
|
14963
|
+
* @class ShippingApi
|
|
14964
|
+
* @extends {BaseAPI}
|
|
14965
|
+
*/
|
|
14966
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14967
|
+
/**
|
|
14968
|
+
* Get Shipping Services (Admin)
|
|
14969
|
+
* @summary Get Shipping Services
|
|
14970
|
+
* @param {number} customerId Customer ID
|
|
14971
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14972
|
+
* @param {*} [options] Override http request option.
|
|
14973
|
+
* @throws {RequiredError}
|
|
14974
|
+
* @memberof ShippingApi
|
|
14975
|
+
*/
|
|
14976
|
+
postGetAdminShippingServices(customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14977
|
+
/**
|
|
14978
|
+
* Get Shipping Services
|
|
14979
|
+
* @summary Get Shipping Services
|
|
14980
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14981
|
+
* @param {*} [options] Override http request option.
|
|
14982
|
+
* @throws {RequiredError}
|
|
14983
|
+
* @memberof ShippingApi
|
|
14984
|
+
*/
|
|
14985
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14986
|
+
}
|
|
13564
14987
|
/**
|
|
13565
14988
|
* StockManagementApi - axios parameter creator
|
|
13566
14989
|
* @export
|
|
@@ -13890,7 +15313,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13890
15313
|
* @param {*} [options] Override http request option.
|
|
13891
15314
|
* @throws {RequiredError}
|
|
13892
15315
|
*/
|
|
13893
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15316
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13894
15317
|
/**
|
|
13895
15318
|
* Get Stock Order Supplier Invoice
|
|
13896
15319
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14105,7 +15528,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14105
15528
|
* @param {*} [options] Override http request option.
|
|
14106
15529
|
* @throws {RequiredError}
|
|
14107
15530
|
*/
|
|
14108
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15531
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14109
15532
|
/**
|
|
14110
15533
|
* Get Stock Order Supplier Invoice
|
|
14111
15534
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14335,7 +15758,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14335
15758
|
* @throws {RequiredError}
|
|
14336
15759
|
* @memberof StockManagementApi
|
|
14337
15760
|
*/
|
|
14338
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15761
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14339
15762
|
/**
|
|
14340
15763
|
* Get Stock Order Supplier Invoice
|
|
14341
15764
|
* @summary Get Stock Order Supplier Invoice
|