yellowgrid-api-ts 3.0.86-dev.0 → 3.0.86
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 +276 -1822
- 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 -1324
- 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 -43
- 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,197 +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
|
-
* Ignore Customer On Hold
|
|
749
|
-
* @type {boolean}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'ignoreOnHold'?: boolean;
|
|
753
|
-
/**
|
|
754
|
-
* Ignore Customer Credit Limit
|
|
755
|
-
* @type {boolean}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'ignoreCreditLimit'?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* Include NFR Promos
|
|
761
|
-
* @type {boolean}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'includeNfrPromos'?: boolean;
|
|
765
|
-
/**
|
|
766
|
-
* Carriage Charge
|
|
767
|
-
* @type {number}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'carriageCharge'?: number;
|
|
771
|
-
}
|
|
772
|
-
/**
|
|
773
|
-
* Admin User
|
|
774
|
-
* @export
|
|
775
|
-
* @interface AdminUserModel
|
|
776
|
-
*/
|
|
777
|
-
export interface AdminUserModel {
|
|
778
|
-
/**
|
|
779
|
-
* First Name
|
|
780
|
-
* @type {string}
|
|
781
|
-
* @memberof AdminUserModel
|
|
782
|
-
*/
|
|
783
|
-
'firstName'?: string;
|
|
784
|
-
/**
|
|
785
|
-
* Last Name
|
|
786
|
-
* @type {string}
|
|
787
|
-
* @memberof AdminUserModel
|
|
788
|
-
*/
|
|
789
|
-
'lastName'?: string;
|
|
790
|
-
/**
|
|
791
|
-
* Avatar
|
|
792
|
-
* @type {string}
|
|
793
|
-
* @memberof AdminUserModel
|
|
794
|
-
*/
|
|
795
|
-
'avatar'?: string | null;
|
|
796
|
-
/**
|
|
797
|
-
* Role
|
|
798
|
-
* @type {number}
|
|
799
|
-
* @memberof AdminUserModel
|
|
800
|
-
*/
|
|
801
|
-
'role'?: AdminUserModelRoleEnum;
|
|
802
|
-
/**
|
|
803
|
-
* Navigation
|
|
804
|
-
* @type {Array<NavigationItemModel>}
|
|
805
|
-
* @memberof AdminUserModel
|
|
806
|
-
*/
|
|
807
|
-
'navigation'?: Array<NavigationItemModel>;
|
|
808
|
-
/**
|
|
809
|
-
* Email
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof AdminUserModel
|
|
812
|
-
*/
|
|
813
|
-
'email'?: string | null;
|
|
814
|
-
}
|
|
815
|
-
export declare const AdminUserModelRoleEnum: {
|
|
816
|
-
readonly NUMBER_0: 0;
|
|
817
|
-
readonly NUMBER_1: 1;
|
|
818
|
-
readonly NUMBER_2: 2;
|
|
819
|
-
readonly NUMBER_3: 3;
|
|
820
|
-
readonly NUMBER_4: 4;
|
|
821
|
-
};
|
|
822
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
823
528
|
/**
|
|
824
529
|
* Agent Hours Graph
|
|
825
530
|
* @export
|
|
@@ -1049,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1049
754
|
*/
|
|
1050
755
|
'redirect_uri'?: string | null;
|
|
1051
756
|
}
|
|
1052
|
-
/**
|
|
1053
|
-
* Basic Order Item
|
|
1054
|
-
* @export
|
|
1055
|
-
* @interface BasicItemDTO
|
|
1056
|
-
*/
|
|
1057
|
-
export interface BasicItemDTO {
|
|
1058
|
-
/**
|
|
1059
|
-
* SKU
|
|
1060
|
-
* @type {string}
|
|
1061
|
-
* @memberof BasicItemDTO
|
|
1062
|
-
*/
|
|
1063
|
-
'sku'?: string;
|
|
1064
|
-
/**
|
|
1065
|
-
* Quantity
|
|
1066
|
-
* @type {number}
|
|
1067
|
-
* @memberof BasicItemDTO
|
|
1068
|
-
*/
|
|
1069
|
-
'quantity'?: number;
|
|
1070
|
-
}
|
|
1071
|
-
/**
|
|
1072
|
-
* Basic Product
|
|
1073
|
-
* @export
|
|
1074
|
-
* @interface BasicProductDTO
|
|
1075
|
-
*/
|
|
1076
|
-
export interface BasicProductDTO {
|
|
1077
|
-
/**
|
|
1078
|
-
* SKU
|
|
1079
|
-
* @type {string}
|
|
1080
|
-
* @memberof BasicProductDTO
|
|
1081
|
-
*/
|
|
1082
|
-
'sku'?: string;
|
|
1083
|
-
/**
|
|
1084
|
-
* Title
|
|
1085
|
-
* @type {string}
|
|
1086
|
-
* @memberof BasicProductDTO
|
|
1087
|
-
*/
|
|
1088
|
-
'title'?: string;
|
|
1089
|
-
}
|
|
1090
757
|
/**
|
|
1091
758
|
* BatchesEntity
|
|
1092
759
|
* @export
|
|
@@ -1281,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1281
948
|
* @memberof ClientDetailsModel
|
|
1282
949
|
*/
|
|
1283
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1284
957
|
}
|
|
1285
958
|
/**
|
|
1286
959
|
* OAuth client details
|
|
@@ -1442,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1442
1115
|
*/
|
|
1443
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1444
1117
|
}
|
|
1445
|
-
/**
|
|
1446
|
-
* CourierPricesEntity
|
|
1447
|
-
* @export
|
|
1448
|
-
* @interface CourierPriceEntity
|
|
1449
|
-
*/
|
|
1450
|
-
export interface CourierPriceEntity {
|
|
1451
|
-
/**
|
|
1452
|
-
* id
|
|
1453
|
-
* @type {number}
|
|
1454
|
-
* @memberof CourierPriceEntity
|
|
1455
|
-
*/
|
|
1456
|
-
'id'?: number;
|
|
1457
|
-
/**
|
|
1458
|
-
* courier
|
|
1459
|
-
* @type {string}
|
|
1460
|
-
* @memberof CourierPriceEntity
|
|
1461
|
-
*/
|
|
1462
|
-
'courier'?: string;
|
|
1463
|
-
/**
|
|
1464
|
-
* destinationIso
|
|
1465
|
-
* @type {string}
|
|
1466
|
-
* @memberof CourierPriceEntity
|
|
1467
|
-
*/
|
|
1468
|
-
'destinationIso'?: string;
|
|
1469
|
-
/**
|
|
1470
|
-
* serviceDescription
|
|
1471
|
-
* @type {string}
|
|
1472
|
-
* @memberof CourierPriceEntity
|
|
1473
|
-
*/
|
|
1474
|
-
'serviceDescription'?: string;
|
|
1475
|
-
/**
|
|
1476
|
-
* flatRate
|
|
1477
|
-
* @type {number}
|
|
1478
|
-
* @memberof CourierPriceEntity
|
|
1479
|
-
*/
|
|
1480
|
-
'flatRate'?: number;
|
|
1481
|
-
/**
|
|
1482
|
-
* initialBox
|
|
1483
|
-
* @type {number}
|
|
1484
|
-
* @memberof CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
'initialBox'?: number;
|
|
1487
|
-
/**
|
|
1488
|
-
* initialKg
|
|
1489
|
-
* @type {number}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'initialKg'?: number;
|
|
1493
|
-
/**
|
|
1494
|
-
* perBox
|
|
1495
|
-
* @type {number}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'perBox'?: number;
|
|
1499
|
-
/**
|
|
1500
|
-
* perKg
|
|
1501
|
-
* @type {number}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'perKg'?: number;
|
|
1505
|
-
/**
|
|
1506
|
-
* maxKg
|
|
1507
|
-
* @type {number}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'maxKg'?: number;
|
|
1511
|
-
}
|
|
1512
1118
|
/**
|
|
1513
1119
|
* Credit Account
|
|
1514
1120
|
* @export
|
|
@@ -1691,104 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1691
1297
|
*/
|
|
1692
1298
|
'contactLastName'?: string;
|
|
1693
1299
|
}
|
|
1694
|
-
/**
|
|
1695
|
-
* Order Item Request
|
|
1696
|
-
* @export
|
|
1697
|
-
* @interface CustomerItemRequestDTO
|
|
1698
|
-
*/
|
|
1699
|
-
export interface CustomerItemRequestDTO {
|
|
1700
|
-
/**
|
|
1701
|
-
* SKU
|
|
1702
|
-
* @type {string}
|
|
1703
|
-
* @memberof CustomerItemRequestDTO
|
|
1704
|
-
*/
|
|
1705
|
-
'sku'?: string;
|
|
1706
|
-
/**
|
|
1707
|
-
* Quantity
|
|
1708
|
-
* @type {number}
|
|
1709
|
-
* @memberof CustomerItemRequestDTO
|
|
1710
|
-
*/
|
|
1711
|
-
'quantity'?: number;
|
|
1712
|
-
/**
|
|
1713
|
-
* ID
|
|
1714
|
-
* @type {number}
|
|
1715
|
-
* @memberof CustomerItemRequestDTO
|
|
1716
|
-
*/
|
|
1717
|
-
'id'?: number | null;
|
|
1718
|
-
/**
|
|
1719
|
-
* 3CX Licence Key
|
|
1720
|
-
* @type {string}
|
|
1721
|
-
* @memberof CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
'licenceKey'?: string | null;
|
|
1724
|
-
/**
|
|
1725
|
-
* 3CX Hosting
|
|
1726
|
-
* @type {boolean}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'hosting'?: boolean | null;
|
|
1730
|
-
/**
|
|
1731
|
-
* Date Time
|
|
1732
|
-
* @type {string}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'processDate'?: string;
|
|
1736
|
-
/**
|
|
1737
|
-
* SBCS
|
|
1738
|
-
* @type {Array<TcxSbcDTO>}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1742
|
-
}
|
|
1743
|
-
/**
|
|
1744
|
-
* Order Request
|
|
1745
|
-
* @export
|
|
1746
|
-
* @interface CustomerOrderRequestDTO
|
|
1747
|
-
*/
|
|
1748
|
-
export interface CustomerOrderRequestDTO {
|
|
1749
|
-
/**
|
|
1750
|
-
* Order Reference
|
|
1751
|
-
* @type {string}
|
|
1752
|
-
* @memberof CustomerOrderRequestDTO
|
|
1753
|
-
*/
|
|
1754
|
-
'orderReference'?: string;
|
|
1755
|
-
/**
|
|
1756
|
-
* Items
|
|
1757
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1758
|
-
* @memberof CustomerOrderRequestDTO
|
|
1759
|
-
*/
|
|
1760
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1761
|
-
/**
|
|
1762
|
-
*
|
|
1763
|
-
* @type {ShippingServiceDTO}
|
|
1764
|
-
* @memberof CustomerOrderRequestDTO
|
|
1765
|
-
*/
|
|
1766
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1767
|
-
/**
|
|
1768
|
-
* Provisioning URL
|
|
1769
|
-
* @type {string}
|
|
1770
|
-
* @memberof CustomerOrderRequestDTO
|
|
1771
|
-
*/
|
|
1772
|
-
'provisioningUrl'?: string | null;
|
|
1773
|
-
/**
|
|
1774
|
-
*
|
|
1775
|
-
* @type {AddressModel}
|
|
1776
|
-
* @memberof CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
'shippingAddress'?: AddressModel;
|
|
1779
|
-
/**
|
|
1780
|
-
* Part Ship Order
|
|
1781
|
-
* @type {boolean}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'partShip'?: boolean;
|
|
1785
|
-
/**
|
|
1786
|
-
* Quote
|
|
1787
|
-
* @type {boolean}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'quote'?: boolean;
|
|
1791
|
-
}
|
|
1792
1300
|
/**
|
|
1793
1301
|
* Customer Price List
|
|
1794
1302
|
* @export
|
|
@@ -2295,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2295
1803
|
*/
|
|
2296
1804
|
'type'?: string;
|
|
2297
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
|
+
}
|
|
2298
1819
|
/**
|
|
2299
1820
|
*
|
|
2300
1821
|
* @export
|
|
@@ -2852,36 +2373,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2852
2373
|
* @interface ItemDTO
|
|
2853
2374
|
*/
|
|
2854
2375
|
export interface ItemDTO {
|
|
2855
|
-
/**
|
|
2856
|
-
* SKU
|
|
2857
|
-
* @type {string}
|
|
2858
|
-
* @memberof ItemDTO
|
|
2859
|
-
*/
|
|
2860
|
-
'sku'?: string;
|
|
2861
|
-
/**
|
|
2862
|
-
* Quantity
|
|
2863
|
-
* @type {number}
|
|
2864
|
-
* @memberof ItemDTO
|
|
2865
|
-
*/
|
|
2866
|
-
'quantity'?: number;
|
|
2867
2376
|
/**
|
|
2868
2377
|
* ID
|
|
2869
2378
|
* @type {number}
|
|
2870
2379
|
* @memberof ItemDTO
|
|
2871
2380
|
*/
|
|
2872
|
-
'id'?: number
|
|
2381
|
+
'id'?: number;
|
|
2873
2382
|
/**
|
|
2874
2383
|
* Order ID
|
|
2875
2384
|
* @type {number}
|
|
2876
2385
|
* @memberof ItemDTO
|
|
2877
2386
|
*/
|
|
2878
|
-
'orderId'?: number
|
|
2387
|
+
'orderId'?: number;
|
|
2879
2388
|
/**
|
|
2880
2389
|
* Title
|
|
2881
2390
|
* @type {string}
|
|
2882
2391
|
* @memberof ItemDTO
|
|
2883
2392
|
*/
|
|
2884
|
-
'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;
|
|
2885
2406
|
/**
|
|
2886
2407
|
* Price
|
|
2887
2408
|
* @type {number}
|
|
@@ -2906,12 +2427,6 @@ export interface ItemDTO {
|
|
|
2906
2427
|
* @memberof ItemDTO
|
|
2907
2428
|
*/
|
|
2908
2429
|
'processDate'?: string;
|
|
2909
|
-
/**
|
|
2910
|
-
* 3CX Hosting
|
|
2911
|
-
* @type {boolean}
|
|
2912
|
-
* @memberof ItemDTO
|
|
2913
|
-
*/
|
|
2914
|
-
'hosting'?: boolean | null;
|
|
2915
2430
|
/**
|
|
2916
2431
|
* Promo Item
|
|
2917
2432
|
* @type {boolean}
|
|
@@ -2923,19 +2438,7 @@ export interface ItemDTO {
|
|
|
2923
2438
|
* @type {number}
|
|
2924
2439
|
* @memberof ItemDTO
|
|
2925
2440
|
*/
|
|
2926
|
-
'refunded'?: number
|
|
2927
|
-
/**
|
|
2928
|
-
* SBCs
|
|
2929
|
-
* @type {Array<TcxSbcDTO>}
|
|
2930
|
-
* @memberof ItemDTO
|
|
2931
|
-
*/
|
|
2932
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2933
|
-
/**
|
|
2934
|
-
* Readonly
|
|
2935
|
-
* @type {boolean}
|
|
2936
|
-
* @memberof ItemDTO
|
|
2937
|
-
*/
|
|
2938
|
-
'readonly'?: boolean;
|
|
2441
|
+
'refunded'?: number;
|
|
2939
2442
|
}
|
|
2940
2443
|
/**
|
|
2941
2444
|
* ItemsEntity
|
|
@@ -3070,25 +2573,6 @@ export interface ItemEntity {
|
|
|
3070
2573
|
*/
|
|
3071
2574
|
'promoItem'?: number;
|
|
3072
2575
|
}
|
|
3073
|
-
/**
|
|
3074
|
-
* LinkedOrdersEntity
|
|
3075
|
-
* @export
|
|
3076
|
-
* @interface LinkedOrderEntity
|
|
3077
|
-
*/
|
|
3078
|
-
export interface LinkedOrderEntity {
|
|
3079
|
-
/**
|
|
3080
|
-
* orderId
|
|
3081
|
-
* @type {number}
|
|
3082
|
-
* @memberof LinkedOrderEntity
|
|
3083
|
-
*/
|
|
3084
|
-
'orderId'?: number;
|
|
3085
|
-
/**
|
|
3086
|
-
* linkedOrderId
|
|
3087
|
-
* @type {number}
|
|
3088
|
-
* @memberof LinkedOrderEntity
|
|
3089
|
-
*/
|
|
3090
|
-
'linkedOrderId'?: number;
|
|
3091
|
-
}
|
|
3092
2576
|
/**
|
|
3093
2577
|
* MFA Required
|
|
3094
2578
|
* @export
|
|
@@ -3175,37 +2659,6 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
3175
2659
|
readonly CallBarring: "Call Barring";
|
|
3176
2660
|
};
|
|
3177
2661
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
3178
|
-
/**
|
|
3179
|
-
* POPS Navigation Item
|
|
3180
|
-
* @export
|
|
3181
|
-
* @interface NavigationItemModel
|
|
3182
|
-
*/
|
|
3183
|
-
export interface NavigationItemModel {
|
|
3184
|
-
/**
|
|
3185
|
-
* Title
|
|
3186
|
-
* @type {string}
|
|
3187
|
-
* @memberof NavigationItemModel
|
|
3188
|
-
*/
|
|
3189
|
-
'title'?: string;
|
|
3190
|
-
/**
|
|
3191
|
-
* URL
|
|
3192
|
-
* @type {string}
|
|
3193
|
-
* @memberof NavigationItemModel
|
|
3194
|
-
*/
|
|
3195
|
-
'url'?: string | null;
|
|
3196
|
-
/**
|
|
3197
|
-
* Icon (Font Awesome)
|
|
3198
|
-
* @type {string}
|
|
3199
|
-
* @memberof NavigationItemModel
|
|
3200
|
-
*/
|
|
3201
|
-
'icon'?: string;
|
|
3202
|
-
/**
|
|
3203
|
-
* Sub Navigation
|
|
3204
|
-
* @type {Array<SubNavigationItemModel>}
|
|
3205
|
-
* @memberof NavigationItemModel
|
|
3206
|
-
*/
|
|
3207
|
-
'items'?: Array<SubNavigationItemModel>;
|
|
3208
|
-
}
|
|
3209
2662
|
/**
|
|
3210
2663
|
* Navigation Endpoint
|
|
3211
2664
|
* @export
|
|
@@ -3779,12 +3232,6 @@ export interface OrderSummaryDTO {
|
|
|
3779
3232
|
* @memberof OrderSummaryDTO
|
|
3780
3233
|
*/
|
|
3781
3234
|
'invoiceNumber'?: string;
|
|
3782
|
-
/**
|
|
3783
|
-
* Invoice ID
|
|
3784
|
-
* @type {string}
|
|
3785
|
-
* @memberof OrderSummaryDTO
|
|
3786
|
-
*/
|
|
3787
|
-
'invoiceId'?: string | null;
|
|
3788
3235
|
/**
|
|
3789
3236
|
* Date Time
|
|
3790
3237
|
* @type {string}
|
|
@@ -3839,24 +3286,6 @@ export interface OrderSummaryDTO {
|
|
|
3839
3286
|
* @memberof OrderSummaryDTO
|
|
3840
3287
|
*/
|
|
3841
3288
|
'fulfillable'?: boolean | null;
|
|
3842
|
-
/**
|
|
3843
|
-
* Provisioning URL
|
|
3844
|
-
* @type {string}
|
|
3845
|
-
* @memberof OrderSummaryDTO
|
|
3846
|
-
*/
|
|
3847
|
-
'provisioningUrl'?: string | null;
|
|
3848
|
-
/**
|
|
3849
|
-
*
|
|
3850
|
-
* @type {ShippingServiceDTO}
|
|
3851
|
-
* @memberof OrderSummaryDTO
|
|
3852
|
-
*/
|
|
3853
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
3854
|
-
/**
|
|
3855
|
-
* Readonly
|
|
3856
|
-
* @type {boolean}
|
|
3857
|
-
* @memberof OrderSummaryDTO
|
|
3858
|
-
*/
|
|
3859
|
-
'readonly'?: boolean;
|
|
3860
3289
|
}
|
|
3861
3290
|
/**
|
|
3862
3291
|
* Order Totals
|
|
@@ -3906,12 +3335,6 @@ export interface OrderTotalModel {
|
|
|
3906
3335
|
* @memberof OrderTotalModel
|
|
3907
3336
|
*/
|
|
3908
3337
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3909
|
-
/**
|
|
3910
|
-
* Delivery
|
|
3911
|
-
* @type {number}
|
|
3912
|
-
* @memberof OrderTotalModel
|
|
3913
|
-
*/
|
|
3914
|
-
'delivery'?: number | null;
|
|
3915
3338
|
}
|
|
3916
3339
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3917
3340
|
readonly Eur: "EUR";
|
|
@@ -4290,31 +3713,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4290
3713
|
*/
|
|
4291
3714
|
'scopes'?: Array<string>;
|
|
4292
3715
|
}
|
|
4293
|
-
/**
|
|
4294
|
-
*
|
|
4295
|
-
* @export
|
|
4296
|
-
* @interface PostGetProductForCustomerRequest
|
|
4297
|
-
*/
|
|
4298
|
-
export interface PostGetProductForCustomerRequest {
|
|
4299
|
-
/**
|
|
4300
|
-
* Quantity
|
|
4301
|
-
* @type {number}
|
|
4302
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4303
|
-
*/
|
|
4304
|
-
'quantity'?: number | null;
|
|
4305
|
-
/**
|
|
4306
|
-
* 3CX Licence Key
|
|
4307
|
-
* @type {string}
|
|
4308
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4309
|
-
*/
|
|
4310
|
-
'licenceKey'?: string | null;
|
|
4311
|
-
/**
|
|
4312
|
-
* 3CX Hosting
|
|
4313
|
-
* @type {boolean}
|
|
4314
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4315
|
-
*/
|
|
4316
|
-
'hosting'?: boolean | null;
|
|
4317
|
-
}
|
|
4318
3716
|
/**
|
|
4319
3717
|
* Price & Stock List
|
|
4320
3718
|
* @export
|
|
@@ -4403,10 +3801,10 @@ export interface PrizesEntity {
|
|
|
4403
3801
|
export interface ProductSearchResultsModel {
|
|
4404
3802
|
/**
|
|
4405
3803
|
* Results
|
|
4406
|
-
* @type {Array<
|
|
3804
|
+
* @type {Array<ProductSummaryModel>}
|
|
4407
3805
|
* @memberof ProductSearchResultsModel
|
|
4408
3806
|
*/
|
|
4409
|
-
'results'?: Array<
|
|
3807
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4410
3808
|
}
|
|
4411
3809
|
/**
|
|
4412
3810
|
* Product Serial Info
|
|
@@ -4442,51 +3840,45 @@ export interface ProductSerialInfoModel {
|
|
|
4442
3840
|
/**
|
|
4443
3841
|
* Product Summary
|
|
4444
3842
|
* @export
|
|
4445
|
-
* @interface
|
|
3843
|
+
* @interface ProductSummaryModel
|
|
4446
3844
|
*/
|
|
4447
|
-
export interface
|
|
3845
|
+
export interface ProductSummaryModel {
|
|
4448
3846
|
/**
|
|
4449
3847
|
* SKU
|
|
4450
3848
|
* @type {string}
|
|
4451
|
-
* @memberof
|
|
3849
|
+
* @memberof ProductSummaryModel
|
|
4452
3850
|
*/
|
|
4453
3851
|
'sku'?: string;
|
|
4454
3852
|
/**
|
|
4455
3853
|
* Title
|
|
4456
3854
|
* @type {string}
|
|
4457
|
-
* @memberof
|
|
3855
|
+
* @memberof ProductSummaryModel
|
|
4458
3856
|
*/
|
|
4459
3857
|
'title'?: string;
|
|
4460
3858
|
/**
|
|
4461
3859
|
* Stock Quantity
|
|
4462
3860
|
* @type {number}
|
|
4463
|
-
* @memberof
|
|
3861
|
+
* @memberof ProductSummaryModel
|
|
4464
3862
|
*/
|
|
4465
3863
|
'quantity'?: number | null;
|
|
4466
3864
|
/**
|
|
4467
3865
|
* Stock Product
|
|
4468
3866
|
* @type {boolean}
|
|
4469
|
-
* @memberof
|
|
3867
|
+
* @memberof ProductSummaryModel
|
|
4470
3868
|
*/
|
|
4471
3869
|
'stockProduct'?: boolean;
|
|
4472
3870
|
/**
|
|
4473
3871
|
* Price
|
|
4474
3872
|
* @type {number}
|
|
4475
|
-
* @memberof
|
|
3873
|
+
* @memberof ProductSummaryModel
|
|
4476
3874
|
*/
|
|
4477
3875
|
'price'?: number | null;
|
|
4478
3876
|
/**
|
|
4479
3877
|
* Carton Size
|
|
4480
3878
|
* @type {number}
|
|
4481
|
-
* @memberof
|
|
3879
|
+
* @memberof ProductSummaryModel
|
|
4482
3880
|
*/
|
|
4483
3881
|
'cartonSize'?: number | null;
|
|
4484
|
-
/**
|
|
4485
|
-
* RRP Price
|
|
4486
|
-
* @type {number}
|
|
4487
|
-
* @memberof ProductSummaryDTO
|
|
4488
|
-
*/
|
|
4489
|
-
'rrp'?: number | null;
|
|
4490
3882
|
}
|
|
4491
3883
|
/**
|
|
4492
3884
|
* PromoCodesEntity
|
|
@@ -4625,37 +4017,37 @@ export interface PromoItemsEntity {
|
|
|
4625
4017
|
/**
|
|
4626
4018
|
* Provisioning Group
|
|
4627
4019
|
* @export
|
|
4628
|
-
* @interface
|
|
4020
|
+
* @interface ProvisioningEntity
|
|
4629
4021
|
*/
|
|
4630
|
-
export interface
|
|
4022
|
+
export interface ProvisioningEntity {
|
|
4631
4023
|
/**
|
|
4632
4024
|
* Provisioning Group Name
|
|
4633
4025
|
* @type {string}
|
|
4634
|
-
* @memberof
|
|
4026
|
+
* @memberof ProvisioningEntity
|
|
4635
4027
|
*/
|
|
4636
4028
|
'groupName'?: string;
|
|
4637
4029
|
/**
|
|
4638
4030
|
* Provisioning URL (Static Provisioning Server)
|
|
4639
4031
|
* @type {string}
|
|
4640
|
-
* @memberof
|
|
4032
|
+
* @memberof ProvisioningEntity
|
|
4641
4033
|
*/
|
|
4642
4034
|
'provisioningUrl'?: string;
|
|
4643
4035
|
/**
|
|
4644
4036
|
* Additional Authentication Secret
|
|
4645
4037
|
* @type {string}
|
|
4646
|
-
* @memberof
|
|
4038
|
+
* @memberof ProvisioningEntity
|
|
4647
4039
|
*/
|
|
4648
4040
|
'auth'?: string;
|
|
4649
4041
|
/**
|
|
4650
4042
|
* Provisioning Group ID
|
|
4651
4043
|
* @type {number}
|
|
4652
|
-
* @memberof
|
|
4044
|
+
* @memberof ProvisioningEntity
|
|
4653
4045
|
*/
|
|
4654
4046
|
'id'?: number;
|
|
4655
4047
|
/**
|
|
4656
4048
|
* Owner ID
|
|
4657
4049
|
* @type {number}
|
|
4658
|
-
* @memberof
|
|
4050
|
+
* @memberof ProvisioningEntity
|
|
4659
4051
|
*/
|
|
4660
4052
|
'customerId'?: number;
|
|
4661
4053
|
}
|
|
@@ -4928,7 +4320,7 @@ export interface ShipmentEntity {
|
|
|
4928
4320
|
* @type {string}
|
|
4929
4321
|
* @memberof ShipmentEntity
|
|
4930
4322
|
*/
|
|
4931
|
-
'
|
|
4323
|
+
'date'?: string;
|
|
4932
4324
|
/**
|
|
4933
4325
|
* requestDate
|
|
4934
4326
|
* @type {string}
|
|
@@ -4979,149 +4371,6 @@ export interface ShipmentItemEntity {
|
|
|
4979
4371
|
*/
|
|
4980
4372
|
'itemId'?: string;
|
|
4981
4373
|
}
|
|
4982
|
-
/**
|
|
4983
|
-
*
|
|
4984
|
-
* @export
|
|
4985
|
-
* @interface ShippingConsignmentModel
|
|
4986
|
-
*/
|
|
4987
|
-
export interface ShippingConsignmentModel {
|
|
4988
|
-
/**
|
|
4989
|
-
*
|
|
4990
|
-
* @type {ShippingServiceModel}
|
|
4991
|
-
* @memberof ShippingConsignmentModel
|
|
4992
|
-
*/
|
|
4993
|
-
'service'?: ShippingServiceModel;
|
|
4994
|
-
/**
|
|
4995
|
-
* ID/Number
|
|
4996
|
-
* @type {string}
|
|
4997
|
-
* @memberof ShippingConsignmentModel
|
|
4998
|
-
*/
|
|
4999
|
-
'id'?: string;
|
|
5000
|
-
/**
|
|
5001
|
-
* Tracking Number
|
|
5002
|
-
* @type {string}
|
|
5003
|
-
* @memberof ShippingConsignmentModel
|
|
5004
|
-
*/
|
|
5005
|
-
'trackingNumber'?: string;
|
|
5006
|
-
/**
|
|
5007
|
-
* Parcels
|
|
5008
|
-
* @type {Array<string>}
|
|
5009
|
-
* @memberof ShippingConsignmentModel
|
|
5010
|
-
*/
|
|
5011
|
-
'parcelIds'?: Array<string>;
|
|
5012
|
-
}
|
|
5013
|
-
/**
|
|
5014
|
-
* Shipping Information
|
|
5015
|
-
* @export
|
|
5016
|
-
* @interface ShippingInformationDTO
|
|
5017
|
-
*/
|
|
5018
|
-
export interface ShippingInformationDTO {
|
|
5019
|
-
/**
|
|
5020
|
-
* Items
|
|
5021
|
-
* @type {Array<BasicItemDTO>}
|
|
5022
|
-
* @memberof ShippingInformationDTO
|
|
5023
|
-
*/
|
|
5024
|
-
'items'?: Array<BasicItemDTO>;
|
|
5025
|
-
/**
|
|
5026
|
-
* Destination Post Code
|
|
5027
|
-
* @type {string}
|
|
5028
|
-
* @memberof ShippingInformationDTO
|
|
5029
|
-
*/
|
|
5030
|
-
'postalCode'?: string;
|
|
5031
|
-
/**
|
|
5032
|
-
* Destination ISO
|
|
5033
|
-
* @type {string}
|
|
5034
|
-
* @memberof ShippingInformationDTO
|
|
5035
|
-
*/
|
|
5036
|
-
'iso'?: string;
|
|
5037
|
-
}
|
|
5038
|
-
/**
|
|
5039
|
-
* Shipping Service
|
|
5040
|
-
* @export
|
|
5041
|
-
* @interface ShippingServiceDTO
|
|
5042
|
-
*/
|
|
5043
|
-
export interface ShippingServiceDTO {
|
|
5044
|
-
/**
|
|
5045
|
-
* Courier
|
|
5046
|
-
* @type {string}
|
|
5047
|
-
* @memberof ShippingServiceDTO
|
|
5048
|
-
*/
|
|
5049
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5050
|
-
/**
|
|
5051
|
-
* Service Name
|
|
5052
|
-
* @type {string}
|
|
5053
|
-
* @memberof ShippingServiceDTO
|
|
5054
|
-
*/
|
|
5055
|
-
'serviceName'?: string;
|
|
5056
|
-
}
|
|
5057
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5058
|
-
readonly Dpd: "DPD";
|
|
5059
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5060
|
-
readonly Pops: "POPS";
|
|
5061
|
-
};
|
|
5062
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5063
|
-
/**
|
|
5064
|
-
* Shipping Service
|
|
5065
|
-
* @export
|
|
5066
|
-
* @interface ShippingServiceModel
|
|
5067
|
-
*/
|
|
5068
|
-
export interface ShippingServiceModel {
|
|
5069
|
-
/**
|
|
5070
|
-
* Courier
|
|
5071
|
-
* @type {string}
|
|
5072
|
-
* @memberof ShippingServiceModel
|
|
5073
|
-
*/
|
|
5074
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5075
|
-
/**
|
|
5076
|
-
* Code
|
|
5077
|
-
* @type {string}
|
|
5078
|
-
* @memberof ShippingServiceModel
|
|
5079
|
-
*/
|
|
5080
|
-
'code'?: string;
|
|
5081
|
-
/**
|
|
5082
|
-
* Name
|
|
5083
|
-
* @type {string}
|
|
5084
|
-
* @memberof ShippingServiceModel
|
|
5085
|
-
*/
|
|
5086
|
-
'name'?: string;
|
|
5087
|
-
/**
|
|
5088
|
-
* Description
|
|
5089
|
-
* @type {string}
|
|
5090
|
-
* @memberof ShippingServiceModel
|
|
5091
|
-
*/
|
|
5092
|
-
'description'?: string;
|
|
5093
|
-
/**
|
|
5094
|
-
* Label
|
|
5095
|
-
* @type {string}
|
|
5096
|
-
* @memberof ShippingServiceModel
|
|
5097
|
-
*/
|
|
5098
|
-
'label'?: string | null;
|
|
5099
|
-
/**
|
|
5100
|
-
* Price
|
|
5101
|
-
* @type {number}
|
|
5102
|
-
* @memberof ShippingServiceModel
|
|
5103
|
-
*/
|
|
5104
|
-
'price'?: number | null;
|
|
5105
|
-
}
|
|
5106
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5107
|
-
readonly Dpd: "DPD";
|
|
5108
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5109
|
-
readonly Pops: "POPS";
|
|
5110
|
-
};
|
|
5111
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5112
|
-
/**
|
|
5113
|
-
*
|
|
5114
|
-
* @export
|
|
5115
|
-
* @interface ShippingServicesModel
|
|
5116
|
-
*/
|
|
5117
|
-
export interface ShippingServicesModel {
|
|
5118
|
-
/**
|
|
5119
|
-
* Services
|
|
5120
|
-
* @type {Array<ShippingServiceModel>}
|
|
5121
|
-
* @memberof ShippingServicesModel
|
|
5122
|
-
*/
|
|
5123
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5124
|
-
}
|
|
5125
4374
|
/**
|
|
5126
4375
|
* Change Response
|
|
5127
4376
|
* @export
|
|
@@ -6526,31 +5775,6 @@ export interface StockTransactionsEntity {
|
|
|
6526
5775
|
*/
|
|
6527
5776
|
'user'?: number;
|
|
6528
5777
|
}
|
|
6529
|
-
/**
|
|
6530
|
-
* POPS Sub Navigation Item
|
|
6531
|
-
* @export
|
|
6532
|
-
* @interface SubNavigationItemModel
|
|
6533
|
-
*/
|
|
6534
|
-
export interface SubNavigationItemModel {
|
|
6535
|
-
/**
|
|
6536
|
-
* Title
|
|
6537
|
-
* @type {string}
|
|
6538
|
-
* @memberof SubNavigationItemModel
|
|
6539
|
-
*/
|
|
6540
|
-
'title'?: string;
|
|
6541
|
-
/**
|
|
6542
|
-
* URL
|
|
6543
|
-
* @type {string}
|
|
6544
|
-
* @memberof SubNavigationItemModel
|
|
6545
|
-
*/
|
|
6546
|
-
'url'?: string;
|
|
6547
|
-
/**
|
|
6548
|
-
* Icon (Font Awesome)
|
|
6549
|
-
* @type {string}
|
|
6550
|
-
* @memberof SubNavigationItemModel
|
|
6551
|
-
*/
|
|
6552
|
-
'icon'?: string | null;
|
|
6553
|
-
}
|
|
6554
5778
|
/**
|
|
6555
5779
|
* SuppliersEntity
|
|
6556
5780
|
* @export
|
|
@@ -6842,6 +6066,12 @@ export interface TcxBackupModel {
|
|
|
6842
6066
|
* @memberof TcxBackupModel
|
|
6843
6067
|
*/
|
|
6844
6068
|
'phone'?: string | null;
|
|
6069
|
+
/**
|
|
6070
|
+
* Company Name
|
|
6071
|
+
* @type {string}
|
|
6072
|
+
* @memberof TcxBackupModel
|
|
6073
|
+
*/
|
|
6074
|
+
'companyName'?: string | null;
|
|
6845
6075
|
}
|
|
6846
6076
|
/**
|
|
6847
6077
|
* TcxBillingEntity
|
|
@@ -7929,49 +7159,6 @@ export interface TcxPhonesEntity {
|
|
|
7929
7159
|
*/
|
|
7930
7160
|
'sbcId'?: string;
|
|
7931
7161
|
}
|
|
7932
|
-
/**
|
|
7933
|
-
* SBC Data
|
|
7934
|
-
* @export
|
|
7935
|
-
* @interface TcxSbcDTO
|
|
7936
|
-
*/
|
|
7937
|
-
export interface TcxSbcDTO {
|
|
7938
|
-
/**
|
|
7939
|
-
* LAN IP Address
|
|
7940
|
-
* @type {string}
|
|
7941
|
-
* @memberof TcxSbcDTO
|
|
7942
|
-
*/
|
|
7943
|
-
'ipAddress'?: string;
|
|
7944
|
-
/**
|
|
7945
|
-
* LAN Default Gateway
|
|
7946
|
-
* @type {string}
|
|
7947
|
-
* @memberof TcxSbcDTO
|
|
7948
|
-
*/
|
|
7949
|
-
'defaultGateway'?: string;
|
|
7950
|
-
/**
|
|
7951
|
-
* LAN Subnet Mask
|
|
7952
|
-
* @type {string}
|
|
7953
|
-
* @memberof TcxSbcDTO
|
|
7954
|
-
*/
|
|
7955
|
-
'netmask'?: string;
|
|
7956
|
-
/**
|
|
7957
|
-
* DNS
|
|
7958
|
-
* @type {string}
|
|
7959
|
-
* @memberof TcxSbcDTO
|
|
7960
|
-
*/
|
|
7961
|
-
'dns'?: string;
|
|
7962
|
-
/**
|
|
7963
|
-
* 3CX URL
|
|
7964
|
-
* @type {string}
|
|
7965
|
-
* @memberof TcxSbcDTO
|
|
7966
|
-
*/
|
|
7967
|
-
'tcxUrl'?: string;
|
|
7968
|
-
/**
|
|
7969
|
-
* 3CX SBC Key
|
|
7970
|
-
* @type {string}
|
|
7971
|
-
* @memberof TcxSbcDTO
|
|
7972
|
-
*/
|
|
7973
|
-
'tcxKey'?: string;
|
|
7974
|
-
}
|
|
7975
7162
|
/**
|
|
7976
7163
|
* 3CX Wizard SBC
|
|
7977
7164
|
* @export
|
|
@@ -8076,7 +7263,7 @@ export interface TcxSbcEntity {
|
|
|
8076
7263
|
'technicalContact'?: string;
|
|
8077
7264
|
}
|
|
8078
7265
|
/**
|
|
8079
|
-
* 3CX
|
|
7266
|
+
* 3CX SBC Model
|
|
8080
7267
|
* @export
|
|
8081
7268
|
* @interface TcxSbcModel
|
|
8082
7269
|
*/
|
|
@@ -9142,14 +8329,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9142
8329
|
* @throws {RequiredError}
|
|
9143
8330
|
*/
|
|
9144
8331
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9145
|
-
/**
|
|
9146
|
-
* Get Account Detailed Summary
|
|
9147
|
-
* @summary Get Account Detailed Summary
|
|
9148
|
-
* @param {number} id Customer ID
|
|
9149
|
-
* @param {*} [options] Override http request option.
|
|
9150
|
-
* @throws {RequiredError}
|
|
9151
|
-
*/
|
|
9152
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9153
8332
|
/**
|
|
9154
8333
|
* Get Accounts
|
|
9155
8334
|
* @summary Get Accounts
|
|
@@ -9215,13 +8394,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9215
8394
|
* @throws {RequiredError}
|
|
9216
8395
|
*/
|
|
9217
8396
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9218
|
-
/**
|
|
9219
|
-
* Get Admin Account
|
|
9220
|
-
* @summary Get Admin Account
|
|
9221
|
-
* @param {*} [options] Override http request option.
|
|
9222
|
-
* @throws {RequiredError}
|
|
9223
|
-
*/
|
|
9224
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9225
8397
|
/**
|
|
9226
8398
|
* Create client credentials
|
|
9227
8399
|
* @summary Create client credentials
|
|
@@ -9302,14 +8474,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9302
8474
|
* @throws {RequiredError}
|
|
9303
8475
|
*/
|
|
9304
8476
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9305
|
-
/**
|
|
9306
|
-
* Get Account Detailed Summary
|
|
9307
|
-
* @summary Get Account Detailed Summary
|
|
9308
|
-
* @param {number} id Customer ID
|
|
9309
|
-
* @param {*} [options] Override http request option.
|
|
9310
|
-
* @throws {RequiredError}
|
|
9311
|
-
*/
|
|
9312
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9313
8477
|
/**
|
|
9314
8478
|
* Get Accounts
|
|
9315
8479
|
* @summary Get Accounts
|
|
@@ -9375,13 +8539,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9375
8539
|
* @throws {RequiredError}
|
|
9376
8540
|
*/
|
|
9377
8541
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9378
|
-
/**
|
|
9379
|
-
* Get Admin Account
|
|
9380
|
-
* @summary Get Admin Account
|
|
9381
|
-
* @param {*} [options] Override http request option.
|
|
9382
|
-
* @throws {RequiredError}
|
|
9383
|
-
*/
|
|
9384
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9385
8542
|
/**
|
|
9386
8543
|
* Create client credentials
|
|
9387
8544
|
* @summary Create client credentials
|
|
@@ -9462,14 +8619,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9462
8619
|
* @throws {RequiredError}
|
|
9463
8620
|
*/
|
|
9464
8621
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9465
|
-
/**
|
|
9466
|
-
* Get Account Detailed Summary
|
|
9467
|
-
* @summary Get Account Detailed Summary
|
|
9468
|
-
* @param {number} id Customer ID
|
|
9469
|
-
* @param {*} [options] Override http request option.
|
|
9470
|
-
* @throws {RequiredError}
|
|
9471
|
-
*/
|
|
9472
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9473
8622
|
/**
|
|
9474
8623
|
* Get Accounts
|
|
9475
8624
|
* @summary Get Accounts
|
|
@@ -9535,13 +8684,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9535
8684
|
* @throws {RequiredError}
|
|
9536
8685
|
*/
|
|
9537
8686
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9538
|
-
/**
|
|
9539
|
-
* Get Admin Account
|
|
9540
|
-
* @summary Get Admin Account
|
|
9541
|
-
* @param {*} [options] Override http request option.
|
|
9542
|
-
* @throws {RequiredError}
|
|
9543
|
-
*/
|
|
9544
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9545
8687
|
/**
|
|
9546
8688
|
* Create client credentials
|
|
9547
8689
|
* @summary Create client credentials
|
|
@@ -9620,23 +8762,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9620
8762
|
*/
|
|
9621
8763
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9622
8764
|
/**
|
|
9623
|
-
* Get Account Contacts
|
|
9624
|
-
* @summary Get Account Contacts
|
|
9625
|
-
* @param {string} [email] Contact Email Address
|
|
9626
|
-
* @param {*} [options] Override http request option.
|
|
9627
|
-
* @throws {RequiredError}
|
|
9628
|
-
* @memberof AccountsApi
|
|
9629
|
-
*/
|
|
9630
|
-
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9631
|
-
/**
|
|
9632
|
-
* Get Account Detailed Summary
|
|
9633
|
-
* @summary Get Account Detailed Summary
|
|
9634
|
-
* @param {number} id Customer ID
|
|
8765
|
+
* Get Account Contacts
|
|
8766
|
+
* @summary Get Account Contacts
|
|
8767
|
+
* @param {string} [email] Contact Email Address
|
|
9635
8768
|
* @param {*} [options] Override http request option.
|
|
9636
8769
|
* @throws {RequiredError}
|
|
9637
8770
|
* @memberof AccountsApi
|
|
9638
8771
|
*/
|
|
9639
|
-
|
|
8772
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9640
8773
|
/**
|
|
9641
8774
|
* Get Accounts
|
|
9642
8775
|
* @summary Get Accounts
|
|
@@ -9710,14 +8843,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9710
8843
|
* @memberof AccountsApi
|
|
9711
8844
|
*/
|
|
9712
8845
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9713
|
-
/**
|
|
9714
|
-
* Get Admin Account
|
|
9715
|
-
* @summary Get Admin Account
|
|
9716
|
-
* @param {*} [options] Override http request option.
|
|
9717
|
-
* @throws {RequiredError}
|
|
9718
|
-
* @memberof AccountsApi
|
|
9719
|
-
*/
|
|
9720
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9721
8846
|
/**
|
|
9722
8847
|
* Create client credentials
|
|
9723
8848
|
* @summary Create client credentials
|
|
@@ -9780,6 +8905,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9780
8905
|
* @throws {RequiredError}
|
|
9781
8906
|
*/
|
|
9782
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>;
|
|
9783
8916
|
/**
|
|
9784
8917
|
* Get Bulk 3CX Licence Details
|
|
9785
8918
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9802,6 +8935,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9802
8935
|
* @throws {RequiredError}
|
|
9803
8936
|
*/
|
|
9804
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>>;
|
|
9805
8946
|
/**
|
|
9806
8947
|
* Get Bulk 3CX Licence Details
|
|
9807
8948
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9824,6 +8965,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9824
8965
|
* @throws {RequiredError}
|
|
9825
8966
|
*/
|
|
9826
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>;
|
|
9827
8976
|
/**
|
|
9828
8977
|
* Get Bulk 3CX Licence Details
|
|
9829
8978
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9849,6 +8998,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9849
8998
|
* @memberof Class3CXApi
|
|
9850
8999
|
*/
|
|
9851
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, {}>>;
|
|
9852
9010
|
/**
|
|
9853
9011
|
* Get Bulk 3CX Licence Details
|
|
9854
9012
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12110,19 +11268,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12110
11268
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12111
11269
|
/**
|
|
12112
11270
|
* Delete Orders
|
|
12113
|
-
* @summary Delete Orders
|
|
12114
|
-
* @param {number} id Order ID
|
|
12115
|
-
* @param {*} [options] Override http request option.
|
|
12116
|
-
* @throws {RequiredError}
|
|
12117
|
-
*/
|
|
12118
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12119
|
-
/**
|
|
12120
|
-
* Get Editable Order
|
|
12121
11271
|
* @param {number} id Order ID
|
|
12122
11272
|
* @param {*} [options] Override http request option.
|
|
12123
11273
|
* @throws {RequiredError}
|
|
12124
11274
|
*/
|
|
12125
|
-
|
|
11275
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12126
11276
|
/**
|
|
12127
11277
|
* Get Orders
|
|
12128
11278
|
* @summary Get Orders
|
|
@@ -12137,44 +11287,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12137
11287
|
* @throws {RequiredError}
|
|
12138
11288
|
*/
|
|
12139
11289
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12140
|
-
/**
|
|
12141
|
-
* Create An Order (Admin)
|
|
12142
|
-
* @summary Create An Order (Admin)
|
|
12143
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12144
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12145
|
-
* @param {*} [options] Override http request option.
|
|
12146
|
-
* @throws {RequiredError}
|
|
12147
|
-
*/
|
|
12148
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12149
|
-
/**
|
|
12150
|
-
* Create An Order
|
|
12151
|
-
* @summary Create An Order
|
|
12152
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12153
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12154
|
-
* @param {*} [options] Override http request option.
|
|
12155
|
-
* @throws {RequiredError}
|
|
12156
|
-
*/
|
|
12157
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12158
|
-
/**
|
|
12159
|
-
* Update An Order (Admin)
|
|
12160
|
-
* @summary Update An Order (Admin)
|
|
12161
|
-
* @param {number} id Order ID
|
|
12162
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12163
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12164
|
-
* @param {*} [options] Override http request option.
|
|
12165
|
-
* @throws {RequiredError}
|
|
12166
|
-
*/
|
|
12167
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12168
|
-
/**
|
|
12169
|
-
* Update An Order
|
|
12170
|
-
* @summary Update An Order
|
|
12171
|
-
* @param {number} id Order ID
|
|
12172
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12173
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12174
|
-
* @param {*} [options] Override http request option.
|
|
12175
|
-
* @throws {RequiredError}
|
|
12176
|
-
*/
|
|
12177
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12178
11290
|
};
|
|
12179
11291
|
/**
|
|
12180
11292
|
* OrdersApi - functional programming interface
|
|
@@ -12183,19 +11295,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12183
11295
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12184
11296
|
/**
|
|
12185
11297
|
* Delete Orders
|
|
12186
|
-
* @summary Delete Orders
|
|
12187
|
-
* @param {number} id Order ID
|
|
12188
|
-
* @param {*} [options] Override http request option.
|
|
12189
|
-
* @throws {RequiredError}
|
|
12190
|
-
*/
|
|
12191
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12192
|
-
/**
|
|
12193
|
-
* Get Editable Order
|
|
12194
11298
|
* @param {number} id Order ID
|
|
12195
11299
|
* @param {*} [options] Override http request option.
|
|
12196
11300
|
* @throws {RequiredError}
|
|
12197
11301
|
*/
|
|
12198
|
-
|
|
11302
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12199
11303
|
/**
|
|
12200
11304
|
* Get Orders
|
|
12201
11305
|
* @summary Get Orders
|
|
@@ -12210,44 +11314,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12210
11314
|
* @throws {RequiredError}
|
|
12211
11315
|
*/
|
|
12212
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>>;
|
|
12213
|
-
/**
|
|
12214
|
-
* Create An Order (Admin)
|
|
12215
|
-
* @summary Create An Order (Admin)
|
|
12216
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12217
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12218
|
-
* @param {*} [options] Override http request option.
|
|
12219
|
-
* @throws {RequiredError}
|
|
12220
|
-
*/
|
|
12221
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12222
|
-
/**
|
|
12223
|
-
* Create An Order
|
|
12224
|
-
* @summary Create An Order
|
|
12225
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12226
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12227
|
-
* @param {*} [options] Override http request option.
|
|
12228
|
-
* @throws {RequiredError}
|
|
12229
|
-
*/
|
|
12230
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12231
|
-
/**
|
|
12232
|
-
* Update An Order (Admin)
|
|
12233
|
-
* @summary Update An Order (Admin)
|
|
12234
|
-
* @param {number} id Order ID
|
|
12235
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12236
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12237
|
-
* @param {*} [options] Override http request option.
|
|
12238
|
-
* @throws {RequiredError}
|
|
12239
|
-
*/
|
|
12240
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12241
|
-
/**
|
|
12242
|
-
* Update An Order
|
|
12243
|
-
* @summary Update An Order
|
|
12244
|
-
* @param {number} id Order ID
|
|
12245
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12246
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12247
|
-
* @param {*} [options] Override http request option.
|
|
12248
|
-
* @throws {RequiredError}
|
|
12249
|
-
*/
|
|
12250
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12251
11317
|
};
|
|
12252
11318
|
/**
|
|
12253
11319
|
* OrdersApi - factory interface
|
|
@@ -12256,19 +11322,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12256
11322
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12257
11323
|
/**
|
|
12258
11324
|
* Delete Orders
|
|
12259
|
-
* @summary Delete Orders
|
|
12260
11325
|
* @param {number} id Order ID
|
|
12261
11326
|
* @param {*} [options] Override http request option.
|
|
12262
11327
|
* @throws {RequiredError}
|
|
12263
11328
|
*/
|
|
12264
|
-
|
|
12265
|
-
/**
|
|
12266
|
-
* Get Editable Order
|
|
12267
|
-
* @param {number} id Order ID
|
|
12268
|
-
* @param {*} [options] Override http request option.
|
|
12269
|
-
* @throws {RequiredError}
|
|
12270
|
-
*/
|
|
12271
|
-
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11329
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12272
11330
|
/**
|
|
12273
11331
|
* Get Orders
|
|
12274
11332
|
* @summary Get Orders
|
|
@@ -12283,44 +11341,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12283
11341
|
* @throws {RequiredError}
|
|
12284
11342
|
*/
|
|
12285
11343
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12286
|
-
/**
|
|
12287
|
-
* Create An Order (Admin)
|
|
12288
|
-
* @summary Create An Order (Admin)
|
|
12289
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12290
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12291
|
-
* @param {*} [options] Override http request option.
|
|
12292
|
-
* @throws {RequiredError}
|
|
12293
|
-
*/
|
|
12294
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12295
|
-
/**
|
|
12296
|
-
* Create An Order
|
|
12297
|
-
* @summary Create An Order
|
|
12298
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12299
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12300
|
-
* @param {*} [options] Override http request option.
|
|
12301
|
-
* @throws {RequiredError}
|
|
12302
|
-
*/
|
|
12303
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12304
|
-
/**
|
|
12305
|
-
* Update An Order (Admin)
|
|
12306
|
-
* @summary Update An Order (Admin)
|
|
12307
|
-
* @param {number} id Order ID
|
|
12308
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12309
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12310
|
-
* @param {*} [options] Override http request option.
|
|
12311
|
-
* @throws {RequiredError}
|
|
12312
|
-
*/
|
|
12313
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12314
|
-
/**
|
|
12315
|
-
* Update An Order
|
|
12316
|
-
* @summary Update An Order
|
|
12317
|
-
* @param {number} id Order ID
|
|
12318
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12319
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12320
|
-
* @param {*} [options] Override http request option.
|
|
12321
|
-
* @throws {RequiredError}
|
|
12322
|
-
*/
|
|
12323
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12324
11344
|
};
|
|
12325
11345
|
/**
|
|
12326
11346
|
* OrdersApi - object-oriented interface
|
|
@@ -12331,21 +11351,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12331
11351
|
export declare class OrdersApi extends BaseAPI {
|
|
12332
11352
|
/**
|
|
12333
11353
|
* Delete Orders
|
|
12334
|
-
* @summary Delete Orders
|
|
12335
|
-
* @param {number} id Order ID
|
|
12336
|
-
* @param {*} [options] Override http request option.
|
|
12337
|
-
* @throws {RequiredError}
|
|
12338
|
-
* @memberof OrdersApi
|
|
12339
|
-
*/
|
|
12340
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12341
|
-
/**
|
|
12342
|
-
* Get Editable Order
|
|
12343
11354
|
* @param {number} id Order ID
|
|
12344
11355
|
* @param {*} [options] Override http request option.
|
|
12345
11356
|
* @throws {RequiredError}
|
|
12346
11357
|
* @memberof OrdersApi
|
|
12347
11358
|
*/
|
|
12348
|
-
|
|
11359
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12349
11360
|
/**
|
|
12350
11361
|
* Get Orders
|
|
12351
11362
|
* @summary Get Orders
|
|
@@ -12361,48 +11372,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12361
11372
|
* @memberof OrdersApi
|
|
12362
11373
|
*/
|
|
12363
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, {}>>;
|
|
12364
|
-
/**
|
|
12365
|
-
* Create An Order (Admin)
|
|
12366
|
-
* @summary Create An Order (Admin)
|
|
12367
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12368
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12369
|
-
* @param {*} [options] Override http request option.
|
|
12370
|
-
* @throws {RequiredError}
|
|
12371
|
-
* @memberof OrdersApi
|
|
12372
|
-
*/
|
|
12373
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12374
|
-
/**
|
|
12375
|
-
* Create An Order
|
|
12376
|
-
* @summary Create An Order
|
|
12377
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12378
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12379
|
-
* @param {*} [options] Override http request option.
|
|
12380
|
-
* @throws {RequiredError}
|
|
12381
|
-
* @memberof OrdersApi
|
|
12382
|
-
*/
|
|
12383
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12384
|
-
/**
|
|
12385
|
-
* Update An Order (Admin)
|
|
12386
|
-
* @summary Update An Order (Admin)
|
|
12387
|
-
* @param {number} id Order ID
|
|
12388
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12389
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12390
|
-
* @param {*} [options] Override http request option.
|
|
12391
|
-
* @throws {RequiredError}
|
|
12392
|
-
* @memberof OrdersApi
|
|
12393
|
-
*/
|
|
12394
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12395
|
-
/**
|
|
12396
|
-
* Update An Order
|
|
12397
|
-
* @summary Update An Order
|
|
12398
|
-
* @param {number} id Order ID
|
|
12399
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12400
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12401
|
-
* @param {*} [options] Override http request option.
|
|
12402
|
-
* @throws {RequiredError}
|
|
12403
|
-
* @memberof OrdersApi
|
|
12404
|
-
*/
|
|
12405
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12406
11375
|
}
|
|
12407
11376
|
/**
|
|
12408
11377
|
* @export
|
|
@@ -12658,6 +11627,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12658
11627
|
* @throws {RequiredError}
|
|
12659
11628
|
*/
|
|
12660
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>;
|
|
12661
11637
|
/**
|
|
12662
11638
|
* Get Current Stock & Pricing
|
|
12663
11639
|
* @summary Get Current Stock & Pricing
|
|
@@ -12670,10 +11646,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12670
11646
|
/**
|
|
12671
11647
|
* Get Products
|
|
12672
11648
|
* @summary Get Products
|
|
11649
|
+
* @param {number} [pageSize] Number Of Results
|
|
11650
|
+
* @param {number} [page] Page Number
|
|
11651
|
+
* @param {string} [search] Search
|
|
12673
11652
|
* @param {*} [options] Override http request option.
|
|
12674
11653
|
* @throws {RequiredError}
|
|
12675
11654
|
*/
|
|
12676
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11655
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12677
11656
|
/**
|
|
12678
11657
|
* Get Current Stock & Pricing
|
|
12679
11658
|
* @summary Get Current Stock & Pricing
|
|
@@ -12688,35 +11667,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12688
11667
|
* @throws {RequiredError}
|
|
12689
11668
|
*/
|
|
12690
11669
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12691
|
-
/**
|
|
12692
|
-
* Search Products
|
|
12693
|
-
* @summary Search Products
|
|
12694
|
-
* @param {number} [pageSize] Number Of Results
|
|
12695
|
-
* @param {number} [page] Page Number
|
|
12696
|
-
* @param {string} [search] Search
|
|
12697
|
-
* @param {*} [options] Override http request option.
|
|
12698
|
-
* @throws {RequiredError}
|
|
12699
|
-
*/
|
|
12700
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12701
|
-
/**
|
|
12702
|
-
* Get Product
|
|
12703
|
-
* @summary Get Product
|
|
12704
|
-
* @param {string} sku Product SKU
|
|
12705
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12706
|
-
* @param {*} [options] Override http request option.
|
|
12707
|
-
* @throws {RequiredError}
|
|
12708
|
-
*/
|
|
12709
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12710
|
-
/**
|
|
12711
|
-
* Get Product For Customer
|
|
12712
|
-
* @summary Get Product For Customer
|
|
12713
|
-
* @param {number} customerId Customer ID
|
|
12714
|
-
* @param {string} sku Product SKU
|
|
12715
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12716
|
-
* @param {*} [options] Override http request option.
|
|
12717
|
-
* @throws {RequiredError}
|
|
12718
|
-
*/
|
|
12719
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12720
11670
|
};
|
|
12721
11671
|
/**
|
|
12722
11672
|
* ProductsApi - functional programming interface
|
|
@@ -12730,6 +11680,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12730
11680
|
* @throws {RequiredError}
|
|
12731
11681
|
*/
|
|
12732
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>>>;
|
|
12733
11690
|
/**
|
|
12734
11691
|
* Get Current Stock & Pricing
|
|
12735
11692
|
* @summary Get Current Stock & Pricing
|
|
@@ -12742,10 +11699,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12742
11699
|
/**
|
|
12743
11700
|
* Get Products
|
|
12744
11701
|
* @summary Get Products
|
|
11702
|
+
* @param {number} [pageSize] Number Of Results
|
|
11703
|
+
* @param {number} [page] Page Number
|
|
11704
|
+
* @param {string} [search] Search
|
|
12745
11705
|
* @param {*} [options] Override http request option.
|
|
12746
11706
|
* @throws {RequiredError}
|
|
12747
11707
|
*/
|
|
12748
|
-
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>>;
|
|
12749
11709
|
/**
|
|
12750
11710
|
* Get Current Stock & Pricing
|
|
12751
11711
|
* @summary Get Current Stock & Pricing
|
|
@@ -12760,35 +11720,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12760
11720
|
* @throws {RequiredError}
|
|
12761
11721
|
*/
|
|
12762
11722
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
12763
|
-
/**
|
|
12764
|
-
* Search Products
|
|
12765
|
-
* @summary Search Products
|
|
12766
|
-
* @param {number} [pageSize] Number Of Results
|
|
12767
|
-
* @param {number} [page] Page Number
|
|
12768
|
-
* @param {string} [search] Search
|
|
12769
|
-
* @param {*} [options] Override http request option.
|
|
12770
|
-
* @throws {RequiredError}
|
|
12771
|
-
*/
|
|
12772
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12773
|
-
/**
|
|
12774
|
-
* Get Product
|
|
12775
|
-
* @summary Get Product
|
|
12776
|
-
* @param {string} sku Product SKU
|
|
12777
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12778
|
-
* @param {*} [options] Override http request option.
|
|
12779
|
-
* @throws {RequiredError}
|
|
12780
|
-
*/
|
|
12781
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12782
|
-
/**
|
|
12783
|
-
* Get Product For Customer
|
|
12784
|
-
* @summary Get Product For Customer
|
|
12785
|
-
* @param {number} customerId Customer ID
|
|
12786
|
-
* @param {string} sku Product SKU
|
|
12787
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12788
|
-
* @param {*} [options] Override http request option.
|
|
12789
|
-
* @throws {RequiredError}
|
|
12790
|
-
*/
|
|
12791
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12792
11723
|
};
|
|
12793
11724
|
/**
|
|
12794
11725
|
* ProductsApi - factory interface
|
|
@@ -12802,6 +11733,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12802
11733
|
* @throws {RequiredError}
|
|
12803
11734
|
*/
|
|
12804
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>>;
|
|
12805
11743
|
/**
|
|
12806
11744
|
* Get Current Stock & Pricing
|
|
12807
11745
|
* @summary Get Current Stock & Pricing
|
|
@@ -12814,10 +11752,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12814
11752
|
/**
|
|
12815
11753
|
* Get Products
|
|
12816
11754
|
* @summary Get Products
|
|
11755
|
+
* @param {number} [pageSize] Number Of Results
|
|
11756
|
+
* @param {number} [page] Page Number
|
|
11757
|
+
* @param {string} [search] Search
|
|
12817
11758
|
* @param {*} [options] Override http request option.
|
|
12818
11759
|
* @throws {RequiredError}
|
|
12819
11760
|
*/
|
|
12820
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11761
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12821
11762
|
/**
|
|
12822
11763
|
* Get Current Stock & Pricing
|
|
12823
11764
|
* @summary Get Current Stock & Pricing
|
|
@@ -12832,35 +11773,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12832
11773
|
* @throws {RequiredError}
|
|
12833
11774
|
*/
|
|
12834
11775
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
12835
|
-
/**
|
|
12836
|
-
* Search Products
|
|
12837
|
-
* @summary Search Products
|
|
12838
|
-
* @param {number} [pageSize] Number Of Results
|
|
12839
|
-
* @param {number} [page] Page Number
|
|
12840
|
-
* @param {string} [search] Search
|
|
12841
|
-
* @param {*} [options] Override http request option.
|
|
12842
|
-
* @throws {RequiredError}
|
|
12843
|
-
*/
|
|
12844
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12845
|
-
/**
|
|
12846
|
-
* Get Product
|
|
12847
|
-
* @summary Get Product
|
|
12848
|
-
* @param {string} sku Product SKU
|
|
12849
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12850
|
-
* @param {*} [options] Override http request option.
|
|
12851
|
-
* @throws {RequiredError}
|
|
12852
|
-
*/
|
|
12853
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12854
|
-
/**
|
|
12855
|
-
* Get Product For Customer
|
|
12856
|
-
* @summary Get Product For Customer
|
|
12857
|
-
* @param {number} customerId Customer ID
|
|
12858
|
-
* @param {string} sku Product SKU
|
|
12859
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12860
|
-
* @param {*} [options] Override http request option.
|
|
12861
|
-
* @throws {RequiredError}
|
|
12862
|
-
*/
|
|
12863
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12864
11776
|
};
|
|
12865
11777
|
/**
|
|
12866
11778
|
* ProductsApi - object-oriented interface
|
|
@@ -12877,6 +11789,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12877
11789
|
* @memberof ProductsApi
|
|
12878
11790
|
*/
|
|
12879
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, {}>>;
|
|
12880
11800
|
/**
|
|
12881
11801
|
* Get Current Stock & Pricing
|
|
12882
11802
|
* @summary Get Current Stock & Pricing
|
|
@@ -12890,11 +11810,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12890
11810
|
/**
|
|
12891
11811
|
* Get Products
|
|
12892
11812
|
* @summary Get Products
|
|
11813
|
+
* @param {number} [pageSize] Number Of Results
|
|
11814
|
+
* @param {number} [page] Page Number
|
|
11815
|
+
* @param {string} [search] Search
|
|
12893
11816
|
* @param {*} [options] Override http request option.
|
|
12894
11817
|
* @throws {RequiredError}
|
|
12895
11818
|
* @memberof ProductsApi
|
|
12896
11819
|
*/
|
|
12897
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11820
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12898
11821
|
/**
|
|
12899
11822
|
* Get Current Stock & Pricing
|
|
12900
11823
|
* @summary Get Current Stock & Pricing
|
|
@@ -12911,38 +11834,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12911
11834
|
* @memberof ProductsApi
|
|
12912
11835
|
*/
|
|
12913
11836
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
12914
|
-
/**
|
|
12915
|
-
* Search Products
|
|
12916
|
-
* @summary Search Products
|
|
12917
|
-
* @param {number} [pageSize] Number Of Results
|
|
12918
|
-
* @param {number} [page] Page Number
|
|
12919
|
-
* @param {string} [search] Search
|
|
12920
|
-
* @param {*} [options] Override http request option.
|
|
12921
|
-
* @throws {RequiredError}
|
|
12922
|
-
* @memberof ProductsApi
|
|
12923
|
-
*/
|
|
12924
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12925
|
-
/**
|
|
12926
|
-
* Get Product
|
|
12927
|
-
* @summary Get Product
|
|
12928
|
-
* @param {string} sku Product SKU
|
|
12929
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12930
|
-
* @param {*} [options] Override http request option.
|
|
12931
|
-
* @throws {RequiredError}
|
|
12932
|
-
* @memberof ProductsApi
|
|
12933
|
-
*/
|
|
12934
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12935
|
-
/**
|
|
12936
|
-
* Get Product For Customer
|
|
12937
|
-
* @summary Get Product For Customer
|
|
12938
|
-
* @param {number} customerId Customer ID
|
|
12939
|
-
* @param {string} sku Product SKU
|
|
12940
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12941
|
-
* @param {*} [options] Override http request option.
|
|
12942
|
-
* @throws {RequiredError}
|
|
12943
|
-
* @memberof ProductsApi
|
|
12944
|
-
*/
|
|
12945
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12946
11837
|
}
|
|
12947
11838
|
/**
|
|
12948
11839
|
* @export
|
|
@@ -13063,7 +11954,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13063
11954
|
* @param {*} [options] Override http request option.
|
|
13064
11955
|
* @throws {RequiredError}
|
|
13065
11956
|
*/
|
|
13066
|
-
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>>>;
|
|
13067
11958
|
/**
|
|
13068
11959
|
* Create a Fanvil provisioning group
|
|
13069
11960
|
* @summary Add group to DB and FDPS
|
|
@@ -13071,7 +11962,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13071
11962
|
* @param {*} [options] Override http request option.
|
|
13072
11963
|
* @throws {RequiredError}
|
|
13073
11964
|
*/
|
|
13074
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11965
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13075
11966
|
/**
|
|
13076
11967
|
* Add MAC address to DB and FDPS group
|
|
13077
11968
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13128,7 +12019,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13128
12019
|
* @param {*} [options] Override http request option.
|
|
13129
12020
|
* @throws {RequiredError}
|
|
13130
12021
|
*/
|
|
13131
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12022
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13132
12023
|
/**
|
|
13133
12024
|
* Create a Fanvil provisioning group
|
|
13134
12025
|
* @summary Add group to DB and FDPS
|
|
@@ -13136,7 +12027,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13136
12027
|
* @param {*} [options] Override http request option.
|
|
13137
12028
|
* @throws {RequiredError}
|
|
13138
12029
|
*/
|
|
13139
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12030
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13140
12031
|
/**
|
|
13141
12032
|
* Add MAC address to DB and FDPS group
|
|
13142
12033
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13200,7 +12091,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13200
12091
|
* @throws {RequiredError}
|
|
13201
12092
|
* @memberof ProvisioningApi
|
|
13202
12093
|
*/
|
|
13203
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12094
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13204
12095
|
/**
|
|
13205
12096
|
* Create a Fanvil provisioning group
|
|
13206
12097
|
* @summary Add group to DB and FDPS
|
|
@@ -13209,7 +12100,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13209
12100
|
* @throws {RequiredError}
|
|
13210
12101
|
* @memberof ProvisioningApi
|
|
13211
12102
|
*/
|
|
13212
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12103
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13213
12104
|
/**
|
|
13214
12105
|
* Add MAC address to DB and FDPS group
|
|
13215
12106
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14084,65 +12975,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14084
12975
|
*/
|
|
14085
12976
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14086
12977
|
}
|
|
14087
|
-
/**
|
|
14088
|
-
* ShippingApi - axios parameter creator
|
|
14089
|
-
* @export
|
|
14090
|
-
*/
|
|
14091
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14092
|
-
/**
|
|
14093
|
-
* Get Shipping Services
|
|
14094
|
-
* @summary Get Shipping Services
|
|
14095
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14096
|
-
* @param {*} [options] Override http request option.
|
|
14097
|
-
* @throws {RequiredError}
|
|
14098
|
-
*/
|
|
14099
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14100
|
-
};
|
|
14101
|
-
/**
|
|
14102
|
-
* ShippingApi - functional programming interface
|
|
14103
|
-
* @export
|
|
14104
|
-
*/
|
|
14105
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14106
|
-
/**
|
|
14107
|
-
* Get Shipping Services
|
|
14108
|
-
* @summary Get Shipping Services
|
|
14109
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14110
|
-
* @param {*} [options] Override http request option.
|
|
14111
|
-
* @throws {RequiredError}
|
|
14112
|
-
*/
|
|
14113
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14114
|
-
};
|
|
14115
|
-
/**
|
|
14116
|
-
* ShippingApi - factory interface
|
|
14117
|
-
* @export
|
|
14118
|
-
*/
|
|
14119
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14120
|
-
/**
|
|
14121
|
-
* Get Shipping Services
|
|
14122
|
-
* @summary Get Shipping Services
|
|
14123
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14124
|
-
* @param {*} [options] Override http request option.
|
|
14125
|
-
* @throws {RequiredError}
|
|
14126
|
-
*/
|
|
14127
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14128
|
-
};
|
|
14129
|
-
/**
|
|
14130
|
-
* ShippingApi - object-oriented interface
|
|
14131
|
-
* @export
|
|
14132
|
-
* @class ShippingApi
|
|
14133
|
-
* @extends {BaseAPI}
|
|
14134
|
-
*/
|
|
14135
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14136
|
-
/**
|
|
14137
|
-
* Get Shipping Services
|
|
14138
|
-
* @summary Get Shipping Services
|
|
14139
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14140
|
-
* @param {*} [options] Override http request option.
|
|
14141
|
-
* @throws {RequiredError}
|
|
14142
|
-
* @memberof ShippingApi
|
|
14143
|
-
*/
|
|
14144
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14145
|
-
}
|
|
14146
12978
|
/**
|
|
14147
12979
|
* StockManagementApi - axios parameter creator
|
|
14148
12980
|
* @export
|
|
@@ -14472,7 +13304,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14472
13304
|
* @param {*} [options] Override http request option.
|
|
14473
13305
|
* @throws {RequiredError}
|
|
14474
13306
|
*/
|
|
14475
|
-
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>>>;
|
|
14476
13308
|
/**
|
|
14477
13309
|
* Get Stock Order Supplier Invoice
|
|
14478
13310
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14687,7 +13519,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14687
13519
|
* @param {*} [options] Override http request option.
|
|
14688
13520
|
* @throws {RequiredError}
|
|
14689
13521
|
*/
|
|
14690
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13522
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
14691
13523
|
/**
|
|
14692
13524
|
* Get Stock Order Supplier Invoice
|
|
14693
13525
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14917,7 +13749,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14917
13749
|
* @throws {RequiredError}
|
|
14918
13750
|
* @memberof StockManagementApi
|
|
14919
13751
|
*/
|
|
14920
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13752
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
14921
13753
|
/**
|
|
14922
13754
|
* Get Stock Order Supplier Invoice
|
|
14923
13755
|
* @summary Get Stock Order Supplier Invoice
|