yellowgrid-api-ts 3.1.15 → 3.1.17-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 +39 -8
- package/api.ts +2183 -289
- 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 +1609 -174
- package/dist/api.js +1248 -215
- 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 +359 -7
- 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/docs/UserEntity.md +4 -0
- 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
|
|
@@ -1115,6 +1460,73 @@ export interface ConversationModel {
|
|
|
1115
1460
|
*/
|
|
1116
1461
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
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;
|
|
1529
|
+
}
|
|
1118
1530
|
/**
|
|
1119
1531
|
* Credit Account
|
|
1120
1532
|
* @export
|
|
@@ -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
|
*/
|
|
@@ -8478,6 +9472,18 @@ export interface UserEntity {
|
|
|
8478
9472
|
* @memberof UserEntity
|
|
8479
9473
|
*/
|
|
8480
9474
|
'image'?: string;
|
|
9475
|
+
/**
|
|
9476
|
+
* primaryHex
|
|
9477
|
+
* @type {number}
|
|
9478
|
+
* @memberof UserEntity
|
|
9479
|
+
*/
|
|
9480
|
+
'primaryHex'?: number | null;
|
|
9481
|
+
/**
|
|
9482
|
+
* secondaryHex
|
|
9483
|
+
* @type {number}
|
|
9484
|
+
* @memberof UserEntity
|
|
9485
|
+
*/
|
|
9486
|
+
'secondaryHex'?: number | null;
|
|
8481
9487
|
}
|
|
8482
9488
|
/**
|
|
8483
9489
|
* XeroLogEntity
|
|
@@ -8582,6 +9588,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8582
9588
|
* @throws {RequiredError}
|
|
8583
9589
|
*/
|
|
8584
9590
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9591
|
+
/**
|
|
9592
|
+
* Get Account Detailed Summary
|
|
9593
|
+
* @summary Get Account Detailed Summary
|
|
9594
|
+
* @param {number} id Customer ID
|
|
9595
|
+
* @param {*} [options] Override http request option.
|
|
9596
|
+
* @throws {RequiredError}
|
|
9597
|
+
*/
|
|
9598
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8585
9599
|
/**
|
|
8586
9600
|
* Get Accounts
|
|
8587
9601
|
* @summary Get Accounts
|
|
@@ -8647,6 +9661,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8647
9661
|
* @throws {RequiredError}
|
|
8648
9662
|
*/
|
|
8649
9663
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9664
|
+
/**
|
|
9665
|
+
* Get Admin Account
|
|
9666
|
+
* @summary Get Admin Account
|
|
9667
|
+
* @param {*} [options] Override http request option.
|
|
9668
|
+
* @throws {RequiredError}
|
|
9669
|
+
*/
|
|
9670
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8650
9671
|
/**
|
|
8651
9672
|
* Create client credentials
|
|
8652
9673
|
* @summary Create client credentials
|
|
@@ -8727,6 +9748,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8727
9748
|
* @throws {RequiredError}
|
|
8728
9749
|
*/
|
|
8729
9750
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9751
|
+
/**
|
|
9752
|
+
* Get Account Detailed Summary
|
|
9753
|
+
* @summary Get Account Detailed Summary
|
|
9754
|
+
* @param {number} id Customer ID
|
|
9755
|
+
* @param {*} [options] Override http request option.
|
|
9756
|
+
* @throws {RequiredError}
|
|
9757
|
+
*/
|
|
9758
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8730
9759
|
/**
|
|
8731
9760
|
* Get Accounts
|
|
8732
9761
|
* @summary Get Accounts
|
|
@@ -8792,6 +9821,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8792
9821
|
* @throws {RequiredError}
|
|
8793
9822
|
*/
|
|
8794
9823
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9824
|
+
/**
|
|
9825
|
+
* Get Admin Account
|
|
9826
|
+
* @summary Get Admin Account
|
|
9827
|
+
* @param {*} [options] Override http request option.
|
|
9828
|
+
* @throws {RequiredError}
|
|
9829
|
+
*/
|
|
9830
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8795
9831
|
/**
|
|
8796
9832
|
* Create client credentials
|
|
8797
9833
|
* @summary Create client credentials
|
|
@@ -8872,6 +9908,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8872
9908
|
* @throws {RequiredError}
|
|
8873
9909
|
*/
|
|
8874
9910
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9911
|
+
/**
|
|
9912
|
+
* Get Account Detailed Summary
|
|
9913
|
+
* @summary Get Account Detailed Summary
|
|
9914
|
+
* @param {number} id Customer ID
|
|
9915
|
+
* @param {*} [options] Override http request option.
|
|
9916
|
+
* @throws {RequiredError}
|
|
9917
|
+
*/
|
|
9918
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8875
9919
|
/**
|
|
8876
9920
|
* Get Accounts
|
|
8877
9921
|
* @summary Get Accounts
|
|
@@ -8937,6 +9981,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8937
9981
|
* @throws {RequiredError}
|
|
8938
9982
|
*/
|
|
8939
9983
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9984
|
+
/**
|
|
9985
|
+
* Get Admin Account
|
|
9986
|
+
* @summary Get Admin Account
|
|
9987
|
+
* @param {*} [options] Override http request option.
|
|
9988
|
+
* @throws {RequiredError}
|
|
9989
|
+
*/
|
|
9990
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8940
9991
|
/**
|
|
8941
9992
|
* Create client credentials
|
|
8942
9993
|
* @summary Create client credentials
|
|
@@ -9023,6 +10074,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9023
10074
|
* @memberof AccountsApi
|
|
9024
10075
|
*/
|
|
9025
10076
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
10077
|
+
/**
|
|
10078
|
+
* Get Account Detailed Summary
|
|
10079
|
+
* @summary Get Account Detailed Summary
|
|
10080
|
+
* @param {number} id Customer ID
|
|
10081
|
+
* @param {*} [options] Override http request option.
|
|
10082
|
+
* @throws {RequiredError}
|
|
10083
|
+
* @memberof AccountsApi
|
|
10084
|
+
*/
|
|
10085
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
9026
10086
|
/**
|
|
9027
10087
|
* Get Accounts
|
|
9028
10088
|
* @summary Get Accounts
|
|
@@ -9096,6 +10156,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9096
10156
|
* @memberof AccountsApi
|
|
9097
10157
|
*/
|
|
9098
10158
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
10159
|
+
/**
|
|
10160
|
+
* Get Admin Account
|
|
10161
|
+
* @summary Get Admin Account
|
|
10162
|
+
* @param {*} [options] Override http request option.
|
|
10163
|
+
* @throws {RequiredError}
|
|
10164
|
+
* @memberof AccountsApi
|
|
10165
|
+
*/
|
|
10166
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9099
10167
|
/**
|
|
9100
10168
|
* Create client credentials
|
|
9101
10169
|
* @summary Create client credentials
|
|
@@ -9209,14 +10277,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9209
10277
|
* @throws {RequiredError}
|
|
9210
10278
|
*/
|
|
9211
10279
|
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
10280
|
/**
|
|
9221
10281
|
* Get Bulk 3CX Licence Details
|
|
9222
10282
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9239,14 +10299,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9239
10299
|
* @throws {RequiredError}
|
|
9240
10300
|
*/
|
|
9241
10301
|
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
10302
|
/**
|
|
9251
10303
|
* Get Bulk 3CX Licence Details
|
|
9252
10304
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9269,14 +10321,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9269
10321
|
* @throws {RequiredError}
|
|
9270
10322
|
*/
|
|
9271
10323
|
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
10324
|
/**
|
|
9281
10325
|
* Get Bulk 3CX Licence Details
|
|
9282
10326
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9302,15 +10346,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9302
10346
|
* @memberof Class3CXApi
|
|
9303
10347
|
*/
|
|
9304
10348
|
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
10349
|
/**
|
|
9315
10350
|
* Get Bulk 3CX Licence Details
|
|
9316
10351
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11853,26 +12888,81 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11853
12888
|
*/
|
|
11854
12889
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11855
12890
|
/**
|
|
11856
|
-
* Delete Orders
|
|
12891
|
+
* Delete Orders (Beta)
|
|
12892
|
+
* @summary Delete Orders (Beta)
|
|
12893
|
+
* @param {number} id Order ID
|
|
12894
|
+
* @param {*} [options] Override http request option.
|
|
12895
|
+
* @throws {RequiredError}
|
|
12896
|
+
*/
|
|
12897
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12898
|
+
/**
|
|
12899
|
+
* Get Editable Order (Admin)
|
|
12900
|
+
* @summary Get Editable Order (Admin)
|
|
12901
|
+
* @param {number} id Order ID
|
|
12902
|
+
* @param {*} [options] Override http request option.
|
|
12903
|
+
* @throws {RequiredError}
|
|
12904
|
+
*/
|
|
12905
|
+
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12906
|
+
/**
|
|
12907
|
+
* Get Editable Order (Beta)
|
|
12908
|
+
* @summary Get Editable Order (Beta)
|
|
12909
|
+
* @param {number} id Order ID
|
|
12910
|
+
* @param {*} [options] Override http request option.
|
|
12911
|
+
* @throws {RequiredError}
|
|
12912
|
+
*/
|
|
12913
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12914
|
+
/**
|
|
12915
|
+
* Get Orders (Beta)
|
|
12916
|
+
* @summary Get Orders (Beta)
|
|
12917
|
+
* @param {number} [pageSize] Number Of Results
|
|
12918
|
+
* @param {number} [page] Page Number
|
|
12919
|
+
* @param {string} [search] Search
|
|
12920
|
+
* @param {boolean | null} [fulfillable] Fulfillable
|
|
12921
|
+
* @param {GetGetOrdersStatusEnum} [status] Status
|
|
12922
|
+
* @param {GetGetOrdersFilterEnum} [filter] Filter
|
|
12923
|
+
* @param {number | null} [customerId] Customer ID
|
|
12924
|
+
* @param {*} [options] Override http request option.
|
|
12925
|
+
* @throws {RequiredError}
|
|
12926
|
+
*/
|
|
12927
|
+
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12928
|
+
/**
|
|
12929
|
+
* Create An Order (Admin)
|
|
12930
|
+
* @summary Create An Order (Admin)
|
|
12931
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12932
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12933
|
+
* @param {*} [options] Override http request option.
|
|
12934
|
+
* @throws {RequiredError}
|
|
12935
|
+
*/
|
|
12936
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12937
|
+
/**
|
|
12938
|
+
* Create An Order (Beta)
|
|
12939
|
+
* @summary Create An Order (Beta)
|
|
12940
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12941
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12942
|
+
* @param {*} [options] Override http request option.
|
|
12943
|
+
* @throws {RequiredError}
|
|
12944
|
+
*/
|
|
12945
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12946
|
+
/**
|
|
12947
|
+
* Update An Order (Admin)
|
|
12948
|
+
* @summary Update An Order (Admin)
|
|
11857
12949
|
* @param {number} id Order ID
|
|
12950
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12951
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
11858
12952
|
* @param {*} [options] Override http request option.
|
|
11859
12953
|
* @throws {RequiredError}
|
|
11860
12954
|
*/
|
|
11861
|
-
|
|
12955
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11862
12956
|
/**
|
|
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
|
|
12957
|
+
* Update An Order (Beta)
|
|
12958
|
+
* @summary Update An Order (Beta)
|
|
12959
|
+
* @param {number} id Order ID
|
|
12960
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12961
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
11872
12962
|
* @param {*} [options] Override http request option.
|
|
11873
12963
|
* @throws {RequiredError}
|
|
11874
12964
|
*/
|
|
11875
|
-
|
|
12965
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11876
12966
|
};
|
|
11877
12967
|
/**
|
|
11878
12968
|
* OrdersApi - functional programming interface
|
|
@@ -11880,15 +12970,32 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11880
12970
|
*/
|
|
11881
12971
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11882
12972
|
/**
|
|
11883
|
-
* Delete Orders
|
|
12973
|
+
* Delete Orders (Beta)
|
|
12974
|
+
* @summary Delete Orders (Beta)
|
|
12975
|
+
* @param {number} id Order ID
|
|
12976
|
+
* @param {*} [options] Override http request option.
|
|
12977
|
+
* @throws {RequiredError}
|
|
12978
|
+
*/
|
|
12979
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12980
|
+
/**
|
|
12981
|
+
* Get Editable Order (Admin)
|
|
12982
|
+
* @summary Get Editable Order (Admin)
|
|
12983
|
+
* @param {number} id Order ID
|
|
12984
|
+
* @param {*} [options] Override http request option.
|
|
12985
|
+
* @throws {RequiredError}
|
|
12986
|
+
*/
|
|
12987
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12988
|
+
/**
|
|
12989
|
+
* Get Editable Order (Beta)
|
|
12990
|
+
* @summary Get Editable Order (Beta)
|
|
11884
12991
|
* @param {number} id Order ID
|
|
11885
12992
|
* @param {*} [options] Override http request option.
|
|
11886
12993
|
* @throws {RequiredError}
|
|
11887
12994
|
*/
|
|
11888
|
-
|
|
12995
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
11889
12996
|
/**
|
|
11890
|
-
* Get Orders
|
|
11891
|
-
* @summary Get Orders
|
|
12997
|
+
* Get Orders (Beta)
|
|
12998
|
+
* @summary Get Orders (Beta)
|
|
11892
12999
|
* @param {number} [pageSize] Number Of Results
|
|
11893
13000
|
* @param {number} [page] Page Number
|
|
11894
13001
|
* @param {string} [search] Search
|
|
@@ -11900,6 +13007,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11900
13007
|
* @throws {RequiredError}
|
|
11901
13008
|
*/
|
|
11902
13009
|
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>>;
|
|
13010
|
+
/**
|
|
13011
|
+
* Create An Order (Admin)
|
|
13012
|
+
* @summary Create An Order (Admin)
|
|
13013
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13014
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13015
|
+
* @param {*} [options] Override http request option.
|
|
13016
|
+
* @throws {RequiredError}
|
|
13017
|
+
*/
|
|
13018
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
13019
|
+
/**
|
|
13020
|
+
* Create An Order (Beta)
|
|
13021
|
+
* @summary Create An Order (Beta)
|
|
13022
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13023
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13024
|
+
* @param {*} [options] Override http request option.
|
|
13025
|
+
* @throws {RequiredError}
|
|
13026
|
+
*/
|
|
13027
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
13028
|
+
/**
|
|
13029
|
+
* Update An Order (Admin)
|
|
13030
|
+
* @summary Update An Order (Admin)
|
|
13031
|
+
* @param {number} id Order ID
|
|
13032
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13033
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13034
|
+
* @param {*} [options] Override http request option.
|
|
13035
|
+
* @throws {RequiredError}
|
|
13036
|
+
*/
|
|
13037
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
13038
|
+
/**
|
|
13039
|
+
* Update An Order (Beta)
|
|
13040
|
+
* @summary Update An Order (Beta)
|
|
13041
|
+
* @param {number} id Order ID
|
|
13042
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13043
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13044
|
+
* @param {*} [options] Override http request option.
|
|
13045
|
+
* @throws {RequiredError}
|
|
13046
|
+
*/
|
|
13047
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11903
13048
|
};
|
|
11904
13049
|
/**
|
|
11905
13050
|
* OrdersApi - factory interface
|
|
@@ -11907,15 +13052,32 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11907
13052
|
*/
|
|
11908
13053
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11909
13054
|
/**
|
|
11910
|
-
* Delete Orders
|
|
13055
|
+
* Delete Orders (Beta)
|
|
13056
|
+
* @summary Delete Orders (Beta)
|
|
13057
|
+
* @param {number} id Order ID
|
|
13058
|
+
* @param {*} [options] Override http request option.
|
|
13059
|
+
* @throws {RequiredError}
|
|
13060
|
+
*/
|
|
13061
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13062
|
+
/**
|
|
13063
|
+
* Get Editable Order (Admin)
|
|
13064
|
+
* @summary Get Editable Order (Admin)
|
|
13065
|
+
* @param {number} id Order ID
|
|
13066
|
+
* @param {*} [options] Override http request option.
|
|
13067
|
+
* @throws {RequiredError}
|
|
13068
|
+
*/
|
|
13069
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
13070
|
+
/**
|
|
13071
|
+
* Get Editable Order (Beta)
|
|
13072
|
+
* @summary Get Editable Order (Beta)
|
|
11911
13073
|
* @param {number} id Order ID
|
|
11912
13074
|
* @param {*} [options] Override http request option.
|
|
11913
13075
|
* @throws {RequiredError}
|
|
11914
13076
|
*/
|
|
11915
|
-
|
|
13077
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
11916
13078
|
/**
|
|
11917
|
-
* Get Orders
|
|
11918
|
-
* @summary Get Orders
|
|
13079
|
+
* Get Orders (Beta)
|
|
13080
|
+
* @summary Get Orders (Beta)
|
|
11919
13081
|
* @param {number} [pageSize] Number Of Results
|
|
11920
13082
|
* @param {number} [page] Page Number
|
|
11921
13083
|
* @param {string} [search] Search
|
|
@@ -11927,6 +13089,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11927
13089
|
* @throws {RequiredError}
|
|
11928
13090
|
*/
|
|
11929
13091
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
13092
|
+
/**
|
|
13093
|
+
* Create An Order (Admin)
|
|
13094
|
+
* @summary Create An Order (Admin)
|
|
13095
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13096
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13097
|
+
* @param {*} [options] Override http request option.
|
|
13098
|
+
* @throws {RequiredError}
|
|
13099
|
+
*/
|
|
13100
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13101
|
+
/**
|
|
13102
|
+
* Create An Order (Beta)
|
|
13103
|
+
* @summary Create An Order (Beta)
|
|
13104
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13105
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13106
|
+
* @param {*} [options] Override http request option.
|
|
13107
|
+
* @throws {RequiredError}
|
|
13108
|
+
*/
|
|
13109
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13110
|
+
/**
|
|
13111
|
+
* Update An Order (Admin)
|
|
13112
|
+
* @summary Update An Order (Admin)
|
|
13113
|
+
* @param {number} id Order ID
|
|
13114
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13115
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13116
|
+
* @param {*} [options] Override http request option.
|
|
13117
|
+
* @throws {RequiredError}
|
|
13118
|
+
*/
|
|
13119
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13120
|
+
/**
|
|
13121
|
+
* Update An Order (Beta)
|
|
13122
|
+
* @summary Update An Order (Beta)
|
|
13123
|
+
* @param {number} id Order ID
|
|
13124
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13125
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13126
|
+
* @param {*} [options] Override http request option.
|
|
13127
|
+
* @throws {RequiredError}
|
|
13128
|
+
*/
|
|
13129
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11930
13130
|
};
|
|
11931
13131
|
/**
|
|
11932
13132
|
* OrdersApi - object-oriented interface
|
|
@@ -11936,16 +13136,35 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11936
13136
|
*/
|
|
11937
13137
|
export declare class OrdersApi extends BaseAPI {
|
|
11938
13138
|
/**
|
|
11939
|
-
* Delete Orders
|
|
13139
|
+
* Delete Orders (Beta)
|
|
13140
|
+
* @summary Delete Orders (Beta)
|
|
13141
|
+
* @param {number} id Order ID
|
|
13142
|
+
* @param {*} [options] Override http request option.
|
|
13143
|
+
* @throws {RequiredError}
|
|
13144
|
+
* @memberof OrdersApi
|
|
13145
|
+
*/
|
|
13146
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13147
|
+
/**
|
|
13148
|
+
* Get Editable Order (Admin)
|
|
13149
|
+
* @summary Get Editable Order (Admin)
|
|
13150
|
+
* @param {number} id Order ID
|
|
13151
|
+
* @param {*} [options] Override http request option.
|
|
13152
|
+
* @throws {RequiredError}
|
|
13153
|
+
* @memberof OrdersApi
|
|
13154
|
+
*/
|
|
13155
|
+
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
13156
|
+
/**
|
|
13157
|
+
* Get Editable Order (Beta)
|
|
13158
|
+
* @summary Get Editable Order (Beta)
|
|
11940
13159
|
* @param {number} id Order ID
|
|
11941
13160
|
* @param {*} [options] Override http request option.
|
|
11942
13161
|
* @throws {RequiredError}
|
|
11943
13162
|
* @memberof OrdersApi
|
|
11944
13163
|
*/
|
|
11945
|
-
|
|
13164
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
11946
13165
|
/**
|
|
11947
|
-
* Get Orders
|
|
11948
|
-
* @summary Get Orders
|
|
13166
|
+
* Get Orders (Beta)
|
|
13167
|
+
* @summary Get Orders (Beta)
|
|
11949
13168
|
* @param {number} [pageSize] Number Of Results
|
|
11950
13169
|
* @param {number} [page] Page Number
|
|
11951
13170
|
* @param {string} [search] Search
|
|
@@ -11958,6 +13177,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11958
13177
|
* @memberof OrdersApi
|
|
11959
13178
|
*/
|
|
11960
13179
|
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, {}>>;
|
|
13180
|
+
/**
|
|
13181
|
+
* Create An Order (Admin)
|
|
13182
|
+
* @summary Create An Order (Admin)
|
|
13183
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13184
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13185
|
+
* @param {*} [options] Override http request option.
|
|
13186
|
+
* @throws {RequiredError}
|
|
13187
|
+
* @memberof OrdersApi
|
|
13188
|
+
*/
|
|
13189
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13190
|
+
/**
|
|
13191
|
+
* Create An Order (Beta)
|
|
13192
|
+
* @summary Create An Order (Beta)
|
|
13193
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13194
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13195
|
+
* @param {*} [options] Override http request option.
|
|
13196
|
+
* @throws {RequiredError}
|
|
13197
|
+
* @memberof OrdersApi
|
|
13198
|
+
*/
|
|
13199
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13200
|
+
/**
|
|
13201
|
+
* Update An Order (Admin)
|
|
13202
|
+
* @summary Update An Order (Admin)
|
|
13203
|
+
* @param {number} id Order ID
|
|
13204
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13205
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13206
|
+
* @param {*} [options] Override http request option.
|
|
13207
|
+
* @throws {RequiredError}
|
|
13208
|
+
* @memberof OrdersApi
|
|
13209
|
+
*/
|
|
13210
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13211
|
+
/**
|
|
13212
|
+
* Update An Order (Beta)
|
|
13213
|
+
* @summary Update An Order (Beta)
|
|
13214
|
+
* @param {number} id Order ID
|
|
13215
|
+
* @param {boolean} [readonly] Readonly Order
|
|
13216
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13217
|
+
* @param {*} [options] Override http request option.
|
|
13218
|
+
* @throws {RequiredError}
|
|
13219
|
+
* @memberof OrdersApi
|
|
13220
|
+
*/
|
|
13221
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11961
13222
|
}
|
|
11962
13223
|
/**
|
|
11963
13224
|
* @export
|
|
@@ -12213,13 +13474,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12213
13474
|
* @throws {RequiredError}
|
|
12214
13475
|
*/
|
|
12215
13476
|
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
13477
|
/**
|
|
12224
13478
|
* Get Current Stock & Pricing
|
|
12225
13479
|
* @summary Get Current Stock & Pricing
|
|
@@ -12232,13 +13486,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12232
13486
|
/**
|
|
12233
13487
|
* Get Products
|
|
12234
13488
|
* @summary Get Products
|
|
12235
|
-
* @param {number} [pageSize] Number Of Results
|
|
12236
|
-
* @param {number} [page] Page Number
|
|
12237
|
-
* @param {string} [search] Search
|
|
12238
13489
|
* @param {*} [options] Override http request option.
|
|
12239
13490
|
* @throws {RequiredError}
|
|
12240
13491
|
*/
|
|
12241
|
-
getGetProducts: (
|
|
13492
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12242
13493
|
/**
|
|
12243
13494
|
* Get Current Stock & Pricing
|
|
12244
13495
|
* @summary Get Current Stock & Pricing
|
|
@@ -12253,6 +13504,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12253
13504
|
* @throws {RequiredError}
|
|
12254
13505
|
*/
|
|
12255
13506
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13507
|
+
/**
|
|
13508
|
+
* Search Products
|
|
13509
|
+
* @summary Search Products
|
|
13510
|
+
* @param {number} [pageSize] Number Of Results
|
|
13511
|
+
* @param {number} [page] Page Number
|
|
13512
|
+
* @param {string} [search] Search
|
|
13513
|
+
* @param {*} [options] Override http request option.
|
|
13514
|
+
* @throws {RequiredError}
|
|
13515
|
+
*/
|
|
13516
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13517
|
+
/**
|
|
13518
|
+
* Get Product
|
|
13519
|
+
* @summary Get Product
|
|
13520
|
+
* @param {string} sku Product SKU
|
|
13521
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13522
|
+
* @param {*} [options] Override http request option.
|
|
13523
|
+
* @throws {RequiredError}
|
|
13524
|
+
*/
|
|
13525
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13526
|
+
/**
|
|
13527
|
+
* Get Product For Customer
|
|
13528
|
+
* @summary Get Product For Customer
|
|
13529
|
+
* @param {number} customerId Customer ID
|
|
13530
|
+
* @param {string} sku Product SKU
|
|
13531
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13532
|
+
* @param {*} [options] Override http request option.
|
|
13533
|
+
* @throws {RequiredError}
|
|
13534
|
+
*/
|
|
13535
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12256
13536
|
};
|
|
12257
13537
|
/**
|
|
12258
13538
|
* ProductsApi - functional programming interface
|
|
@@ -12266,13 +13546,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12266
13546
|
* @throws {RequiredError}
|
|
12267
13547
|
*/
|
|
12268
13548
|
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
13549
|
/**
|
|
12277
13550
|
* Get Current Stock & Pricing
|
|
12278
13551
|
* @summary Get Current Stock & Pricing
|
|
@@ -12285,13 +13558,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12285
13558
|
/**
|
|
12286
13559
|
* Get Products
|
|
12287
13560
|
* @summary Get Products
|
|
12288
|
-
* @param {number} [pageSize] Number Of Results
|
|
12289
|
-
* @param {number} [page] Page Number
|
|
12290
|
-
* @param {string} [search] Search
|
|
12291
13561
|
* @param {*} [options] Override http request option.
|
|
12292
13562
|
* @throws {RequiredError}
|
|
12293
13563
|
*/
|
|
12294
|
-
getGetProducts(
|
|
13564
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12295
13565
|
/**
|
|
12296
13566
|
* Get Current Stock & Pricing
|
|
12297
13567
|
* @summary Get Current Stock & Pricing
|
|
@@ -12306,6 +13576,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12306
13576
|
* @throws {RequiredError}
|
|
12307
13577
|
*/
|
|
12308
13578
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13579
|
+
/**
|
|
13580
|
+
* Search Products
|
|
13581
|
+
* @summary Search Products
|
|
13582
|
+
* @param {number} [pageSize] Number Of Results
|
|
13583
|
+
* @param {number} [page] Page Number
|
|
13584
|
+
* @param {string} [search] Search
|
|
13585
|
+
* @param {*} [options] Override http request option.
|
|
13586
|
+
* @throws {RequiredError}
|
|
13587
|
+
*/
|
|
13588
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13589
|
+
/**
|
|
13590
|
+
* Get Product
|
|
13591
|
+
* @summary Get Product
|
|
13592
|
+
* @param {string} sku Product SKU
|
|
13593
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13594
|
+
* @param {*} [options] Override http request option.
|
|
13595
|
+
* @throws {RequiredError}
|
|
13596
|
+
*/
|
|
13597
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13598
|
+
/**
|
|
13599
|
+
* Get Product For Customer
|
|
13600
|
+
* @summary Get Product For Customer
|
|
13601
|
+
* @param {number} customerId Customer ID
|
|
13602
|
+
* @param {string} sku Product SKU
|
|
13603
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13604
|
+
* @param {*} [options] Override http request option.
|
|
13605
|
+
* @throws {RequiredError}
|
|
13606
|
+
*/
|
|
13607
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12309
13608
|
};
|
|
12310
13609
|
/**
|
|
12311
13610
|
* ProductsApi - factory interface
|
|
@@ -12319,13 +13618,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12319
13618
|
* @throws {RequiredError}
|
|
12320
13619
|
*/
|
|
12321
13620
|
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
13621
|
/**
|
|
12330
13622
|
* Get Current Stock & Pricing
|
|
12331
13623
|
* @summary Get Current Stock & Pricing
|
|
@@ -12338,13 +13630,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12338
13630
|
/**
|
|
12339
13631
|
* Get Products
|
|
12340
13632
|
* @summary Get Products
|
|
12341
|
-
* @param {number} [pageSize] Number Of Results
|
|
12342
|
-
* @param {number} [page] Page Number
|
|
12343
|
-
* @param {string} [search] Search
|
|
12344
13633
|
* @param {*} [options] Override http request option.
|
|
12345
13634
|
* @throws {RequiredError}
|
|
12346
13635
|
*/
|
|
12347
|
-
getGetProducts(
|
|
13636
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12348
13637
|
/**
|
|
12349
13638
|
* Get Current Stock & Pricing
|
|
12350
13639
|
* @summary Get Current Stock & Pricing
|
|
@@ -12359,6 +13648,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12359
13648
|
* @throws {RequiredError}
|
|
12360
13649
|
*/
|
|
12361
13650
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13651
|
+
/**
|
|
13652
|
+
* Search Products
|
|
13653
|
+
* @summary Search Products
|
|
13654
|
+
* @param {number} [pageSize] Number Of Results
|
|
13655
|
+
* @param {number} [page] Page Number
|
|
13656
|
+
* @param {string} [search] Search
|
|
13657
|
+
* @param {*} [options] Override http request option.
|
|
13658
|
+
* @throws {RequiredError}
|
|
13659
|
+
*/
|
|
13660
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13661
|
+
/**
|
|
13662
|
+
* Get Product
|
|
13663
|
+
* @summary Get Product
|
|
13664
|
+
* @param {string} sku Product SKU
|
|
13665
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13666
|
+
* @param {*} [options] Override http request option.
|
|
13667
|
+
* @throws {RequiredError}
|
|
13668
|
+
*/
|
|
13669
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13670
|
+
/**
|
|
13671
|
+
* Get Product For Customer
|
|
13672
|
+
* @summary Get Product For Customer
|
|
13673
|
+
* @param {number} customerId Customer ID
|
|
13674
|
+
* @param {string} sku Product SKU
|
|
13675
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13676
|
+
* @param {*} [options] Override http request option.
|
|
13677
|
+
* @throws {RequiredError}
|
|
13678
|
+
*/
|
|
13679
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12362
13680
|
};
|
|
12363
13681
|
/**
|
|
12364
13682
|
* ProductsApi - object-oriented interface
|
|
@@ -12375,14 +13693,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12375
13693
|
* @memberof ProductsApi
|
|
12376
13694
|
*/
|
|
12377
13695
|
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
13696
|
/**
|
|
12387
13697
|
* Get Current Stock & Pricing
|
|
12388
13698
|
* @summary Get Current Stock & Pricing
|
|
@@ -12396,14 +13706,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12396
13706
|
/**
|
|
12397
13707
|
* Get Products
|
|
12398
13708
|
* @summary Get Products
|
|
12399
|
-
* @param {number} [pageSize] Number Of Results
|
|
12400
|
-
* @param {number} [page] Page Number
|
|
12401
|
-
* @param {string} [search] Search
|
|
12402
13709
|
* @param {*} [options] Override http request option.
|
|
12403
13710
|
* @throws {RequiredError}
|
|
12404
13711
|
* @memberof ProductsApi
|
|
12405
13712
|
*/
|
|
12406
|
-
getGetProducts(
|
|
13713
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12407
13714
|
/**
|
|
12408
13715
|
* Get Current Stock & Pricing
|
|
12409
13716
|
* @summary Get Current Stock & Pricing
|
|
@@ -12420,6 +13727,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12420
13727
|
* @memberof ProductsApi
|
|
12421
13728
|
*/
|
|
12422
13729
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13730
|
+
/**
|
|
13731
|
+
* Search Products
|
|
13732
|
+
* @summary Search Products
|
|
13733
|
+
* @param {number} [pageSize] Number Of Results
|
|
13734
|
+
* @param {number} [page] Page Number
|
|
13735
|
+
* @param {string} [search] Search
|
|
13736
|
+
* @param {*} [options] Override http request option.
|
|
13737
|
+
* @throws {RequiredError}
|
|
13738
|
+
* @memberof ProductsApi
|
|
13739
|
+
*/
|
|
13740
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13741
|
+
/**
|
|
13742
|
+
* Get Product
|
|
13743
|
+
* @summary Get Product
|
|
13744
|
+
* @param {string} sku Product SKU
|
|
13745
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13746
|
+
* @param {*} [options] Override http request option.
|
|
13747
|
+
* @throws {RequiredError}
|
|
13748
|
+
* @memberof ProductsApi
|
|
13749
|
+
*/
|
|
13750
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13751
|
+
/**
|
|
13752
|
+
* Get Product For Customer
|
|
13753
|
+
* @summary Get Product For Customer
|
|
13754
|
+
* @param {number} customerId Customer ID
|
|
13755
|
+
* @param {string} sku Product SKU
|
|
13756
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13757
|
+
* @param {*} [options] Override http request option.
|
|
13758
|
+
* @throws {RequiredError}
|
|
13759
|
+
* @memberof ProductsApi
|
|
13760
|
+
*/
|
|
13761
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12423
13762
|
}
|
|
12424
13763
|
/**
|
|
12425
13764
|
* @export
|
|
@@ -12540,7 +13879,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12540
13879
|
* @param {*} [options] Override http request option.
|
|
12541
13880
|
* @throws {RequiredError}
|
|
12542
13881
|
*/
|
|
12543
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13882
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12544
13883
|
/**
|
|
12545
13884
|
* Create a Fanvil provisioning group
|
|
12546
13885
|
* @summary Add group to DB and FDPS
|
|
@@ -12548,7 +13887,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12548
13887
|
* @param {*} [options] Override http request option.
|
|
12549
13888
|
* @throws {RequiredError}
|
|
12550
13889
|
*/
|
|
12551
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13890
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12552
13891
|
/**
|
|
12553
13892
|
* Add MAC address to DB and FDPS group
|
|
12554
13893
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12605,7 +13944,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12605
13944
|
* @param {*} [options] Override http request option.
|
|
12606
13945
|
* @throws {RequiredError}
|
|
12607
13946
|
*/
|
|
12608
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13947
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12609
13948
|
/**
|
|
12610
13949
|
* Create a Fanvil provisioning group
|
|
12611
13950
|
* @summary Add group to DB and FDPS
|
|
@@ -12613,7 +13952,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12613
13952
|
* @param {*} [options] Override http request option.
|
|
12614
13953
|
* @throws {RequiredError}
|
|
12615
13954
|
*/
|
|
12616
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13955
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12617
13956
|
/**
|
|
12618
13957
|
* Add MAC address to DB and FDPS group
|
|
12619
13958
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12677,7 +14016,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12677
14016
|
* @throws {RequiredError}
|
|
12678
14017
|
* @memberof ProvisioningApi
|
|
12679
14018
|
*/
|
|
12680
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14019
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12681
14020
|
/**
|
|
12682
14021
|
* Create a Fanvil provisioning group
|
|
12683
14022
|
* @summary Add group to DB and FDPS
|
|
@@ -12686,7 +14025,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12686
14025
|
* @throws {RequiredError}
|
|
12687
14026
|
* @memberof ProvisioningApi
|
|
12688
14027
|
*/
|
|
12689
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14028
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12690
14029
|
/**
|
|
12691
14030
|
* Add MAC address to DB and FDPS group
|
|
12692
14031
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13561,6 +14900,102 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13561
14900
|
*/
|
|
13562
14901
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13563
14902
|
}
|
|
14903
|
+
/**
|
|
14904
|
+
* ShippingApi - axios parameter creator
|
|
14905
|
+
* @export
|
|
14906
|
+
*/
|
|
14907
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14908
|
+
/**
|
|
14909
|
+
* Get Shipping Services (Admin)
|
|
14910
|
+
* @summary Get Shipping Services
|
|
14911
|
+
* @param {number} customerId Customer ID
|
|
14912
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14913
|
+
* @param {*} [options] Override http request option.
|
|
14914
|
+
* @throws {RequiredError}
|
|
14915
|
+
*/
|
|
14916
|
+
postGetAdminShippingServices: (customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14917
|
+
/**
|
|
14918
|
+
* Get Shipping Services
|
|
14919
|
+
* @summary Get Shipping Services
|
|
14920
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14921
|
+
* @param {*} [options] Override http request option.
|
|
14922
|
+
* @throws {RequiredError}
|
|
14923
|
+
*/
|
|
14924
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14925
|
+
};
|
|
14926
|
+
/**
|
|
14927
|
+
* ShippingApi - functional programming interface
|
|
14928
|
+
* @export
|
|
14929
|
+
*/
|
|
14930
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14931
|
+
/**
|
|
14932
|
+
* Get Shipping Services (Admin)
|
|
14933
|
+
* @summary Get Shipping Services
|
|
14934
|
+
* @param {number} customerId Customer ID
|
|
14935
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14936
|
+
* @param {*} [options] Override http request option.
|
|
14937
|
+
* @throws {RequiredError}
|
|
14938
|
+
*/
|
|
14939
|
+
postGetAdminShippingServices(customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14940
|
+
/**
|
|
14941
|
+
* Get Shipping Services
|
|
14942
|
+
* @summary Get Shipping Services
|
|
14943
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14944
|
+
* @param {*} [options] Override http request option.
|
|
14945
|
+
* @throws {RequiredError}
|
|
14946
|
+
*/
|
|
14947
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14948
|
+
};
|
|
14949
|
+
/**
|
|
14950
|
+
* ShippingApi - factory interface
|
|
14951
|
+
* @export
|
|
14952
|
+
*/
|
|
14953
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14954
|
+
/**
|
|
14955
|
+
* Get Shipping Services (Admin)
|
|
14956
|
+
* @summary Get Shipping Services
|
|
14957
|
+
* @param {number} customerId Customer ID
|
|
14958
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14959
|
+
* @param {*} [options] Override http request option.
|
|
14960
|
+
* @throws {RequiredError}
|
|
14961
|
+
*/
|
|
14962
|
+
postGetAdminShippingServices(customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14963
|
+
/**
|
|
14964
|
+
* Get Shipping Services
|
|
14965
|
+
* @summary Get Shipping Services
|
|
14966
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14967
|
+
* @param {*} [options] Override http request option.
|
|
14968
|
+
* @throws {RequiredError}
|
|
14969
|
+
*/
|
|
14970
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14971
|
+
};
|
|
14972
|
+
/**
|
|
14973
|
+
* ShippingApi - object-oriented interface
|
|
14974
|
+
* @export
|
|
14975
|
+
* @class ShippingApi
|
|
14976
|
+
* @extends {BaseAPI}
|
|
14977
|
+
*/
|
|
14978
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14979
|
+
/**
|
|
14980
|
+
* Get Shipping Services (Admin)
|
|
14981
|
+
* @summary Get Shipping Services
|
|
14982
|
+
* @param {number} customerId Customer ID
|
|
14983
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14984
|
+
* @param {*} [options] Override http request option.
|
|
14985
|
+
* @throws {RequiredError}
|
|
14986
|
+
* @memberof ShippingApi
|
|
14987
|
+
*/
|
|
14988
|
+
postGetAdminShippingServices(customerId: number, shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14989
|
+
/**
|
|
14990
|
+
* Get Shipping Services
|
|
14991
|
+
* @summary Get Shipping Services
|
|
14992
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14993
|
+
* @param {*} [options] Override http request option.
|
|
14994
|
+
* @throws {RequiredError}
|
|
14995
|
+
* @memberof ShippingApi
|
|
14996
|
+
*/
|
|
14997
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14998
|
+
}
|
|
13564
14999
|
/**
|
|
13565
15000
|
* StockManagementApi - axios parameter creator
|
|
13566
15001
|
* @export
|
|
@@ -13890,7 +15325,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13890
15325
|
* @param {*} [options] Override http request option.
|
|
13891
15326
|
* @throws {RequiredError}
|
|
13892
15327
|
*/
|
|
13893
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15328
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13894
15329
|
/**
|
|
13895
15330
|
* Get Stock Order Supplier Invoice
|
|
13896
15331
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14105,7 +15540,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14105
15540
|
* @param {*} [options] Override http request option.
|
|
14106
15541
|
* @throws {RequiredError}
|
|
14107
15542
|
*/
|
|
14108
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15543
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14109
15544
|
/**
|
|
14110
15545
|
* Get Stock Order Supplier Invoice
|
|
14111
15546
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14335,7 +15770,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14335
15770
|
* @throws {RequiredError}
|
|
14336
15771
|
* @memberof StockManagementApi
|
|
14337
15772
|
*/
|
|
14338
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15773
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14339
15774
|
/**
|
|
14340
15775
|
* Get Stock Order Supplier Invoice
|
|
14341
15776
|
* @summary Get Stock Order Supplier Invoice
|