yellowgrid-api-ts 3.0.87-dev.0 → 3.0.87
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 +273 -1825
- 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 -1330
- 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 -35
- 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,61 +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
247
|
/**
|
|
352
248
|
* New Account Request
|
|
353
249
|
* @export
|
|
@@ -629,203 +525,6 @@ export interface AddressRequestModel {
|
|
|
629
525
|
*/
|
|
630
526
|
'addressPostcode'?: string;
|
|
631
527
|
}
|
|
632
|
-
/**
|
|
633
|
-
* Admin Order Item Request
|
|
634
|
-
* @export
|
|
635
|
-
* @interface AdminItemRequestDTO
|
|
636
|
-
*/
|
|
637
|
-
export interface AdminItemRequestDTO {
|
|
638
|
-
/**
|
|
639
|
-
* SKU
|
|
640
|
-
* @type {string}
|
|
641
|
-
* @memberof AdminItemRequestDTO
|
|
642
|
-
*/
|
|
643
|
-
'sku'?: string;
|
|
644
|
-
/**
|
|
645
|
-
* Quantity
|
|
646
|
-
* @type {number}
|
|
647
|
-
* @memberof AdminItemRequestDTO
|
|
648
|
-
*/
|
|
649
|
-
'quantity'?: number;
|
|
650
|
-
/**
|
|
651
|
-
* ID
|
|
652
|
-
* @type {number}
|
|
653
|
-
* @memberof AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
'id'?: number | null;
|
|
656
|
-
/**
|
|
657
|
-
* 3CX Licence Key
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'licenceKey'?: string | null;
|
|
662
|
-
/**
|
|
663
|
-
* 3CX Hosting
|
|
664
|
-
* @type {boolean}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'hosting'?: boolean | null;
|
|
668
|
-
/**
|
|
669
|
-
* Date Time
|
|
670
|
-
* @type {string}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'processDate'?: string;
|
|
674
|
-
/**
|
|
675
|
-
* SBCS
|
|
676
|
-
* @type {Array<TcxSbcDTO>}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
680
|
-
/**
|
|
681
|
-
* Title
|
|
682
|
-
* @type {string}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'title'?: string | null;
|
|
686
|
-
/**
|
|
687
|
-
* Price (£)
|
|
688
|
-
* @type {number}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'itemPrice'?: number | null;
|
|
692
|
-
}
|
|
693
|
-
/**
|
|
694
|
-
* Admin Order Request
|
|
695
|
-
* @export
|
|
696
|
-
* @interface AdminOrderRequestDTO
|
|
697
|
-
*/
|
|
698
|
-
export interface AdminOrderRequestDTO {
|
|
699
|
-
/**
|
|
700
|
-
* Order Reference
|
|
701
|
-
* @type {string}
|
|
702
|
-
* @memberof AdminOrderRequestDTO
|
|
703
|
-
*/
|
|
704
|
-
'orderReference'?: string;
|
|
705
|
-
/**
|
|
706
|
-
* Items
|
|
707
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
708
|
-
* @memberof AdminOrderRequestDTO
|
|
709
|
-
*/
|
|
710
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
711
|
-
/**
|
|
712
|
-
*
|
|
713
|
-
* @type {ShippingServiceDTO}
|
|
714
|
-
* @memberof AdminOrderRequestDTO
|
|
715
|
-
*/
|
|
716
|
-
'shippingService'?: ShippingServiceDTO;
|
|
717
|
-
/**
|
|
718
|
-
* Provisioning URL
|
|
719
|
-
* @type {string}
|
|
720
|
-
* @memberof AdminOrderRequestDTO
|
|
721
|
-
*/
|
|
722
|
-
'provisioningUrl'?: string | null;
|
|
723
|
-
/**
|
|
724
|
-
*
|
|
725
|
-
* @type {AddressModel}
|
|
726
|
-
* @memberof AdminOrderRequestDTO
|
|
727
|
-
*/
|
|
728
|
-
'shippingAddress'?: AddressModel;
|
|
729
|
-
/**
|
|
730
|
-
* Part Ship Order
|
|
731
|
-
* @type {boolean}
|
|
732
|
-
* @memberof AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
'partShip'?: boolean;
|
|
735
|
-
/**
|
|
736
|
-
* Quote
|
|
737
|
-
* @type {boolean}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'quote'?: boolean;
|
|
741
|
-
/**
|
|
742
|
-
* Customer ID
|
|
743
|
-
* @type {number}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'customerId'?: number;
|
|
747
|
-
/**
|
|
748
|
-
* Contact
|
|
749
|
-
* @type {string}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'contact'?: string;
|
|
753
|
-
/**
|
|
754
|
-
* Ignore Customer On Hold
|
|
755
|
-
* @type {boolean}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'ignoreOnHold'?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* Ignore Customer Credit Limit
|
|
761
|
-
* @type {boolean}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'ignoreCreditLimit'?: boolean;
|
|
765
|
-
/**
|
|
766
|
-
* Include NFR Promos
|
|
767
|
-
* @type {boolean}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'includeNfrPromos'?: boolean;
|
|
771
|
-
/**
|
|
772
|
-
* Carriage Charge
|
|
773
|
-
* @type {number}
|
|
774
|
-
* @memberof AdminOrderRequestDTO
|
|
775
|
-
*/
|
|
776
|
-
'carriageCharge'?: number;
|
|
777
|
-
}
|
|
778
|
-
/**
|
|
779
|
-
* Admin User
|
|
780
|
-
* @export
|
|
781
|
-
* @interface AdminUserModel
|
|
782
|
-
*/
|
|
783
|
-
export interface AdminUserModel {
|
|
784
|
-
/**
|
|
785
|
-
* First Name
|
|
786
|
-
* @type {string}
|
|
787
|
-
* @memberof AdminUserModel
|
|
788
|
-
*/
|
|
789
|
-
'firstName'?: string;
|
|
790
|
-
/**
|
|
791
|
-
* Last Name
|
|
792
|
-
* @type {string}
|
|
793
|
-
* @memberof AdminUserModel
|
|
794
|
-
*/
|
|
795
|
-
'lastName'?: string;
|
|
796
|
-
/**
|
|
797
|
-
* Avatar
|
|
798
|
-
* @type {string}
|
|
799
|
-
* @memberof AdminUserModel
|
|
800
|
-
*/
|
|
801
|
-
'avatar'?: string | null;
|
|
802
|
-
/**
|
|
803
|
-
* Role
|
|
804
|
-
* @type {number}
|
|
805
|
-
* @memberof AdminUserModel
|
|
806
|
-
*/
|
|
807
|
-
'role'?: AdminUserModelRoleEnum;
|
|
808
|
-
/**
|
|
809
|
-
* Navigation
|
|
810
|
-
* @type {Array<NavigationItemModel>}
|
|
811
|
-
* @memberof AdminUserModel
|
|
812
|
-
*/
|
|
813
|
-
'navigation'?: Array<NavigationItemModel>;
|
|
814
|
-
/**
|
|
815
|
-
* Email
|
|
816
|
-
* @type {string}
|
|
817
|
-
* @memberof AdminUserModel
|
|
818
|
-
*/
|
|
819
|
-
'email'?: string | null;
|
|
820
|
-
}
|
|
821
|
-
export declare const AdminUserModelRoleEnum: {
|
|
822
|
-
readonly NUMBER_0: 0;
|
|
823
|
-
readonly NUMBER_1: 1;
|
|
824
|
-
readonly NUMBER_2: 2;
|
|
825
|
-
readonly NUMBER_3: 3;
|
|
826
|
-
readonly NUMBER_4: 4;
|
|
827
|
-
};
|
|
828
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
829
528
|
/**
|
|
830
529
|
* Agent Hours Graph
|
|
831
530
|
* @export
|
|
@@ -1055,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1055
754
|
*/
|
|
1056
755
|
'redirect_uri'?: string | null;
|
|
1057
756
|
}
|
|
1058
|
-
/**
|
|
1059
|
-
* Basic Order Item
|
|
1060
|
-
* @export
|
|
1061
|
-
* @interface BasicItemDTO
|
|
1062
|
-
*/
|
|
1063
|
-
export interface BasicItemDTO {
|
|
1064
|
-
/**
|
|
1065
|
-
* SKU
|
|
1066
|
-
* @type {string}
|
|
1067
|
-
* @memberof BasicItemDTO
|
|
1068
|
-
*/
|
|
1069
|
-
'sku'?: string;
|
|
1070
|
-
/**
|
|
1071
|
-
* Quantity
|
|
1072
|
-
* @type {number}
|
|
1073
|
-
* @memberof BasicItemDTO
|
|
1074
|
-
*/
|
|
1075
|
-
'quantity'?: number;
|
|
1076
|
-
}
|
|
1077
|
-
/**
|
|
1078
|
-
* Basic Product
|
|
1079
|
-
* @export
|
|
1080
|
-
* @interface BasicProductDTO
|
|
1081
|
-
*/
|
|
1082
|
-
export interface BasicProductDTO {
|
|
1083
|
-
/**
|
|
1084
|
-
* SKU
|
|
1085
|
-
* @type {string}
|
|
1086
|
-
* @memberof BasicProductDTO
|
|
1087
|
-
*/
|
|
1088
|
-
'sku'?: string;
|
|
1089
|
-
/**
|
|
1090
|
-
* Title
|
|
1091
|
-
* @type {string}
|
|
1092
|
-
* @memberof BasicProductDTO
|
|
1093
|
-
*/
|
|
1094
|
-
'title'?: string;
|
|
1095
|
-
}
|
|
1096
757
|
/**
|
|
1097
758
|
* BatchesEntity
|
|
1098
759
|
* @export
|
|
@@ -1287,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1287
948
|
* @memberof ClientDetailsModel
|
|
1288
949
|
*/
|
|
1289
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1290
957
|
}
|
|
1291
958
|
/**
|
|
1292
959
|
* OAuth client details
|
|
@@ -1448,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1448
1115
|
*/
|
|
1449
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1450
1117
|
}
|
|
1451
|
-
/**
|
|
1452
|
-
* CourierPricesEntity
|
|
1453
|
-
* @export
|
|
1454
|
-
* @interface CourierPriceEntity
|
|
1455
|
-
*/
|
|
1456
|
-
export interface CourierPriceEntity {
|
|
1457
|
-
/**
|
|
1458
|
-
* id
|
|
1459
|
-
* @type {number}
|
|
1460
|
-
* @memberof CourierPriceEntity
|
|
1461
|
-
*/
|
|
1462
|
-
'id'?: number;
|
|
1463
|
-
/**
|
|
1464
|
-
* courier
|
|
1465
|
-
* @type {string}
|
|
1466
|
-
* @memberof CourierPriceEntity
|
|
1467
|
-
*/
|
|
1468
|
-
'courier'?: string;
|
|
1469
|
-
/**
|
|
1470
|
-
* destinationIso
|
|
1471
|
-
* @type {string}
|
|
1472
|
-
* @memberof CourierPriceEntity
|
|
1473
|
-
*/
|
|
1474
|
-
'destinationIso'?: string;
|
|
1475
|
-
/**
|
|
1476
|
-
* serviceDescription
|
|
1477
|
-
* @type {string}
|
|
1478
|
-
* @memberof CourierPriceEntity
|
|
1479
|
-
*/
|
|
1480
|
-
'serviceDescription'?: string;
|
|
1481
|
-
/**
|
|
1482
|
-
* flatRate
|
|
1483
|
-
* @type {number}
|
|
1484
|
-
* @memberof CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
'flatRate'?: number;
|
|
1487
|
-
/**
|
|
1488
|
-
* initialBox
|
|
1489
|
-
* @type {number}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'initialBox'?: number;
|
|
1493
|
-
/**
|
|
1494
|
-
* initialKg
|
|
1495
|
-
* @type {number}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'initialKg'?: number;
|
|
1499
|
-
/**
|
|
1500
|
-
* perBox
|
|
1501
|
-
* @type {number}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'perBox'?: number;
|
|
1505
|
-
/**
|
|
1506
|
-
* perKg
|
|
1507
|
-
* @type {number}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'perKg'?: number;
|
|
1511
|
-
/**
|
|
1512
|
-
* maxKg
|
|
1513
|
-
* @type {number}
|
|
1514
|
-
* @memberof CourierPriceEntity
|
|
1515
|
-
*/
|
|
1516
|
-
'maxKg'?: number;
|
|
1517
|
-
}
|
|
1518
1118
|
/**
|
|
1519
1119
|
* Credit Account
|
|
1520
1120
|
* @export
|
|
@@ -1697,104 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1697
1297
|
*/
|
|
1698
1298
|
'contactLastName'?: string;
|
|
1699
1299
|
}
|
|
1700
|
-
/**
|
|
1701
|
-
* Order Item Request
|
|
1702
|
-
* @export
|
|
1703
|
-
* @interface CustomerItemRequestDTO
|
|
1704
|
-
*/
|
|
1705
|
-
export interface CustomerItemRequestDTO {
|
|
1706
|
-
/**
|
|
1707
|
-
* SKU
|
|
1708
|
-
* @type {string}
|
|
1709
|
-
* @memberof CustomerItemRequestDTO
|
|
1710
|
-
*/
|
|
1711
|
-
'sku'?: string;
|
|
1712
|
-
/**
|
|
1713
|
-
* Quantity
|
|
1714
|
-
* @type {number}
|
|
1715
|
-
* @memberof CustomerItemRequestDTO
|
|
1716
|
-
*/
|
|
1717
|
-
'quantity'?: number;
|
|
1718
|
-
/**
|
|
1719
|
-
* ID
|
|
1720
|
-
* @type {number}
|
|
1721
|
-
* @memberof CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
'id'?: number | null;
|
|
1724
|
-
/**
|
|
1725
|
-
* 3CX Licence Key
|
|
1726
|
-
* @type {string}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'licenceKey'?: string | null;
|
|
1730
|
-
/**
|
|
1731
|
-
* 3CX Hosting
|
|
1732
|
-
* @type {boolean}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'hosting'?: boolean | null;
|
|
1736
|
-
/**
|
|
1737
|
-
* Date Time
|
|
1738
|
-
* @type {string}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'processDate'?: string;
|
|
1742
|
-
/**
|
|
1743
|
-
* SBCS
|
|
1744
|
-
* @type {Array<TcxSbcDTO>}
|
|
1745
|
-
* @memberof CustomerItemRequestDTO
|
|
1746
|
-
*/
|
|
1747
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1748
|
-
}
|
|
1749
|
-
/**
|
|
1750
|
-
* Order Request
|
|
1751
|
-
* @export
|
|
1752
|
-
* @interface CustomerOrderRequestDTO
|
|
1753
|
-
*/
|
|
1754
|
-
export interface CustomerOrderRequestDTO {
|
|
1755
|
-
/**
|
|
1756
|
-
* Order Reference
|
|
1757
|
-
* @type {string}
|
|
1758
|
-
* @memberof CustomerOrderRequestDTO
|
|
1759
|
-
*/
|
|
1760
|
-
'orderReference'?: string;
|
|
1761
|
-
/**
|
|
1762
|
-
* Items
|
|
1763
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1764
|
-
* @memberof CustomerOrderRequestDTO
|
|
1765
|
-
*/
|
|
1766
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1767
|
-
/**
|
|
1768
|
-
*
|
|
1769
|
-
* @type {ShippingServiceDTO}
|
|
1770
|
-
* @memberof CustomerOrderRequestDTO
|
|
1771
|
-
*/
|
|
1772
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1773
|
-
/**
|
|
1774
|
-
* Provisioning URL
|
|
1775
|
-
* @type {string}
|
|
1776
|
-
* @memberof CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
'provisioningUrl'?: string | null;
|
|
1779
|
-
/**
|
|
1780
|
-
*
|
|
1781
|
-
* @type {AddressModel}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'shippingAddress'?: AddressModel;
|
|
1785
|
-
/**
|
|
1786
|
-
* Part Ship Order
|
|
1787
|
-
* @type {boolean}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'partShip'?: boolean;
|
|
1791
|
-
/**
|
|
1792
|
-
* Quote
|
|
1793
|
-
* @type {boolean}
|
|
1794
|
-
* @memberof CustomerOrderRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'quote'?: boolean;
|
|
1797
|
-
}
|
|
1798
1300
|
/**
|
|
1799
1301
|
* Customer Price List
|
|
1800
1302
|
* @export
|
|
@@ -2301,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2301
1803
|
*/
|
|
2302
1804
|
'type'?: string;
|
|
2303
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
|
+
}
|
|
2304
1819
|
/**
|
|
2305
1820
|
*
|
|
2306
1821
|
* @export
|
|
@@ -2858,36 +2373,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2858
2373
|
* @interface ItemDTO
|
|
2859
2374
|
*/
|
|
2860
2375
|
export interface ItemDTO {
|
|
2861
|
-
/**
|
|
2862
|
-
* SKU
|
|
2863
|
-
* @type {string}
|
|
2864
|
-
* @memberof ItemDTO
|
|
2865
|
-
*/
|
|
2866
|
-
'sku'?: string;
|
|
2867
|
-
/**
|
|
2868
|
-
* Quantity
|
|
2869
|
-
* @type {number}
|
|
2870
|
-
* @memberof ItemDTO
|
|
2871
|
-
*/
|
|
2872
|
-
'quantity'?: number;
|
|
2873
2376
|
/**
|
|
2874
2377
|
* ID
|
|
2875
2378
|
* @type {number}
|
|
2876
2379
|
* @memberof ItemDTO
|
|
2877
2380
|
*/
|
|
2878
|
-
'id'?: number
|
|
2381
|
+
'id'?: number;
|
|
2879
2382
|
/**
|
|
2880
2383
|
* Order ID
|
|
2881
2384
|
* @type {number}
|
|
2882
2385
|
* @memberof ItemDTO
|
|
2883
2386
|
*/
|
|
2884
|
-
'orderId'?: number
|
|
2387
|
+
'orderId'?: number;
|
|
2885
2388
|
/**
|
|
2886
2389
|
* Title
|
|
2887
2390
|
* @type {string}
|
|
2888
2391
|
* @memberof ItemDTO
|
|
2889
2392
|
*/
|
|
2890
|
-
'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;
|
|
2891
2406
|
/**
|
|
2892
2407
|
* Price
|
|
2893
2408
|
* @type {number}
|
|
@@ -2912,12 +2427,6 @@ export interface ItemDTO {
|
|
|
2912
2427
|
* @memberof ItemDTO
|
|
2913
2428
|
*/
|
|
2914
2429
|
'processDate'?: string;
|
|
2915
|
-
/**
|
|
2916
|
-
* 3CX Hosting
|
|
2917
|
-
* @type {boolean}
|
|
2918
|
-
* @memberof ItemDTO
|
|
2919
|
-
*/
|
|
2920
|
-
'hosting'?: boolean | null;
|
|
2921
2430
|
/**
|
|
2922
2431
|
* Promo Item
|
|
2923
2432
|
* @type {boolean}
|
|
@@ -2929,19 +2438,7 @@ export interface ItemDTO {
|
|
|
2929
2438
|
* @type {number}
|
|
2930
2439
|
* @memberof ItemDTO
|
|
2931
2440
|
*/
|
|
2932
|
-
'refunded'?: number
|
|
2933
|
-
/**
|
|
2934
|
-
* SBCs
|
|
2935
|
-
* @type {Array<TcxSbcDTO>}
|
|
2936
|
-
* @memberof ItemDTO
|
|
2937
|
-
*/
|
|
2938
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2939
|
-
/**
|
|
2940
|
-
* Readonly
|
|
2941
|
-
* @type {boolean}
|
|
2942
|
-
* @memberof ItemDTO
|
|
2943
|
-
*/
|
|
2944
|
-
'readonly'?: boolean;
|
|
2441
|
+
'refunded'?: number;
|
|
2945
2442
|
}
|
|
2946
2443
|
/**
|
|
2947
2444
|
* ItemsEntity
|
|
@@ -3076,25 +2573,6 @@ export interface ItemEntity {
|
|
|
3076
2573
|
*/
|
|
3077
2574
|
'promoItem'?: number;
|
|
3078
2575
|
}
|
|
3079
|
-
/**
|
|
3080
|
-
* LinkedOrdersEntity
|
|
3081
|
-
* @export
|
|
3082
|
-
* @interface LinkedOrderEntity
|
|
3083
|
-
*/
|
|
3084
|
-
export interface LinkedOrderEntity {
|
|
3085
|
-
/**
|
|
3086
|
-
* orderId
|
|
3087
|
-
* @type {number}
|
|
3088
|
-
* @memberof LinkedOrderEntity
|
|
3089
|
-
*/
|
|
3090
|
-
'orderId'?: number;
|
|
3091
|
-
/**
|
|
3092
|
-
* linkedOrderId
|
|
3093
|
-
* @type {number}
|
|
3094
|
-
* @memberof LinkedOrderEntity
|
|
3095
|
-
*/
|
|
3096
|
-
'linkedOrderId'?: number;
|
|
3097
|
-
}
|
|
3098
2576
|
/**
|
|
3099
2577
|
* MFA Required
|
|
3100
2578
|
* @export
|
|
@@ -3181,37 +2659,6 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
3181
2659
|
readonly CallBarring: "Call Barring";
|
|
3182
2660
|
};
|
|
3183
2661
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
3184
|
-
/**
|
|
3185
|
-
* POPS Navigation Item
|
|
3186
|
-
* @export
|
|
3187
|
-
* @interface NavigationItemModel
|
|
3188
|
-
*/
|
|
3189
|
-
export interface NavigationItemModel {
|
|
3190
|
-
/**
|
|
3191
|
-
* Title
|
|
3192
|
-
* @type {string}
|
|
3193
|
-
* @memberof NavigationItemModel
|
|
3194
|
-
*/
|
|
3195
|
-
'title'?: string;
|
|
3196
|
-
/**
|
|
3197
|
-
* URL
|
|
3198
|
-
* @type {string}
|
|
3199
|
-
* @memberof NavigationItemModel
|
|
3200
|
-
*/
|
|
3201
|
-
'url'?: string | null;
|
|
3202
|
-
/**
|
|
3203
|
-
* Icon (Font Awesome)
|
|
3204
|
-
* @type {string}
|
|
3205
|
-
* @memberof NavigationItemModel
|
|
3206
|
-
*/
|
|
3207
|
-
'icon'?: string;
|
|
3208
|
-
/**
|
|
3209
|
-
* Sub Navigation
|
|
3210
|
-
* @type {Array<SubNavigationItemModel>}
|
|
3211
|
-
* @memberof NavigationItemModel
|
|
3212
|
-
*/
|
|
3213
|
-
'items'?: Array<SubNavigationItemModel>;
|
|
3214
|
-
}
|
|
3215
2662
|
/**
|
|
3216
2663
|
* Navigation Endpoint
|
|
3217
2664
|
* @export
|
|
@@ -3785,12 +3232,6 @@ export interface OrderSummaryDTO {
|
|
|
3785
3232
|
* @memberof OrderSummaryDTO
|
|
3786
3233
|
*/
|
|
3787
3234
|
'invoiceNumber'?: string;
|
|
3788
|
-
/**
|
|
3789
|
-
* Invoice ID
|
|
3790
|
-
* @type {string}
|
|
3791
|
-
* @memberof OrderSummaryDTO
|
|
3792
|
-
*/
|
|
3793
|
-
'invoiceId'?: string | null;
|
|
3794
3235
|
/**
|
|
3795
3236
|
* Date Time
|
|
3796
3237
|
* @type {string}
|
|
@@ -3845,24 +3286,6 @@ export interface OrderSummaryDTO {
|
|
|
3845
3286
|
* @memberof OrderSummaryDTO
|
|
3846
3287
|
*/
|
|
3847
3288
|
'fulfillable'?: boolean | null;
|
|
3848
|
-
/**
|
|
3849
|
-
* Provisioning URL
|
|
3850
|
-
* @type {string}
|
|
3851
|
-
* @memberof OrderSummaryDTO
|
|
3852
|
-
*/
|
|
3853
|
-
'provisioningUrl'?: string | null;
|
|
3854
|
-
/**
|
|
3855
|
-
*
|
|
3856
|
-
* @type {ShippingServiceDTO}
|
|
3857
|
-
* @memberof OrderSummaryDTO
|
|
3858
|
-
*/
|
|
3859
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
3860
|
-
/**
|
|
3861
|
-
* Readonly
|
|
3862
|
-
* @type {boolean}
|
|
3863
|
-
* @memberof OrderSummaryDTO
|
|
3864
|
-
*/
|
|
3865
|
-
'readonly'?: boolean;
|
|
3866
3289
|
}
|
|
3867
3290
|
/**
|
|
3868
3291
|
* Order Totals
|
|
@@ -3912,12 +3335,6 @@ export interface OrderTotalModel {
|
|
|
3912
3335
|
* @memberof OrderTotalModel
|
|
3913
3336
|
*/
|
|
3914
3337
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3915
|
-
/**
|
|
3916
|
-
* Delivery
|
|
3917
|
-
* @type {number}
|
|
3918
|
-
* @memberof OrderTotalModel
|
|
3919
|
-
*/
|
|
3920
|
-
'delivery'?: number | null;
|
|
3921
3338
|
}
|
|
3922
3339
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3923
3340
|
readonly Eur: "EUR";
|
|
@@ -4296,31 +3713,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4296
3713
|
*/
|
|
4297
3714
|
'scopes'?: Array<string>;
|
|
4298
3715
|
}
|
|
4299
|
-
/**
|
|
4300
|
-
*
|
|
4301
|
-
* @export
|
|
4302
|
-
* @interface PostGetProductForCustomerRequest
|
|
4303
|
-
*/
|
|
4304
|
-
export interface PostGetProductForCustomerRequest {
|
|
4305
|
-
/**
|
|
4306
|
-
* Quantity
|
|
4307
|
-
* @type {number}
|
|
4308
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4309
|
-
*/
|
|
4310
|
-
'quantity'?: number | null;
|
|
4311
|
-
/**
|
|
4312
|
-
* 3CX Licence Key
|
|
4313
|
-
* @type {string}
|
|
4314
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4315
|
-
*/
|
|
4316
|
-
'licenceKey'?: string | null;
|
|
4317
|
-
/**
|
|
4318
|
-
* 3CX Hosting
|
|
4319
|
-
* @type {boolean}
|
|
4320
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4321
|
-
*/
|
|
4322
|
-
'hosting'?: boolean | null;
|
|
4323
|
-
}
|
|
4324
3716
|
/**
|
|
4325
3717
|
* Price & Stock List
|
|
4326
3718
|
* @export
|
|
@@ -4409,10 +3801,10 @@ export interface PrizesEntity {
|
|
|
4409
3801
|
export interface ProductSearchResultsModel {
|
|
4410
3802
|
/**
|
|
4411
3803
|
* Results
|
|
4412
|
-
* @type {Array<
|
|
3804
|
+
* @type {Array<ProductSummaryModel>}
|
|
4413
3805
|
* @memberof ProductSearchResultsModel
|
|
4414
3806
|
*/
|
|
4415
|
-
'results'?: Array<
|
|
3807
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4416
3808
|
}
|
|
4417
3809
|
/**
|
|
4418
3810
|
* Product Serial Info
|
|
@@ -4448,51 +3840,45 @@ export interface ProductSerialInfoModel {
|
|
|
4448
3840
|
/**
|
|
4449
3841
|
* Product Summary
|
|
4450
3842
|
* @export
|
|
4451
|
-
* @interface
|
|
3843
|
+
* @interface ProductSummaryModel
|
|
4452
3844
|
*/
|
|
4453
|
-
export interface
|
|
3845
|
+
export interface ProductSummaryModel {
|
|
4454
3846
|
/**
|
|
4455
3847
|
* SKU
|
|
4456
3848
|
* @type {string}
|
|
4457
|
-
* @memberof
|
|
3849
|
+
* @memberof ProductSummaryModel
|
|
4458
3850
|
*/
|
|
4459
3851
|
'sku'?: string;
|
|
4460
3852
|
/**
|
|
4461
3853
|
* Title
|
|
4462
3854
|
* @type {string}
|
|
4463
|
-
* @memberof
|
|
3855
|
+
* @memberof ProductSummaryModel
|
|
4464
3856
|
*/
|
|
4465
3857
|
'title'?: string;
|
|
4466
3858
|
/**
|
|
4467
3859
|
* Stock Quantity
|
|
4468
3860
|
* @type {number}
|
|
4469
|
-
* @memberof
|
|
3861
|
+
* @memberof ProductSummaryModel
|
|
4470
3862
|
*/
|
|
4471
3863
|
'quantity'?: number | null;
|
|
4472
3864
|
/**
|
|
4473
3865
|
* Stock Product
|
|
4474
3866
|
* @type {boolean}
|
|
4475
|
-
* @memberof
|
|
3867
|
+
* @memberof ProductSummaryModel
|
|
4476
3868
|
*/
|
|
4477
3869
|
'stockProduct'?: boolean;
|
|
4478
3870
|
/**
|
|
4479
3871
|
* Price
|
|
4480
3872
|
* @type {number}
|
|
4481
|
-
* @memberof
|
|
3873
|
+
* @memberof ProductSummaryModel
|
|
4482
3874
|
*/
|
|
4483
3875
|
'price'?: number | null;
|
|
4484
3876
|
/**
|
|
4485
3877
|
* Carton Size
|
|
4486
3878
|
* @type {number}
|
|
4487
|
-
* @memberof
|
|
3879
|
+
* @memberof ProductSummaryModel
|
|
4488
3880
|
*/
|
|
4489
3881
|
'cartonSize'?: number | null;
|
|
4490
|
-
/**
|
|
4491
|
-
* RRP Price
|
|
4492
|
-
* @type {number}
|
|
4493
|
-
* @memberof ProductSummaryDTO
|
|
4494
|
-
*/
|
|
4495
|
-
'rrp'?: number | null;
|
|
4496
3882
|
}
|
|
4497
3883
|
/**
|
|
4498
3884
|
* PromoCodesEntity
|
|
@@ -4631,37 +4017,37 @@ export interface PromoItemsEntity {
|
|
|
4631
4017
|
/**
|
|
4632
4018
|
* Provisioning Group
|
|
4633
4019
|
* @export
|
|
4634
|
-
* @interface
|
|
4020
|
+
* @interface ProvisioningEntity
|
|
4635
4021
|
*/
|
|
4636
|
-
export interface
|
|
4022
|
+
export interface ProvisioningEntity {
|
|
4637
4023
|
/**
|
|
4638
4024
|
* Provisioning Group Name
|
|
4639
4025
|
* @type {string}
|
|
4640
|
-
* @memberof
|
|
4026
|
+
* @memberof ProvisioningEntity
|
|
4641
4027
|
*/
|
|
4642
4028
|
'groupName'?: string;
|
|
4643
4029
|
/**
|
|
4644
4030
|
* Provisioning URL (Static Provisioning Server)
|
|
4645
4031
|
* @type {string}
|
|
4646
|
-
* @memberof
|
|
4032
|
+
* @memberof ProvisioningEntity
|
|
4647
4033
|
*/
|
|
4648
4034
|
'provisioningUrl'?: string;
|
|
4649
4035
|
/**
|
|
4650
4036
|
* Additional Authentication Secret
|
|
4651
4037
|
* @type {string}
|
|
4652
|
-
* @memberof
|
|
4038
|
+
* @memberof ProvisioningEntity
|
|
4653
4039
|
*/
|
|
4654
4040
|
'auth'?: string;
|
|
4655
4041
|
/**
|
|
4656
4042
|
* Provisioning Group ID
|
|
4657
4043
|
* @type {number}
|
|
4658
|
-
* @memberof
|
|
4044
|
+
* @memberof ProvisioningEntity
|
|
4659
4045
|
*/
|
|
4660
4046
|
'id'?: number;
|
|
4661
4047
|
/**
|
|
4662
4048
|
* Owner ID
|
|
4663
4049
|
* @type {number}
|
|
4664
|
-
* @memberof
|
|
4050
|
+
* @memberof ProvisioningEntity
|
|
4665
4051
|
*/
|
|
4666
4052
|
'customerId'?: number;
|
|
4667
4053
|
}
|
|
@@ -4934,7 +4320,7 @@ export interface ShipmentEntity {
|
|
|
4934
4320
|
* @type {string}
|
|
4935
4321
|
* @memberof ShipmentEntity
|
|
4936
4322
|
*/
|
|
4937
|
-
'
|
|
4323
|
+
'date'?: string;
|
|
4938
4324
|
/**
|
|
4939
4325
|
* requestDate
|
|
4940
4326
|
* @type {string}
|
|
@@ -4985,149 +4371,6 @@ export interface ShipmentItemEntity {
|
|
|
4985
4371
|
*/
|
|
4986
4372
|
'itemId'?: string;
|
|
4987
4373
|
}
|
|
4988
|
-
/**
|
|
4989
|
-
*
|
|
4990
|
-
* @export
|
|
4991
|
-
* @interface ShippingConsignmentModel
|
|
4992
|
-
*/
|
|
4993
|
-
export interface ShippingConsignmentModel {
|
|
4994
|
-
/**
|
|
4995
|
-
*
|
|
4996
|
-
* @type {ShippingServiceModel}
|
|
4997
|
-
* @memberof ShippingConsignmentModel
|
|
4998
|
-
*/
|
|
4999
|
-
'service'?: ShippingServiceModel;
|
|
5000
|
-
/**
|
|
5001
|
-
* ID/Number
|
|
5002
|
-
* @type {string}
|
|
5003
|
-
* @memberof ShippingConsignmentModel
|
|
5004
|
-
*/
|
|
5005
|
-
'id'?: string;
|
|
5006
|
-
/**
|
|
5007
|
-
* Tracking Number
|
|
5008
|
-
* @type {string}
|
|
5009
|
-
* @memberof ShippingConsignmentModel
|
|
5010
|
-
*/
|
|
5011
|
-
'trackingNumber'?: string;
|
|
5012
|
-
/**
|
|
5013
|
-
* Parcels
|
|
5014
|
-
* @type {Array<string>}
|
|
5015
|
-
* @memberof ShippingConsignmentModel
|
|
5016
|
-
*/
|
|
5017
|
-
'parcelIds'?: Array<string>;
|
|
5018
|
-
}
|
|
5019
|
-
/**
|
|
5020
|
-
* Shipping Information
|
|
5021
|
-
* @export
|
|
5022
|
-
* @interface ShippingInformationDTO
|
|
5023
|
-
*/
|
|
5024
|
-
export interface ShippingInformationDTO {
|
|
5025
|
-
/**
|
|
5026
|
-
* Items
|
|
5027
|
-
* @type {Array<BasicItemDTO>}
|
|
5028
|
-
* @memberof ShippingInformationDTO
|
|
5029
|
-
*/
|
|
5030
|
-
'items'?: Array<BasicItemDTO>;
|
|
5031
|
-
/**
|
|
5032
|
-
* Destination Post Code
|
|
5033
|
-
* @type {string}
|
|
5034
|
-
* @memberof ShippingInformationDTO
|
|
5035
|
-
*/
|
|
5036
|
-
'postalCode'?: string;
|
|
5037
|
-
/**
|
|
5038
|
-
* Destination ISO
|
|
5039
|
-
* @type {string}
|
|
5040
|
-
* @memberof ShippingInformationDTO
|
|
5041
|
-
*/
|
|
5042
|
-
'iso'?: string;
|
|
5043
|
-
}
|
|
5044
|
-
/**
|
|
5045
|
-
* Shipping Service
|
|
5046
|
-
* @export
|
|
5047
|
-
* @interface ShippingServiceDTO
|
|
5048
|
-
*/
|
|
5049
|
-
export interface ShippingServiceDTO {
|
|
5050
|
-
/**
|
|
5051
|
-
* Courier
|
|
5052
|
-
* @type {string}
|
|
5053
|
-
* @memberof ShippingServiceDTO
|
|
5054
|
-
*/
|
|
5055
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5056
|
-
/**
|
|
5057
|
-
* Service Name
|
|
5058
|
-
* @type {string}
|
|
5059
|
-
* @memberof ShippingServiceDTO
|
|
5060
|
-
*/
|
|
5061
|
-
'serviceName'?: string;
|
|
5062
|
-
}
|
|
5063
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5064
|
-
readonly Dpd: "DPD";
|
|
5065
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5066
|
-
readonly Pops: "POPS";
|
|
5067
|
-
};
|
|
5068
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5069
|
-
/**
|
|
5070
|
-
* Shipping Service
|
|
5071
|
-
* @export
|
|
5072
|
-
* @interface ShippingServiceModel
|
|
5073
|
-
*/
|
|
5074
|
-
export interface ShippingServiceModel {
|
|
5075
|
-
/**
|
|
5076
|
-
* Courier
|
|
5077
|
-
* @type {string}
|
|
5078
|
-
* @memberof ShippingServiceModel
|
|
5079
|
-
*/
|
|
5080
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5081
|
-
/**
|
|
5082
|
-
* Code
|
|
5083
|
-
* @type {string}
|
|
5084
|
-
* @memberof ShippingServiceModel
|
|
5085
|
-
*/
|
|
5086
|
-
'code'?: string;
|
|
5087
|
-
/**
|
|
5088
|
-
* Name
|
|
5089
|
-
* @type {string}
|
|
5090
|
-
* @memberof ShippingServiceModel
|
|
5091
|
-
*/
|
|
5092
|
-
'name'?: string;
|
|
5093
|
-
/**
|
|
5094
|
-
* Description
|
|
5095
|
-
* @type {string}
|
|
5096
|
-
* @memberof ShippingServiceModel
|
|
5097
|
-
*/
|
|
5098
|
-
'description'?: string;
|
|
5099
|
-
/**
|
|
5100
|
-
* Label
|
|
5101
|
-
* @type {string}
|
|
5102
|
-
* @memberof ShippingServiceModel
|
|
5103
|
-
*/
|
|
5104
|
-
'label'?: string | null;
|
|
5105
|
-
/**
|
|
5106
|
-
* Price
|
|
5107
|
-
* @type {number}
|
|
5108
|
-
* @memberof ShippingServiceModel
|
|
5109
|
-
*/
|
|
5110
|
-
'price'?: number | null;
|
|
5111
|
-
}
|
|
5112
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5113
|
-
readonly Dpd: "DPD";
|
|
5114
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5115
|
-
readonly Pops: "POPS";
|
|
5116
|
-
};
|
|
5117
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5118
|
-
/**
|
|
5119
|
-
*
|
|
5120
|
-
* @export
|
|
5121
|
-
* @interface ShippingServicesModel
|
|
5122
|
-
*/
|
|
5123
|
-
export interface ShippingServicesModel {
|
|
5124
|
-
/**
|
|
5125
|
-
* Services
|
|
5126
|
-
* @type {Array<ShippingServiceModel>}
|
|
5127
|
-
* @memberof ShippingServicesModel
|
|
5128
|
-
*/
|
|
5129
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5130
|
-
}
|
|
5131
4374
|
/**
|
|
5132
4375
|
* Change Response
|
|
5133
4376
|
* @export
|
|
@@ -6532,31 +5775,6 @@ export interface StockTransactionsEntity {
|
|
|
6532
5775
|
*/
|
|
6533
5776
|
'user'?: number;
|
|
6534
5777
|
}
|
|
6535
|
-
/**
|
|
6536
|
-
* POPS Sub Navigation Item
|
|
6537
|
-
* @export
|
|
6538
|
-
* @interface SubNavigationItemModel
|
|
6539
|
-
*/
|
|
6540
|
-
export interface SubNavigationItemModel {
|
|
6541
|
-
/**
|
|
6542
|
-
* Title
|
|
6543
|
-
* @type {string}
|
|
6544
|
-
* @memberof SubNavigationItemModel
|
|
6545
|
-
*/
|
|
6546
|
-
'title'?: string;
|
|
6547
|
-
/**
|
|
6548
|
-
* URL
|
|
6549
|
-
* @type {string}
|
|
6550
|
-
* @memberof SubNavigationItemModel
|
|
6551
|
-
*/
|
|
6552
|
-
'url'?: string;
|
|
6553
|
-
/**
|
|
6554
|
-
* Icon (Font Awesome)
|
|
6555
|
-
* @type {string}
|
|
6556
|
-
* @memberof SubNavigationItemModel
|
|
6557
|
-
*/
|
|
6558
|
-
'icon'?: string | null;
|
|
6559
|
-
}
|
|
6560
5778
|
/**
|
|
6561
5779
|
* SuppliersEntity
|
|
6562
5780
|
* @export
|
|
@@ -6848,6 +6066,12 @@ export interface TcxBackupModel {
|
|
|
6848
6066
|
* @memberof TcxBackupModel
|
|
6849
6067
|
*/
|
|
6850
6068
|
'phone'?: string | null;
|
|
6069
|
+
/**
|
|
6070
|
+
* Company Name
|
|
6071
|
+
* @type {string}
|
|
6072
|
+
* @memberof TcxBackupModel
|
|
6073
|
+
*/
|
|
6074
|
+
'companyName'?: string | null;
|
|
6851
6075
|
}
|
|
6852
6076
|
/**
|
|
6853
6077
|
* TcxBillingEntity
|
|
@@ -7935,49 +7159,6 @@ export interface TcxPhonesEntity {
|
|
|
7935
7159
|
*/
|
|
7936
7160
|
'sbcId'?: string;
|
|
7937
7161
|
}
|
|
7938
|
-
/**
|
|
7939
|
-
* SBC Data
|
|
7940
|
-
* @export
|
|
7941
|
-
* @interface TcxSbcDTO
|
|
7942
|
-
*/
|
|
7943
|
-
export interface TcxSbcDTO {
|
|
7944
|
-
/**
|
|
7945
|
-
* LAN IP Address
|
|
7946
|
-
* @type {string}
|
|
7947
|
-
* @memberof TcxSbcDTO
|
|
7948
|
-
*/
|
|
7949
|
-
'ipAddress'?: string;
|
|
7950
|
-
/**
|
|
7951
|
-
* LAN Default Gateway
|
|
7952
|
-
* @type {string}
|
|
7953
|
-
* @memberof TcxSbcDTO
|
|
7954
|
-
*/
|
|
7955
|
-
'defaultGateway'?: string;
|
|
7956
|
-
/**
|
|
7957
|
-
* LAN Subnet Mask
|
|
7958
|
-
* @type {string}
|
|
7959
|
-
* @memberof TcxSbcDTO
|
|
7960
|
-
*/
|
|
7961
|
-
'netmask'?: string;
|
|
7962
|
-
/**
|
|
7963
|
-
* DNS
|
|
7964
|
-
* @type {string}
|
|
7965
|
-
* @memberof TcxSbcDTO
|
|
7966
|
-
*/
|
|
7967
|
-
'dns'?: string;
|
|
7968
|
-
/**
|
|
7969
|
-
* 3CX URL
|
|
7970
|
-
* @type {string}
|
|
7971
|
-
* @memberof TcxSbcDTO
|
|
7972
|
-
*/
|
|
7973
|
-
'tcxUrl'?: string;
|
|
7974
|
-
/**
|
|
7975
|
-
* 3CX SBC Key
|
|
7976
|
-
* @type {string}
|
|
7977
|
-
* @memberof TcxSbcDTO
|
|
7978
|
-
*/
|
|
7979
|
-
'tcxKey'?: string;
|
|
7980
|
-
}
|
|
7981
7162
|
/**
|
|
7982
7163
|
* 3CX Wizard SBC
|
|
7983
7164
|
* @export
|
|
@@ -8082,7 +7263,7 @@ export interface TcxSbcEntity {
|
|
|
8082
7263
|
'technicalContact'?: string;
|
|
8083
7264
|
}
|
|
8084
7265
|
/**
|
|
8085
|
-
* 3CX
|
|
7266
|
+
* 3CX SBC Model
|
|
8086
7267
|
* @export
|
|
8087
7268
|
* @interface TcxSbcModel
|
|
8088
7269
|
*/
|
|
@@ -9148,14 +8329,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9148
8329
|
* @throws {RequiredError}
|
|
9149
8330
|
*/
|
|
9150
8331
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9151
|
-
/**
|
|
9152
|
-
* Get Account Detailed Summary
|
|
9153
|
-
* @summary Get Account Detailed Summary
|
|
9154
|
-
* @param {number} id Customer ID
|
|
9155
|
-
* @param {*} [options] Override http request option.
|
|
9156
|
-
* @throws {RequiredError}
|
|
9157
|
-
*/
|
|
9158
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9159
8332
|
/**
|
|
9160
8333
|
* Get Accounts
|
|
9161
8334
|
* @summary Get Accounts
|
|
@@ -9221,13 +8394,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9221
8394
|
* @throws {RequiredError}
|
|
9222
8395
|
*/
|
|
9223
8396
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9224
|
-
/**
|
|
9225
|
-
* Get Admin Account
|
|
9226
|
-
* @summary Get Admin Account
|
|
9227
|
-
* @param {*} [options] Override http request option.
|
|
9228
|
-
* @throws {RequiredError}
|
|
9229
|
-
*/
|
|
9230
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9231
8397
|
/**
|
|
9232
8398
|
* Create client credentials
|
|
9233
8399
|
* @summary Create client credentials
|
|
@@ -9308,14 +8474,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9308
8474
|
* @throws {RequiredError}
|
|
9309
8475
|
*/
|
|
9310
8476
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9311
|
-
/**
|
|
9312
|
-
* Get Account Detailed Summary
|
|
9313
|
-
* @summary Get Account Detailed Summary
|
|
9314
|
-
* @param {number} id Customer ID
|
|
9315
|
-
* @param {*} [options] Override http request option.
|
|
9316
|
-
* @throws {RequiredError}
|
|
9317
|
-
*/
|
|
9318
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9319
8477
|
/**
|
|
9320
8478
|
* Get Accounts
|
|
9321
8479
|
* @summary Get Accounts
|
|
@@ -9381,13 +8539,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9381
8539
|
* @throws {RequiredError}
|
|
9382
8540
|
*/
|
|
9383
8541
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9384
|
-
/**
|
|
9385
|
-
* Get Admin Account
|
|
9386
|
-
* @summary Get Admin Account
|
|
9387
|
-
* @param {*} [options] Override http request option.
|
|
9388
|
-
* @throws {RequiredError}
|
|
9389
|
-
*/
|
|
9390
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9391
8542
|
/**
|
|
9392
8543
|
* Create client credentials
|
|
9393
8544
|
* @summary Create client credentials
|
|
@@ -9468,14 +8619,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9468
8619
|
* @throws {RequiredError}
|
|
9469
8620
|
*/
|
|
9470
8621
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9471
|
-
/**
|
|
9472
|
-
* Get Account Detailed Summary
|
|
9473
|
-
* @summary Get Account Detailed Summary
|
|
9474
|
-
* @param {number} id Customer ID
|
|
9475
|
-
* @param {*} [options] Override http request option.
|
|
9476
|
-
* @throws {RequiredError}
|
|
9477
|
-
*/
|
|
9478
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9479
8622
|
/**
|
|
9480
8623
|
* Get Accounts
|
|
9481
8624
|
* @summary Get Accounts
|
|
@@ -9541,13 +8684,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9541
8684
|
* @throws {RequiredError}
|
|
9542
8685
|
*/
|
|
9543
8686
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9544
|
-
/**
|
|
9545
|
-
* Get Admin Account
|
|
9546
|
-
* @summary Get Admin Account
|
|
9547
|
-
* @param {*} [options] Override http request option.
|
|
9548
|
-
* @throws {RequiredError}
|
|
9549
|
-
*/
|
|
9550
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9551
8687
|
/**
|
|
9552
8688
|
* Create client credentials
|
|
9553
8689
|
* @summary Create client credentials
|
|
@@ -9626,23 +8762,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9626
8762
|
*/
|
|
9627
8763
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9628
8764
|
/**
|
|
9629
|
-
* Get Account Contacts
|
|
9630
|
-
* @summary Get Account Contacts
|
|
9631
|
-
* @param {string} [email] Contact Email Address
|
|
9632
|
-
* @param {*} [options] Override http request option.
|
|
9633
|
-
* @throws {RequiredError}
|
|
9634
|
-
* @memberof AccountsApi
|
|
9635
|
-
*/
|
|
9636
|
-
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9637
|
-
/**
|
|
9638
|
-
* Get Account Detailed Summary
|
|
9639
|
-
* @summary Get Account Detailed Summary
|
|
9640
|
-
* @param {number} id Customer ID
|
|
8765
|
+
* Get Account Contacts
|
|
8766
|
+
* @summary Get Account Contacts
|
|
8767
|
+
* @param {string} [email] Contact Email Address
|
|
9641
8768
|
* @param {*} [options] Override http request option.
|
|
9642
8769
|
* @throws {RequiredError}
|
|
9643
8770
|
* @memberof AccountsApi
|
|
9644
8771
|
*/
|
|
9645
|
-
|
|
8772
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9646
8773
|
/**
|
|
9647
8774
|
* Get Accounts
|
|
9648
8775
|
* @summary Get Accounts
|
|
@@ -9716,14 +8843,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9716
8843
|
* @memberof AccountsApi
|
|
9717
8844
|
*/
|
|
9718
8845
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9719
|
-
/**
|
|
9720
|
-
* Get Admin Account
|
|
9721
|
-
* @summary Get Admin Account
|
|
9722
|
-
* @param {*} [options] Override http request option.
|
|
9723
|
-
* @throws {RequiredError}
|
|
9724
|
-
* @memberof AccountsApi
|
|
9725
|
-
*/
|
|
9726
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9727
8846
|
/**
|
|
9728
8847
|
* Create client credentials
|
|
9729
8848
|
* @summary Create client credentials
|
|
@@ -9786,6 +8905,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9786
8905
|
* @throws {RequiredError}
|
|
9787
8906
|
*/
|
|
9788
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>;
|
|
9789
8916
|
/**
|
|
9790
8917
|
* Get Bulk 3CX Licence Details
|
|
9791
8918
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9808,6 +8935,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9808
8935
|
* @throws {RequiredError}
|
|
9809
8936
|
*/
|
|
9810
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>>;
|
|
9811
8946
|
/**
|
|
9812
8947
|
* Get Bulk 3CX Licence Details
|
|
9813
8948
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9830,6 +8965,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9830
8965
|
* @throws {RequiredError}
|
|
9831
8966
|
*/
|
|
9832
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>;
|
|
9833
8976
|
/**
|
|
9834
8977
|
* Get Bulk 3CX Licence Details
|
|
9835
8978
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9855,6 +8998,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9855
8998
|
* @memberof Class3CXApi
|
|
9856
8999
|
*/
|
|
9857
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, {}>>;
|
|
9858
9010
|
/**
|
|
9859
9011
|
* Get Bulk 3CX Licence Details
|
|
9860
9012
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12116,19 +11268,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12116
11268
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12117
11269
|
/**
|
|
12118
11270
|
* Delete Orders
|
|
12119
|
-
* @summary Delete Orders
|
|
12120
|
-
* @param {number} id Order ID
|
|
12121
|
-
* @param {*} [options] Override http request option.
|
|
12122
|
-
* @throws {RequiredError}
|
|
12123
|
-
*/
|
|
12124
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12125
|
-
/**
|
|
12126
|
-
* Get Editable Order
|
|
12127
11271
|
* @param {number} id Order ID
|
|
12128
11272
|
* @param {*} [options] Override http request option.
|
|
12129
11273
|
* @throws {RequiredError}
|
|
12130
11274
|
*/
|
|
12131
|
-
|
|
11275
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12132
11276
|
/**
|
|
12133
11277
|
* Get Orders
|
|
12134
11278
|
* @summary Get Orders
|
|
@@ -12143,44 +11287,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12143
11287
|
* @throws {RequiredError}
|
|
12144
11288
|
*/
|
|
12145
11289
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12146
|
-
/**
|
|
12147
|
-
* Create An Order (Admin)
|
|
12148
|
-
* @summary Create An Order (Admin)
|
|
12149
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12150
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12151
|
-
* @param {*} [options] Override http request option.
|
|
12152
|
-
* @throws {RequiredError}
|
|
12153
|
-
*/
|
|
12154
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12155
|
-
/**
|
|
12156
|
-
* Create An Order
|
|
12157
|
-
* @summary Create An Order
|
|
12158
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12159
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12160
|
-
* @param {*} [options] Override http request option.
|
|
12161
|
-
* @throws {RequiredError}
|
|
12162
|
-
*/
|
|
12163
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12164
|
-
/**
|
|
12165
|
-
* Update An Order (Admin)
|
|
12166
|
-
* @summary Update An Order (Admin)
|
|
12167
|
-
* @param {number} id Order ID
|
|
12168
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12169
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12170
|
-
* @param {*} [options] Override http request option.
|
|
12171
|
-
* @throws {RequiredError}
|
|
12172
|
-
*/
|
|
12173
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12174
|
-
/**
|
|
12175
|
-
* Update An Order
|
|
12176
|
-
* @summary Update An Order
|
|
12177
|
-
* @param {number} id Order ID
|
|
12178
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12179
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12180
|
-
* @param {*} [options] Override http request option.
|
|
12181
|
-
* @throws {RequiredError}
|
|
12182
|
-
*/
|
|
12183
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12184
11290
|
};
|
|
12185
11291
|
/**
|
|
12186
11292
|
* OrdersApi - functional programming interface
|
|
@@ -12189,19 +11295,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12189
11295
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12190
11296
|
/**
|
|
12191
11297
|
* Delete Orders
|
|
12192
|
-
* @summary Delete Orders
|
|
12193
|
-
* @param {number} id Order ID
|
|
12194
|
-
* @param {*} [options] Override http request option.
|
|
12195
|
-
* @throws {RequiredError}
|
|
12196
|
-
*/
|
|
12197
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12198
|
-
/**
|
|
12199
|
-
* Get Editable Order
|
|
12200
11298
|
* @param {number} id Order ID
|
|
12201
11299
|
* @param {*} [options] Override http request option.
|
|
12202
11300
|
* @throws {RequiredError}
|
|
12203
11301
|
*/
|
|
12204
|
-
|
|
11302
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12205
11303
|
/**
|
|
12206
11304
|
* Get Orders
|
|
12207
11305
|
* @summary Get Orders
|
|
@@ -12216,44 +11314,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12216
11314
|
* @throws {RequiredError}
|
|
12217
11315
|
*/
|
|
12218
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>>;
|
|
12219
|
-
/**
|
|
12220
|
-
* Create An Order (Admin)
|
|
12221
|
-
* @summary Create An Order (Admin)
|
|
12222
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12223
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12224
|
-
* @param {*} [options] Override http request option.
|
|
12225
|
-
* @throws {RequiredError}
|
|
12226
|
-
*/
|
|
12227
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12228
|
-
/**
|
|
12229
|
-
* Create An Order
|
|
12230
|
-
* @summary Create An Order
|
|
12231
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12232
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12233
|
-
* @param {*} [options] Override http request option.
|
|
12234
|
-
* @throws {RequiredError}
|
|
12235
|
-
*/
|
|
12236
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12237
|
-
/**
|
|
12238
|
-
* Update An Order (Admin)
|
|
12239
|
-
* @summary Update An Order (Admin)
|
|
12240
|
-
* @param {number} id Order ID
|
|
12241
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12242
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12243
|
-
* @param {*} [options] Override http request option.
|
|
12244
|
-
* @throws {RequiredError}
|
|
12245
|
-
*/
|
|
12246
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12247
|
-
/**
|
|
12248
|
-
* Update An Order
|
|
12249
|
-
* @summary Update An Order
|
|
12250
|
-
* @param {number} id Order ID
|
|
12251
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12252
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12253
|
-
* @param {*} [options] Override http request option.
|
|
12254
|
-
* @throws {RequiredError}
|
|
12255
|
-
*/
|
|
12256
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12257
11317
|
};
|
|
12258
11318
|
/**
|
|
12259
11319
|
* OrdersApi - factory interface
|
|
@@ -12262,19 +11322,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12262
11322
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12263
11323
|
/**
|
|
12264
11324
|
* Delete Orders
|
|
12265
|
-
* @summary Delete Orders
|
|
12266
11325
|
* @param {number} id Order ID
|
|
12267
11326
|
* @param {*} [options] Override http request option.
|
|
12268
11327
|
* @throws {RequiredError}
|
|
12269
11328
|
*/
|
|
12270
|
-
|
|
12271
|
-
/**
|
|
12272
|
-
* Get Editable Order
|
|
12273
|
-
* @param {number} id Order ID
|
|
12274
|
-
* @param {*} [options] Override http request option.
|
|
12275
|
-
* @throws {RequiredError}
|
|
12276
|
-
*/
|
|
12277
|
-
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11329
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12278
11330
|
/**
|
|
12279
11331
|
* Get Orders
|
|
12280
11332
|
* @summary Get Orders
|
|
@@ -12289,44 +11341,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12289
11341
|
* @throws {RequiredError}
|
|
12290
11342
|
*/
|
|
12291
11343
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12292
|
-
/**
|
|
12293
|
-
* Create An Order (Admin)
|
|
12294
|
-
* @summary Create An Order (Admin)
|
|
12295
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12296
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12297
|
-
* @param {*} [options] Override http request option.
|
|
12298
|
-
* @throws {RequiredError}
|
|
12299
|
-
*/
|
|
12300
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12301
|
-
/**
|
|
12302
|
-
* Create An Order
|
|
12303
|
-
* @summary Create An Order
|
|
12304
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12305
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12306
|
-
* @param {*} [options] Override http request option.
|
|
12307
|
-
* @throws {RequiredError}
|
|
12308
|
-
*/
|
|
12309
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12310
|
-
/**
|
|
12311
|
-
* Update An Order (Admin)
|
|
12312
|
-
* @summary Update An Order (Admin)
|
|
12313
|
-
* @param {number} id Order ID
|
|
12314
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12315
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12316
|
-
* @param {*} [options] Override http request option.
|
|
12317
|
-
* @throws {RequiredError}
|
|
12318
|
-
*/
|
|
12319
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12320
|
-
/**
|
|
12321
|
-
* Update An Order
|
|
12322
|
-
* @summary Update An Order
|
|
12323
|
-
* @param {number} id Order ID
|
|
12324
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12325
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12326
|
-
* @param {*} [options] Override http request option.
|
|
12327
|
-
* @throws {RequiredError}
|
|
12328
|
-
*/
|
|
12329
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12330
11344
|
};
|
|
12331
11345
|
/**
|
|
12332
11346
|
* OrdersApi - object-oriented interface
|
|
@@ -12337,21 +11351,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12337
11351
|
export declare class OrdersApi extends BaseAPI {
|
|
12338
11352
|
/**
|
|
12339
11353
|
* Delete Orders
|
|
12340
|
-
* @summary Delete Orders
|
|
12341
|
-
* @param {number} id Order ID
|
|
12342
|
-
* @param {*} [options] Override http request option.
|
|
12343
|
-
* @throws {RequiredError}
|
|
12344
|
-
* @memberof OrdersApi
|
|
12345
|
-
*/
|
|
12346
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12347
|
-
/**
|
|
12348
|
-
* Get Editable Order
|
|
12349
11354
|
* @param {number} id Order ID
|
|
12350
11355
|
* @param {*} [options] Override http request option.
|
|
12351
11356
|
* @throws {RequiredError}
|
|
12352
11357
|
* @memberof OrdersApi
|
|
12353
11358
|
*/
|
|
12354
|
-
|
|
11359
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12355
11360
|
/**
|
|
12356
11361
|
* Get Orders
|
|
12357
11362
|
* @summary Get Orders
|
|
@@ -12367,48 +11372,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12367
11372
|
* @memberof OrdersApi
|
|
12368
11373
|
*/
|
|
12369
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, {}>>;
|
|
12370
|
-
/**
|
|
12371
|
-
* Create An Order (Admin)
|
|
12372
|
-
* @summary Create An Order (Admin)
|
|
12373
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12374
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12375
|
-
* @param {*} [options] Override http request option.
|
|
12376
|
-
* @throws {RequiredError}
|
|
12377
|
-
* @memberof OrdersApi
|
|
12378
|
-
*/
|
|
12379
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12380
|
-
/**
|
|
12381
|
-
* Create An Order
|
|
12382
|
-
* @summary Create An Order
|
|
12383
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12384
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12385
|
-
* @param {*} [options] Override http request option.
|
|
12386
|
-
* @throws {RequiredError}
|
|
12387
|
-
* @memberof OrdersApi
|
|
12388
|
-
*/
|
|
12389
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12390
|
-
/**
|
|
12391
|
-
* Update An Order (Admin)
|
|
12392
|
-
* @summary Update An Order (Admin)
|
|
12393
|
-
* @param {number} id Order ID
|
|
12394
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12395
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12396
|
-
* @param {*} [options] Override http request option.
|
|
12397
|
-
* @throws {RequiredError}
|
|
12398
|
-
* @memberof OrdersApi
|
|
12399
|
-
*/
|
|
12400
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12401
|
-
/**
|
|
12402
|
-
* Update An Order
|
|
12403
|
-
* @summary Update An Order
|
|
12404
|
-
* @param {number} id Order ID
|
|
12405
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12406
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12407
|
-
* @param {*} [options] Override http request option.
|
|
12408
|
-
* @throws {RequiredError}
|
|
12409
|
-
* @memberof OrdersApi
|
|
12410
|
-
*/
|
|
12411
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12412
11375
|
}
|
|
12413
11376
|
/**
|
|
12414
11377
|
* @export
|
|
@@ -12664,6 +11627,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12664
11627
|
* @throws {RequiredError}
|
|
12665
11628
|
*/
|
|
12666
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>;
|
|
12667
11637
|
/**
|
|
12668
11638
|
* Get Current Stock & Pricing
|
|
12669
11639
|
* @summary Get Current Stock & Pricing
|
|
@@ -12676,10 +11646,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12676
11646
|
/**
|
|
12677
11647
|
* Get Products
|
|
12678
11648
|
* @summary Get Products
|
|
11649
|
+
* @param {number} [pageSize] Number Of Results
|
|
11650
|
+
* @param {number} [page] Page Number
|
|
11651
|
+
* @param {string} [search] Search
|
|
12679
11652
|
* @param {*} [options] Override http request option.
|
|
12680
11653
|
* @throws {RequiredError}
|
|
12681
11654
|
*/
|
|
12682
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11655
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12683
11656
|
/**
|
|
12684
11657
|
* Get Current Stock & Pricing
|
|
12685
11658
|
* @summary Get Current Stock & Pricing
|
|
@@ -12694,35 +11667,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12694
11667
|
* @throws {RequiredError}
|
|
12695
11668
|
*/
|
|
12696
11669
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12697
|
-
/**
|
|
12698
|
-
* Search Products
|
|
12699
|
-
* @summary Search Products
|
|
12700
|
-
* @param {number} [pageSize] Number Of Results
|
|
12701
|
-
* @param {number} [page] Page Number
|
|
12702
|
-
* @param {string} [search] Search
|
|
12703
|
-
* @param {*} [options] Override http request option.
|
|
12704
|
-
* @throws {RequiredError}
|
|
12705
|
-
*/
|
|
12706
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12707
|
-
/**
|
|
12708
|
-
* Get Product
|
|
12709
|
-
* @summary Get Product
|
|
12710
|
-
* @param {string} sku Product SKU
|
|
12711
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12712
|
-
* @param {*} [options] Override http request option.
|
|
12713
|
-
* @throws {RequiredError}
|
|
12714
|
-
*/
|
|
12715
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12716
|
-
/**
|
|
12717
|
-
* Get Product For Customer
|
|
12718
|
-
* @summary Get Product For Customer
|
|
12719
|
-
* @param {number} customerId Customer ID
|
|
12720
|
-
* @param {string} sku Product SKU
|
|
12721
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12722
|
-
* @param {*} [options] Override http request option.
|
|
12723
|
-
* @throws {RequiredError}
|
|
12724
|
-
*/
|
|
12725
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12726
11670
|
};
|
|
12727
11671
|
/**
|
|
12728
11672
|
* ProductsApi - functional programming interface
|
|
@@ -12736,6 +11680,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12736
11680
|
* @throws {RequiredError}
|
|
12737
11681
|
*/
|
|
12738
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>>>;
|
|
12739
11690
|
/**
|
|
12740
11691
|
* Get Current Stock & Pricing
|
|
12741
11692
|
* @summary Get Current Stock & Pricing
|
|
@@ -12748,10 +11699,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12748
11699
|
/**
|
|
12749
11700
|
* Get Products
|
|
12750
11701
|
* @summary Get Products
|
|
11702
|
+
* @param {number} [pageSize] Number Of Results
|
|
11703
|
+
* @param {number} [page] Page Number
|
|
11704
|
+
* @param {string} [search] Search
|
|
12751
11705
|
* @param {*} [options] Override http request option.
|
|
12752
11706
|
* @throws {RequiredError}
|
|
12753
11707
|
*/
|
|
12754
|
-
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>>;
|
|
12755
11709
|
/**
|
|
12756
11710
|
* Get Current Stock & Pricing
|
|
12757
11711
|
* @summary Get Current Stock & Pricing
|
|
@@ -12766,35 +11720,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12766
11720
|
* @throws {RequiredError}
|
|
12767
11721
|
*/
|
|
12768
11722
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
12769
|
-
/**
|
|
12770
|
-
* Search Products
|
|
12771
|
-
* @summary Search Products
|
|
12772
|
-
* @param {number} [pageSize] Number Of Results
|
|
12773
|
-
* @param {number} [page] Page Number
|
|
12774
|
-
* @param {string} [search] Search
|
|
12775
|
-
* @param {*} [options] Override http request option.
|
|
12776
|
-
* @throws {RequiredError}
|
|
12777
|
-
*/
|
|
12778
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12779
|
-
/**
|
|
12780
|
-
* Get Product
|
|
12781
|
-
* @summary Get Product
|
|
12782
|
-
* @param {string} sku Product SKU
|
|
12783
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12784
|
-
* @param {*} [options] Override http request option.
|
|
12785
|
-
* @throws {RequiredError}
|
|
12786
|
-
*/
|
|
12787
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12788
|
-
/**
|
|
12789
|
-
* Get Product For Customer
|
|
12790
|
-
* @summary Get Product For Customer
|
|
12791
|
-
* @param {number} customerId Customer ID
|
|
12792
|
-
* @param {string} sku Product SKU
|
|
12793
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12794
|
-
* @param {*} [options] Override http request option.
|
|
12795
|
-
* @throws {RequiredError}
|
|
12796
|
-
*/
|
|
12797
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12798
11723
|
};
|
|
12799
11724
|
/**
|
|
12800
11725
|
* ProductsApi - factory interface
|
|
@@ -12808,6 +11733,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12808
11733
|
* @throws {RequiredError}
|
|
12809
11734
|
*/
|
|
12810
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>>;
|
|
12811
11743
|
/**
|
|
12812
11744
|
* Get Current Stock & Pricing
|
|
12813
11745
|
* @summary Get Current Stock & Pricing
|
|
@@ -12820,10 +11752,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12820
11752
|
/**
|
|
12821
11753
|
* Get Products
|
|
12822
11754
|
* @summary Get Products
|
|
11755
|
+
* @param {number} [pageSize] Number Of Results
|
|
11756
|
+
* @param {number} [page] Page Number
|
|
11757
|
+
* @param {string} [search] Search
|
|
12823
11758
|
* @param {*} [options] Override http request option.
|
|
12824
11759
|
* @throws {RequiredError}
|
|
12825
11760
|
*/
|
|
12826
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11761
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12827
11762
|
/**
|
|
12828
11763
|
* Get Current Stock & Pricing
|
|
12829
11764
|
* @summary Get Current Stock & Pricing
|
|
@@ -12838,35 +11773,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12838
11773
|
* @throws {RequiredError}
|
|
12839
11774
|
*/
|
|
12840
11775
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
12841
|
-
/**
|
|
12842
|
-
* Search Products
|
|
12843
|
-
* @summary Search Products
|
|
12844
|
-
* @param {number} [pageSize] Number Of Results
|
|
12845
|
-
* @param {number} [page] Page Number
|
|
12846
|
-
* @param {string} [search] Search
|
|
12847
|
-
* @param {*} [options] Override http request option.
|
|
12848
|
-
* @throws {RequiredError}
|
|
12849
|
-
*/
|
|
12850
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12851
|
-
/**
|
|
12852
|
-
* Get Product
|
|
12853
|
-
* @summary Get Product
|
|
12854
|
-
* @param {string} sku Product SKU
|
|
12855
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12856
|
-
* @param {*} [options] Override http request option.
|
|
12857
|
-
* @throws {RequiredError}
|
|
12858
|
-
*/
|
|
12859
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12860
|
-
/**
|
|
12861
|
-
* Get Product For Customer
|
|
12862
|
-
* @summary Get Product For Customer
|
|
12863
|
-
* @param {number} customerId Customer ID
|
|
12864
|
-
* @param {string} sku Product SKU
|
|
12865
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12866
|
-
* @param {*} [options] Override http request option.
|
|
12867
|
-
* @throws {RequiredError}
|
|
12868
|
-
*/
|
|
12869
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12870
11776
|
};
|
|
12871
11777
|
/**
|
|
12872
11778
|
* ProductsApi - object-oriented interface
|
|
@@ -12883,6 +11789,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12883
11789
|
* @memberof ProductsApi
|
|
12884
11790
|
*/
|
|
12885
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, {}>>;
|
|
12886
11800
|
/**
|
|
12887
11801
|
* Get Current Stock & Pricing
|
|
12888
11802
|
* @summary Get Current Stock & Pricing
|
|
@@ -12896,11 +11810,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12896
11810
|
/**
|
|
12897
11811
|
* Get Products
|
|
12898
11812
|
* @summary Get Products
|
|
11813
|
+
* @param {number} [pageSize] Number Of Results
|
|
11814
|
+
* @param {number} [page] Page Number
|
|
11815
|
+
* @param {string} [search] Search
|
|
12899
11816
|
* @param {*} [options] Override http request option.
|
|
12900
11817
|
* @throws {RequiredError}
|
|
12901
11818
|
* @memberof ProductsApi
|
|
12902
11819
|
*/
|
|
12903
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11820
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12904
11821
|
/**
|
|
12905
11822
|
* Get Current Stock & Pricing
|
|
12906
11823
|
* @summary Get Current Stock & Pricing
|
|
@@ -12917,38 +11834,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12917
11834
|
* @memberof ProductsApi
|
|
12918
11835
|
*/
|
|
12919
11836
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
12920
|
-
/**
|
|
12921
|
-
* Search Products
|
|
12922
|
-
* @summary Search Products
|
|
12923
|
-
* @param {number} [pageSize] Number Of Results
|
|
12924
|
-
* @param {number} [page] Page Number
|
|
12925
|
-
* @param {string} [search] Search
|
|
12926
|
-
* @param {*} [options] Override http request option.
|
|
12927
|
-
* @throws {RequiredError}
|
|
12928
|
-
* @memberof ProductsApi
|
|
12929
|
-
*/
|
|
12930
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12931
|
-
/**
|
|
12932
|
-
* Get Product
|
|
12933
|
-
* @summary Get Product
|
|
12934
|
-
* @param {string} sku Product SKU
|
|
12935
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12936
|
-
* @param {*} [options] Override http request option.
|
|
12937
|
-
* @throws {RequiredError}
|
|
12938
|
-
* @memberof ProductsApi
|
|
12939
|
-
*/
|
|
12940
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12941
|
-
/**
|
|
12942
|
-
* Get Product For Customer
|
|
12943
|
-
* @summary Get Product For Customer
|
|
12944
|
-
* @param {number} customerId Customer ID
|
|
12945
|
-
* @param {string} sku Product SKU
|
|
12946
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12947
|
-
* @param {*} [options] Override http request option.
|
|
12948
|
-
* @throws {RequiredError}
|
|
12949
|
-
* @memberof ProductsApi
|
|
12950
|
-
*/
|
|
12951
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12952
11837
|
}
|
|
12953
11838
|
/**
|
|
12954
11839
|
* @export
|
|
@@ -13069,7 +11954,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13069
11954
|
* @param {*} [options] Override http request option.
|
|
13070
11955
|
* @throws {RequiredError}
|
|
13071
11956
|
*/
|
|
13072
|
-
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>>>;
|
|
13073
11958
|
/**
|
|
13074
11959
|
* Create a Fanvil provisioning group
|
|
13075
11960
|
* @summary Add group to DB and FDPS
|
|
@@ -13077,7 +11962,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13077
11962
|
* @param {*} [options] Override http request option.
|
|
13078
11963
|
* @throws {RequiredError}
|
|
13079
11964
|
*/
|
|
13080
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11965
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13081
11966
|
/**
|
|
13082
11967
|
* Add MAC address to DB and FDPS group
|
|
13083
11968
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13134,7 +12019,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13134
12019
|
* @param {*} [options] Override http request option.
|
|
13135
12020
|
* @throws {RequiredError}
|
|
13136
12021
|
*/
|
|
13137
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12022
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13138
12023
|
/**
|
|
13139
12024
|
* Create a Fanvil provisioning group
|
|
13140
12025
|
* @summary Add group to DB and FDPS
|
|
@@ -13142,7 +12027,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13142
12027
|
* @param {*} [options] Override http request option.
|
|
13143
12028
|
* @throws {RequiredError}
|
|
13144
12029
|
*/
|
|
13145
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12030
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13146
12031
|
/**
|
|
13147
12032
|
* Add MAC address to DB and FDPS group
|
|
13148
12033
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13206,7 +12091,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13206
12091
|
* @throws {RequiredError}
|
|
13207
12092
|
* @memberof ProvisioningApi
|
|
13208
12093
|
*/
|
|
13209
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12094
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13210
12095
|
/**
|
|
13211
12096
|
* Create a Fanvil provisioning group
|
|
13212
12097
|
* @summary Add group to DB and FDPS
|
|
@@ -13215,7 +12100,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13215
12100
|
* @throws {RequiredError}
|
|
13216
12101
|
* @memberof ProvisioningApi
|
|
13217
12102
|
*/
|
|
13218
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12103
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13219
12104
|
/**
|
|
13220
12105
|
* Add MAC address to DB and FDPS group
|
|
13221
12106
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14090,65 +12975,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14090
12975
|
*/
|
|
14091
12976
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14092
12977
|
}
|
|
14093
|
-
/**
|
|
14094
|
-
* ShippingApi - axios parameter creator
|
|
14095
|
-
* @export
|
|
14096
|
-
*/
|
|
14097
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14098
|
-
/**
|
|
14099
|
-
* Get Shipping Services
|
|
14100
|
-
* @summary Get Shipping Services
|
|
14101
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14102
|
-
* @param {*} [options] Override http request option.
|
|
14103
|
-
* @throws {RequiredError}
|
|
14104
|
-
*/
|
|
14105
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14106
|
-
};
|
|
14107
|
-
/**
|
|
14108
|
-
* ShippingApi - functional programming interface
|
|
14109
|
-
* @export
|
|
14110
|
-
*/
|
|
14111
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14112
|
-
/**
|
|
14113
|
-
* Get Shipping Services
|
|
14114
|
-
* @summary Get Shipping Services
|
|
14115
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14116
|
-
* @param {*} [options] Override http request option.
|
|
14117
|
-
* @throws {RequiredError}
|
|
14118
|
-
*/
|
|
14119
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14120
|
-
};
|
|
14121
|
-
/**
|
|
14122
|
-
* ShippingApi - factory interface
|
|
14123
|
-
* @export
|
|
14124
|
-
*/
|
|
14125
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14126
|
-
/**
|
|
14127
|
-
* Get Shipping Services
|
|
14128
|
-
* @summary Get Shipping Services
|
|
14129
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14130
|
-
* @param {*} [options] Override http request option.
|
|
14131
|
-
* @throws {RequiredError}
|
|
14132
|
-
*/
|
|
14133
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14134
|
-
};
|
|
14135
|
-
/**
|
|
14136
|
-
* ShippingApi - object-oriented interface
|
|
14137
|
-
* @export
|
|
14138
|
-
* @class ShippingApi
|
|
14139
|
-
* @extends {BaseAPI}
|
|
14140
|
-
*/
|
|
14141
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14142
|
-
/**
|
|
14143
|
-
* Get Shipping Services
|
|
14144
|
-
* @summary Get Shipping Services
|
|
14145
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14146
|
-
* @param {*} [options] Override http request option.
|
|
14147
|
-
* @throws {RequiredError}
|
|
14148
|
-
* @memberof ShippingApi
|
|
14149
|
-
*/
|
|
14150
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14151
|
-
}
|
|
14152
12978
|
/**
|
|
14153
12979
|
* StockManagementApi - axios parameter creator
|
|
14154
12980
|
* @export
|
|
@@ -14478,7 +13304,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14478
13304
|
* @param {*} [options] Override http request option.
|
|
14479
13305
|
* @throws {RequiredError}
|
|
14480
13306
|
*/
|
|
14481
|
-
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>>>;
|
|
14482
13308
|
/**
|
|
14483
13309
|
* Get Stock Order Supplier Invoice
|
|
14484
13310
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14693,7 +13519,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14693
13519
|
* @param {*} [options] Override http request option.
|
|
14694
13520
|
* @throws {RequiredError}
|
|
14695
13521
|
*/
|
|
14696
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13522
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
14697
13523
|
/**
|
|
14698
13524
|
* Get Stock Order Supplier Invoice
|
|
14699
13525
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14923,7 +13749,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14923
13749
|
* @throws {RequiredError}
|
|
14924
13750
|
* @memberof StockManagementApi
|
|
14925
13751
|
*/
|
|
14926
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13752
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
14927
13753
|
/**
|
|
14928
13754
|
* Get Stock Order Supplier Invoice
|
|
14929
13755
|
* @summary Get Stock Order Supplier Invoice
|