yellowgrid-api-ts 3.1.13-dev.0 → 3.1.13
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 +198 -217
- package/README.md +7 -34
- package/api.ts +233 -1836
- 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 +151 -1376
- package/dist/api.js +208 -1064
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AccountsApi.md +0 -103
- package/docs/AddressModel.md +0 -2
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -12
- package/docs/ItemEntity.md +0 -2
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -301
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -39
- package/docs/AdminItemRequestDTO.md +0 -43
- package/docs/AdminOrderRequestDTO.md +0 -45
- package/docs/AdminUserModel.md +0 -29
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -37
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/ItemDiscountEntity.md +0 -31
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/PostGetProductForCustomerRequest.md +0 -24
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/TcxSbcDTO.md +0 -31
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,55 +13,6 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
* Order Request
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AbstractOrderRequestDTO
|
|
20
|
-
*/
|
|
21
|
-
export interface AbstractOrderRequestDTO {
|
|
22
|
-
/**
|
|
23
|
-
* Order Reference
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AbstractOrderRequestDTO
|
|
26
|
-
*/
|
|
27
|
-
'orderReference'?: string | null;
|
|
28
|
-
/**
|
|
29
|
-
* Items
|
|
30
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
-
* @memberof AbstractOrderRequestDTO
|
|
32
|
-
*/
|
|
33
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {ShippingServiceDTO}
|
|
37
|
-
* @memberof AbstractOrderRequestDTO
|
|
38
|
-
*/
|
|
39
|
-
'shippingService'?: ShippingServiceDTO;
|
|
40
|
-
/**
|
|
41
|
-
* Provisioning URL
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AbstractOrderRequestDTO
|
|
44
|
-
*/
|
|
45
|
-
'provisioningUrl'?: string | null;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {AddressModel}
|
|
49
|
-
* @memberof AbstractOrderRequestDTO
|
|
50
|
-
*/
|
|
51
|
-
'shippingAddress'?: AddressModel | null;
|
|
52
|
-
/**
|
|
53
|
-
* Part Ship Order
|
|
54
|
-
* @type {boolean}
|
|
55
|
-
* @memberof AbstractOrderRequestDTO
|
|
56
|
-
*/
|
|
57
|
-
'partShip'?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Quote
|
|
60
|
-
* @type {boolean}
|
|
61
|
-
* @memberof AbstractOrderRequestDTO
|
|
62
|
-
*/
|
|
63
|
-
'quote'?: boolean;
|
|
64
|
-
}
|
|
65
16
|
/**
|
|
66
17
|
* AccountContactsEntity
|
|
67
18
|
* @export
|
|
@@ -293,73 +244,6 @@ export interface AccountContactRequestModel {
|
|
|
293
244
|
*/
|
|
294
245
|
'despatchEmails'?: boolean;
|
|
295
246
|
}
|
|
296
|
-
/**
|
|
297
|
-
* Account Details
|
|
298
|
-
* @export
|
|
299
|
-
* @interface AccountDetailedSummaryDTO
|
|
300
|
-
*/
|
|
301
|
-
export interface AccountDetailedSummaryDTO {
|
|
302
|
-
/**
|
|
303
|
-
* ID
|
|
304
|
-
* @type {number}
|
|
305
|
-
* @memberof AccountDetailedSummaryDTO
|
|
306
|
-
*/
|
|
307
|
-
'id'?: number;
|
|
308
|
-
/**
|
|
309
|
-
* Xero ID
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof AccountDetailedSummaryDTO
|
|
312
|
-
*/
|
|
313
|
-
'xeroId'?: string;
|
|
314
|
-
/**
|
|
315
|
-
* Company
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof AccountDetailedSummaryDTO
|
|
318
|
-
*/
|
|
319
|
-
'company'?: string;
|
|
320
|
-
/**
|
|
321
|
-
* Credit Limit
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof AccountDetailedSummaryDTO
|
|
324
|
-
*/
|
|
325
|
-
'creditLimit'?: number;
|
|
326
|
-
/**
|
|
327
|
-
* Contacts
|
|
328
|
-
* @type {Array<AccountContactModel>}
|
|
329
|
-
* @memberof AccountDetailedSummaryDTO
|
|
330
|
-
*/
|
|
331
|
-
'contacts'?: Array<AccountContactModel>;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {AddressModel}
|
|
335
|
-
* @memberof AccountDetailedSummaryDTO
|
|
336
|
-
*/
|
|
337
|
-
'billingAddress'?: AddressModel;
|
|
338
|
-
/**
|
|
339
|
-
* Addresses
|
|
340
|
-
* @type {Array<AddressModel>}
|
|
341
|
-
* @memberof AccountDetailedSummaryDTO
|
|
342
|
-
*/
|
|
343
|
-
'addresses'?: Array<AddressModel>;
|
|
344
|
-
/**
|
|
345
|
-
* Provisioning URLs
|
|
346
|
-
* @type {Array<ProvisioningModel>}
|
|
347
|
-
* @memberof AccountDetailedSummaryDTO
|
|
348
|
-
*/
|
|
349
|
-
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
-
/**
|
|
351
|
-
* On Hold
|
|
352
|
-
* @type {boolean}
|
|
353
|
-
* @memberof AccountDetailedSummaryDTO
|
|
354
|
-
*/
|
|
355
|
-
'onHold'?: boolean;
|
|
356
|
-
/**
|
|
357
|
-
* Balance (£)
|
|
358
|
-
* @type {number}
|
|
359
|
-
* @memberof AccountDetailedSummaryDTO
|
|
360
|
-
*/
|
|
361
|
-
'balance'?: number | null;
|
|
362
|
-
}
|
|
363
247
|
/**
|
|
364
248
|
* New Account Request
|
|
365
249
|
* @export
|
|
@@ -609,12 +493,6 @@ export interface AddressModel {
|
|
|
609
493
|
* @memberof AddressModel
|
|
610
494
|
*/
|
|
611
495
|
'company'?: string;
|
|
612
|
-
/**
|
|
613
|
-
* Default
|
|
614
|
-
* @type {boolean}
|
|
615
|
-
* @memberof AddressModel
|
|
616
|
-
*/
|
|
617
|
-
'default'?: boolean;
|
|
618
496
|
}
|
|
619
497
|
/**
|
|
620
498
|
* Address Request
|
|
@@ -647,215 +525,6 @@ export interface AddressRequestModel {
|
|
|
647
525
|
*/
|
|
648
526
|
'addressPostcode'?: string;
|
|
649
527
|
}
|
|
650
|
-
/**
|
|
651
|
-
* Admin Order Item Request
|
|
652
|
-
* @export
|
|
653
|
-
* @interface AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
export interface AdminItemRequestDTO {
|
|
656
|
-
/**
|
|
657
|
-
* SKU
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'sku'?: string;
|
|
662
|
-
/**
|
|
663
|
-
* Quantity
|
|
664
|
-
* @type {number}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'quantity'?: number;
|
|
668
|
-
/**
|
|
669
|
-
* ID
|
|
670
|
-
* @type {number}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'id'?: number | null;
|
|
674
|
-
/**
|
|
675
|
-
* 3CX Licence Key
|
|
676
|
-
* @type {string}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'licenceKey'?: string | null;
|
|
680
|
-
/**
|
|
681
|
-
* 3CX Hosting
|
|
682
|
-
* @type {boolean}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'hosting'?: boolean | null;
|
|
686
|
-
/**
|
|
687
|
-
* Date Time
|
|
688
|
-
* @type {string}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'processDate'?: string;
|
|
692
|
-
/**
|
|
693
|
-
* 3CX Sales Code
|
|
694
|
-
* @type {string}
|
|
695
|
-
* @memberof AdminItemRequestDTO
|
|
696
|
-
*/
|
|
697
|
-
'tcxSalesCode'?: string | null;
|
|
698
|
-
/**
|
|
699
|
-
* SBCS
|
|
700
|
-
* @type {Array<TcxSbcDTO>}
|
|
701
|
-
* @memberof AdminItemRequestDTO
|
|
702
|
-
*/
|
|
703
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
704
|
-
/**
|
|
705
|
-
* Read Only (Cannot be edited)
|
|
706
|
-
* @type {boolean}
|
|
707
|
-
* @memberof AdminItemRequestDTO
|
|
708
|
-
*/
|
|
709
|
-
'readOnly'?: boolean;
|
|
710
|
-
/**
|
|
711
|
-
* Title
|
|
712
|
-
* @type {string}
|
|
713
|
-
* @memberof AdminItemRequestDTO
|
|
714
|
-
*/
|
|
715
|
-
'title'?: string | null;
|
|
716
|
-
/**
|
|
717
|
-
* Price (£)
|
|
718
|
-
* @type {number}
|
|
719
|
-
* @memberof AdminItemRequestDTO
|
|
720
|
-
*/
|
|
721
|
-
'itemPrice'?: number | null;
|
|
722
|
-
/**
|
|
723
|
-
* Additional Discount
|
|
724
|
-
* @type {number}
|
|
725
|
-
* @memberof AdminItemRequestDTO
|
|
726
|
-
*/
|
|
727
|
-
'additionalDiscount'?: number | null;
|
|
728
|
-
}
|
|
729
|
-
/**
|
|
730
|
-
* Admin Order Request
|
|
731
|
-
* @export
|
|
732
|
-
* @interface AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
export interface AdminOrderRequestDTO {
|
|
735
|
-
/**
|
|
736
|
-
* Order Reference
|
|
737
|
-
* @type {string}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'orderReference'?: string | null;
|
|
741
|
-
/**
|
|
742
|
-
* Items
|
|
743
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {ShippingServiceDTO}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'shippingService'?: ShippingServiceDTO;
|
|
753
|
-
/**
|
|
754
|
-
* Provisioning URL
|
|
755
|
-
* @type {string}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'provisioningUrl'?: string | null;
|
|
759
|
-
/**
|
|
760
|
-
*
|
|
761
|
-
* @type {AddressModel}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'shippingAddress'?: AddressModel;
|
|
765
|
-
/**
|
|
766
|
-
* Part Ship Order
|
|
767
|
-
* @type {boolean}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'partShip'?: boolean;
|
|
771
|
-
/**
|
|
772
|
-
* Quote
|
|
773
|
-
* @type {boolean}
|
|
774
|
-
* @memberof AdminOrderRequestDTO
|
|
775
|
-
*/
|
|
776
|
-
'quote'?: boolean;
|
|
777
|
-
/**
|
|
778
|
-
* Customer ID
|
|
779
|
-
* @type {number}
|
|
780
|
-
* @memberof AdminOrderRequestDTO
|
|
781
|
-
*/
|
|
782
|
-
'customerId'?: number;
|
|
783
|
-
/**
|
|
784
|
-
* Contact
|
|
785
|
-
* @type {string}
|
|
786
|
-
* @memberof AdminOrderRequestDTO
|
|
787
|
-
*/
|
|
788
|
-
'contact'?: string;
|
|
789
|
-
/**
|
|
790
|
-
* Ignore Customer On Hold
|
|
791
|
-
* @type {boolean}
|
|
792
|
-
* @memberof AdminOrderRequestDTO
|
|
793
|
-
*/
|
|
794
|
-
'ignoreOnHold'?: boolean;
|
|
795
|
-
/**
|
|
796
|
-
* Ignore Customer Credit Limit
|
|
797
|
-
* @type {boolean}
|
|
798
|
-
* @memberof AdminOrderRequestDTO
|
|
799
|
-
*/
|
|
800
|
-
'ignoreCreditLimit'?: boolean;
|
|
801
|
-
/**
|
|
802
|
-
* Include NFR Promos
|
|
803
|
-
* @type {boolean}
|
|
804
|
-
* @memberof AdminOrderRequestDTO
|
|
805
|
-
*/
|
|
806
|
-
'includeNfrPromos'?: boolean;
|
|
807
|
-
/**
|
|
808
|
-
* Carriage Charge
|
|
809
|
-
* @type {number}
|
|
810
|
-
* @memberof AdminOrderRequestDTO
|
|
811
|
-
*/
|
|
812
|
-
'carriageCharge'?: number;
|
|
813
|
-
}
|
|
814
|
-
/**
|
|
815
|
-
* Admin User
|
|
816
|
-
* @export
|
|
817
|
-
* @interface AdminUserModel
|
|
818
|
-
*/
|
|
819
|
-
export interface AdminUserModel {
|
|
820
|
-
/**
|
|
821
|
-
* First Name
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof AdminUserModel
|
|
824
|
-
*/
|
|
825
|
-
'firstName'?: string;
|
|
826
|
-
/**
|
|
827
|
-
* Last Name
|
|
828
|
-
* @type {string}
|
|
829
|
-
* @memberof AdminUserModel
|
|
830
|
-
*/
|
|
831
|
-
'lastName'?: string;
|
|
832
|
-
/**
|
|
833
|
-
* Avatar
|
|
834
|
-
* @type {string}
|
|
835
|
-
* @memberof AdminUserModel
|
|
836
|
-
*/
|
|
837
|
-
'avatar'?: string | null;
|
|
838
|
-
/**
|
|
839
|
-
* Role
|
|
840
|
-
* @type {number}
|
|
841
|
-
* @memberof AdminUserModel
|
|
842
|
-
*/
|
|
843
|
-
'role'?: AdminUserModelRoleEnum;
|
|
844
|
-
/**
|
|
845
|
-
* Email
|
|
846
|
-
* @type {string}
|
|
847
|
-
* @memberof AdminUserModel
|
|
848
|
-
*/
|
|
849
|
-
'email'?: string | null;
|
|
850
|
-
}
|
|
851
|
-
export declare const AdminUserModelRoleEnum: {
|
|
852
|
-
readonly NUMBER_0: 0;
|
|
853
|
-
readonly NUMBER_1: 1;
|
|
854
|
-
readonly NUMBER_2: 2;
|
|
855
|
-
readonly NUMBER_3: 3;
|
|
856
|
-
readonly NUMBER_4: 4;
|
|
857
|
-
};
|
|
858
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
859
528
|
/**
|
|
860
529
|
* Agent Hours Graph
|
|
861
530
|
* @export
|
|
@@ -1085,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1085
754
|
*/
|
|
1086
755
|
'redirect_uri'?: string | null;
|
|
1087
756
|
}
|
|
1088
|
-
/**
|
|
1089
|
-
* Basic Order Item
|
|
1090
|
-
* @export
|
|
1091
|
-
* @interface BasicItemDTO
|
|
1092
|
-
*/
|
|
1093
|
-
export interface BasicItemDTO {
|
|
1094
|
-
/**
|
|
1095
|
-
* SKU
|
|
1096
|
-
* @type {string}
|
|
1097
|
-
* @memberof BasicItemDTO
|
|
1098
|
-
*/
|
|
1099
|
-
'sku'?: string;
|
|
1100
|
-
/**
|
|
1101
|
-
* Quantity
|
|
1102
|
-
* @type {number}
|
|
1103
|
-
* @memberof BasicItemDTO
|
|
1104
|
-
*/
|
|
1105
|
-
'quantity'?: number;
|
|
1106
|
-
}
|
|
1107
|
-
/**
|
|
1108
|
-
* Basic Product
|
|
1109
|
-
* @export
|
|
1110
|
-
* @interface BasicProductDTO
|
|
1111
|
-
*/
|
|
1112
|
-
export interface BasicProductDTO {
|
|
1113
|
-
/**
|
|
1114
|
-
* SKU
|
|
1115
|
-
* @type {string}
|
|
1116
|
-
* @memberof BasicProductDTO
|
|
1117
|
-
*/
|
|
1118
|
-
'sku'?: string;
|
|
1119
|
-
/**
|
|
1120
|
-
* Title
|
|
1121
|
-
* @type {string}
|
|
1122
|
-
* @memberof BasicProductDTO
|
|
1123
|
-
*/
|
|
1124
|
-
'title'?: string;
|
|
1125
|
-
}
|
|
1126
757
|
/**
|
|
1127
758
|
* BatchesEntity
|
|
1128
759
|
* @export
|
|
@@ -1317,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1317
948
|
* @memberof ClientDetailsModel
|
|
1318
949
|
*/
|
|
1319
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1320
957
|
}
|
|
1321
958
|
/**
|
|
1322
959
|
* OAuth client details
|
|
@@ -1478,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1478
1115
|
*/
|
|
1479
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1480
1117
|
}
|
|
1481
|
-
/**
|
|
1482
|
-
* CourierPricesEntity
|
|
1483
|
-
* @export
|
|
1484
|
-
* @interface CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
export interface CourierPriceEntity {
|
|
1487
|
-
/**
|
|
1488
|
-
* id
|
|
1489
|
-
* @type {number}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'id'?: number;
|
|
1493
|
-
/**
|
|
1494
|
-
* courier
|
|
1495
|
-
* @type {string}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'courier'?: string;
|
|
1499
|
-
/**
|
|
1500
|
-
* destinationIso
|
|
1501
|
-
* @type {string}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'destinationIso'?: string;
|
|
1505
|
-
/**
|
|
1506
|
-
* serviceDescription
|
|
1507
|
-
* @type {string}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'serviceDescription'?: string;
|
|
1511
|
-
/**
|
|
1512
|
-
* flatRate
|
|
1513
|
-
* @type {number}
|
|
1514
|
-
* @memberof CourierPriceEntity
|
|
1515
|
-
*/
|
|
1516
|
-
'flatRate'?: number;
|
|
1517
|
-
/**
|
|
1518
|
-
* initialBox
|
|
1519
|
-
* @type {number}
|
|
1520
|
-
* @memberof CourierPriceEntity
|
|
1521
|
-
*/
|
|
1522
|
-
'initialBox'?: number;
|
|
1523
|
-
/**
|
|
1524
|
-
* initialKg
|
|
1525
|
-
* @type {number}
|
|
1526
|
-
* @memberof CourierPriceEntity
|
|
1527
|
-
*/
|
|
1528
|
-
'initialKg'?: number;
|
|
1529
|
-
/**
|
|
1530
|
-
* perBox
|
|
1531
|
-
* @type {number}
|
|
1532
|
-
* @memberof CourierPriceEntity
|
|
1533
|
-
*/
|
|
1534
|
-
'perBox'?: number;
|
|
1535
|
-
/**
|
|
1536
|
-
* perKg
|
|
1537
|
-
* @type {number}
|
|
1538
|
-
* @memberof CourierPriceEntity
|
|
1539
|
-
*/
|
|
1540
|
-
'perKg'?: number;
|
|
1541
|
-
/**
|
|
1542
|
-
* maxKg
|
|
1543
|
-
* @type {number}
|
|
1544
|
-
* @memberof CourierPriceEntity
|
|
1545
|
-
*/
|
|
1546
|
-
'maxKg'?: number;
|
|
1547
|
-
}
|
|
1548
1118
|
/**
|
|
1549
1119
|
* Credit Account
|
|
1550
1120
|
* @export
|
|
@@ -1776,116 +1346,6 @@ export interface CustomerInformationModel {
|
|
|
1776
1346
|
*/
|
|
1777
1347
|
'contactLastName'?: string;
|
|
1778
1348
|
}
|
|
1779
|
-
/**
|
|
1780
|
-
* Order Item Request
|
|
1781
|
-
* @export
|
|
1782
|
-
* @interface CustomerItemRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
export interface CustomerItemRequestDTO {
|
|
1785
|
-
/**
|
|
1786
|
-
* SKU
|
|
1787
|
-
* @type {string}
|
|
1788
|
-
* @memberof CustomerItemRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'sku'?: string;
|
|
1791
|
-
/**
|
|
1792
|
-
* Quantity
|
|
1793
|
-
* @type {number}
|
|
1794
|
-
* @memberof CustomerItemRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'quantity'?: number;
|
|
1797
|
-
/**
|
|
1798
|
-
* ID
|
|
1799
|
-
* @type {number}
|
|
1800
|
-
* @memberof CustomerItemRequestDTO
|
|
1801
|
-
*/
|
|
1802
|
-
'id'?: number | null;
|
|
1803
|
-
/**
|
|
1804
|
-
* 3CX Licence Key
|
|
1805
|
-
* @type {string}
|
|
1806
|
-
* @memberof CustomerItemRequestDTO
|
|
1807
|
-
*/
|
|
1808
|
-
'licenceKey'?: string | null;
|
|
1809
|
-
/**
|
|
1810
|
-
* 3CX Hosting
|
|
1811
|
-
* @type {boolean}
|
|
1812
|
-
* @memberof CustomerItemRequestDTO
|
|
1813
|
-
*/
|
|
1814
|
-
'hosting'?: boolean | null;
|
|
1815
|
-
/**
|
|
1816
|
-
* Date Time
|
|
1817
|
-
* @type {string}
|
|
1818
|
-
* @memberof CustomerItemRequestDTO
|
|
1819
|
-
*/
|
|
1820
|
-
'processDate'?: string;
|
|
1821
|
-
/**
|
|
1822
|
-
* 3CX Sales Code
|
|
1823
|
-
* @type {string}
|
|
1824
|
-
* @memberof CustomerItemRequestDTO
|
|
1825
|
-
*/
|
|
1826
|
-
'tcxSalesCode'?: string | null;
|
|
1827
|
-
/**
|
|
1828
|
-
* SBCS
|
|
1829
|
-
* @type {Array<TcxSbcDTO>}
|
|
1830
|
-
* @memberof CustomerItemRequestDTO
|
|
1831
|
-
*/
|
|
1832
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1833
|
-
/**
|
|
1834
|
-
* Read Only (Cannot be edited)
|
|
1835
|
-
* @type {boolean}
|
|
1836
|
-
* @memberof CustomerItemRequestDTO
|
|
1837
|
-
*/
|
|
1838
|
-
'readOnly'?: boolean;
|
|
1839
|
-
}
|
|
1840
|
-
/**
|
|
1841
|
-
* Order Request
|
|
1842
|
-
* @export
|
|
1843
|
-
* @interface CustomerOrderRequestDTO
|
|
1844
|
-
*/
|
|
1845
|
-
export interface CustomerOrderRequestDTO {
|
|
1846
|
-
/**
|
|
1847
|
-
* Order Reference
|
|
1848
|
-
* @type {string}
|
|
1849
|
-
* @memberof CustomerOrderRequestDTO
|
|
1850
|
-
*/
|
|
1851
|
-
'orderReference'?: string | null;
|
|
1852
|
-
/**
|
|
1853
|
-
* Items
|
|
1854
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1855
|
-
* @memberof CustomerOrderRequestDTO
|
|
1856
|
-
*/
|
|
1857
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1858
|
-
/**
|
|
1859
|
-
*
|
|
1860
|
-
* @type {ShippingServiceDTO}
|
|
1861
|
-
* @memberof CustomerOrderRequestDTO
|
|
1862
|
-
*/
|
|
1863
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1864
|
-
/**
|
|
1865
|
-
* Provisioning URL
|
|
1866
|
-
* @type {string}
|
|
1867
|
-
* @memberof CustomerOrderRequestDTO
|
|
1868
|
-
*/
|
|
1869
|
-
'provisioningUrl'?: string | null;
|
|
1870
|
-
/**
|
|
1871
|
-
*
|
|
1872
|
-
* @type {AddressModel}
|
|
1873
|
-
* @memberof CustomerOrderRequestDTO
|
|
1874
|
-
*/
|
|
1875
|
-
'shippingAddress'?: AddressModel;
|
|
1876
|
-
/**
|
|
1877
|
-
* Part Ship Order
|
|
1878
|
-
* @type {boolean}
|
|
1879
|
-
* @memberof CustomerOrderRequestDTO
|
|
1880
|
-
*/
|
|
1881
|
-
'partShip'?: boolean;
|
|
1882
|
-
/**
|
|
1883
|
-
* Quote
|
|
1884
|
-
* @type {boolean}
|
|
1885
|
-
* @memberof CustomerOrderRequestDTO
|
|
1886
|
-
*/
|
|
1887
|
-
'quote'?: boolean;
|
|
1888
|
-
}
|
|
1889
1349
|
/**
|
|
1890
1350
|
* Customer Price List
|
|
1891
1351
|
* @export
|
|
@@ -2392,6 +1852,19 @@ export interface GenericFileModel {
|
|
|
2392
1852
|
*/
|
|
2393
1853
|
'type'?: string;
|
|
2394
1854
|
}
|
|
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
|
+
}
|
|
2395
1868
|
/**
|
|
2396
1869
|
*
|
|
2397
1870
|
* @export
|
|
@@ -2986,36 +2459,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2986
2459
|
* @interface ItemDTO
|
|
2987
2460
|
*/
|
|
2988
2461
|
export interface ItemDTO {
|
|
2989
|
-
/**
|
|
2990
|
-
* SKU
|
|
2991
|
-
* @type {string}
|
|
2992
|
-
* @memberof ItemDTO
|
|
2993
|
-
*/
|
|
2994
|
-
'sku'?: string;
|
|
2995
|
-
/**
|
|
2996
|
-
* Quantity
|
|
2997
|
-
* @type {number}
|
|
2998
|
-
* @memberof ItemDTO
|
|
2999
|
-
*/
|
|
3000
|
-
'quantity'?: number;
|
|
3001
2462
|
/**
|
|
3002
2463
|
* ID
|
|
3003
2464
|
* @type {number}
|
|
3004
2465
|
* @memberof ItemDTO
|
|
3005
2466
|
*/
|
|
3006
|
-
'id'?: number
|
|
2467
|
+
'id'?: number;
|
|
3007
2468
|
/**
|
|
3008
2469
|
* Order ID
|
|
3009
2470
|
* @type {number}
|
|
3010
2471
|
* @memberof ItemDTO
|
|
3011
2472
|
*/
|
|
3012
|
-
'orderId'?: number
|
|
2473
|
+
'orderId'?: number;
|
|
3013
2474
|
/**
|
|
3014
2475
|
* Title
|
|
3015
2476
|
* @type {string}
|
|
3016
2477
|
* @memberof ItemDTO
|
|
3017
2478
|
*/
|
|
3018
|
-
'title'?: string;
|
|
2479
|
+
'title'?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* SKU
|
|
2482
|
+
* @type {string}
|
|
2483
|
+
* @memberof ItemDTO
|
|
2484
|
+
*/
|
|
2485
|
+
'sku'?: string;
|
|
2486
|
+
/**
|
|
2487
|
+
* Quantity
|
|
2488
|
+
* @type {number}
|
|
2489
|
+
* @memberof ItemDTO
|
|
2490
|
+
*/
|
|
2491
|
+
'quantity'?: number;
|
|
3019
2492
|
/**
|
|
3020
2493
|
* Price
|
|
3021
2494
|
* @type {number}
|
|
@@ -3040,12 +2513,6 @@ export interface ItemDTO {
|
|
|
3040
2513
|
* @memberof ItemDTO
|
|
3041
2514
|
*/
|
|
3042
2515
|
'processDate'?: string;
|
|
3043
|
-
/**
|
|
3044
|
-
* 3CX Hosting
|
|
3045
|
-
* @type {boolean}
|
|
3046
|
-
* @memberof ItemDTO
|
|
3047
|
-
*/
|
|
3048
|
-
'hosting'?: boolean | null;
|
|
3049
2516
|
/**
|
|
3050
2517
|
* Promo Item
|
|
3051
2518
|
* @type {boolean}
|
|
@@ -3057,68 +2524,7 @@ export interface ItemDTO {
|
|
|
3057
2524
|
* @type {number}
|
|
3058
2525
|
* @memberof ItemDTO
|
|
3059
2526
|
*/
|
|
3060
|
-
'refunded'?: number
|
|
3061
|
-
/**
|
|
3062
|
-
* SBCs
|
|
3063
|
-
* @type {Array<TcxSbcDTO>}
|
|
3064
|
-
* @memberof ItemDTO
|
|
3065
|
-
*/
|
|
3066
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3067
|
-
/**
|
|
3068
|
-
* Readonly
|
|
3069
|
-
* @type {boolean}
|
|
3070
|
-
* @memberof ItemDTO
|
|
3071
|
-
*/
|
|
3072
|
-
'readonly'?: boolean;
|
|
3073
|
-
/**
|
|
3074
|
-
* 3CX Sales Code
|
|
3075
|
-
* @type {string}
|
|
3076
|
-
* @memberof ItemDTO
|
|
3077
|
-
*/
|
|
3078
|
-
'tcxSalesCode'?: string | null;
|
|
3079
|
-
}
|
|
3080
|
-
/**
|
|
3081
|
-
* ItemDiscountsEntity
|
|
3082
|
-
* @export
|
|
3083
|
-
* @interface ItemDiscountEntity
|
|
3084
|
-
*/
|
|
3085
|
-
export interface ItemDiscountEntity {
|
|
3086
|
-
/**
|
|
3087
|
-
* id
|
|
3088
|
-
* @type {number}
|
|
3089
|
-
* @memberof ItemDiscountEntity
|
|
3090
|
-
*/
|
|
3091
|
-
'id'?: number;
|
|
3092
|
-
/**
|
|
3093
|
-
* itemId
|
|
3094
|
-
* @type {number}
|
|
3095
|
-
* @memberof ItemDiscountEntity
|
|
3096
|
-
*/
|
|
3097
|
-
'itemId'?: number;
|
|
3098
|
-
/**
|
|
3099
|
-
* priceList
|
|
3100
|
-
* @type {string}
|
|
3101
|
-
* @memberof ItemDiscountEntity
|
|
3102
|
-
*/
|
|
3103
|
-
'priceList'?: string;
|
|
3104
|
-
/**
|
|
3105
|
-
* discount
|
|
3106
|
-
* @type {number}
|
|
3107
|
-
* @memberof ItemDiscountEntity
|
|
3108
|
-
*/
|
|
3109
|
-
'discount'?: number;
|
|
3110
|
-
/**
|
|
3111
|
-
* description
|
|
3112
|
-
* @type {string}
|
|
3113
|
-
* @memberof ItemDiscountEntity
|
|
3114
|
-
*/
|
|
3115
|
-
'description'?: string;
|
|
3116
|
-
/**
|
|
3117
|
-
* priority
|
|
3118
|
-
* @type {number}
|
|
3119
|
-
* @memberof ItemDiscountEntity
|
|
3120
|
-
*/
|
|
3121
|
-
'priority'?: number;
|
|
2527
|
+
'refunded'?: number;
|
|
3122
2528
|
}
|
|
3123
2529
|
/**
|
|
3124
2530
|
* ItemsEntity
|
|
@@ -3252,31 +2658,6 @@ export interface ItemEntity {
|
|
|
3252
2658
|
* @memberof ItemEntity
|
|
3253
2659
|
*/
|
|
3254
2660
|
'promoItem'?: number;
|
|
3255
|
-
/**
|
|
3256
|
-
* 3CX Sales Code
|
|
3257
|
-
* @type {string}
|
|
3258
|
-
* @memberof ItemEntity
|
|
3259
|
-
*/
|
|
3260
|
-
'tcxSalesCode'?: string | null;
|
|
3261
|
-
}
|
|
3262
|
-
/**
|
|
3263
|
-
* LinkedOrdersEntity
|
|
3264
|
-
* @export
|
|
3265
|
-
* @interface LinkedOrderEntity
|
|
3266
|
-
*/
|
|
3267
|
-
export interface LinkedOrderEntity {
|
|
3268
|
-
/**
|
|
3269
|
-
* orderId
|
|
3270
|
-
* @type {number}
|
|
3271
|
-
* @memberof LinkedOrderEntity
|
|
3272
|
-
*/
|
|
3273
|
-
'orderId'?: number;
|
|
3274
|
-
/**
|
|
3275
|
-
* linkedOrderId
|
|
3276
|
-
* @type {number}
|
|
3277
|
-
* @memberof LinkedOrderEntity
|
|
3278
|
-
*/
|
|
3279
|
-
'linkedOrderId'?: number;
|
|
3280
2661
|
}
|
|
3281
2662
|
/**
|
|
3282
2663
|
* MFA Required
|
|
@@ -3930,19 +3311,13 @@ export interface OrderSummaryDTO {
|
|
|
3930
3311
|
* @type {string}
|
|
3931
3312
|
* @memberof OrderSummaryDTO
|
|
3932
3313
|
*/
|
|
3933
|
-
'reference'?: string
|
|
3314
|
+
'reference'?: string;
|
|
3934
3315
|
/**
|
|
3935
3316
|
* Invoice Number
|
|
3936
3317
|
* @type {string}
|
|
3937
3318
|
* @memberof OrderSummaryDTO
|
|
3938
3319
|
*/
|
|
3939
3320
|
'invoiceNumber'?: string;
|
|
3940
|
-
/**
|
|
3941
|
-
* Invoice ID
|
|
3942
|
-
* @type {string}
|
|
3943
|
-
* @memberof OrderSummaryDTO
|
|
3944
|
-
*/
|
|
3945
|
-
'invoiceId'?: string | null;
|
|
3946
3321
|
/**
|
|
3947
3322
|
* Date Time
|
|
3948
3323
|
* @type {string}
|
|
@@ -3997,24 +3372,6 @@ export interface OrderSummaryDTO {
|
|
|
3997
3372
|
* @memberof OrderSummaryDTO
|
|
3998
3373
|
*/
|
|
3999
3374
|
'fulfillable'?: boolean | null;
|
|
4000
|
-
/**
|
|
4001
|
-
* Provisioning URL
|
|
4002
|
-
* @type {string}
|
|
4003
|
-
* @memberof OrderSummaryDTO
|
|
4004
|
-
*/
|
|
4005
|
-
'provisioningUrl'?: string | null;
|
|
4006
|
-
/**
|
|
4007
|
-
*
|
|
4008
|
-
* @type {ShippingServiceDTO}
|
|
4009
|
-
* @memberof OrderSummaryDTO
|
|
4010
|
-
*/
|
|
4011
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
4012
|
-
/**
|
|
4013
|
-
* Readonly
|
|
4014
|
-
* @type {boolean}
|
|
4015
|
-
* @memberof OrderSummaryDTO
|
|
4016
|
-
*/
|
|
4017
|
-
'readonly'?: boolean;
|
|
4018
3375
|
}
|
|
4019
3376
|
/**
|
|
4020
3377
|
* Order Totals
|
|
@@ -4064,12 +3421,6 @@ export interface OrderTotalModel {
|
|
|
4064
3421
|
* @memberof OrderTotalModel
|
|
4065
3422
|
*/
|
|
4066
3423
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4067
|
-
/**
|
|
4068
|
-
* Delivery
|
|
4069
|
-
* @type {number}
|
|
4070
|
-
* @memberof OrderTotalModel
|
|
4071
|
-
*/
|
|
4072
|
-
'delivery'?: number | null;
|
|
4073
3424
|
}
|
|
4074
3425
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
4075
3426
|
readonly Eur: "EUR";
|
|
@@ -4448,31 +3799,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4448
3799
|
*/
|
|
4449
3800
|
'scopes'?: Array<string>;
|
|
4450
3801
|
}
|
|
4451
|
-
/**
|
|
4452
|
-
*
|
|
4453
|
-
* @export
|
|
4454
|
-
* @interface PostGetProductForCustomerRequest
|
|
4455
|
-
*/
|
|
4456
|
-
export interface PostGetProductForCustomerRequest {
|
|
4457
|
-
/**
|
|
4458
|
-
* Quantity
|
|
4459
|
-
* @type {number}
|
|
4460
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4461
|
-
*/
|
|
4462
|
-
'quantity'?: number | null;
|
|
4463
|
-
/**
|
|
4464
|
-
* 3CX Licence Key
|
|
4465
|
-
* @type {string}
|
|
4466
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4467
|
-
*/
|
|
4468
|
-
'licenceKey'?: string | null;
|
|
4469
|
-
/**
|
|
4470
|
-
* 3CX Hosting
|
|
4471
|
-
* @type {boolean}
|
|
4472
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4473
|
-
*/
|
|
4474
|
-
'hosting'?: boolean | null;
|
|
4475
|
-
}
|
|
4476
3802
|
/**
|
|
4477
3803
|
* Price & Stock List
|
|
4478
3804
|
* @export
|
|
@@ -4604,10 +3930,10 @@ export interface ProductPriceListItemModel {
|
|
|
4604
3930
|
export interface ProductSearchResultsModel {
|
|
4605
3931
|
/**
|
|
4606
3932
|
* Results
|
|
4607
|
-
* @type {Array<
|
|
3933
|
+
* @type {Array<ProductSummaryModel>}
|
|
4608
3934
|
* @memberof ProductSearchResultsModel
|
|
4609
3935
|
*/
|
|
4610
|
-
'results'?: Array<
|
|
3936
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4611
3937
|
}
|
|
4612
3938
|
/**
|
|
4613
3939
|
* Product Serial Info
|
|
@@ -4643,51 +3969,45 @@ export interface ProductSerialInfoModel {
|
|
|
4643
3969
|
/**
|
|
4644
3970
|
* Product Summary
|
|
4645
3971
|
* @export
|
|
4646
|
-
* @interface
|
|
3972
|
+
* @interface ProductSummaryModel
|
|
4647
3973
|
*/
|
|
4648
|
-
export interface
|
|
3974
|
+
export interface ProductSummaryModel {
|
|
4649
3975
|
/**
|
|
4650
3976
|
* SKU
|
|
4651
3977
|
* @type {string}
|
|
4652
|
-
* @memberof
|
|
3978
|
+
* @memberof ProductSummaryModel
|
|
4653
3979
|
*/
|
|
4654
3980
|
'sku'?: string;
|
|
4655
3981
|
/**
|
|
4656
3982
|
* Title
|
|
4657
3983
|
* @type {string}
|
|
4658
|
-
* @memberof
|
|
3984
|
+
* @memberof ProductSummaryModel
|
|
4659
3985
|
*/
|
|
4660
3986
|
'title'?: string;
|
|
4661
3987
|
/**
|
|
4662
3988
|
* Stock Quantity
|
|
4663
3989
|
* @type {number}
|
|
4664
|
-
* @memberof
|
|
3990
|
+
* @memberof ProductSummaryModel
|
|
4665
3991
|
*/
|
|
4666
3992
|
'quantity'?: number | null;
|
|
4667
3993
|
/**
|
|
4668
3994
|
* Stock Product
|
|
4669
3995
|
* @type {boolean}
|
|
4670
|
-
* @memberof
|
|
3996
|
+
* @memberof ProductSummaryModel
|
|
4671
3997
|
*/
|
|
4672
3998
|
'stockProduct'?: boolean;
|
|
4673
3999
|
/**
|
|
4674
4000
|
* Price
|
|
4675
4001
|
* @type {number}
|
|
4676
|
-
* @memberof
|
|
4002
|
+
* @memberof ProductSummaryModel
|
|
4677
4003
|
*/
|
|
4678
4004
|
'price'?: number | null;
|
|
4679
4005
|
/**
|
|
4680
4006
|
* Carton Size
|
|
4681
4007
|
* @type {number}
|
|
4682
|
-
* @memberof
|
|
4008
|
+
* @memberof ProductSummaryModel
|
|
4683
4009
|
*/
|
|
4684
4010
|
'cartonSize'?: number | null;
|
|
4685
|
-
/**
|
|
4686
|
-
* RRP Price
|
|
4687
|
-
* @type {number}
|
|
4688
|
-
* @memberof ProductSummaryDTO
|
|
4689
|
-
*/
|
|
4690
|
-
'rrp'?: number | null;
|
|
4691
4011
|
}
|
|
4692
4012
|
/**
|
|
4693
4013
|
* PromoCodesEntity
|
|
@@ -4826,37 +4146,37 @@ export interface PromoItemsEntity {
|
|
|
4826
4146
|
/**
|
|
4827
4147
|
* Provisioning Group
|
|
4828
4148
|
* @export
|
|
4829
|
-
* @interface
|
|
4149
|
+
* @interface ProvisioningEntity
|
|
4830
4150
|
*/
|
|
4831
|
-
export interface
|
|
4151
|
+
export interface ProvisioningEntity {
|
|
4832
4152
|
/**
|
|
4833
4153
|
* Provisioning Group Name
|
|
4834
4154
|
* @type {string}
|
|
4835
|
-
* @memberof
|
|
4155
|
+
* @memberof ProvisioningEntity
|
|
4836
4156
|
*/
|
|
4837
4157
|
'groupName'?: string;
|
|
4838
4158
|
/**
|
|
4839
4159
|
* Provisioning URL (Static Provisioning Server)
|
|
4840
4160
|
* @type {string}
|
|
4841
|
-
* @memberof
|
|
4161
|
+
* @memberof ProvisioningEntity
|
|
4842
4162
|
*/
|
|
4843
4163
|
'provisioningUrl'?: string;
|
|
4844
4164
|
/**
|
|
4845
4165
|
* Additional Authentication Secret
|
|
4846
4166
|
* @type {string}
|
|
4847
|
-
* @memberof
|
|
4167
|
+
* @memberof ProvisioningEntity
|
|
4848
4168
|
*/
|
|
4849
4169
|
'auth'?: string;
|
|
4850
4170
|
/**
|
|
4851
4171
|
* Provisioning Group ID
|
|
4852
4172
|
* @type {number}
|
|
4853
|
-
* @memberof
|
|
4173
|
+
* @memberof ProvisioningEntity
|
|
4854
4174
|
*/
|
|
4855
4175
|
'id'?: number;
|
|
4856
4176
|
/**
|
|
4857
4177
|
* Owner ID
|
|
4858
4178
|
* @type {number}
|
|
4859
|
-
* @memberof
|
|
4179
|
+
* @memberof ProvisioningEntity
|
|
4860
4180
|
*/
|
|
4861
4181
|
'customerId'?: number;
|
|
4862
4182
|
}
|
|
@@ -5210,7 +4530,7 @@ export interface ShipmentEntity {
|
|
|
5210
4530
|
* @type {string}
|
|
5211
4531
|
* @memberof ShipmentEntity
|
|
5212
4532
|
*/
|
|
5213
|
-
'
|
|
4533
|
+
'date'?: string;
|
|
5214
4534
|
/**
|
|
5215
4535
|
* requestDate
|
|
5216
4536
|
* @type {string}
|
|
@@ -5261,149 +4581,6 @@ export interface ShipmentItemEntity {
|
|
|
5261
4581
|
*/
|
|
5262
4582
|
'itemId'?: string;
|
|
5263
4583
|
}
|
|
5264
|
-
/**
|
|
5265
|
-
*
|
|
5266
|
-
* @export
|
|
5267
|
-
* @interface ShippingConsignmentModel
|
|
5268
|
-
*/
|
|
5269
|
-
export interface ShippingConsignmentModel {
|
|
5270
|
-
/**
|
|
5271
|
-
*
|
|
5272
|
-
* @type {ShippingServiceModel}
|
|
5273
|
-
* @memberof ShippingConsignmentModel
|
|
5274
|
-
*/
|
|
5275
|
-
'service'?: ShippingServiceModel;
|
|
5276
|
-
/**
|
|
5277
|
-
* ID/Number
|
|
5278
|
-
* @type {string}
|
|
5279
|
-
* @memberof ShippingConsignmentModel
|
|
5280
|
-
*/
|
|
5281
|
-
'id'?: string;
|
|
5282
|
-
/**
|
|
5283
|
-
* Tracking Number
|
|
5284
|
-
* @type {string}
|
|
5285
|
-
* @memberof ShippingConsignmentModel
|
|
5286
|
-
*/
|
|
5287
|
-
'trackingNumber'?: string;
|
|
5288
|
-
/**
|
|
5289
|
-
* Parcels
|
|
5290
|
-
* @type {Array<string>}
|
|
5291
|
-
* @memberof ShippingConsignmentModel
|
|
5292
|
-
*/
|
|
5293
|
-
'parcelIds'?: Array<string>;
|
|
5294
|
-
}
|
|
5295
|
-
/**
|
|
5296
|
-
* Shipping Information
|
|
5297
|
-
* @export
|
|
5298
|
-
* @interface ShippingInformationDTO
|
|
5299
|
-
*/
|
|
5300
|
-
export interface ShippingInformationDTO {
|
|
5301
|
-
/**
|
|
5302
|
-
* Items
|
|
5303
|
-
* @type {Array<BasicItemDTO>}
|
|
5304
|
-
* @memberof ShippingInformationDTO
|
|
5305
|
-
*/
|
|
5306
|
-
'items'?: Array<BasicItemDTO>;
|
|
5307
|
-
/**
|
|
5308
|
-
* Destination Post Code
|
|
5309
|
-
* @type {string}
|
|
5310
|
-
* @memberof ShippingInformationDTO
|
|
5311
|
-
*/
|
|
5312
|
-
'postalCode'?: string;
|
|
5313
|
-
/**
|
|
5314
|
-
* Destination ISO
|
|
5315
|
-
* @type {string}
|
|
5316
|
-
* @memberof ShippingInformationDTO
|
|
5317
|
-
*/
|
|
5318
|
-
'iso'?: string;
|
|
5319
|
-
}
|
|
5320
|
-
/**
|
|
5321
|
-
* Shipping Service
|
|
5322
|
-
* @export
|
|
5323
|
-
* @interface ShippingServiceDTO
|
|
5324
|
-
*/
|
|
5325
|
-
export interface ShippingServiceDTO {
|
|
5326
|
-
/**
|
|
5327
|
-
* Courier
|
|
5328
|
-
* @type {string}
|
|
5329
|
-
* @memberof ShippingServiceDTO
|
|
5330
|
-
*/
|
|
5331
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5332
|
-
/**
|
|
5333
|
-
* Service Name
|
|
5334
|
-
* @type {string}
|
|
5335
|
-
* @memberof ShippingServiceDTO
|
|
5336
|
-
*/
|
|
5337
|
-
'serviceName'?: string;
|
|
5338
|
-
}
|
|
5339
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5340
|
-
readonly Dpd: "DPD";
|
|
5341
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5342
|
-
readonly Pops: "POPS";
|
|
5343
|
-
};
|
|
5344
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5345
|
-
/**
|
|
5346
|
-
* Shipping Service
|
|
5347
|
-
* @export
|
|
5348
|
-
* @interface ShippingServiceModel
|
|
5349
|
-
*/
|
|
5350
|
-
export interface ShippingServiceModel {
|
|
5351
|
-
/**
|
|
5352
|
-
* Courier
|
|
5353
|
-
* @type {string}
|
|
5354
|
-
* @memberof ShippingServiceModel
|
|
5355
|
-
*/
|
|
5356
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5357
|
-
/**
|
|
5358
|
-
* Code
|
|
5359
|
-
* @type {string}
|
|
5360
|
-
* @memberof ShippingServiceModel
|
|
5361
|
-
*/
|
|
5362
|
-
'code'?: string;
|
|
5363
|
-
/**
|
|
5364
|
-
* Name
|
|
5365
|
-
* @type {string}
|
|
5366
|
-
* @memberof ShippingServiceModel
|
|
5367
|
-
*/
|
|
5368
|
-
'name'?: string;
|
|
5369
|
-
/**
|
|
5370
|
-
* Description
|
|
5371
|
-
* @type {string}
|
|
5372
|
-
* @memberof ShippingServiceModel
|
|
5373
|
-
*/
|
|
5374
|
-
'description'?: string;
|
|
5375
|
-
/**
|
|
5376
|
-
* Label
|
|
5377
|
-
* @type {string}
|
|
5378
|
-
* @memberof ShippingServiceModel
|
|
5379
|
-
*/
|
|
5380
|
-
'label'?: string | null;
|
|
5381
|
-
/**
|
|
5382
|
-
* Price
|
|
5383
|
-
* @type {number}
|
|
5384
|
-
* @memberof ShippingServiceModel
|
|
5385
|
-
*/
|
|
5386
|
-
'price'?: number | null;
|
|
5387
|
-
}
|
|
5388
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5389
|
-
readonly Dpd: "DPD";
|
|
5390
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5391
|
-
readonly Pops: "POPS";
|
|
5392
|
-
};
|
|
5393
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5394
|
-
/**
|
|
5395
|
-
*
|
|
5396
|
-
* @export
|
|
5397
|
-
* @interface ShippingServicesModel
|
|
5398
|
-
*/
|
|
5399
|
-
export interface ShippingServicesModel {
|
|
5400
|
-
/**
|
|
5401
|
-
* Services
|
|
5402
|
-
* @type {Array<ShippingServiceModel>}
|
|
5403
|
-
* @memberof ShippingServicesModel
|
|
5404
|
-
*/
|
|
5405
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5406
|
-
}
|
|
5407
4584
|
/**
|
|
5408
4585
|
* Change Response
|
|
5409
4586
|
* @export
|
|
@@ -8223,49 +7400,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8223
7400
|
*/
|
|
8224
7401
|
'secretAccessKey'?: string;
|
|
8225
7402
|
}
|
|
8226
|
-
/**
|
|
8227
|
-
* SBC Data
|
|
8228
|
-
* @export
|
|
8229
|
-
* @interface TcxSbcDTO
|
|
8230
|
-
*/
|
|
8231
|
-
export interface TcxSbcDTO {
|
|
8232
|
-
/**
|
|
8233
|
-
* LAN IP Address
|
|
8234
|
-
* @type {string}
|
|
8235
|
-
* @memberof TcxSbcDTO
|
|
8236
|
-
*/
|
|
8237
|
-
'ipAddress'?: string;
|
|
8238
|
-
/**
|
|
8239
|
-
* LAN Default Gateway
|
|
8240
|
-
* @type {string}
|
|
8241
|
-
* @memberof TcxSbcDTO
|
|
8242
|
-
*/
|
|
8243
|
-
'defaultGateway'?: string;
|
|
8244
|
-
/**
|
|
8245
|
-
* LAN Subnet Mask
|
|
8246
|
-
* @type {string}
|
|
8247
|
-
* @memberof TcxSbcDTO
|
|
8248
|
-
*/
|
|
8249
|
-
'netmask'?: string;
|
|
8250
|
-
/**
|
|
8251
|
-
* DNS
|
|
8252
|
-
* @type {string}
|
|
8253
|
-
* @memberof TcxSbcDTO
|
|
8254
|
-
*/
|
|
8255
|
-
'dns'?: string;
|
|
8256
|
-
/**
|
|
8257
|
-
* 3CX URL
|
|
8258
|
-
* @type {string}
|
|
8259
|
-
* @memberof TcxSbcDTO
|
|
8260
|
-
*/
|
|
8261
|
-
'tcxUrl'?: string;
|
|
8262
|
-
/**
|
|
8263
|
-
* 3CX SBC Key
|
|
8264
|
-
* @type {string}
|
|
8265
|
-
* @memberof TcxSbcDTO
|
|
8266
|
-
*/
|
|
8267
|
-
'tcxKey'?: string;
|
|
8268
|
-
}
|
|
8269
7403
|
/**
|
|
8270
7404
|
* 3CX Wizard SBC
|
|
8271
7405
|
* @export
|
|
@@ -8370,7 +7504,7 @@ export interface TcxSbcEntity {
|
|
|
8370
7504
|
'technicalContact'?: string;
|
|
8371
7505
|
}
|
|
8372
7506
|
/**
|
|
8373
|
-
* 3CX
|
|
7507
|
+
* 3CX SBC Model
|
|
8374
7508
|
* @export
|
|
8375
7509
|
* @interface TcxSbcModel
|
|
8376
7510
|
*/
|
|
@@ -9448,14 +8582,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9448
8582
|
* @throws {RequiredError}
|
|
9449
8583
|
*/
|
|
9450
8584
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9451
|
-
/**
|
|
9452
|
-
* Get Account Detailed Summary
|
|
9453
|
-
* @summary Get Account Detailed Summary
|
|
9454
|
-
* @param {number} id Customer ID
|
|
9455
|
-
* @param {*} [options] Override http request option.
|
|
9456
|
-
* @throws {RequiredError}
|
|
9457
|
-
*/
|
|
9458
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9459
8585
|
/**
|
|
9460
8586
|
* Get Accounts
|
|
9461
8587
|
* @summary Get Accounts
|
|
@@ -9521,13 +8647,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9521
8647
|
* @throws {RequiredError}
|
|
9522
8648
|
*/
|
|
9523
8649
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9524
|
-
/**
|
|
9525
|
-
* Get Admin Account
|
|
9526
|
-
* @summary Get Admin Account
|
|
9527
|
-
* @param {*} [options] Override http request option.
|
|
9528
|
-
* @throws {RequiredError}
|
|
9529
|
-
*/
|
|
9530
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9531
8650
|
/**
|
|
9532
8651
|
* Create client credentials
|
|
9533
8652
|
* @summary Create client credentials
|
|
@@ -9608,14 +8727,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9608
8727
|
* @throws {RequiredError}
|
|
9609
8728
|
*/
|
|
9610
8729
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9611
|
-
/**
|
|
9612
|
-
* Get Account Detailed Summary
|
|
9613
|
-
* @summary Get Account Detailed Summary
|
|
9614
|
-
* @param {number} id Customer ID
|
|
9615
|
-
* @param {*} [options] Override http request option.
|
|
9616
|
-
* @throws {RequiredError}
|
|
9617
|
-
*/
|
|
9618
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9619
8730
|
/**
|
|
9620
8731
|
* Get Accounts
|
|
9621
8732
|
* @summary Get Accounts
|
|
@@ -9681,13 +8792,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9681
8792
|
* @throws {RequiredError}
|
|
9682
8793
|
*/
|
|
9683
8794
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9684
|
-
/**
|
|
9685
|
-
* Get Admin Account
|
|
9686
|
-
* @summary Get Admin Account
|
|
9687
|
-
* @param {*} [options] Override http request option.
|
|
9688
|
-
* @throws {RequiredError}
|
|
9689
|
-
*/
|
|
9690
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9691
8795
|
/**
|
|
9692
8796
|
* Create client credentials
|
|
9693
8797
|
* @summary Create client credentials
|
|
@@ -9768,14 +8872,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9768
8872
|
* @throws {RequiredError}
|
|
9769
8873
|
*/
|
|
9770
8874
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9771
|
-
/**
|
|
9772
|
-
* Get Account Detailed Summary
|
|
9773
|
-
* @summary Get Account Detailed Summary
|
|
9774
|
-
* @param {number} id Customer ID
|
|
9775
|
-
* @param {*} [options] Override http request option.
|
|
9776
|
-
* @throws {RequiredError}
|
|
9777
|
-
*/
|
|
9778
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9779
8875
|
/**
|
|
9780
8876
|
* Get Accounts
|
|
9781
8877
|
* @summary Get Accounts
|
|
@@ -9841,13 +8937,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9841
8937
|
* @throws {RequiredError}
|
|
9842
8938
|
*/
|
|
9843
8939
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9844
|
-
/**
|
|
9845
|
-
* Get Admin Account
|
|
9846
|
-
* @summary Get Admin Account
|
|
9847
|
-
* @param {*} [options] Override http request option.
|
|
9848
|
-
* @throws {RequiredError}
|
|
9849
|
-
*/
|
|
9850
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9851
8940
|
/**
|
|
9852
8941
|
* Create client credentials
|
|
9853
8942
|
* @summary Create client credentials
|
|
@@ -9926,23 +9015,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9926
9015
|
*/
|
|
9927
9016
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9928
9017
|
/**
|
|
9929
|
-
* Get Account Contacts
|
|
9930
|
-
* @summary Get Account Contacts
|
|
9931
|
-
* @param {string} [email] Contact Email Address
|
|
9932
|
-
* @param {*} [options] Override http request option.
|
|
9933
|
-
* @throws {RequiredError}
|
|
9934
|
-
* @memberof AccountsApi
|
|
9935
|
-
*/
|
|
9936
|
-
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9937
|
-
/**
|
|
9938
|
-
* Get Account Detailed Summary
|
|
9939
|
-
* @summary Get Account Detailed Summary
|
|
9940
|
-
* @param {number} id Customer ID
|
|
9018
|
+
* Get Account Contacts
|
|
9019
|
+
* @summary Get Account Contacts
|
|
9020
|
+
* @param {string} [email] Contact Email Address
|
|
9941
9021
|
* @param {*} [options] Override http request option.
|
|
9942
9022
|
* @throws {RequiredError}
|
|
9943
9023
|
* @memberof AccountsApi
|
|
9944
9024
|
*/
|
|
9945
|
-
|
|
9025
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9946
9026
|
/**
|
|
9947
9027
|
* Get Accounts
|
|
9948
9028
|
* @summary Get Accounts
|
|
@@ -10016,14 +9096,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
10016
9096
|
* @memberof AccountsApi
|
|
10017
9097
|
*/
|
|
10018
9098
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
10019
|
-
/**
|
|
10020
|
-
* Get Admin Account
|
|
10021
|
-
* @summary Get Admin Account
|
|
10022
|
-
* @param {*} [options] Override http request option.
|
|
10023
|
-
* @throws {RequiredError}
|
|
10024
|
-
* @memberof AccountsApi
|
|
10025
|
-
*/
|
|
10026
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
10027
9099
|
/**
|
|
10028
9100
|
* Create client credentials
|
|
10029
9101
|
* @summary Create client credentials
|
|
@@ -10137,6 +9209,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10137
9209
|
* @throws {RequiredError}
|
|
10138
9210
|
*/
|
|
10139
9211
|
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>;
|
|
10140
9220
|
/**
|
|
10141
9221
|
* Get Bulk 3CX Licence Details
|
|
10142
9222
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10159,6 +9239,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
10159
9239
|
* @throws {RequiredError}
|
|
10160
9240
|
*/
|
|
10161
9241
|
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>>;
|
|
10162
9250
|
/**
|
|
10163
9251
|
* Get Bulk 3CX Licence Details
|
|
10164
9252
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10181,6 +9269,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
10181
9269
|
* @throws {RequiredError}
|
|
10182
9270
|
*/
|
|
10183
9271
|
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>;
|
|
10184
9280
|
/**
|
|
10185
9281
|
* Get Bulk 3CX Licence Details
|
|
10186
9282
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10206,6 +9302,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10206
9302
|
* @memberof Class3CXApi
|
|
10207
9303
|
*/
|
|
10208
9304
|
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, {}>>;
|
|
10209
9314
|
/**
|
|
10210
9315
|
* Get Bulk 3CX Licence Details
|
|
10211
9316
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12749,20 +11854,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12749
11854
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12750
11855
|
/**
|
|
12751
11856
|
* Delete Orders
|
|
12752
|
-
* @summary Delete Orders
|
|
12753
|
-
* @param {number} id Order ID
|
|
12754
|
-
* @param {*} [options] Override http request option.
|
|
12755
|
-
* @throws {RequiredError}
|
|
12756
|
-
*/
|
|
12757
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12758
|
-
/**
|
|
12759
|
-
* Get Editable Order
|
|
12760
|
-
* @summary Get Editable Order
|
|
12761
11857
|
* @param {number} id Order ID
|
|
12762
11858
|
* @param {*} [options] Override http request option.
|
|
12763
11859
|
* @throws {RequiredError}
|
|
12764
11860
|
*/
|
|
12765
|
-
|
|
11861
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12766
11862
|
/**
|
|
12767
11863
|
* Get Orders
|
|
12768
11864
|
* @summary Get Orders
|
|
@@ -12777,44 +11873,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12777
11873
|
* @throws {RequiredError}
|
|
12778
11874
|
*/
|
|
12779
11875
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12780
|
-
/**
|
|
12781
|
-
* Create An Order (Admin)
|
|
12782
|
-
* @summary Create An Order (Admin)
|
|
12783
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12784
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12785
|
-
* @param {*} [options] Override http request option.
|
|
12786
|
-
* @throws {RequiredError}
|
|
12787
|
-
*/
|
|
12788
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12789
|
-
/**
|
|
12790
|
-
* Create An Order
|
|
12791
|
-
* @summary Create An Order
|
|
12792
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12793
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12794
|
-
* @param {*} [options] Override http request option.
|
|
12795
|
-
* @throws {RequiredError}
|
|
12796
|
-
*/
|
|
12797
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12798
|
-
/**
|
|
12799
|
-
* Update An Order (Admin)
|
|
12800
|
-
* @summary Update An Order (Admin)
|
|
12801
|
-
* @param {number} id Order ID
|
|
12802
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12803
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12804
|
-
* @param {*} [options] Override http request option.
|
|
12805
|
-
* @throws {RequiredError}
|
|
12806
|
-
*/
|
|
12807
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12808
|
-
/**
|
|
12809
|
-
* Update An Order
|
|
12810
|
-
* @summary Update An Order
|
|
12811
|
-
* @param {number} id Order ID
|
|
12812
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12813
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12814
|
-
* @param {*} [options] Override http request option.
|
|
12815
|
-
* @throws {RequiredError}
|
|
12816
|
-
*/
|
|
12817
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12818
11876
|
};
|
|
12819
11877
|
/**
|
|
12820
11878
|
* OrdersApi - functional programming interface
|
|
@@ -12823,20 +11881,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12823
11881
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12824
11882
|
/**
|
|
12825
11883
|
* Delete Orders
|
|
12826
|
-
* @summary Delete Orders
|
|
12827
|
-
* @param {number} id Order ID
|
|
12828
|
-
* @param {*} [options] Override http request option.
|
|
12829
|
-
* @throws {RequiredError}
|
|
12830
|
-
*/
|
|
12831
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12832
|
-
/**
|
|
12833
|
-
* Get Editable Order
|
|
12834
|
-
* @summary Get Editable Order
|
|
12835
11884
|
* @param {number} id Order ID
|
|
12836
11885
|
* @param {*} [options] Override http request option.
|
|
12837
11886
|
* @throws {RequiredError}
|
|
12838
11887
|
*/
|
|
12839
|
-
|
|
11888
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12840
11889
|
/**
|
|
12841
11890
|
* Get Orders
|
|
12842
11891
|
* @summary Get Orders
|
|
@@ -12851,44 +11900,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12851
11900
|
* @throws {RequiredError}
|
|
12852
11901
|
*/
|
|
12853
11902
|
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>>;
|
|
12854
|
-
/**
|
|
12855
|
-
* Create An Order (Admin)
|
|
12856
|
-
* @summary Create An Order (Admin)
|
|
12857
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12858
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12859
|
-
* @param {*} [options] Override http request option.
|
|
12860
|
-
* @throws {RequiredError}
|
|
12861
|
-
*/
|
|
12862
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12863
|
-
/**
|
|
12864
|
-
* Create An Order
|
|
12865
|
-
* @summary Create An Order
|
|
12866
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12867
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12868
|
-
* @param {*} [options] Override http request option.
|
|
12869
|
-
* @throws {RequiredError}
|
|
12870
|
-
*/
|
|
12871
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12872
|
-
/**
|
|
12873
|
-
* Update An Order (Admin)
|
|
12874
|
-
* @summary Update An Order (Admin)
|
|
12875
|
-
* @param {number} id Order ID
|
|
12876
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12877
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12878
|
-
* @param {*} [options] Override http request option.
|
|
12879
|
-
* @throws {RequiredError}
|
|
12880
|
-
*/
|
|
12881
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12882
|
-
/**
|
|
12883
|
-
* Update An Order
|
|
12884
|
-
* @summary Update An Order
|
|
12885
|
-
* @param {number} id Order ID
|
|
12886
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12887
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12888
|
-
* @param {*} [options] Override http request option.
|
|
12889
|
-
* @throws {RequiredError}
|
|
12890
|
-
*/
|
|
12891
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12892
11903
|
};
|
|
12893
11904
|
/**
|
|
12894
11905
|
* OrdersApi - factory interface
|
|
@@ -12897,20 +11908,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12897
11908
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12898
11909
|
/**
|
|
12899
11910
|
* Delete Orders
|
|
12900
|
-
* @summary Delete Orders
|
|
12901
11911
|
* @param {number} id Order ID
|
|
12902
11912
|
* @param {*} [options] Override http request option.
|
|
12903
11913
|
* @throws {RequiredError}
|
|
12904
11914
|
*/
|
|
12905
|
-
|
|
12906
|
-
/**
|
|
12907
|
-
* Get Editable Order
|
|
12908
|
-
* @summary Get Editable Order
|
|
12909
|
-
* @param {number} id Order ID
|
|
12910
|
-
* @param {*} [options] Override http request option.
|
|
12911
|
-
* @throws {RequiredError}
|
|
12912
|
-
*/
|
|
12913
|
-
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
11915
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12914
11916
|
/**
|
|
12915
11917
|
* Get Orders
|
|
12916
11918
|
* @summary Get Orders
|
|
@@ -12925,44 +11927,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12925
11927
|
* @throws {RequiredError}
|
|
12926
11928
|
*/
|
|
12927
11929
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
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): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12937
|
-
/**
|
|
12938
|
-
* Create An Order
|
|
12939
|
-
* @summary Create An Order
|
|
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): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12946
|
-
/**
|
|
12947
|
-
* Update An Order (Admin)
|
|
12948
|
-
* @summary Update An Order (Admin)
|
|
12949
|
-
* @param {number} id Order ID
|
|
12950
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12951
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12952
|
-
* @param {*} [options] Override http request option.
|
|
12953
|
-
* @throws {RequiredError}
|
|
12954
|
-
*/
|
|
12955
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12956
|
-
/**
|
|
12957
|
-
* Update An Order
|
|
12958
|
-
* @summary Update An Order
|
|
12959
|
-
* @param {number} id Order ID
|
|
12960
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12961
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12962
|
-
* @param {*} [options] Override http request option.
|
|
12963
|
-
* @throws {RequiredError}
|
|
12964
|
-
*/
|
|
12965
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12966
11930
|
};
|
|
12967
11931
|
/**
|
|
12968
11932
|
* OrdersApi - object-oriented interface
|
|
@@ -12973,22 +11937,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12973
11937
|
export declare class OrdersApi extends BaseAPI {
|
|
12974
11938
|
/**
|
|
12975
11939
|
* Delete Orders
|
|
12976
|
-
* @summary Delete Orders
|
|
12977
|
-
* @param {number} id Order ID
|
|
12978
|
-
* @param {*} [options] Override http request option.
|
|
12979
|
-
* @throws {RequiredError}
|
|
12980
|
-
* @memberof OrdersApi
|
|
12981
|
-
*/
|
|
12982
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12983
|
-
/**
|
|
12984
|
-
* Get Editable Order
|
|
12985
|
-
* @summary Get Editable Order
|
|
12986
11940
|
* @param {number} id Order ID
|
|
12987
11941
|
* @param {*} [options] Override http request option.
|
|
12988
11942
|
* @throws {RequiredError}
|
|
12989
11943
|
* @memberof OrdersApi
|
|
12990
11944
|
*/
|
|
12991
|
-
|
|
11945
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12992
11946
|
/**
|
|
12993
11947
|
* Get Orders
|
|
12994
11948
|
* @summary Get Orders
|
|
@@ -13004,48 +11958,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13004
11958
|
* @memberof OrdersApi
|
|
13005
11959
|
*/
|
|
13006
11960
|
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, {}>>;
|
|
13007
|
-
/**
|
|
13008
|
-
* Create An Order (Admin)
|
|
13009
|
-
* @summary Create An Order (Admin)
|
|
13010
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13011
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13012
|
-
* @param {*} [options] Override http request option.
|
|
13013
|
-
* @throws {RequiredError}
|
|
13014
|
-
* @memberof OrdersApi
|
|
13015
|
-
*/
|
|
13016
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13017
|
-
/**
|
|
13018
|
-
* Create An Order
|
|
13019
|
-
* @summary Create An Order
|
|
13020
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13021
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13022
|
-
* @param {*} [options] Override http request option.
|
|
13023
|
-
* @throws {RequiredError}
|
|
13024
|
-
* @memberof OrdersApi
|
|
13025
|
-
*/
|
|
13026
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13027
|
-
/**
|
|
13028
|
-
* Update An Order (Admin)
|
|
13029
|
-
* @summary Update An Order (Admin)
|
|
13030
|
-
* @param {number} id Order ID
|
|
13031
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13032
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13033
|
-
* @param {*} [options] Override http request option.
|
|
13034
|
-
* @throws {RequiredError}
|
|
13035
|
-
* @memberof OrdersApi
|
|
13036
|
-
*/
|
|
13037
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13038
|
-
/**
|
|
13039
|
-
* Update An Order
|
|
13040
|
-
* @summary Update An Order
|
|
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
|
-
* @memberof OrdersApi
|
|
13047
|
-
*/
|
|
13048
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13049
11961
|
}
|
|
13050
11962
|
/**
|
|
13051
11963
|
* @export
|
|
@@ -13301,6 +12213,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13301
12213
|
* @throws {RequiredError}
|
|
13302
12214
|
*/
|
|
13303
12215
|
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>;
|
|
13304
12223
|
/**
|
|
13305
12224
|
* Get Current Stock & Pricing
|
|
13306
12225
|
* @summary Get Current Stock & Pricing
|
|
@@ -13313,10 +12232,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13313
12232
|
/**
|
|
13314
12233
|
* Get Products
|
|
13315
12234
|
* @summary Get Products
|
|
12235
|
+
* @param {number} [pageSize] Number Of Results
|
|
12236
|
+
* @param {number} [page] Page Number
|
|
12237
|
+
* @param {string} [search] Search
|
|
13316
12238
|
* @param {*} [options] Override http request option.
|
|
13317
12239
|
* @throws {RequiredError}
|
|
13318
12240
|
*/
|
|
13319
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12241
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13320
12242
|
/**
|
|
13321
12243
|
* Get Current Stock & Pricing
|
|
13322
12244
|
* @summary Get Current Stock & Pricing
|
|
@@ -13331,35 +12253,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13331
12253
|
* @throws {RequiredError}
|
|
13332
12254
|
*/
|
|
13333
12255
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13334
|
-
/**
|
|
13335
|
-
* Search Products
|
|
13336
|
-
* @summary Search Products
|
|
13337
|
-
* @param {number} [pageSize] Number Of Results
|
|
13338
|
-
* @param {number} [page] Page Number
|
|
13339
|
-
* @param {string} [search] Search
|
|
13340
|
-
* @param {*} [options] Override http request option.
|
|
13341
|
-
* @throws {RequiredError}
|
|
13342
|
-
*/
|
|
13343
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13344
|
-
/**
|
|
13345
|
-
* Get Product
|
|
13346
|
-
* @summary Get Product
|
|
13347
|
-
* @param {string} sku Product SKU
|
|
13348
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13349
|
-
* @param {*} [options] Override http request option.
|
|
13350
|
-
* @throws {RequiredError}
|
|
13351
|
-
*/
|
|
13352
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13353
|
-
/**
|
|
13354
|
-
* Get Product For Customer
|
|
13355
|
-
* @summary Get Product For Customer
|
|
13356
|
-
* @param {number} customerId Customer ID
|
|
13357
|
-
* @param {string} sku Product SKU
|
|
13358
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13359
|
-
* @param {*} [options] Override http request option.
|
|
13360
|
-
* @throws {RequiredError}
|
|
13361
|
-
*/
|
|
13362
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13363
12256
|
};
|
|
13364
12257
|
/**
|
|
13365
12258
|
* ProductsApi - functional programming interface
|
|
@@ -13373,6 +12266,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13373
12266
|
* @throws {RequiredError}
|
|
13374
12267
|
*/
|
|
13375
12268
|
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>>>;
|
|
13376
12276
|
/**
|
|
13377
12277
|
* Get Current Stock & Pricing
|
|
13378
12278
|
* @summary Get Current Stock & Pricing
|
|
@@ -13385,10 +12285,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13385
12285
|
/**
|
|
13386
12286
|
* Get Products
|
|
13387
12287
|
* @summary Get Products
|
|
12288
|
+
* @param {number} [pageSize] Number Of Results
|
|
12289
|
+
* @param {number} [page] Page Number
|
|
12290
|
+
* @param {string} [search] Search
|
|
13388
12291
|
* @param {*} [options] Override http request option.
|
|
13389
12292
|
* @throws {RequiredError}
|
|
13390
12293
|
*/
|
|
13391
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12294
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13392
12295
|
/**
|
|
13393
12296
|
* Get Current Stock & Pricing
|
|
13394
12297
|
* @summary Get Current Stock & Pricing
|
|
@@ -13403,35 +12306,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13403
12306
|
* @throws {RequiredError}
|
|
13404
12307
|
*/
|
|
13405
12308
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13406
|
-
/**
|
|
13407
|
-
* Search Products
|
|
13408
|
-
* @summary Search Products
|
|
13409
|
-
* @param {number} [pageSize] Number Of Results
|
|
13410
|
-
* @param {number} [page] Page Number
|
|
13411
|
-
* @param {string} [search] Search
|
|
13412
|
-
* @param {*} [options] Override http request option.
|
|
13413
|
-
* @throws {RequiredError}
|
|
13414
|
-
*/
|
|
13415
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13416
|
-
/**
|
|
13417
|
-
* Get Product
|
|
13418
|
-
* @summary Get Product
|
|
13419
|
-
* @param {string} sku Product SKU
|
|
13420
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13421
|
-
* @param {*} [options] Override http request option.
|
|
13422
|
-
* @throws {RequiredError}
|
|
13423
|
-
*/
|
|
13424
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13425
|
-
/**
|
|
13426
|
-
* Get Product For Customer
|
|
13427
|
-
* @summary Get Product For Customer
|
|
13428
|
-
* @param {number} customerId Customer ID
|
|
13429
|
-
* @param {string} sku Product SKU
|
|
13430
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13431
|
-
* @param {*} [options] Override http request option.
|
|
13432
|
-
* @throws {RequiredError}
|
|
13433
|
-
*/
|
|
13434
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13435
12309
|
};
|
|
13436
12310
|
/**
|
|
13437
12311
|
* ProductsApi - factory interface
|
|
@@ -13445,6 +12319,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13445
12319
|
* @throws {RequiredError}
|
|
13446
12320
|
*/
|
|
13447
12321
|
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>>;
|
|
13448
12329
|
/**
|
|
13449
12330
|
* Get Current Stock & Pricing
|
|
13450
12331
|
* @summary Get Current Stock & Pricing
|
|
@@ -13457,10 +12338,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13457
12338
|
/**
|
|
13458
12339
|
* Get Products
|
|
13459
12340
|
* @summary Get Products
|
|
12341
|
+
* @param {number} [pageSize] Number Of Results
|
|
12342
|
+
* @param {number} [page] Page Number
|
|
12343
|
+
* @param {string} [search] Search
|
|
13460
12344
|
* @param {*} [options] Override http request option.
|
|
13461
12345
|
* @throws {RequiredError}
|
|
13462
12346
|
*/
|
|
13463
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12347
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13464
12348
|
/**
|
|
13465
12349
|
* Get Current Stock & Pricing
|
|
13466
12350
|
* @summary Get Current Stock & Pricing
|
|
@@ -13475,35 +12359,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13475
12359
|
* @throws {RequiredError}
|
|
13476
12360
|
*/
|
|
13477
12361
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13478
|
-
/**
|
|
13479
|
-
* Search Products
|
|
13480
|
-
* @summary Search Products
|
|
13481
|
-
* @param {number} [pageSize] Number Of Results
|
|
13482
|
-
* @param {number} [page] Page Number
|
|
13483
|
-
* @param {string} [search] Search
|
|
13484
|
-
* @param {*} [options] Override http request option.
|
|
13485
|
-
* @throws {RequiredError}
|
|
13486
|
-
*/
|
|
13487
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13488
|
-
/**
|
|
13489
|
-
* Get Product
|
|
13490
|
-
* @summary Get Product
|
|
13491
|
-
* @param {string} sku Product SKU
|
|
13492
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13493
|
-
* @param {*} [options] Override http request option.
|
|
13494
|
-
* @throws {RequiredError}
|
|
13495
|
-
*/
|
|
13496
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13497
|
-
/**
|
|
13498
|
-
* Get Product For Customer
|
|
13499
|
-
* @summary Get Product For Customer
|
|
13500
|
-
* @param {number} customerId Customer ID
|
|
13501
|
-
* @param {string} sku Product SKU
|
|
13502
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13503
|
-
* @param {*} [options] Override http request option.
|
|
13504
|
-
* @throws {RequiredError}
|
|
13505
|
-
*/
|
|
13506
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13507
12362
|
};
|
|
13508
12363
|
/**
|
|
13509
12364
|
* ProductsApi - object-oriented interface
|
|
@@ -13520,6 +12375,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13520
12375
|
* @memberof ProductsApi
|
|
13521
12376
|
*/
|
|
13522
12377
|
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, {}>>;
|
|
13523
12386
|
/**
|
|
13524
12387
|
* Get Current Stock & Pricing
|
|
13525
12388
|
* @summary Get Current Stock & Pricing
|
|
@@ -13533,11 +12396,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13533
12396
|
/**
|
|
13534
12397
|
* Get Products
|
|
13535
12398
|
* @summary Get Products
|
|
12399
|
+
* @param {number} [pageSize] Number Of Results
|
|
12400
|
+
* @param {number} [page] Page Number
|
|
12401
|
+
* @param {string} [search] Search
|
|
13536
12402
|
* @param {*} [options] Override http request option.
|
|
13537
12403
|
* @throws {RequiredError}
|
|
13538
12404
|
* @memberof ProductsApi
|
|
13539
12405
|
*/
|
|
13540
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12406
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13541
12407
|
/**
|
|
13542
12408
|
* Get Current Stock & Pricing
|
|
13543
12409
|
* @summary Get Current Stock & Pricing
|
|
@@ -13554,38 +12420,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13554
12420
|
* @memberof ProductsApi
|
|
13555
12421
|
*/
|
|
13556
12422
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13557
|
-
/**
|
|
13558
|
-
* Search Products
|
|
13559
|
-
* @summary Search Products
|
|
13560
|
-
* @param {number} [pageSize] Number Of Results
|
|
13561
|
-
* @param {number} [page] Page Number
|
|
13562
|
-
* @param {string} [search] Search
|
|
13563
|
-
* @param {*} [options] Override http request option.
|
|
13564
|
-
* @throws {RequiredError}
|
|
13565
|
-
* @memberof ProductsApi
|
|
13566
|
-
*/
|
|
13567
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13568
|
-
/**
|
|
13569
|
-
* Get Product
|
|
13570
|
-
* @summary Get Product
|
|
13571
|
-
* @param {string} sku Product SKU
|
|
13572
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13573
|
-
* @param {*} [options] Override http request option.
|
|
13574
|
-
* @throws {RequiredError}
|
|
13575
|
-
* @memberof ProductsApi
|
|
13576
|
-
*/
|
|
13577
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13578
|
-
/**
|
|
13579
|
-
* Get Product For Customer
|
|
13580
|
-
* @summary Get Product For Customer
|
|
13581
|
-
* @param {number} customerId Customer ID
|
|
13582
|
-
* @param {string} sku Product SKU
|
|
13583
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13584
|
-
* @param {*} [options] Override http request option.
|
|
13585
|
-
* @throws {RequiredError}
|
|
13586
|
-
* @memberof ProductsApi
|
|
13587
|
-
*/
|
|
13588
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13589
12423
|
}
|
|
13590
12424
|
/**
|
|
13591
12425
|
* @export
|
|
@@ -13706,7 +12540,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13706
12540
|
* @param {*} [options] Override http request option.
|
|
13707
12541
|
* @throws {RequiredError}
|
|
13708
12542
|
*/
|
|
13709
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12543
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13710
12544
|
/**
|
|
13711
12545
|
* Create a Fanvil provisioning group
|
|
13712
12546
|
* @summary Add group to DB and FDPS
|
|
@@ -13714,7 +12548,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13714
12548
|
* @param {*} [options] Override http request option.
|
|
13715
12549
|
* @throws {RequiredError}
|
|
13716
12550
|
*/
|
|
13717
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12551
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13718
12552
|
/**
|
|
13719
12553
|
* Add MAC address to DB and FDPS group
|
|
13720
12554
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13771,7 +12605,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13771
12605
|
* @param {*} [options] Override http request option.
|
|
13772
12606
|
* @throws {RequiredError}
|
|
13773
12607
|
*/
|
|
13774
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12608
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13775
12609
|
/**
|
|
13776
12610
|
* Create a Fanvil provisioning group
|
|
13777
12611
|
* @summary Add group to DB and FDPS
|
|
@@ -13779,7 +12613,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13779
12613
|
* @param {*} [options] Override http request option.
|
|
13780
12614
|
* @throws {RequiredError}
|
|
13781
12615
|
*/
|
|
13782
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12616
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13783
12617
|
/**
|
|
13784
12618
|
* Add MAC address to DB and FDPS group
|
|
13785
12619
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13843,7 +12677,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13843
12677
|
* @throws {RequiredError}
|
|
13844
12678
|
* @memberof ProvisioningApi
|
|
13845
12679
|
*/
|
|
13846
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12680
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13847
12681
|
/**
|
|
13848
12682
|
* Create a Fanvil provisioning group
|
|
13849
12683
|
* @summary Add group to DB and FDPS
|
|
@@ -13852,7 +12686,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13852
12686
|
* @throws {RequiredError}
|
|
13853
12687
|
* @memberof ProvisioningApi
|
|
13854
12688
|
*/
|
|
13855
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12689
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13856
12690
|
/**
|
|
13857
12691
|
* Add MAC address to DB and FDPS group
|
|
13858
12692
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14727,65 +13561,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14727
13561
|
*/
|
|
14728
13562
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14729
13563
|
}
|
|
14730
|
-
/**
|
|
14731
|
-
* ShippingApi - axios parameter creator
|
|
14732
|
-
* @export
|
|
14733
|
-
*/
|
|
14734
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14735
|
-
/**
|
|
14736
|
-
* Get Shipping Services
|
|
14737
|
-
* @summary Get Shipping Services
|
|
14738
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14739
|
-
* @param {*} [options] Override http request option.
|
|
14740
|
-
* @throws {RequiredError}
|
|
14741
|
-
*/
|
|
14742
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14743
|
-
};
|
|
14744
|
-
/**
|
|
14745
|
-
* ShippingApi - functional programming interface
|
|
14746
|
-
* @export
|
|
14747
|
-
*/
|
|
14748
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14749
|
-
/**
|
|
14750
|
-
* Get Shipping Services
|
|
14751
|
-
* @summary Get Shipping Services
|
|
14752
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14753
|
-
* @param {*} [options] Override http request option.
|
|
14754
|
-
* @throws {RequiredError}
|
|
14755
|
-
*/
|
|
14756
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14757
|
-
};
|
|
14758
|
-
/**
|
|
14759
|
-
* ShippingApi - factory interface
|
|
14760
|
-
* @export
|
|
14761
|
-
*/
|
|
14762
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14763
|
-
/**
|
|
14764
|
-
* Get Shipping Services
|
|
14765
|
-
* @summary Get Shipping Services
|
|
14766
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14767
|
-
* @param {*} [options] Override http request option.
|
|
14768
|
-
* @throws {RequiredError}
|
|
14769
|
-
*/
|
|
14770
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14771
|
-
};
|
|
14772
|
-
/**
|
|
14773
|
-
* ShippingApi - object-oriented interface
|
|
14774
|
-
* @export
|
|
14775
|
-
* @class ShippingApi
|
|
14776
|
-
* @extends {BaseAPI}
|
|
14777
|
-
*/
|
|
14778
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14779
|
-
/**
|
|
14780
|
-
* Get Shipping Services
|
|
14781
|
-
* @summary Get Shipping Services
|
|
14782
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14783
|
-
* @param {*} [options] Override http request option.
|
|
14784
|
-
* @throws {RequiredError}
|
|
14785
|
-
* @memberof ShippingApi
|
|
14786
|
-
*/
|
|
14787
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14788
|
-
}
|
|
14789
13564
|
/**
|
|
14790
13565
|
* StockManagementApi - axios parameter creator
|
|
14791
13566
|
* @export
|
|
@@ -15115,7 +13890,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
15115
13890
|
* @param {*} [options] Override http request option.
|
|
15116
13891
|
* @throws {RequiredError}
|
|
15117
13892
|
*/
|
|
15118
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13893
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
15119
13894
|
/**
|
|
15120
13895
|
* Get Stock Order Supplier Invoice
|
|
15121
13896
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15330,7 +14105,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15330
14105
|
* @param {*} [options] Override http request option.
|
|
15331
14106
|
* @throws {RequiredError}
|
|
15332
14107
|
*/
|
|
15333
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14108
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15334
14109
|
/**
|
|
15335
14110
|
* Get Stock Order Supplier Invoice
|
|
15336
14111
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15560,7 +14335,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15560
14335
|
* @throws {RequiredError}
|
|
15561
14336
|
* @memberof StockManagementApi
|
|
15562
14337
|
*/
|
|
15563
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14338
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15564
14339
|
/**
|
|
15565
14340
|
* Get Stock Order Supplier Invoice
|
|
15566
14341
|
* @summary Get Stock Order Supplier Invoice
|