yellowgrid-api-ts 3.0.88-dev.0 → 3.0.88
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 +190 -209
- package/README.md +7 -35
- package/api.ts +272 -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 +156 -1342
- package/dist/api.js +208 -1060
- 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/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -10
- 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/TcxBackupModel.md +2 -0
- 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 -37
- package/docs/AdminOrderRequestDTO.md +0 -45
- package/docs/AdminUserModel.md +0 -31
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -33
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/NavigationItemModel.md +0 -27
- 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/SubNavigationItemModel.md +0 -25
- 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;
|
|
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
|
|
@@ -641,203 +525,6 @@ export interface AddressRequestModel {
|
|
|
641
525
|
*/
|
|
642
526
|
'addressPostcode'?: string;
|
|
643
527
|
}
|
|
644
|
-
/**
|
|
645
|
-
* Admin Order Item Request
|
|
646
|
-
* @export
|
|
647
|
-
* @interface AdminItemRequestDTO
|
|
648
|
-
*/
|
|
649
|
-
export interface AdminItemRequestDTO {
|
|
650
|
-
/**
|
|
651
|
-
* SKU
|
|
652
|
-
* @type {string}
|
|
653
|
-
* @memberof AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
'sku'?: string;
|
|
656
|
-
/**
|
|
657
|
-
* Quantity
|
|
658
|
-
* @type {number}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'quantity'?: number;
|
|
662
|
-
/**
|
|
663
|
-
* ID
|
|
664
|
-
* @type {number}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'id'?: number | null;
|
|
668
|
-
/**
|
|
669
|
-
* 3CX Licence Key
|
|
670
|
-
* @type {string}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'licenceKey'?: string | null;
|
|
674
|
-
/**
|
|
675
|
-
* 3CX Hosting
|
|
676
|
-
* @type {boolean}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'hosting'?: boolean | null;
|
|
680
|
-
/**
|
|
681
|
-
* Date Time
|
|
682
|
-
* @type {string}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'processDate'?: string;
|
|
686
|
-
/**
|
|
687
|
-
* SBCS
|
|
688
|
-
* @type {Array<TcxSbcDTO>}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
692
|
-
/**
|
|
693
|
-
* Title
|
|
694
|
-
* @type {string}
|
|
695
|
-
* @memberof AdminItemRequestDTO
|
|
696
|
-
*/
|
|
697
|
-
'title'?: string | null;
|
|
698
|
-
/**
|
|
699
|
-
* Price (£)
|
|
700
|
-
* @type {number}
|
|
701
|
-
* @memberof AdminItemRequestDTO
|
|
702
|
-
*/
|
|
703
|
-
'itemPrice'?: number | null;
|
|
704
|
-
}
|
|
705
|
-
/**
|
|
706
|
-
* Admin Order Request
|
|
707
|
-
* @export
|
|
708
|
-
* @interface AdminOrderRequestDTO
|
|
709
|
-
*/
|
|
710
|
-
export interface AdminOrderRequestDTO {
|
|
711
|
-
/**
|
|
712
|
-
* Order Reference
|
|
713
|
-
* @type {string}
|
|
714
|
-
* @memberof AdminOrderRequestDTO
|
|
715
|
-
*/
|
|
716
|
-
'orderReference'?: string;
|
|
717
|
-
/**
|
|
718
|
-
* Items
|
|
719
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
720
|
-
* @memberof AdminOrderRequestDTO
|
|
721
|
-
*/
|
|
722
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
723
|
-
/**
|
|
724
|
-
*
|
|
725
|
-
* @type {ShippingServiceDTO}
|
|
726
|
-
* @memberof AdminOrderRequestDTO
|
|
727
|
-
*/
|
|
728
|
-
'shippingService'?: ShippingServiceDTO;
|
|
729
|
-
/**
|
|
730
|
-
* Provisioning URL
|
|
731
|
-
* @type {string}
|
|
732
|
-
* @memberof AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
'provisioningUrl'?: string | null;
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {AddressModel}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'shippingAddress'?: AddressModel;
|
|
741
|
-
/**
|
|
742
|
-
* Part Ship Order
|
|
743
|
-
* @type {boolean}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'partShip'?: boolean;
|
|
747
|
-
/**
|
|
748
|
-
* Quote
|
|
749
|
-
* @type {boolean}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'quote'?: boolean;
|
|
753
|
-
/**
|
|
754
|
-
* Customer ID
|
|
755
|
-
* @type {number}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'customerId'?: number;
|
|
759
|
-
/**
|
|
760
|
-
* Contact
|
|
761
|
-
* @type {string}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'contact'?: string;
|
|
765
|
-
/**
|
|
766
|
-
* Ignore Customer On Hold
|
|
767
|
-
* @type {boolean}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'ignoreOnHold'?: boolean;
|
|
771
|
-
/**
|
|
772
|
-
* Ignore Customer Credit Limit
|
|
773
|
-
* @type {boolean}
|
|
774
|
-
* @memberof AdminOrderRequestDTO
|
|
775
|
-
*/
|
|
776
|
-
'ignoreCreditLimit'?: boolean;
|
|
777
|
-
/**
|
|
778
|
-
* Include NFR Promos
|
|
779
|
-
* @type {boolean}
|
|
780
|
-
* @memberof AdminOrderRequestDTO
|
|
781
|
-
*/
|
|
782
|
-
'includeNfrPromos'?: boolean;
|
|
783
|
-
/**
|
|
784
|
-
* Carriage Charge
|
|
785
|
-
* @type {number}
|
|
786
|
-
* @memberof AdminOrderRequestDTO
|
|
787
|
-
*/
|
|
788
|
-
'carriageCharge'?: number;
|
|
789
|
-
}
|
|
790
|
-
/**
|
|
791
|
-
* Admin User
|
|
792
|
-
* @export
|
|
793
|
-
* @interface AdminUserModel
|
|
794
|
-
*/
|
|
795
|
-
export interface AdminUserModel {
|
|
796
|
-
/**
|
|
797
|
-
* First Name
|
|
798
|
-
* @type {string}
|
|
799
|
-
* @memberof AdminUserModel
|
|
800
|
-
*/
|
|
801
|
-
'firstName'?: string;
|
|
802
|
-
/**
|
|
803
|
-
* Last Name
|
|
804
|
-
* @type {string}
|
|
805
|
-
* @memberof AdminUserModel
|
|
806
|
-
*/
|
|
807
|
-
'lastName'?: string;
|
|
808
|
-
/**
|
|
809
|
-
* Avatar
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof AdminUserModel
|
|
812
|
-
*/
|
|
813
|
-
'avatar'?: string | null;
|
|
814
|
-
/**
|
|
815
|
-
* Role
|
|
816
|
-
* @type {number}
|
|
817
|
-
* @memberof AdminUserModel
|
|
818
|
-
*/
|
|
819
|
-
'role'?: AdminUserModelRoleEnum;
|
|
820
|
-
/**
|
|
821
|
-
* Navigation
|
|
822
|
-
* @type {Array<NavigationItemModel>}
|
|
823
|
-
* @memberof AdminUserModel
|
|
824
|
-
*/
|
|
825
|
-
'navigation'?: Array<NavigationItemModel>;
|
|
826
|
-
/**
|
|
827
|
-
* Email
|
|
828
|
-
* @type {string}
|
|
829
|
-
* @memberof AdminUserModel
|
|
830
|
-
*/
|
|
831
|
-
'email'?: string | null;
|
|
832
|
-
}
|
|
833
|
-
export declare const AdminUserModelRoleEnum: {
|
|
834
|
-
readonly NUMBER_0: 0;
|
|
835
|
-
readonly NUMBER_1: 1;
|
|
836
|
-
readonly NUMBER_2: 2;
|
|
837
|
-
readonly NUMBER_3: 3;
|
|
838
|
-
readonly NUMBER_4: 4;
|
|
839
|
-
};
|
|
840
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
841
528
|
/**
|
|
842
529
|
* Agent Hours Graph
|
|
843
530
|
* @export
|
|
@@ -1067,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1067
754
|
*/
|
|
1068
755
|
'redirect_uri'?: string | null;
|
|
1069
756
|
}
|
|
1070
|
-
/**
|
|
1071
|
-
* Basic Order Item
|
|
1072
|
-
* @export
|
|
1073
|
-
* @interface BasicItemDTO
|
|
1074
|
-
*/
|
|
1075
|
-
export interface BasicItemDTO {
|
|
1076
|
-
/**
|
|
1077
|
-
* SKU
|
|
1078
|
-
* @type {string}
|
|
1079
|
-
* @memberof BasicItemDTO
|
|
1080
|
-
*/
|
|
1081
|
-
'sku'?: string;
|
|
1082
|
-
/**
|
|
1083
|
-
* Quantity
|
|
1084
|
-
* @type {number}
|
|
1085
|
-
* @memberof BasicItemDTO
|
|
1086
|
-
*/
|
|
1087
|
-
'quantity'?: number;
|
|
1088
|
-
}
|
|
1089
|
-
/**
|
|
1090
|
-
* Basic Product
|
|
1091
|
-
* @export
|
|
1092
|
-
* @interface BasicProductDTO
|
|
1093
|
-
*/
|
|
1094
|
-
export interface BasicProductDTO {
|
|
1095
|
-
/**
|
|
1096
|
-
* SKU
|
|
1097
|
-
* @type {string}
|
|
1098
|
-
* @memberof BasicProductDTO
|
|
1099
|
-
*/
|
|
1100
|
-
'sku'?: string;
|
|
1101
|
-
/**
|
|
1102
|
-
* Title
|
|
1103
|
-
* @type {string}
|
|
1104
|
-
* @memberof BasicProductDTO
|
|
1105
|
-
*/
|
|
1106
|
-
'title'?: string;
|
|
1107
|
-
}
|
|
1108
757
|
/**
|
|
1109
758
|
* BatchesEntity
|
|
1110
759
|
* @export
|
|
@@ -1299,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1299
948
|
* @memberof ClientDetailsModel
|
|
1300
949
|
*/
|
|
1301
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1302
957
|
}
|
|
1303
958
|
/**
|
|
1304
959
|
* OAuth client details
|
|
@@ -1460,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1460
1115
|
*/
|
|
1461
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1462
1117
|
}
|
|
1463
|
-
/**
|
|
1464
|
-
* CourierPricesEntity
|
|
1465
|
-
* @export
|
|
1466
|
-
* @interface CourierPriceEntity
|
|
1467
|
-
*/
|
|
1468
|
-
export interface CourierPriceEntity {
|
|
1469
|
-
/**
|
|
1470
|
-
* id
|
|
1471
|
-
* @type {number}
|
|
1472
|
-
* @memberof CourierPriceEntity
|
|
1473
|
-
*/
|
|
1474
|
-
'id'?: number;
|
|
1475
|
-
/**
|
|
1476
|
-
* courier
|
|
1477
|
-
* @type {string}
|
|
1478
|
-
* @memberof CourierPriceEntity
|
|
1479
|
-
*/
|
|
1480
|
-
'courier'?: string;
|
|
1481
|
-
/**
|
|
1482
|
-
* destinationIso
|
|
1483
|
-
* @type {string}
|
|
1484
|
-
* @memberof CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
'destinationIso'?: string;
|
|
1487
|
-
/**
|
|
1488
|
-
* serviceDescription
|
|
1489
|
-
* @type {string}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'serviceDescription'?: string;
|
|
1493
|
-
/**
|
|
1494
|
-
* flatRate
|
|
1495
|
-
* @type {number}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'flatRate'?: number;
|
|
1499
|
-
/**
|
|
1500
|
-
* initialBox
|
|
1501
|
-
* @type {number}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'initialBox'?: number;
|
|
1505
|
-
/**
|
|
1506
|
-
* initialKg
|
|
1507
|
-
* @type {number}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'initialKg'?: number;
|
|
1511
|
-
/**
|
|
1512
|
-
* perBox
|
|
1513
|
-
* @type {number}
|
|
1514
|
-
* @memberof CourierPriceEntity
|
|
1515
|
-
*/
|
|
1516
|
-
'perBox'?: number;
|
|
1517
|
-
/**
|
|
1518
|
-
* perKg
|
|
1519
|
-
* @type {number}
|
|
1520
|
-
* @memberof CourierPriceEntity
|
|
1521
|
-
*/
|
|
1522
|
-
'perKg'?: number;
|
|
1523
|
-
/**
|
|
1524
|
-
* maxKg
|
|
1525
|
-
* @type {number}
|
|
1526
|
-
* @memberof CourierPriceEntity
|
|
1527
|
-
*/
|
|
1528
|
-
'maxKg'?: number;
|
|
1529
|
-
}
|
|
1530
1118
|
/**
|
|
1531
1119
|
* Credit Account
|
|
1532
1120
|
* @export
|
|
@@ -1709,104 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1709
1297
|
*/
|
|
1710
1298
|
'contactLastName'?: string;
|
|
1711
1299
|
}
|
|
1712
|
-
/**
|
|
1713
|
-
* Order Item Request
|
|
1714
|
-
* @export
|
|
1715
|
-
* @interface CustomerItemRequestDTO
|
|
1716
|
-
*/
|
|
1717
|
-
export interface CustomerItemRequestDTO {
|
|
1718
|
-
/**
|
|
1719
|
-
* SKU
|
|
1720
|
-
* @type {string}
|
|
1721
|
-
* @memberof CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
'sku'?: string;
|
|
1724
|
-
/**
|
|
1725
|
-
* Quantity
|
|
1726
|
-
* @type {number}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'quantity'?: number;
|
|
1730
|
-
/**
|
|
1731
|
-
* ID
|
|
1732
|
-
* @type {number}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'id'?: number | null;
|
|
1736
|
-
/**
|
|
1737
|
-
* 3CX Licence Key
|
|
1738
|
-
* @type {string}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'licenceKey'?: string | null;
|
|
1742
|
-
/**
|
|
1743
|
-
* 3CX Hosting
|
|
1744
|
-
* @type {boolean}
|
|
1745
|
-
* @memberof CustomerItemRequestDTO
|
|
1746
|
-
*/
|
|
1747
|
-
'hosting'?: boolean | null;
|
|
1748
|
-
/**
|
|
1749
|
-
* Date Time
|
|
1750
|
-
* @type {string}
|
|
1751
|
-
* @memberof CustomerItemRequestDTO
|
|
1752
|
-
*/
|
|
1753
|
-
'processDate'?: string;
|
|
1754
|
-
/**
|
|
1755
|
-
* SBCS
|
|
1756
|
-
* @type {Array<TcxSbcDTO>}
|
|
1757
|
-
* @memberof CustomerItemRequestDTO
|
|
1758
|
-
*/
|
|
1759
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1760
|
-
}
|
|
1761
|
-
/**
|
|
1762
|
-
* Order Request
|
|
1763
|
-
* @export
|
|
1764
|
-
* @interface CustomerOrderRequestDTO
|
|
1765
|
-
*/
|
|
1766
|
-
export interface CustomerOrderRequestDTO {
|
|
1767
|
-
/**
|
|
1768
|
-
* Order Reference
|
|
1769
|
-
* @type {string}
|
|
1770
|
-
* @memberof CustomerOrderRequestDTO
|
|
1771
|
-
*/
|
|
1772
|
-
'orderReference'?: string;
|
|
1773
|
-
/**
|
|
1774
|
-
* Items
|
|
1775
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1776
|
-
* @memberof CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1779
|
-
/**
|
|
1780
|
-
*
|
|
1781
|
-
* @type {ShippingServiceDTO}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1785
|
-
/**
|
|
1786
|
-
* Provisioning URL
|
|
1787
|
-
* @type {string}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'provisioningUrl'?: string | null;
|
|
1791
|
-
/**
|
|
1792
|
-
*
|
|
1793
|
-
* @type {AddressModel}
|
|
1794
|
-
* @memberof CustomerOrderRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'shippingAddress'?: AddressModel;
|
|
1797
|
-
/**
|
|
1798
|
-
* Part Ship Order
|
|
1799
|
-
* @type {boolean}
|
|
1800
|
-
* @memberof CustomerOrderRequestDTO
|
|
1801
|
-
*/
|
|
1802
|
-
'partShip'?: boolean;
|
|
1803
|
-
/**
|
|
1804
|
-
* Quote
|
|
1805
|
-
* @type {boolean}
|
|
1806
|
-
* @memberof CustomerOrderRequestDTO
|
|
1807
|
-
*/
|
|
1808
|
-
'quote'?: boolean;
|
|
1809
|
-
}
|
|
1810
1300
|
/**
|
|
1811
1301
|
* Customer Price List
|
|
1812
1302
|
* @export
|
|
@@ -2313,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2313
1803
|
*/
|
|
2314
1804
|
'type'?: string;
|
|
2315
1805
|
}
|
|
1806
|
+
/**
|
|
1807
|
+
*
|
|
1808
|
+
* @export
|
|
1809
|
+
* @interface GetGetPasswordHash200Response
|
|
1810
|
+
*/
|
|
1811
|
+
export interface GetGetPasswordHash200Response {
|
|
1812
|
+
/**
|
|
1813
|
+
*
|
|
1814
|
+
* @type {string}
|
|
1815
|
+
* @memberof GetGetPasswordHash200Response
|
|
1816
|
+
*/
|
|
1817
|
+
'hash'?: string;
|
|
1818
|
+
}
|
|
2316
1819
|
/**
|
|
2317
1820
|
*
|
|
2318
1821
|
* @export
|
|
@@ -2870,36 +2373,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2870
2373
|
* @interface ItemDTO
|
|
2871
2374
|
*/
|
|
2872
2375
|
export interface ItemDTO {
|
|
2873
|
-
/**
|
|
2874
|
-
* SKU
|
|
2875
|
-
* @type {string}
|
|
2876
|
-
* @memberof ItemDTO
|
|
2877
|
-
*/
|
|
2878
|
-
'sku'?: string;
|
|
2879
|
-
/**
|
|
2880
|
-
* Quantity
|
|
2881
|
-
* @type {number}
|
|
2882
|
-
* @memberof ItemDTO
|
|
2883
|
-
*/
|
|
2884
|
-
'quantity'?: number;
|
|
2885
2376
|
/**
|
|
2886
2377
|
* ID
|
|
2887
2378
|
* @type {number}
|
|
2888
2379
|
* @memberof ItemDTO
|
|
2889
2380
|
*/
|
|
2890
|
-
'id'?: number
|
|
2381
|
+
'id'?: number;
|
|
2891
2382
|
/**
|
|
2892
2383
|
* Order ID
|
|
2893
2384
|
* @type {number}
|
|
2894
2385
|
* @memberof ItemDTO
|
|
2895
2386
|
*/
|
|
2896
|
-
'orderId'?: number
|
|
2387
|
+
'orderId'?: number;
|
|
2897
2388
|
/**
|
|
2898
2389
|
* Title
|
|
2899
2390
|
* @type {string}
|
|
2900
2391
|
* @memberof ItemDTO
|
|
2901
2392
|
*/
|
|
2902
|
-
'title'?: string;
|
|
2393
|
+
'title'?: string;
|
|
2394
|
+
/**
|
|
2395
|
+
* SKU
|
|
2396
|
+
* @type {string}
|
|
2397
|
+
* @memberof ItemDTO
|
|
2398
|
+
*/
|
|
2399
|
+
'sku'?: string;
|
|
2400
|
+
/**
|
|
2401
|
+
* Quantity
|
|
2402
|
+
* @type {number}
|
|
2403
|
+
* @memberof ItemDTO
|
|
2404
|
+
*/
|
|
2405
|
+
'quantity'?: number;
|
|
2903
2406
|
/**
|
|
2904
2407
|
* Price
|
|
2905
2408
|
* @type {number}
|
|
@@ -2924,12 +2427,6 @@ export interface ItemDTO {
|
|
|
2924
2427
|
* @memberof ItemDTO
|
|
2925
2428
|
*/
|
|
2926
2429
|
'processDate'?: string;
|
|
2927
|
-
/**
|
|
2928
|
-
* 3CX Hosting
|
|
2929
|
-
* @type {boolean}
|
|
2930
|
-
* @memberof ItemDTO
|
|
2931
|
-
*/
|
|
2932
|
-
'hosting'?: boolean | null;
|
|
2933
2430
|
/**
|
|
2934
2431
|
* Promo Item
|
|
2935
2432
|
* @type {boolean}
|
|
@@ -2941,19 +2438,7 @@ export interface ItemDTO {
|
|
|
2941
2438
|
* @type {number}
|
|
2942
2439
|
* @memberof ItemDTO
|
|
2943
2440
|
*/
|
|
2944
|
-
'refunded'?: number
|
|
2945
|
-
/**
|
|
2946
|
-
* SBCs
|
|
2947
|
-
* @type {Array<TcxSbcDTO>}
|
|
2948
|
-
* @memberof ItemDTO
|
|
2949
|
-
*/
|
|
2950
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2951
|
-
/**
|
|
2952
|
-
* Readonly
|
|
2953
|
-
* @type {boolean}
|
|
2954
|
-
* @memberof ItemDTO
|
|
2955
|
-
*/
|
|
2956
|
-
'readonly'?: boolean;
|
|
2441
|
+
'refunded'?: number;
|
|
2957
2442
|
}
|
|
2958
2443
|
/**
|
|
2959
2444
|
* ItemsEntity
|
|
@@ -3088,25 +2573,6 @@ export interface ItemEntity {
|
|
|
3088
2573
|
*/
|
|
3089
2574
|
'promoItem'?: number;
|
|
3090
2575
|
}
|
|
3091
|
-
/**
|
|
3092
|
-
* LinkedOrdersEntity
|
|
3093
|
-
* @export
|
|
3094
|
-
* @interface LinkedOrderEntity
|
|
3095
|
-
*/
|
|
3096
|
-
export interface LinkedOrderEntity {
|
|
3097
|
-
/**
|
|
3098
|
-
* orderId
|
|
3099
|
-
* @type {number}
|
|
3100
|
-
* @memberof LinkedOrderEntity
|
|
3101
|
-
*/
|
|
3102
|
-
'orderId'?: number;
|
|
3103
|
-
/**
|
|
3104
|
-
* linkedOrderId
|
|
3105
|
-
* @type {number}
|
|
3106
|
-
* @memberof LinkedOrderEntity
|
|
3107
|
-
*/
|
|
3108
|
-
'linkedOrderId'?: number;
|
|
3109
|
-
}
|
|
3110
2576
|
/**
|
|
3111
2577
|
* MFA Required
|
|
3112
2578
|
* @export
|
|
@@ -3193,37 +2659,6 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
3193
2659
|
readonly CallBarring: "Call Barring";
|
|
3194
2660
|
};
|
|
3195
2661
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
3196
|
-
/**
|
|
3197
|
-
* POPS Navigation Item
|
|
3198
|
-
* @export
|
|
3199
|
-
* @interface NavigationItemModel
|
|
3200
|
-
*/
|
|
3201
|
-
export interface NavigationItemModel {
|
|
3202
|
-
/**
|
|
3203
|
-
* Title
|
|
3204
|
-
* @type {string}
|
|
3205
|
-
* @memberof NavigationItemModel
|
|
3206
|
-
*/
|
|
3207
|
-
'title'?: string;
|
|
3208
|
-
/**
|
|
3209
|
-
* URL
|
|
3210
|
-
* @type {string}
|
|
3211
|
-
* @memberof NavigationItemModel
|
|
3212
|
-
*/
|
|
3213
|
-
'url'?: string | null;
|
|
3214
|
-
/**
|
|
3215
|
-
* Icon (Font Awesome)
|
|
3216
|
-
* @type {string}
|
|
3217
|
-
* @memberof NavigationItemModel
|
|
3218
|
-
*/
|
|
3219
|
-
'icon'?: string;
|
|
3220
|
-
/**
|
|
3221
|
-
* Sub Navigation
|
|
3222
|
-
* @type {Array<SubNavigationItemModel>}
|
|
3223
|
-
* @memberof NavigationItemModel
|
|
3224
|
-
*/
|
|
3225
|
-
'items'?: Array<SubNavigationItemModel>;
|
|
3226
|
-
}
|
|
3227
2662
|
/**
|
|
3228
2663
|
* Navigation Endpoint
|
|
3229
2664
|
* @export
|
|
@@ -3797,12 +3232,6 @@ export interface OrderSummaryDTO {
|
|
|
3797
3232
|
* @memberof OrderSummaryDTO
|
|
3798
3233
|
*/
|
|
3799
3234
|
'invoiceNumber'?: string;
|
|
3800
|
-
/**
|
|
3801
|
-
* Invoice ID
|
|
3802
|
-
* @type {string}
|
|
3803
|
-
* @memberof OrderSummaryDTO
|
|
3804
|
-
*/
|
|
3805
|
-
'invoiceId'?: string | null;
|
|
3806
3235
|
/**
|
|
3807
3236
|
* Date Time
|
|
3808
3237
|
* @type {string}
|
|
@@ -3857,24 +3286,6 @@ export interface OrderSummaryDTO {
|
|
|
3857
3286
|
* @memberof OrderSummaryDTO
|
|
3858
3287
|
*/
|
|
3859
3288
|
'fulfillable'?: boolean | null;
|
|
3860
|
-
/**
|
|
3861
|
-
* Provisioning URL
|
|
3862
|
-
* @type {string}
|
|
3863
|
-
* @memberof OrderSummaryDTO
|
|
3864
|
-
*/
|
|
3865
|
-
'provisioningUrl'?: string | null;
|
|
3866
|
-
/**
|
|
3867
|
-
*
|
|
3868
|
-
* @type {ShippingServiceDTO}
|
|
3869
|
-
* @memberof OrderSummaryDTO
|
|
3870
|
-
*/
|
|
3871
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
3872
|
-
/**
|
|
3873
|
-
* Readonly
|
|
3874
|
-
* @type {boolean}
|
|
3875
|
-
* @memberof OrderSummaryDTO
|
|
3876
|
-
*/
|
|
3877
|
-
'readonly'?: boolean;
|
|
3878
3289
|
}
|
|
3879
3290
|
/**
|
|
3880
3291
|
* Order Totals
|
|
@@ -3924,12 +3335,6 @@ export interface OrderTotalModel {
|
|
|
3924
3335
|
* @memberof OrderTotalModel
|
|
3925
3336
|
*/
|
|
3926
3337
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3927
|
-
/**
|
|
3928
|
-
* Delivery
|
|
3929
|
-
* @type {number}
|
|
3930
|
-
* @memberof OrderTotalModel
|
|
3931
|
-
*/
|
|
3932
|
-
'delivery'?: number | null;
|
|
3933
3338
|
}
|
|
3934
3339
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3935
3340
|
readonly Eur: "EUR";
|
|
@@ -4308,31 +3713,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4308
3713
|
*/
|
|
4309
3714
|
'scopes'?: Array<string>;
|
|
4310
3715
|
}
|
|
4311
|
-
/**
|
|
4312
|
-
*
|
|
4313
|
-
* @export
|
|
4314
|
-
* @interface PostGetProductForCustomerRequest
|
|
4315
|
-
*/
|
|
4316
|
-
export interface PostGetProductForCustomerRequest {
|
|
4317
|
-
/**
|
|
4318
|
-
* Quantity
|
|
4319
|
-
* @type {number}
|
|
4320
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4321
|
-
*/
|
|
4322
|
-
'quantity'?: number | null;
|
|
4323
|
-
/**
|
|
4324
|
-
* 3CX Licence Key
|
|
4325
|
-
* @type {string}
|
|
4326
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4327
|
-
*/
|
|
4328
|
-
'licenceKey'?: string | null;
|
|
4329
|
-
/**
|
|
4330
|
-
* 3CX Hosting
|
|
4331
|
-
* @type {boolean}
|
|
4332
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4333
|
-
*/
|
|
4334
|
-
'hosting'?: boolean | null;
|
|
4335
|
-
}
|
|
4336
3716
|
/**
|
|
4337
3717
|
* Price & Stock List
|
|
4338
3718
|
* @export
|
|
@@ -4421,10 +3801,10 @@ export interface PrizesEntity {
|
|
|
4421
3801
|
export interface ProductSearchResultsModel {
|
|
4422
3802
|
/**
|
|
4423
3803
|
* Results
|
|
4424
|
-
* @type {Array<
|
|
3804
|
+
* @type {Array<ProductSummaryModel>}
|
|
4425
3805
|
* @memberof ProductSearchResultsModel
|
|
4426
3806
|
*/
|
|
4427
|
-
'results'?: Array<
|
|
3807
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4428
3808
|
}
|
|
4429
3809
|
/**
|
|
4430
3810
|
* Product Serial Info
|
|
@@ -4460,51 +3840,45 @@ export interface ProductSerialInfoModel {
|
|
|
4460
3840
|
/**
|
|
4461
3841
|
* Product Summary
|
|
4462
3842
|
* @export
|
|
4463
|
-
* @interface
|
|
3843
|
+
* @interface ProductSummaryModel
|
|
4464
3844
|
*/
|
|
4465
|
-
export interface
|
|
3845
|
+
export interface ProductSummaryModel {
|
|
4466
3846
|
/**
|
|
4467
3847
|
* SKU
|
|
4468
3848
|
* @type {string}
|
|
4469
|
-
* @memberof
|
|
3849
|
+
* @memberof ProductSummaryModel
|
|
4470
3850
|
*/
|
|
4471
3851
|
'sku'?: string;
|
|
4472
3852
|
/**
|
|
4473
3853
|
* Title
|
|
4474
3854
|
* @type {string}
|
|
4475
|
-
* @memberof
|
|
3855
|
+
* @memberof ProductSummaryModel
|
|
4476
3856
|
*/
|
|
4477
3857
|
'title'?: string;
|
|
4478
3858
|
/**
|
|
4479
3859
|
* Stock Quantity
|
|
4480
3860
|
* @type {number}
|
|
4481
|
-
* @memberof
|
|
3861
|
+
* @memberof ProductSummaryModel
|
|
4482
3862
|
*/
|
|
4483
3863
|
'quantity'?: number | null;
|
|
4484
3864
|
/**
|
|
4485
3865
|
* Stock Product
|
|
4486
3866
|
* @type {boolean}
|
|
4487
|
-
* @memberof
|
|
3867
|
+
* @memberof ProductSummaryModel
|
|
4488
3868
|
*/
|
|
4489
3869
|
'stockProduct'?: boolean;
|
|
4490
3870
|
/**
|
|
4491
3871
|
* Price
|
|
4492
3872
|
* @type {number}
|
|
4493
|
-
* @memberof
|
|
3873
|
+
* @memberof ProductSummaryModel
|
|
4494
3874
|
*/
|
|
4495
3875
|
'price'?: number | null;
|
|
4496
3876
|
/**
|
|
4497
3877
|
* Carton Size
|
|
4498
3878
|
* @type {number}
|
|
4499
|
-
* @memberof
|
|
3879
|
+
* @memberof ProductSummaryModel
|
|
4500
3880
|
*/
|
|
4501
3881
|
'cartonSize'?: number | null;
|
|
4502
|
-
/**
|
|
4503
|
-
* RRP Price
|
|
4504
|
-
* @type {number}
|
|
4505
|
-
* @memberof ProductSummaryDTO
|
|
4506
|
-
*/
|
|
4507
|
-
'rrp'?: number | null;
|
|
4508
3882
|
}
|
|
4509
3883
|
/**
|
|
4510
3884
|
* PromoCodesEntity
|
|
@@ -4643,37 +4017,37 @@ export interface PromoItemsEntity {
|
|
|
4643
4017
|
/**
|
|
4644
4018
|
* Provisioning Group
|
|
4645
4019
|
* @export
|
|
4646
|
-
* @interface
|
|
4020
|
+
* @interface ProvisioningEntity
|
|
4647
4021
|
*/
|
|
4648
|
-
export interface
|
|
4022
|
+
export interface ProvisioningEntity {
|
|
4649
4023
|
/**
|
|
4650
4024
|
* Provisioning Group Name
|
|
4651
4025
|
* @type {string}
|
|
4652
|
-
* @memberof
|
|
4026
|
+
* @memberof ProvisioningEntity
|
|
4653
4027
|
*/
|
|
4654
4028
|
'groupName'?: string;
|
|
4655
4029
|
/**
|
|
4656
4030
|
* Provisioning URL (Static Provisioning Server)
|
|
4657
4031
|
* @type {string}
|
|
4658
|
-
* @memberof
|
|
4032
|
+
* @memberof ProvisioningEntity
|
|
4659
4033
|
*/
|
|
4660
4034
|
'provisioningUrl'?: string;
|
|
4661
4035
|
/**
|
|
4662
4036
|
* Additional Authentication Secret
|
|
4663
4037
|
* @type {string}
|
|
4664
|
-
* @memberof
|
|
4038
|
+
* @memberof ProvisioningEntity
|
|
4665
4039
|
*/
|
|
4666
4040
|
'auth'?: string;
|
|
4667
4041
|
/**
|
|
4668
4042
|
* Provisioning Group ID
|
|
4669
4043
|
* @type {number}
|
|
4670
|
-
* @memberof
|
|
4044
|
+
* @memberof ProvisioningEntity
|
|
4671
4045
|
*/
|
|
4672
4046
|
'id'?: number;
|
|
4673
4047
|
/**
|
|
4674
4048
|
* Owner ID
|
|
4675
4049
|
* @type {number}
|
|
4676
|
-
* @memberof
|
|
4050
|
+
* @memberof ProvisioningEntity
|
|
4677
4051
|
*/
|
|
4678
4052
|
'customerId'?: number;
|
|
4679
4053
|
}
|
|
@@ -4946,7 +4320,7 @@ export interface ShipmentEntity {
|
|
|
4946
4320
|
* @type {string}
|
|
4947
4321
|
* @memberof ShipmentEntity
|
|
4948
4322
|
*/
|
|
4949
|
-
'
|
|
4323
|
+
'date'?: string;
|
|
4950
4324
|
/**
|
|
4951
4325
|
* requestDate
|
|
4952
4326
|
* @type {string}
|
|
@@ -4997,149 +4371,6 @@ export interface ShipmentItemEntity {
|
|
|
4997
4371
|
*/
|
|
4998
4372
|
'itemId'?: string;
|
|
4999
4373
|
}
|
|
5000
|
-
/**
|
|
5001
|
-
*
|
|
5002
|
-
* @export
|
|
5003
|
-
* @interface ShippingConsignmentModel
|
|
5004
|
-
*/
|
|
5005
|
-
export interface ShippingConsignmentModel {
|
|
5006
|
-
/**
|
|
5007
|
-
*
|
|
5008
|
-
* @type {ShippingServiceModel}
|
|
5009
|
-
* @memberof ShippingConsignmentModel
|
|
5010
|
-
*/
|
|
5011
|
-
'service'?: ShippingServiceModel;
|
|
5012
|
-
/**
|
|
5013
|
-
* ID/Number
|
|
5014
|
-
* @type {string}
|
|
5015
|
-
* @memberof ShippingConsignmentModel
|
|
5016
|
-
*/
|
|
5017
|
-
'id'?: string;
|
|
5018
|
-
/**
|
|
5019
|
-
* Tracking Number
|
|
5020
|
-
* @type {string}
|
|
5021
|
-
* @memberof ShippingConsignmentModel
|
|
5022
|
-
*/
|
|
5023
|
-
'trackingNumber'?: string;
|
|
5024
|
-
/**
|
|
5025
|
-
* Parcels
|
|
5026
|
-
* @type {Array<string>}
|
|
5027
|
-
* @memberof ShippingConsignmentModel
|
|
5028
|
-
*/
|
|
5029
|
-
'parcelIds'?: Array<string>;
|
|
5030
|
-
}
|
|
5031
|
-
/**
|
|
5032
|
-
* Shipping Information
|
|
5033
|
-
* @export
|
|
5034
|
-
* @interface ShippingInformationDTO
|
|
5035
|
-
*/
|
|
5036
|
-
export interface ShippingInformationDTO {
|
|
5037
|
-
/**
|
|
5038
|
-
* Items
|
|
5039
|
-
* @type {Array<BasicItemDTO>}
|
|
5040
|
-
* @memberof ShippingInformationDTO
|
|
5041
|
-
*/
|
|
5042
|
-
'items'?: Array<BasicItemDTO>;
|
|
5043
|
-
/**
|
|
5044
|
-
* Destination Post Code
|
|
5045
|
-
* @type {string}
|
|
5046
|
-
* @memberof ShippingInformationDTO
|
|
5047
|
-
*/
|
|
5048
|
-
'postalCode'?: string;
|
|
5049
|
-
/**
|
|
5050
|
-
* Destination ISO
|
|
5051
|
-
* @type {string}
|
|
5052
|
-
* @memberof ShippingInformationDTO
|
|
5053
|
-
*/
|
|
5054
|
-
'iso'?: string;
|
|
5055
|
-
}
|
|
5056
|
-
/**
|
|
5057
|
-
* Shipping Service
|
|
5058
|
-
* @export
|
|
5059
|
-
* @interface ShippingServiceDTO
|
|
5060
|
-
*/
|
|
5061
|
-
export interface ShippingServiceDTO {
|
|
5062
|
-
/**
|
|
5063
|
-
* Courier
|
|
5064
|
-
* @type {string}
|
|
5065
|
-
* @memberof ShippingServiceDTO
|
|
5066
|
-
*/
|
|
5067
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5068
|
-
/**
|
|
5069
|
-
* Service Name
|
|
5070
|
-
* @type {string}
|
|
5071
|
-
* @memberof ShippingServiceDTO
|
|
5072
|
-
*/
|
|
5073
|
-
'serviceName'?: string;
|
|
5074
|
-
}
|
|
5075
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5076
|
-
readonly Dpd: "DPD";
|
|
5077
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5078
|
-
readonly Pops: "POPS";
|
|
5079
|
-
};
|
|
5080
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5081
|
-
/**
|
|
5082
|
-
* Shipping Service
|
|
5083
|
-
* @export
|
|
5084
|
-
* @interface ShippingServiceModel
|
|
5085
|
-
*/
|
|
5086
|
-
export interface ShippingServiceModel {
|
|
5087
|
-
/**
|
|
5088
|
-
* Courier
|
|
5089
|
-
* @type {string}
|
|
5090
|
-
* @memberof ShippingServiceModel
|
|
5091
|
-
*/
|
|
5092
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5093
|
-
/**
|
|
5094
|
-
* Code
|
|
5095
|
-
* @type {string}
|
|
5096
|
-
* @memberof ShippingServiceModel
|
|
5097
|
-
*/
|
|
5098
|
-
'code'?: string;
|
|
5099
|
-
/**
|
|
5100
|
-
* Name
|
|
5101
|
-
* @type {string}
|
|
5102
|
-
* @memberof ShippingServiceModel
|
|
5103
|
-
*/
|
|
5104
|
-
'name'?: string;
|
|
5105
|
-
/**
|
|
5106
|
-
* Description
|
|
5107
|
-
* @type {string}
|
|
5108
|
-
* @memberof ShippingServiceModel
|
|
5109
|
-
*/
|
|
5110
|
-
'description'?: string;
|
|
5111
|
-
/**
|
|
5112
|
-
* Label
|
|
5113
|
-
* @type {string}
|
|
5114
|
-
* @memberof ShippingServiceModel
|
|
5115
|
-
*/
|
|
5116
|
-
'label'?: string | null;
|
|
5117
|
-
/**
|
|
5118
|
-
* Price
|
|
5119
|
-
* @type {number}
|
|
5120
|
-
* @memberof ShippingServiceModel
|
|
5121
|
-
*/
|
|
5122
|
-
'price'?: number | null;
|
|
5123
|
-
}
|
|
5124
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5125
|
-
readonly Dpd: "DPD";
|
|
5126
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5127
|
-
readonly Pops: "POPS";
|
|
5128
|
-
};
|
|
5129
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5130
|
-
/**
|
|
5131
|
-
*
|
|
5132
|
-
* @export
|
|
5133
|
-
* @interface ShippingServicesModel
|
|
5134
|
-
*/
|
|
5135
|
-
export interface ShippingServicesModel {
|
|
5136
|
-
/**
|
|
5137
|
-
* Services
|
|
5138
|
-
* @type {Array<ShippingServiceModel>}
|
|
5139
|
-
* @memberof ShippingServicesModel
|
|
5140
|
-
*/
|
|
5141
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5142
|
-
}
|
|
5143
4374
|
/**
|
|
5144
4375
|
* Change Response
|
|
5145
4376
|
* @export
|
|
@@ -6544,31 +5775,6 @@ export interface StockTransactionsEntity {
|
|
|
6544
5775
|
*/
|
|
6545
5776
|
'user'?: number;
|
|
6546
5777
|
}
|
|
6547
|
-
/**
|
|
6548
|
-
* POPS Sub Navigation Item
|
|
6549
|
-
* @export
|
|
6550
|
-
* @interface SubNavigationItemModel
|
|
6551
|
-
*/
|
|
6552
|
-
export interface SubNavigationItemModel {
|
|
6553
|
-
/**
|
|
6554
|
-
* Title
|
|
6555
|
-
* @type {string}
|
|
6556
|
-
* @memberof SubNavigationItemModel
|
|
6557
|
-
*/
|
|
6558
|
-
'title'?: string;
|
|
6559
|
-
/**
|
|
6560
|
-
* URL
|
|
6561
|
-
* @type {string}
|
|
6562
|
-
* @memberof SubNavigationItemModel
|
|
6563
|
-
*/
|
|
6564
|
-
'url'?: string;
|
|
6565
|
-
/**
|
|
6566
|
-
* Icon (Font Awesome)
|
|
6567
|
-
* @type {string}
|
|
6568
|
-
* @memberof SubNavigationItemModel
|
|
6569
|
-
*/
|
|
6570
|
-
'icon'?: string | null;
|
|
6571
|
-
}
|
|
6572
5778
|
/**
|
|
6573
5779
|
* SuppliersEntity
|
|
6574
5780
|
* @export
|
|
@@ -6860,6 +6066,12 @@ export interface TcxBackupModel {
|
|
|
6860
6066
|
* @memberof TcxBackupModel
|
|
6861
6067
|
*/
|
|
6862
6068
|
'phone'?: string | null;
|
|
6069
|
+
/**
|
|
6070
|
+
* Company Name
|
|
6071
|
+
* @type {string}
|
|
6072
|
+
* @memberof TcxBackupModel
|
|
6073
|
+
*/
|
|
6074
|
+
'companyName'?: string | null;
|
|
6863
6075
|
}
|
|
6864
6076
|
/**
|
|
6865
6077
|
* TcxBillingEntity
|
|
@@ -7947,49 +7159,6 @@ export interface TcxPhonesEntity {
|
|
|
7947
7159
|
*/
|
|
7948
7160
|
'sbcId'?: string;
|
|
7949
7161
|
}
|
|
7950
|
-
/**
|
|
7951
|
-
* SBC Data
|
|
7952
|
-
* @export
|
|
7953
|
-
* @interface TcxSbcDTO
|
|
7954
|
-
*/
|
|
7955
|
-
export interface TcxSbcDTO {
|
|
7956
|
-
/**
|
|
7957
|
-
* LAN IP Address
|
|
7958
|
-
* @type {string}
|
|
7959
|
-
* @memberof TcxSbcDTO
|
|
7960
|
-
*/
|
|
7961
|
-
'ipAddress'?: string;
|
|
7962
|
-
/**
|
|
7963
|
-
* LAN Default Gateway
|
|
7964
|
-
* @type {string}
|
|
7965
|
-
* @memberof TcxSbcDTO
|
|
7966
|
-
*/
|
|
7967
|
-
'defaultGateway'?: string;
|
|
7968
|
-
/**
|
|
7969
|
-
* LAN Subnet Mask
|
|
7970
|
-
* @type {string}
|
|
7971
|
-
* @memberof TcxSbcDTO
|
|
7972
|
-
*/
|
|
7973
|
-
'netmask'?: string;
|
|
7974
|
-
/**
|
|
7975
|
-
* DNS
|
|
7976
|
-
* @type {string}
|
|
7977
|
-
* @memberof TcxSbcDTO
|
|
7978
|
-
*/
|
|
7979
|
-
'dns'?: string;
|
|
7980
|
-
/**
|
|
7981
|
-
* 3CX URL
|
|
7982
|
-
* @type {string}
|
|
7983
|
-
* @memberof TcxSbcDTO
|
|
7984
|
-
*/
|
|
7985
|
-
'tcxUrl'?: string;
|
|
7986
|
-
/**
|
|
7987
|
-
* 3CX SBC Key
|
|
7988
|
-
* @type {string}
|
|
7989
|
-
* @memberof TcxSbcDTO
|
|
7990
|
-
*/
|
|
7991
|
-
'tcxKey'?: string;
|
|
7992
|
-
}
|
|
7993
7162
|
/**
|
|
7994
7163
|
* 3CX Wizard SBC
|
|
7995
7164
|
* @export
|
|
@@ -8094,7 +7263,7 @@ export interface TcxSbcEntity {
|
|
|
8094
7263
|
'technicalContact'?: string;
|
|
8095
7264
|
}
|
|
8096
7265
|
/**
|
|
8097
|
-
* 3CX
|
|
7266
|
+
* 3CX SBC Model
|
|
8098
7267
|
* @export
|
|
8099
7268
|
* @interface TcxSbcModel
|
|
8100
7269
|
*/
|
|
@@ -9160,14 +8329,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9160
8329
|
* @throws {RequiredError}
|
|
9161
8330
|
*/
|
|
9162
8331
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9163
|
-
/**
|
|
9164
|
-
* Get Account Detailed Summary
|
|
9165
|
-
* @summary Get Account Detailed Summary
|
|
9166
|
-
* @param {number} id Customer ID
|
|
9167
|
-
* @param {*} [options] Override http request option.
|
|
9168
|
-
* @throws {RequiredError}
|
|
9169
|
-
*/
|
|
9170
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9171
8332
|
/**
|
|
9172
8333
|
* Get Accounts
|
|
9173
8334
|
* @summary Get Accounts
|
|
@@ -9233,13 +8394,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9233
8394
|
* @throws {RequiredError}
|
|
9234
8395
|
*/
|
|
9235
8396
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9236
|
-
/**
|
|
9237
|
-
* Get Admin Account
|
|
9238
|
-
* @summary Get Admin Account
|
|
9239
|
-
* @param {*} [options] Override http request option.
|
|
9240
|
-
* @throws {RequiredError}
|
|
9241
|
-
*/
|
|
9242
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9243
8397
|
/**
|
|
9244
8398
|
* Create client credentials
|
|
9245
8399
|
* @summary Create client credentials
|
|
@@ -9320,14 +8474,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9320
8474
|
* @throws {RequiredError}
|
|
9321
8475
|
*/
|
|
9322
8476
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9323
|
-
/**
|
|
9324
|
-
* Get Account Detailed Summary
|
|
9325
|
-
* @summary Get Account Detailed Summary
|
|
9326
|
-
* @param {number} id Customer ID
|
|
9327
|
-
* @param {*} [options] Override http request option.
|
|
9328
|
-
* @throws {RequiredError}
|
|
9329
|
-
*/
|
|
9330
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9331
8477
|
/**
|
|
9332
8478
|
* Get Accounts
|
|
9333
8479
|
* @summary Get Accounts
|
|
@@ -9393,13 +8539,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9393
8539
|
* @throws {RequiredError}
|
|
9394
8540
|
*/
|
|
9395
8541
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9396
|
-
/**
|
|
9397
|
-
* Get Admin Account
|
|
9398
|
-
* @summary Get Admin Account
|
|
9399
|
-
* @param {*} [options] Override http request option.
|
|
9400
|
-
* @throws {RequiredError}
|
|
9401
|
-
*/
|
|
9402
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9403
8542
|
/**
|
|
9404
8543
|
* Create client credentials
|
|
9405
8544
|
* @summary Create client credentials
|
|
@@ -9480,14 +8619,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9480
8619
|
* @throws {RequiredError}
|
|
9481
8620
|
*/
|
|
9482
8621
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9483
|
-
/**
|
|
9484
|
-
* Get Account Detailed Summary
|
|
9485
|
-
* @summary Get Account Detailed Summary
|
|
9486
|
-
* @param {number} id Customer ID
|
|
9487
|
-
* @param {*} [options] Override http request option.
|
|
9488
|
-
* @throws {RequiredError}
|
|
9489
|
-
*/
|
|
9490
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9491
8622
|
/**
|
|
9492
8623
|
* Get Accounts
|
|
9493
8624
|
* @summary Get Accounts
|
|
@@ -9553,13 +8684,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9553
8684
|
* @throws {RequiredError}
|
|
9554
8685
|
*/
|
|
9555
8686
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9556
|
-
/**
|
|
9557
|
-
* Get Admin Account
|
|
9558
|
-
* @summary Get Admin Account
|
|
9559
|
-
* @param {*} [options] Override http request option.
|
|
9560
|
-
* @throws {RequiredError}
|
|
9561
|
-
*/
|
|
9562
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9563
8687
|
/**
|
|
9564
8688
|
* Create client credentials
|
|
9565
8689
|
* @summary Create client credentials
|
|
@@ -9638,23 +8762,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9638
8762
|
*/
|
|
9639
8763
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9640
8764
|
/**
|
|
9641
|
-
* Get Account Contacts
|
|
9642
|
-
* @summary Get Account Contacts
|
|
9643
|
-
* @param {string} [email] Contact Email Address
|
|
9644
|
-
* @param {*} [options] Override http request option.
|
|
9645
|
-
* @throws {RequiredError}
|
|
9646
|
-
* @memberof AccountsApi
|
|
9647
|
-
*/
|
|
9648
|
-
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9649
|
-
/**
|
|
9650
|
-
* Get Account Detailed Summary
|
|
9651
|
-
* @summary Get Account Detailed Summary
|
|
9652
|
-
* @param {number} id Customer ID
|
|
8765
|
+
* Get Account Contacts
|
|
8766
|
+
* @summary Get Account Contacts
|
|
8767
|
+
* @param {string} [email] Contact Email Address
|
|
9653
8768
|
* @param {*} [options] Override http request option.
|
|
9654
8769
|
* @throws {RequiredError}
|
|
9655
8770
|
* @memberof AccountsApi
|
|
9656
8771
|
*/
|
|
9657
|
-
|
|
8772
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9658
8773
|
/**
|
|
9659
8774
|
* Get Accounts
|
|
9660
8775
|
* @summary Get Accounts
|
|
@@ -9728,14 +8843,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9728
8843
|
* @memberof AccountsApi
|
|
9729
8844
|
*/
|
|
9730
8845
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9731
|
-
/**
|
|
9732
|
-
* Get Admin Account
|
|
9733
|
-
* @summary Get Admin Account
|
|
9734
|
-
* @param {*} [options] Override http request option.
|
|
9735
|
-
* @throws {RequiredError}
|
|
9736
|
-
* @memberof AccountsApi
|
|
9737
|
-
*/
|
|
9738
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9739
8846
|
/**
|
|
9740
8847
|
* Create client credentials
|
|
9741
8848
|
* @summary Create client credentials
|
|
@@ -9798,6 +8905,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9798
8905
|
* @throws {RequiredError}
|
|
9799
8906
|
*/
|
|
9800
8907
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8908
|
+
/**
|
|
8909
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8910
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8911
|
+
* @param {string} password Desired 3CX web access password
|
|
8912
|
+
* @param {*} [options] Override http request option.
|
|
8913
|
+
* @throws {RequiredError}
|
|
8914
|
+
*/
|
|
8915
|
+
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9801
8916
|
/**
|
|
9802
8917
|
* Get Bulk 3CX Licence Details
|
|
9803
8918
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9820,6 +8935,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9820
8935
|
* @throws {RequiredError}
|
|
9821
8936
|
*/
|
|
9822
8937
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
8938
|
+
/**
|
|
8939
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8940
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8941
|
+
* @param {string} password Desired 3CX web access password
|
|
8942
|
+
* @param {*} [options] Override http request option.
|
|
8943
|
+
* @throws {RequiredError}
|
|
8944
|
+
*/
|
|
8945
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9823
8946
|
/**
|
|
9824
8947
|
* Get Bulk 3CX Licence Details
|
|
9825
8948
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9842,6 +8965,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9842
8965
|
* @throws {RequiredError}
|
|
9843
8966
|
*/
|
|
9844
8967
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
8968
|
+
/**
|
|
8969
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8970
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8971
|
+
* @param {string} password Desired 3CX web access password
|
|
8972
|
+
* @param {*} [options] Override http request option.
|
|
8973
|
+
* @throws {RequiredError}
|
|
8974
|
+
*/
|
|
8975
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9845
8976
|
/**
|
|
9846
8977
|
* Get Bulk 3CX Licence Details
|
|
9847
8978
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9867,6 +8998,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9867
8998
|
* @memberof Class3CXApi
|
|
9868
8999
|
*/
|
|
9869
9000
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9001
|
+
/**
|
|
9002
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9003
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9004
|
+
* @param {string} password Desired 3CX web access password
|
|
9005
|
+
* @param {*} [options] Override http request option.
|
|
9006
|
+
* @throws {RequiredError}
|
|
9007
|
+
* @memberof Class3CXApi
|
|
9008
|
+
*/
|
|
9009
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9870
9010
|
/**
|
|
9871
9011
|
* Get Bulk 3CX Licence Details
|
|
9872
9012
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12128,19 +11268,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12128
11268
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12129
11269
|
/**
|
|
12130
11270
|
* Delete Orders
|
|
12131
|
-
* @summary Delete Orders
|
|
12132
|
-
* @param {number} id Order ID
|
|
12133
|
-
* @param {*} [options] Override http request option.
|
|
12134
|
-
* @throws {RequiredError}
|
|
12135
|
-
*/
|
|
12136
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12137
|
-
/**
|
|
12138
|
-
* Get Editable Order
|
|
12139
11271
|
* @param {number} id Order ID
|
|
12140
11272
|
* @param {*} [options] Override http request option.
|
|
12141
11273
|
* @throws {RequiredError}
|
|
12142
11274
|
*/
|
|
12143
|
-
|
|
11275
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12144
11276
|
/**
|
|
12145
11277
|
* Get Orders
|
|
12146
11278
|
* @summary Get Orders
|
|
@@ -12155,44 +11287,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12155
11287
|
* @throws {RequiredError}
|
|
12156
11288
|
*/
|
|
12157
11289
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12158
|
-
/**
|
|
12159
|
-
* Create An Order (Admin)
|
|
12160
|
-
* @summary Create An Order (Admin)
|
|
12161
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12162
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12163
|
-
* @param {*} [options] Override http request option.
|
|
12164
|
-
* @throws {RequiredError}
|
|
12165
|
-
*/
|
|
12166
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12167
|
-
/**
|
|
12168
|
-
* Create An Order
|
|
12169
|
-
* @summary Create An Order
|
|
12170
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12171
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12172
|
-
* @param {*} [options] Override http request option.
|
|
12173
|
-
* @throws {RequiredError}
|
|
12174
|
-
*/
|
|
12175
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12176
|
-
/**
|
|
12177
|
-
* Update An Order (Admin)
|
|
12178
|
-
* @summary Update An Order (Admin)
|
|
12179
|
-
* @param {number} id Order ID
|
|
12180
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12181
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12182
|
-
* @param {*} [options] Override http request option.
|
|
12183
|
-
* @throws {RequiredError}
|
|
12184
|
-
*/
|
|
12185
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12186
|
-
/**
|
|
12187
|
-
* Update An Order
|
|
12188
|
-
* @summary Update An Order
|
|
12189
|
-
* @param {number} id Order ID
|
|
12190
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12191
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12192
|
-
* @param {*} [options] Override http request option.
|
|
12193
|
-
* @throws {RequiredError}
|
|
12194
|
-
*/
|
|
12195
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12196
11290
|
};
|
|
12197
11291
|
/**
|
|
12198
11292
|
* OrdersApi - functional programming interface
|
|
@@ -12201,19 +11295,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12201
11295
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12202
11296
|
/**
|
|
12203
11297
|
* Delete Orders
|
|
12204
|
-
* @summary Delete Orders
|
|
12205
|
-
* @param {number} id Order ID
|
|
12206
|
-
* @param {*} [options] Override http request option.
|
|
12207
|
-
* @throws {RequiredError}
|
|
12208
|
-
*/
|
|
12209
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12210
|
-
/**
|
|
12211
|
-
* Get Editable Order
|
|
12212
11298
|
* @param {number} id Order ID
|
|
12213
11299
|
* @param {*} [options] Override http request option.
|
|
12214
11300
|
* @throws {RequiredError}
|
|
12215
11301
|
*/
|
|
12216
|
-
|
|
11302
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12217
11303
|
/**
|
|
12218
11304
|
* Get Orders
|
|
12219
11305
|
* @summary Get Orders
|
|
@@ -12228,44 +11314,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12228
11314
|
* @throws {RequiredError}
|
|
12229
11315
|
*/
|
|
12230
11316
|
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>>;
|
|
12231
|
-
/**
|
|
12232
|
-
* Create An Order (Admin)
|
|
12233
|
-
* @summary Create An Order (Admin)
|
|
12234
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12235
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12236
|
-
* @param {*} [options] Override http request option.
|
|
12237
|
-
* @throws {RequiredError}
|
|
12238
|
-
*/
|
|
12239
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12240
|
-
/**
|
|
12241
|
-
* Create An Order
|
|
12242
|
-
* @summary Create An Order
|
|
12243
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12244
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12245
|
-
* @param {*} [options] Override http request option.
|
|
12246
|
-
* @throws {RequiredError}
|
|
12247
|
-
*/
|
|
12248
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12249
|
-
/**
|
|
12250
|
-
* Update An Order (Admin)
|
|
12251
|
-
* @summary Update An Order (Admin)
|
|
12252
|
-
* @param {number} id Order ID
|
|
12253
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12254
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12255
|
-
* @param {*} [options] Override http request option.
|
|
12256
|
-
* @throws {RequiredError}
|
|
12257
|
-
*/
|
|
12258
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12259
|
-
/**
|
|
12260
|
-
* Update An Order
|
|
12261
|
-
* @summary Update An Order
|
|
12262
|
-
* @param {number} id Order ID
|
|
12263
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12264
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12265
|
-
* @param {*} [options] Override http request option.
|
|
12266
|
-
* @throws {RequiredError}
|
|
12267
|
-
*/
|
|
12268
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12269
11317
|
};
|
|
12270
11318
|
/**
|
|
12271
11319
|
* OrdersApi - factory interface
|
|
@@ -12274,19 +11322,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12274
11322
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12275
11323
|
/**
|
|
12276
11324
|
* Delete Orders
|
|
12277
|
-
* @summary Delete Orders
|
|
12278
11325
|
* @param {number} id Order ID
|
|
12279
11326
|
* @param {*} [options] Override http request option.
|
|
12280
11327
|
* @throws {RequiredError}
|
|
12281
11328
|
*/
|
|
12282
|
-
|
|
12283
|
-
/**
|
|
12284
|
-
* Get Editable Order
|
|
12285
|
-
* @param {number} id Order ID
|
|
12286
|
-
* @param {*} [options] Override http request option.
|
|
12287
|
-
* @throws {RequiredError}
|
|
12288
|
-
*/
|
|
12289
|
-
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11329
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12290
11330
|
/**
|
|
12291
11331
|
* Get Orders
|
|
12292
11332
|
* @summary Get Orders
|
|
@@ -12301,44 +11341,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12301
11341
|
* @throws {RequiredError}
|
|
12302
11342
|
*/
|
|
12303
11343
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12304
|
-
/**
|
|
12305
|
-
* Create An Order (Admin)
|
|
12306
|
-
* @summary Create An Order (Admin)
|
|
12307
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12308
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12309
|
-
* @param {*} [options] Override http request option.
|
|
12310
|
-
* @throws {RequiredError}
|
|
12311
|
-
*/
|
|
12312
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12313
|
-
/**
|
|
12314
|
-
* Create An Order
|
|
12315
|
-
* @summary Create An Order
|
|
12316
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12317
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12318
|
-
* @param {*} [options] Override http request option.
|
|
12319
|
-
* @throws {RequiredError}
|
|
12320
|
-
*/
|
|
12321
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12322
|
-
/**
|
|
12323
|
-
* Update An Order (Admin)
|
|
12324
|
-
* @summary Update An Order (Admin)
|
|
12325
|
-
* @param {number} id Order ID
|
|
12326
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12327
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12328
|
-
* @param {*} [options] Override http request option.
|
|
12329
|
-
* @throws {RequiredError}
|
|
12330
|
-
*/
|
|
12331
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12332
|
-
/**
|
|
12333
|
-
* Update An Order
|
|
12334
|
-
* @summary Update An Order
|
|
12335
|
-
* @param {number} id Order ID
|
|
12336
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12337
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12338
|
-
* @param {*} [options] Override http request option.
|
|
12339
|
-
* @throws {RequiredError}
|
|
12340
|
-
*/
|
|
12341
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12342
11344
|
};
|
|
12343
11345
|
/**
|
|
12344
11346
|
* OrdersApi - object-oriented interface
|
|
@@ -12349,21 +11351,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12349
11351
|
export declare class OrdersApi extends BaseAPI {
|
|
12350
11352
|
/**
|
|
12351
11353
|
* Delete Orders
|
|
12352
|
-
* @summary Delete Orders
|
|
12353
|
-
* @param {number} id Order ID
|
|
12354
|
-
* @param {*} [options] Override http request option.
|
|
12355
|
-
* @throws {RequiredError}
|
|
12356
|
-
* @memberof OrdersApi
|
|
12357
|
-
*/
|
|
12358
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12359
|
-
/**
|
|
12360
|
-
* Get Editable Order
|
|
12361
11354
|
* @param {number} id Order ID
|
|
12362
11355
|
* @param {*} [options] Override http request option.
|
|
12363
11356
|
* @throws {RequiredError}
|
|
12364
11357
|
* @memberof OrdersApi
|
|
12365
11358
|
*/
|
|
12366
|
-
|
|
11359
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12367
11360
|
/**
|
|
12368
11361
|
* Get Orders
|
|
12369
11362
|
* @summary Get Orders
|
|
@@ -12379,48 +11372,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12379
11372
|
* @memberof OrdersApi
|
|
12380
11373
|
*/
|
|
12381
11374
|
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, {}>>;
|
|
12382
|
-
/**
|
|
12383
|
-
* Create An Order (Admin)
|
|
12384
|
-
* @summary Create An Order (Admin)
|
|
12385
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12386
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12387
|
-
* @param {*} [options] Override http request option.
|
|
12388
|
-
* @throws {RequiredError}
|
|
12389
|
-
* @memberof OrdersApi
|
|
12390
|
-
*/
|
|
12391
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12392
|
-
/**
|
|
12393
|
-
* Create An Order
|
|
12394
|
-
* @summary Create An Order
|
|
12395
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12396
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12397
|
-
* @param {*} [options] Override http request option.
|
|
12398
|
-
* @throws {RequiredError}
|
|
12399
|
-
* @memberof OrdersApi
|
|
12400
|
-
*/
|
|
12401
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12402
|
-
/**
|
|
12403
|
-
* Update An Order (Admin)
|
|
12404
|
-
* @summary Update An Order (Admin)
|
|
12405
|
-
* @param {number} id Order ID
|
|
12406
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12407
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12408
|
-
* @param {*} [options] Override http request option.
|
|
12409
|
-
* @throws {RequiredError}
|
|
12410
|
-
* @memberof OrdersApi
|
|
12411
|
-
*/
|
|
12412
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12413
|
-
/**
|
|
12414
|
-
* Update An Order
|
|
12415
|
-
* @summary Update An Order
|
|
12416
|
-
* @param {number} id Order ID
|
|
12417
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12418
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12419
|
-
* @param {*} [options] Override http request option.
|
|
12420
|
-
* @throws {RequiredError}
|
|
12421
|
-
* @memberof OrdersApi
|
|
12422
|
-
*/
|
|
12423
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12424
11375
|
}
|
|
12425
11376
|
/**
|
|
12426
11377
|
* @export
|
|
@@ -12676,6 +11627,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12676
11627
|
* @throws {RequiredError}
|
|
12677
11628
|
*/
|
|
12678
11629
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11630
|
+
/**
|
|
11631
|
+
* Get Customer Price Lists
|
|
11632
|
+
* @summary Get Customer Price Lists
|
|
11633
|
+
* @param {*} [options] Override http request option.
|
|
11634
|
+
* @throws {RequiredError}
|
|
11635
|
+
*/
|
|
11636
|
+
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12679
11637
|
/**
|
|
12680
11638
|
* Get Current Stock & Pricing
|
|
12681
11639
|
* @summary Get Current Stock & Pricing
|
|
@@ -12688,10 +11646,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12688
11646
|
/**
|
|
12689
11647
|
* Get Products
|
|
12690
11648
|
* @summary Get Products
|
|
11649
|
+
* @param {number} [pageSize] Number Of Results
|
|
11650
|
+
* @param {number} [page] Page Number
|
|
11651
|
+
* @param {string} [search] Search
|
|
12691
11652
|
* @param {*} [options] Override http request option.
|
|
12692
11653
|
* @throws {RequiredError}
|
|
12693
11654
|
*/
|
|
12694
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11655
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12695
11656
|
/**
|
|
12696
11657
|
* Get Current Stock & Pricing
|
|
12697
11658
|
* @summary Get Current Stock & Pricing
|
|
@@ -12706,35 +11667,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12706
11667
|
* @throws {RequiredError}
|
|
12707
11668
|
*/
|
|
12708
11669
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12709
|
-
/**
|
|
12710
|
-
* Search Products
|
|
12711
|
-
* @summary Search Products
|
|
12712
|
-
* @param {number} [pageSize] Number Of Results
|
|
12713
|
-
* @param {number} [page] Page Number
|
|
12714
|
-
* @param {string} [search] Search
|
|
12715
|
-
* @param {*} [options] Override http request option.
|
|
12716
|
-
* @throws {RequiredError}
|
|
12717
|
-
*/
|
|
12718
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12719
|
-
/**
|
|
12720
|
-
* Get Product
|
|
12721
|
-
* @summary Get Product
|
|
12722
|
-
* @param {string} sku Product SKU
|
|
12723
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12724
|
-
* @param {*} [options] Override http request option.
|
|
12725
|
-
* @throws {RequiredError}
|
|
12726
|
-
*/
|
|
12727
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12728
|
-
/**
|
|
12729
|
-
* Get Product For Customer
|
|
12730
|
-
* @summary Get Product For Customer
|
|
12731
|
-
* @param {number} customerId Customer ID
|
|
12732
|
-
* @param {string} sku Product SKU
|
|
12733
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12734
|
-
* @param {*} [options] Override http request option.
|
|
12735
|
-
* @throws {RequiredError}
|
|
12736
|
-
*/
|
|
12737
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12738
11670
|
};
|
|
12739
11671
|
/**
|
|
12740
11672
|
* ProductsApi - functional programming interface
|
|
@@ -12748,6 +11680,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12748
11680
|
* @throws {RequiredError}
|
|
12749
11681
|
*/
|
|
12750
11682
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
11683
|
+
/**
|
|
11684
|
+
* Get Customer Price Lists
|
|
11685
|
+
* @summary Get Customer Price Lists
|
|
11686
|
+
* @param {*} [options] Override http request option.
|
|
11687
|
+
* @throws {RequiredError}
|
|
11688
|
+
*/
|
|
11689
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12751
11690
|
/**
|
|
12752
11691
|
* Get Current Stock & Pricing
|
|
12753
11692
|
* @summary Get Current Stock & Pricing
|
|
@@ -12760,10 +11699,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12760
11699
|
/**
|
|
12761
11700
|
* Get Products
|
|
12762
11701
|
* @summary Get Products
|
|
11702
|
+
* @param {number} [pageSize] Number Of Results
|
|
11703
|
+
* @param {number} [page] Page Number
|
|
11704
|
+
* @param {string} [search] Search
|
|
12763
11705
|
* @param {*} [options] Override http request option.
|
|
12764
11706
|
* @throws {RequiredError}
|
|
12765
11707
|
*/
|
|
12766
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11708
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12767
11709
|
/**
|
|
12768
11710
|
* Get Current Stock & Pricing
|
|
12769
11711
|
* @summary Get Current Stock & Pricing
|
|
@@ -12778,35 +11720,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12778
11720
|
* @throws {RequiredError}
|
|
12779
11721
|
*/
|
|
12780
11722
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
12781
|
-
/**
|
|
12782
|
-
* Search Products
|
|
12783
|
-
* @summary Search Products
|
|
12784
|
-
* @param {number} [pageSize] Number Of Results
|
|
12785
|
-
* @param {number} [page] Page Number
|
|
12786
|
-
* @param {string} [search] Search
|
|
12787
|
-
* @param {*} [options] Override http request option.
|
|
12788
|
-
* @throws {RequiredError}
|
|
12789
|
-
*/
|
|
12790
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12791
|
-
/**
|
|
12792
|
-
* Get Product
|
|
12793
|
-
* @summary Get Product
|
|
12794
|
-
* @param {string} sku Product SKU
|
|
12795
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12796
|
-
* @param {*} [options] Override http request option.
|
|
12797
|
-
* @throws {RequiredError}
|
|
12798
|
-
*/
|
|
12799
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12800
|
-
/**
|
|
12801
|
-
* Get Product For Customer
|
|
12802
|
-
* @summary Get Product For Customer
|
|
12803
|
-
* @param {number} customerId Customer ID
|
|
12804
|
-
* @param {string} sku Product SKU
|
|
12805
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12806
|
-
* @param {*} [options] Override http request option.
|
|
12807
|
-
* @throws {RequiredError}
|
|
12808
|
-
*/
|
|
12809
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12810
11723
|
};
|
|
12811
11724
|
/**
|
|
12812
11725
|
* ProductsApi - factory interface
|
|
@@ -12820,6 +11733,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12820
11733
|
* @throws {RequiredError}
|
|
12821
11734
|
*/
|
|
12822
11735
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
11736
|
+
/**
|
|
11737
|
+
* Get Customer Price Lists
|
|
11738
|
+
* @summary Get Customer Price Lists
|
|
11739
|
+
* @param {*} [options] Override http request option.
|
|
11740
|
+
* @throws {RequiredError}
|
|
11741
|
+
*/
|
|
11742
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12823
11743
|
/**
|
|
12824
11744
|
* Get Current Stock & Pricing
|
|
12825
11745
|
* @summary Get Current Stock & Pricing
|
|
@@ -12832,10 +11752,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12832
11752
|
/**
|
|
12833
11753
|
* Get Products
|
|
12834
11754
|
* @summary Get Products
|
|
11755
|
+
* @param {number} [pageSize] Number Of Results
|
|
11756
|
+
* @param {number} [page] Page Number
|
|
11757
|
+
* @param {string} [search] Search
|
|
12835
11758
|
* @param {*} [options] Override http request option.
|
|
12836
11759
|
* @throws {RequiredError}
|
|
12837
11760
|
*/
|
|
12838
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11761
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12839
11762
|
/**
|
|
12840
11763
|
* Get Current Stock & Pricing
|
|
12841
11764
|
* @summary Get Current Stock & Pricing
|
|
@@ -12850,35 +11773,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12850
11773
|
* @throws {RequiredError}
|
|
12851
11774
|
*/
|
|
12852
11775
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
12853
|
-
/**
|
|
12854
|
-
* Search Products
|
|
12855
|
-
* @summary Search Products
|
|
12856
|
-
* @param {number} [pageSize] Number Of Results
|
|
12857
|
-
* @param {number} [page] Page Number
|
|
12858
|
-
* @param {string} [search] Search
|
|
12859
|
-
* @param {*} [options] Override http request option.
|
|
12860
|
-
* @throws {RequiredError}
|
|
12861
|
-
*/
|
|
12862
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12863
|
-
/**
|
|
12864
|
-
* Get Product
|
|
12865
|
-
* @summary Get Product
|
|
12866
|
-
* @param {string} sku Product SKU
|
|
12867
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12868
|
-
* @param {*} [options] Override http request option.
|
|
12869
|
-
* @throws {RequiredError}
|
|
12870
|
-
*/
|
|
12871
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12872
|
-
/**
|
|
12873
|
-
* Get Product For Customer
|
|
12874
|
-
* @summary Get Product For Customer
|
|
12875
|
-
* @param {number} customerId Customer ID
|
|
12876
|
-
* @param {string} sku Product SKU
|
|
12877
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12878
|
-
* @param {*} [options] Override http request option.
|
|
12879
|
-
* @throws {RequiredError}
|
|
12880
|
-
*/
|
|
12881
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12882
11776
|
};
|
|
12883
11777
|
/**
|
|
12884
11778
|
* ProductsApi - object-oriented interface
|
|
@@ -12895,6 +11789,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12895
11789
|
* @memberof ProductsApi
|
|
12896
11790
|
*/
|
|
12897
11791
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
11792
|
+
/**
|
|
11793
|
+
* Get Customer Price Lists
|
|
11794
|
+
* @summary Get Customer Price Lists
|
|
11795
|
+
* @param {*} [options] Override http request option.
|
|
11796
|
+
* @throws {RequiredError}
|
|
11797
|
+
* @memberof ProductsApi
|
|
11798
|
+
*/
|
|
11799
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12898
11800
|
/**
|
|
12899
11801
|
* Get Current Stock & Pricing
|
|
12900
11802
|
* @summary Get Current Stock & Pricing
|
|
@@ -12908,11 +11810,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12908
11810
|
/**
|
|
12909
11811
|
* Get Products
|
|
12910
11812
|
* @summary Get Products
|
|
11813
|
+
* @param {number} [pageSize] Number Of Results
|
|
11814
|
+
* @param {number} [page] Page Number
|
|
11815
|
+
* @param {string} [search] Search
|
|
12911
11816
|
* @param {*} [options] Override http request option.
|
|
12912
11817
|
* @throws {RequiredError}
|
|
12913
11818
|
* @memberof ProductsApi
|
|
12914
11819
|
*/
|
|
12915
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11820
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12916
11821
|
/**
|
|
12917
11822
|
* Get Current Stock & Pricing
|
|
12918
11823
|
* @summary Get Current Stock & Pricing
|
|
@@ -12929,38 +11834,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12929
11834
|
* @memberof ProductsApi
|
|
12930
11835
|
*/
|
|
12931
11836
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
12932
|
-
/**
|
|
12933
|
-
* Search Products
|
|
12934
|
-
* @summary Search Products
|
|
12935
|
-
* @param {number} [pageSize] Number Of Results
|
|
12936
|
-
* @param {number} [page] Page Number
|
|
12937
|
-
* @param {string} [search] Search
|
|
12938
|
-
* @param {*} [options] Override http request option.
|
|
12939
|
-
* @throws {RequiredError}
|
|
12940
|
-
* @memberof ProductsApi
|
|
12941
|
-
*/
|
|
12942
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12943
|
-
/**
|
|
12944
|
-
* Get Product
|
|
12945
|
-
* @summary Get Product
|
|
12946
|
-
* @param {string} sku Product SKU
|
|
12947
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12948
|
-
* @param {*} [options] Override http request option.
|
|
12949
|
-
* @throws {RequiredError}
|
|
12950
|
-
* @memberof ProductsApi
|
|
12951
|
-
*/
|
|
12952
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12953
|
-
/**
|
|
12954
|
-
* Get Product For Customer
|
|
12955
|
-
* @summary Get Product For Customer
|
|
12956
|
-
* @param {number} customerId Customer ID
|
|
12957
|
-
* @param {string} sku Product SKU
|
|
12958
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12959
|
-
* @param {*} [options] Override http request option.
|
|
12960
|
-
* @throws {RequiredError}
|
|
12961
|
-
* @memberof ProductsApi
|
|
12962
|
-
*/
|
|
12963
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12964
11837
|
}
|
|
12965
11838
|
/**
|
|
12966
11839
|
* @export
|
|
@@ -13081,7 +11954,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13081
11954
|
* @param {*} [options] Override http request option.
|
|
13082
11955
|
* @throws {RequiredError}
|
|
13083
11956
|
*/
|
|
13084
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
11957
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13085
11958
|
/**
|
|
13086
11959
|
* Create a Fanvil provisioning group
|
|
13087
11960
|
* @summary Add group to DB and FDPS
|
|
@@ -13089,7 +11962,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13089
11962
|
* @param {*} [options] Override http request option.
|
|
13090
11963
|
* @throws {RequiredError}
|
|
13091
11964
|
*/
|
|
13092
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11965
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13093
11966
|
/**
|
|
13094
11967
|
* Add MAC address to DB and FDPS group
|
|
13095
11968
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13146,7 +12019,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13146
12019
|
* @param {*} [options] Override http request option.
|
|
13147
12020
|
* @throws {RequiredError}
|
|
13148
12021
|
*/
|
|
13149
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12022
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13150
12023
|
/**
|
|
13151
12024
|
* Create a Fanvil provisioning group
|
|
13152
12025
|
* @summary Add group to DB and FDPS
|
|
@@ -13154,7 +12027,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13154
12027
|
* @param {*} [options] Override http request option.
|
|
13155
12028
|
* @throws {RequiredError}
|
|
13156
12029
|
*/
|
|
13157
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12030
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13158
12031
|
/**
|
|
13159
12032
|
* Add MAC address to DB and FDPS group
|
|
13160
12033
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13218,7 +12091,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13218
12091
|
* @throws {RequiredError}
|
|
13219
12092
|
* @memberof ProvisioningApi
|
|
13220
12093
|
*/
|
|
13221
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12094
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13222
12095
|
/**
|
|
13223
12096
|
* Create a Fanvil provisioning group
|
|
13224
12097
|
* @summary Add group to DB and FDPS
|
|
@@ -13227,7 +12100,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13227
12100
|
* @throws {RequiredError}
|
|
13228
12101
|
* @memberof ProvisioningApi
|
|
13229
12102
|
*/
|
|
13230
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12103
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13231
12104
|
/**
|
|
13232
12105
|
* Add MAC address to DB and FDPS group
|
|
13233
12106
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14102,65 +12975,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14102
12975
|
*/
|
|
14103
12976
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14104
12977
|
}
|
|
14105
|
-
/**
|
|
14106
|
-
* ShippingApi - axios parameter creator
|
|
14107
|
-
* @export
|
|
14108
|
-
*/
|
|
14109
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14110
|
-
/**
|
|
14111
|
-
* Get Shipping Services
|
|
14112
|
-
* @summary Get Shipping Services
|
|
14113
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14114
|
-
* @param {*} [options] Override http request option.
|
|
14115
|
-
* @throws {RequiredError}
|
|
14116
|
-
*/
|
|
14117
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14118
|
-
};
|
|
14119
|
-
/**
|
|
14120
|
-
* ShippingApi - functional programming interface
|
|
14121
|
-
* @export
|
|
14122
|
-
*/
|
|
14123
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14124
|
-
/**
|
|
14125
|
-
* Get Shipping Services
|
|
14126
|
-
* @summary Get Shipping Services
|
|
14127
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14128
|
-
* @param {*} [options] Override http request option.
|
|
14129
|
-
* @throws {RequiredError}
|
|
14130
|
-
*/
|
|
14131
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14132
|
-
};
|
|
14133
|
-
/**
|
|
14134
|
-
* ShippingApi - factory interface
|
|
14135
|
-
* @export
|
|
14136
|
-
*/
|
|
14137
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14138
|
-
/**
|
|
14139
|
-
* Get Shipping Services
|
|
14140
|
-
* @summary Get Shipping Services
|
|
14141
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14142
|
-
* @param {*} [options] Override http request option.
|
|
14143
|
-
* @throws {RequiredError}
|
|
14144
|
-
*/
|
|
14145
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14146
|
-
};
|
|
14147
|
-
/**
|
|
14148
|
-
* ShippingApi - object-oriented interface
|
|
14149
|
-
* @export
|
|
14150
|
-
* @class ShippingApi
|
|
14151
|
-
* @extends {BaseAPI}
|
|
14152
|
-
*/
|
|
14153
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14154
|
-
/**
|
|
14155
|
-
* Get Shipping Services
|
|
14156
|
-
* @summary Get Shipping Services
|
|
14157
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14158
|
-
* @param {*} [options] Override http request option.
|
|
14159
|
-
* @throws {RequiredError}
|
|
14160
|
-
* @memberof ShippingApi
|
|
14161
|
-
*/
|
|
14162
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14163
|
-
}
|
|
14164
12978
|
/**
|
|
14165
12979
|
* StockManagementApi - axios parameter creator
|
|
14166
12980
|
* @export
|
|
@@ -14490,7 +13304,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14490
13304
|
* @param {*} [options] Override http request option.
|
|
14491
13305
|
* @throws {RequiredError}
|
|
14492
13306
|
*/
|
|
14493
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13307
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
14494
13308
|
/**
|
|
14495
13309
|
* Get Stock Order Supplier Invoice
|
|
14496
13310
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14705,7 +13519,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14705
13519
|
* @param {*} [options] Override http request option.
|
|
14706
13520
|
* @throws {RequiredError}
|
|
14707
13521
|
*/
|
|
14708
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13522
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
14709
13523
|
/**
|
|
14710
13524
|
* Get Stock Order Supplier Invoice
|
|
14711
13525
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14935,7 +13749,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14935
13749
|
* @throws {RequiredError}
|
|
14936
13750
|
* @memberof StockManagementApi
|
|
14937
13751
|
*/
|
|
14938
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13752
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
14939
13753
|
/**
|
|
14940
13754
|
* Get Stock Order Supplier Invoice
|
|
14941
13755
|
* @summary Get Stock Order Supplier Invoice
|