yellowgrid-api-ts 3.0.109-dev.0 → 3.0.109
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 +195 -213
- package/README.md +7 -33
- package/api.ts +262 -1782
- 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 +150 -1292
- 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 -12
- package/docs/ItemEntity.md +0 -2
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -301
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -39
- package/docs/AdminItemRequestDTO.md +0 -37
- package/docs/AdminOrderRequestDTO.md +0 -45
- package/docs/AdminUserModel.md +0 -29
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -33
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/PostGetProductForCustomerRequest.md +0 -24
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/TcxSbcDTO.md +0 -31
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,55 +13,6 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
* Order Request
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AbstractOrderRequestDTO
|
|
20
|
-
*/
|
|
21
|
-
export interface AbstractOrderRequestDTO {
|
|
22
|
-
/**
|
|
23
|
-
* Order Reference
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AbstractOrderRequestDTO
|
|
26
|
-
*/
|
|
27
|
-
'orderReference'?: string | null;
|
|
28
|
-
/**
|
|
29
|
-
* Items
|
|
30
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
-
* @memberof AbstractOrderRequestDTO
|
|
32
|
-
*/
|
|
33
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {ShippingServiceDTO}
|
|
37
|
-
* @memberof AbstractOrderRequestDTO
|
|
38
|
-
*/
|
|
39
|
-
'shippingService'?: ShippingServiceDTO;
|
|
40
|
-
/**
|
|
41
|
-
* Provisioning URL
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AbstractOrderRequestDTO
|
|
44
|
-
*/
|
|
45
|
-
'provisioningUrl'?: string | null;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {AddressModel}
|
|
49
|
-
* @memberof AbstractOrderRequestDTO
|
|
50
|
-
*/
|
|
51
|
-
'shippingAddress'?: AddressModel | null;
|
|
52
|
-
/**
|
|
53
|
-
* Part Ship Order
|
|
54
|
-
* @type {boolean}
|
|
55
|
-
* @memberof AbstractOrderRequestDTO
|
|
56
|
-
*/
|
|
57
|
-
'partShip'?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Quote
|
|
60
|
-
* @type {boolean}
|
|
61
|
-
* @memberof AbstractOrderRequestDTO
|
|
62
|
-
*/
|
|
63
|
-
'quote'?: boolean;
|
|
64
|
-
}
|
|
65
16
|
/**
|
|
66
17
|
* AccountContactsEntity
|
|
67
18
|
* @export
|
|
@@ -293,73 +244,6 @@ export interface AccountContactRequestModel {
|
|
|
293
244
|
*/
|
|
294
245
|
'despatchEmails'?: boolean;
|
|
295
246
|
}
|
|
296
|
-
/**
|
|
297
|
-
* Account Details
|
|
298
|
-
* @export
|
|
299
|
-
* @interface AccountDetailedSummaryDTO
|
|
300
|
-
*/
|
|
301
|
-
export interface AccountDetailedSummaryDTO {
|
|
302
|
-
/**
|
|
303
|
-
* ID
|
|
304
|
-
* @type {number}
|
|
305
|
-
* @memberof AccountDetailedSummaryDTO
|
|
306
|
-
*/
|
|
307
|
-
'id'?: number;
|
|
308
|
-
/**
|
|
309
|
-
* Xero ID
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof AccountDetailedSummaryDTO
|
|
312
|
-
*/
|
|
313
|
-
'xeroId'?: string;
|
|
314
|
-
/**
|
|
315
|
-
* Company
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof AccountDetailedSummaryDTO
|
|
318
|
-
*/
|
|
319
|
-
'company'?: string;
|
|
320
|
-
/**
|
|
321
|
-
* Credit Limit
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof AccountDetailedSummaryDTO
|
|
324
|
-
*/
|
|
325
|
-
'creditLimit'?: number;
|
|
326
|
-
/**
|
|
327
|
-
* Contacts
|
|
328
|
-
* @type {Array<AccountContactModel>}
|
|
329
|
-
* @memberof AccountDetailedSummaryDTO
|
|
330
|
-
*/
|
|
331
|
-
'contacts'?: Array<AccountContactModel>;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {AddressModel}
|
|
335
|
-
* @memberof AccountDetailedSummaryDTO
|
|
336
|
-
*/
|
|
337
|
-
'billingAddress'?: AddressModel;
|
|
338
|
-
/**
|
|
339
|
-
* Addresses
|
|
340
|
-
* @type {Array<AddressModel>}
|
|
341
|
-
* @memberof AccountDetailedSummaryDTO
|
|
342
|
-
*/
|
|
343
|
-
'addresses'?: Array<AddressModel>;
|
|
344
|
-
/**
|
|
345
|
-
* Provisioning URLs
|
|
346
|
-
* @type {Array<ProvisioningModel>}
|
|
347
|
-
* @memberof AccountDetailedSummaryDTO
|
|
348
|
-
*/
|
|
349
|
-
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
-
/**
|
|
351
|
-
* On Hold
|
|
352
|
-
* @type {boolean}
|
|
353
|
-
* @memberof AccountDetailedSummaryDTO
|
|
354
|
-
*/
|
|
355
|
-
'onHold'?: boolean;
|
|
356
|
-
/**
|
|
357
|
-
* Balance (£)
|
|
358
|
-
* @type {number}
|
|
359
|
-
* @memberof AccountDetailedSummaryDTO
|
|
360
|
-
*/
|
|
361
|
-
'balance'?: number | null;
|
|
362
|
-
}
|
|
363
247
|
/**
|
|
364
248
|
* New Account Request
|
|
365
249
|
* @export
|
|
@@ -641,197 +525,6 @@ export interface AddressRequestModel {
|
|
|
641
525
|
*/
|
|
642
526
|
'addressPostcode'?: string;
|
|
643
527
|
}
|
|
644
|
-
/**
|
|
645
|
-
* Admin Order Item Request
|
|
646
|
-
* @export
|
|
647
|
-
* @interface AdminItemRequestDTO
|
|
648
|
-
*/
|
|
649
|
-
export interface AdminItemRequestDTO {
|
|
650
|
-
/**
|
|
651
|
-
* SKU
|
|
652
|
-
* @type {string}
|
|
653
|
-
* @memberof AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
'sku'?: string;
|
|
656
|
-
/**
|
|
657
|
-
* Quantity
|
|
658
|
-
* @type {number}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'quantity'?: number;
|
|
662
|
-
/**
|
|
663
|
-
* ID
|
|
664
|
-
* @type {number}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'id'?: number | null;
|
|
668
|
-
/**
|
|
669
|
-
* 3CX Licence Key
|
|
670
|
-
* @type {string}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'licenceKey'?: string | null;
|
|
674
|
-
/**
|
|
675
|
-
* 3CX Hosting
|
|
676
|
-
* @type {boolean}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'hosting'?: boolean | null;
|
|
680
|
-
/**
|
|
681
|
-
* Date Time
|
|
682
|
-
* @type {string}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'processDate'?: string;
|
|
686
|
-
/**
|
|
687
|
-
* SBCS
|
|
688
|
-
* @type {Array<TcxSbcDTO>}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
692
|
-
/**
|
|
693
|
-
* Title
|
|
694
|
-
* @type {string}
|
|
695
|
-
* @memberof AdminItemRequestDTO
|
|
696
|
-
*/
|
|
697
|
-
'title'?: string | null;
|
|
698
|
-
/**
|
|
699
|
-
* Price (£)
|
|
700
|
-
* @type {number}
|
|
701
|
-
* @memberof AdminItemRequestDTO
|
|
702
|
-
*/
|
|
703
|
-
'itemPrice'?: number | null;
|
|
704
|
-
}
|
|
705
|
-
/**
|
|
706
|
-
* Admin Order Request
|
|
707
|
-
* @export
|
|
708
|
-
* @interface AdminOrderRequestDTO
|
|
709
|
-
*/
|
|
710
|
-
export interface AdminOrderRequestDTO {
|
|
711
|
-
/**
|
|
712
|
-
* Order Reference
|
|
713
|
-
* @type {string}
|
|
714
|
-
* @memberof AdminOrderRequestDTO
|
|
715
|
-
*/
|
|
716
|
-
'orderReference'?: string | null;
|
|
717
|
-
/**
|
|
718
|
-
* Items
|
|
719
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
720
|
-
* @memberof AdminOrderRequestDTO
|
|
721
|
-
*/
|
|
722
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
723
|
-
/**
|
|
724
|
-
*
|
|
725
|
-
* @type {ShippingServiceDTO}
|
|
726
|
-
* @memberof AdminOrderRequestDTO
|
|
727
|
-
*/
|
|
728
|
-
'shippingService'?: ShippingServiceDTO;
|
|
729
|
-
/**
|
|
730
|
-
* Provisioning URL
|
|
731
|
-
* @type {string}
|
|
732
|
-
* @memberof AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
'provisioningUrl'?: string | null;
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {AddressModel}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'shippingAddress'?: AddressModel;
|
|
741
|
-
/**
|
|
742
|
-
* Part Ship Order
|
|
743
|
-
* @type {boolean}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'partShip'?: boolean;
|
|
747
|
-
/**
|
|
748
|
-
* Quote
|
|
749
|
-
* @type {boolean}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'quote'?: boolean;
|
|
753
|
-
/**
|
|
754
|
-
* Customer ID
|
|
755
|
-
* @type {number}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'customerId'?: number;
|
|
759
|
-
/**
|
|
760
|
-
* Contact
|
|
761
|
-
* @type {string}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'contact'?: string;
|
|
765
|
-
/**
|
|
766
|
-
* Ignore Customer On Hold
|
|
767
|
-
* @type {boolean}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'ignoreOnHold'?: boolean;
|
|
771
|
-
/**
|
|
772
|
-
* Ignore Customer Credit Limit
|
|
773
|
-
* @type {boolean}
|
|
774
|
-
* @memberof AdminOrderRequestDTO
|
|
775
|
-
*/
|
|
776
|
-
'ignoreCreditLimit'?: boolean;
|
|
777
|
-
/**
|
|
778
|
-
* Include NFR Promos
|
|
779
|
-
* @type {boolean}
|
|
780
|
-
* @memberof AdminOrderRequestDTO
|
|
781
|
-
*/
|
|
782
|
-
'includeNfrPromos'?: boolean;
|
|
783
|
-
/**
|
|
784
|
-
* Carriage Charge
|
|
785
|
-
* @type {number}
|
|
786
|
-
* @memberof AdminOrderRequestDTO
|
|
787
|
-
*/
|
|
788
|
-
'carriageCharge'?: number;
|
|
789
|
-
}
|
|
790
|
-
/**
|
|
791
|
-
* Admin User
|
|
792
|
-
* @export
|
|
793
|
-
* @interface AdminUserModel
|
|
794
|
-
*/
|
|
795
|
-
export interface AdminUserModel {
|
|
796
|
-
/**
|
|
797
|
-
* First Name
|
|
798
|
-
* @type {string}
|
|
799
|
-
* @memberof AdminUserModel
|
|
800
|
-
*/
|
|
801
|
-
'firstName'?: string;
|
|
802
|
-
/**
|
|
803
|
-
* Last Name
|
|
804
|
-
* @type {string}
|
|
805
|
-
* @memberof AdminUserModel
|
|
806
|
-
*/
|
|
807
|
-
'lastName'?: string;
|
|
808
|
-
/**
|
|
809
|
-
* Avatar
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof AdminUserModel
|
|
812
|
-
*/
|
|
813
|
-
'avatar'?: string | null;
|
|
814
|
-
/**
|
|
815
|
-
* Role
|
|
816
|
-
* @type {number}
|
|
817
|
-
* @memberof AdminUserModel
|
|
818
|
-
*/
|
|
819
|
-
'role'?: AdminUserModelRoleEnum;
|
|
820
|
-
/**
|
|
821
|
-
* Email
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof AdminUserModel
|
|
824
|
-
*/
|
|
825
|
-
'email'?: string | null;
|
|
826
|
-
}
|
|
827
|
-
export declare const AdminUserModelRoleEnum: {
|
|
828
|
-
readonly NUMBER_0: 0;
|
|
829
|
-
readonly NUMBER_1: 1;
|
|
830
|
-
readonly NUMBER_2: 2;
|
|
831
|
-
readonly NUMBER_3: 3;
|
|
832
|
-
readonly NUMBER_4: 4;
|
|
833
|
-
};
|
|
834
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
835
528
|
/**
|
|
836
529
|
* Agent Hours Graph
|
|
837
530
|
* @export
|
|
@@ -1061,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1061
754
|
*/
|
|
1062
755
|
'redirect_uri'?: string | null;
|
|
1063
756
|
}
|
|
1064
|
-
/**
|
|
1065
|
-
* Basic Order Item
|
|
1066
|
-
* @export
|
|
1067
|
-
* @interface BasicItemDTO
|
|
1068
|
-
*/
|
|
1069
|
-
export interface BasicItemDTO {
|
|
1070
|
-
/**
|
|
1071
|
-
* SKU
|
|
1072
|
-
* @type {string}
|
|
1073
|
-
* @memberof BasicItemDTO
|
|
1074
|
-
*/
|
|
1075
|
-
'sku'?: string;
|
|
1076
|
-
/**
|
|
1077
|
-
* Quantity
|
|
1078
|
-
* @type {number}
|
|
1079
|
-
* @memberof BasicItemDTO
|
|
1080
|
-
*/
|
|
1081
|
-
'quantity'?: number;
|
|
1082
|
-
}
|
|
1083
|
-
/**
|
|
1084
|
-
* Basic Product
|
|
1085
|
-
* @export
|
|
1086
|
-
* @interface BasicProductDTO
|
|
1087
|
-
*/
|
|
1088
|
-
export interface BasicProductDTO {
|
|
1089
|
-
/**
|
|
1090
|
-
* SKU
|
|
1091
|
-
* @type {string}
|
|
1092
|
-
* @memberof BasicProductDTO
|
|
1093
|
-
*/
|
|
1094
|
-
'sku'?: string;
|
|
1095
|
-
/**
|
|
1096
|
-
* Title
|
|
1097
|
-
* @type {string}
|
|
1098
|
-
* @memberof BasicProductDTO
|
|
1099
|
-
*/
|
|
1100
|
-
'title'?: string;
|
|
1101
|
-
}
|
|
1102
757
|
/**
|
|
1103
758
|
* BatchesEntity
|
|
1104
759
|
* @export
|
|
@@ -1293,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1293
948
|
* @memberof ClientDetailsModel
|
|
1294
949
|
*/
|
|
1295
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1296
957
|
}
|
|
1297
958
|
/**
|
|
1298
959
|
* OAuth client details
|
|
@@ -1454,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1454
1115
|
*/
|
|
1455
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1456
1117
|
}
|
|
1457
|
-
/**
|
|
1458
|
-
* CourierPricesEntity
|
|
1459
|
-
* @export
|
|
1460
|
-
* @interface CourierPriceEntity
|
|
1461
|
-
*/
|
|
1462
|
-
export interface CourierPriceEntity {
|
|
1463
|
-
/**
|
|
1464
|
-
* id
|
|
1465
|
-
* @type {number}
|
|
1466
|
-
* @memberof CourierPriceEntity
|
|
1467
|
-
*/
|
|
1468
|
-
'id'?: number;
|
|
1469
|
-
/**
|
|
1470
|
-
* courier
|
|
1471
|
-
* @type {string}
|
|
1472
|
-
* @memberof CourierPriceEntity
|
|
1473
|
-
*/
|
|
1474
|
-
'courier'?: string;
|
|
1475
|
-
/**
|
|
1476
|
-
* destinationIso
|
|
1477
|
-
* @type {string}
|
|
1478
|
-
* @memberof CourierPriceEntity
|
|
1479
|
-
*/
|
|
1480
|
-
'destinationIso'?: string;
|
|
1481
|
-
/**
|
|
1482
|
-
* serviceDescription
|
|
1483
|
-
* @type {string}
|
|
1484
|
-
* @memberof CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
'serviceDescription'?: string;
|
|
1487
|
-
/**
|
|
1488
|
-
* flatRate
|
|
1489
|
-
* @type {number}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'flatRate'?: number;
|
|
1493
|
-
/**
|
|
1494
|
-
* initialBox
|
|
1495
|
-
* @type {number}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'initialBox'?: number;
|
|
1499
|
-
/**
|
|
1500
|
-
* initialKg
|
|
1501
|
-
* @type {number}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'initialKg'?: number;
|
|
1505
|
-
/**
|
|
1506
|
-
* perBox
|
|
1507
|
-
* @type {number}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'perBox'?: number;
|
|
1511
|
-
/**
|
|
1512
|
-
* perKg
|
|
1513
|
-
* @type {number}
|
|
1514
|
-
* @memberof CourierPriceEntity
|
|
1515
|
-
*/
|
|
1516
|
-
'perKg'?: number;
|
|
1517
|
-
/**
|
|
1518
|
-
* maxKg
|
|
1519
|
-
* @type {number}
|
|
1520
|
-
* @memberof CourierPriceEntity
|
|
1521
|
-
*/
|
|
1522
|
-
'maxKg'?: number;
|
|
1523
|
-
}
|
|
1524
1118
|
/**
|
|
1525
1119
|
* Credit Account
|
|
1526
1120
|
* @export
|
|
@@ -1703,104 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1703
1297
|
*/
|
|
1704
1298
|
'contactLastName'?: string;
|
|
1705
1299
|
}
|
|
1706
|
-
/**
|
|
1707
|
-
* Order Item Request
|
|
1708
|
-
* @export
|
|
1709
|
-
* @interface CustomerItemRequestDTO
|
|
1710
|
-
*/
|
|
1711
|
-
export interface CustomerItemRequestDTO {
|
|
1712
|
-
/**
|
|
1713
|
-
* SKU
|
|
1714
|
-
* @type {string}
|
|
1715
|
-
* @memberof CustomerItemRequestDTO
|
|
1716
|
-
*/
|
|
1717
|
-
'sku'?: string;
|
|
1718
|
-
/**
|
|
1719
|
-
* Quantity
|
|
1720
|
-
* @type {number}
|
|
1721
|
-
* @memberof CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
'quantity'?: number;
|
|
1724
|
-
/**
|
|
1725
|
-
* ID
|
|
1726
|
-
* @type {number}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'id'?: number | null;
|
|
1730
|
-
/**
|
|
1731
|
-
* 3CX Licence Key
|
|
1732
|
-
* @type {string}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'licenceKey'?: string | null;
|
|
1736
|
-
/**
|
|
1737
|
-
* 3CX Hosting
|
|
1738
|
-
* @type {boolean}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'hosting'?: boolean | null;
|
|
1742
|
-
/**
|
|
1743
|
-
* Date Time
|
|
1744
|
-
* @type {string}
|
|
1745
|
-
* @memberof CustomerItemRequestDTO
|
|
1746
|
-
*/
|
|
1747
|
-
'processDate'?: string;
|
|
1748
|
-
/**
|
|
1749
|
-
* SBCS
|
|
1750
|
-
* @type {Array<TcxSbcDTO>}
|
|
1751
|
-
* @memberof CustomerItemRequestDTO
|
|
1752
|
-
*/
|
|
1753
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1754
|
-
}
|
|
1755
|
-
/**
|
|
1756
|
-
* Order Request
|
|
1757
|
-
* @export
|
|
1758
|
-
* @interface CustomerOrderRequestDTO
|
|
1759
|
-
*/
|
|
1760
|
-
export interface CustomerOrderRequestDTO {
|
|
1761
|
-
/**
|
|
1762
|
-
* Order Reference
|
|
1763
|
-
* @type {string}
|
|
1764
|
-
* @memberof CustomerOrderRequestDTO
|
|
1765
|
-
*/
|
|
1766
|
-
'orderReference'?: string | null;
|
|
1767
|
-
/**
|
|
1768
|
-
* Items
|
|
1769
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1770
|
-
* @memberof CustomerOrderRequestDTO
|
|
1771
|
-
*/
|
|
1772
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1773
|
-
/**
|
|
1774
|
-
*
|
|
1775
|
-
* @type {ShippingServiceDTO}
|
|
1776
|
-
* @memberof CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1779
|
-
/**
|
|
1780
|
-
* Provisioning URL
|
|
1781
|
-
* @type {string}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'provisioningUrl'?: string | null;
|
|
1785
|
-
/**
|
|
1786
|
-
*
|
|
1787
|
-
* @type {AddressModel}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'shippingAddress'?: AddressModel;
|
|
1791
|
-
/**
|
|
1792
|
-
* Part Ship Order
|
|
1793
|
-
* @type {boolean}
|
|
1794
|
-
* @memberof CustomerOrderRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'partShip'?: boolean;
|
|
1797
|
-
/**
|
|
1798
|
-
* Quote
|
|
1799
|
-
* @type {boolean}
|
|
1800
|
-
* @memberof CustomerOrderRequestDTO
|
|
1801
|
-
*/
|
|
1802
|
-
'quote'?: boolean;
|
|
1803
|
-
}
|
|
1804
1300
|
/**
|
|
1805
1301
|
* Customer Price List
|
|
1806
1302
|
* @export
|
|
@@ -2307,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2307
1803
|
*/
|
|
2308
1804
|
'type'?: string;
|
|
2309
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
|
+
}
|
|
2310
1819
|
/**
|
|
2311
1820
|
*
|
|
2312
1821
|
* @export
|
|
@@ -2901,36 +2410,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2901
2410
|
* @interface ItemDTO
|
|
2902
2411
|
*/
|
|
2903
2412
|
export interface ItemDTO {
|
|
2904
|
-
/**
|
|
2905
|
-
* SKU
|
|
2906
|
-
* @type {string}
|
|
2907
|
-
* @memberof ItemDTO
|
|
2908
|
-
*/
|
|
2909
|
-
'sku'?: string;
|
|
2910
|
-
/**
|
|
2911
|
-
* Quantity
|
|
2912
|
-
* @type {number}
|
|
2913
|
-
* @memberof ItemDTO
|
|
2914
|
-
*/
|
|
2915
|
-
'quantity'?: number;
|
|
2916
2413
|
/**
|
|
2917
2414
|
* ID
|
|
2918
2415
|
* @type {number}
|
|
2919
2416
|
* @memberof ItemDTO
|
|
2920
2417
|
*/
|
|
2921
|
-
'id'?: number
|
|
2418
|
+
'id'?: number;
|
|
2922
2419
|
/**
|
|
2923
2420
|
* Order ID
|
|
2924
2421
|
* @type {number}
|
|
2925
2422
|
* @memberof ItemDTO
|
|
2926
2423
|
*/
|
|
2927
|
-
'orderId'?: number
|
|
2424
|
+
'orderId'?: number;
|
|
2928
2425
|
/**
|
|
2929
2426
|
* Title
|
|
2930
2427
|
* @type {string}
|
|
2931
2428
|
* @memberof ItemDTO
|
|
2932
2429
|
*/
|
|
2933
2430
|
'title'?: string;
|
|
2431
|
+
/**
|
|
2432
|
+
* SKU
|
|
2433
|
+
* @type {string}
|
|
2434
|
+
* @memberof ItemDTO
|
|
2435
|
+
*/
|
|
2436
|
+
'sku'?: string;
|
|
2437
|
+
/**
|
|
2438
|
+
* Quantity
|
|
2439
|
+
* @type {number}
|
|
2440
|
+
* @memberof ItemDTO
|
|
2441
|
+
*/
|
|
2442
|
+
'quantity'?: number;
|
|
2934
2443
|
/**
|
|
2935
2444
|
* Price
|
|
2936
2445
|
* @type {number}
|
|
@@ -2955,12 +2464,6 @@ export interface ItemDTO {
|
|
|
2955
2464
|
* @memberof ItemDTO
|
|
2956
2465
|
*/
|
|
2957
2466
|
'processDate'?: string;
|
|
2958
|
-
/**
|
|
2959
|
-
* 3CX Hosting
|
|
2960
|
-
* @type {boolean}
|
|
2961
|
-
* @memberof ItemDTO
|
|
2962
|
-
*/
|
|
2963
|
-
'hosting'?: boolean | null;
|
|
2964
2467
|
/**
|
|
2965
2468
|
* Promo Item
|
|
2966
2469
|
* @type {boolean}
|
|
@@ -2972,25 +2475,7 @@ export interface ItemDTO {
|
|
|
2972
2475
|
* @type {number}
|
|
2973
2476
|
* @memberof ItemDTO
|
|
2974
2477
|
*/
|
|
2975
|
-
'refunded'?: number
|
|
2976
|
-
/**
|
|
2977
|
-
* SBCs
|
|
2978
|
-
* @type {Array<TcxSbcDTO>}
|
|
2979
|
-
* @memberof ItemDTO
|
|
2980
|
-
*/
|
|
2981
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2982
|
-
/**
|
|
2983
|
-
* Readonly
|
|
2984
|
-
* @type {boolean}
|
|
2985
|
-
* @memberof ItemDTO
|
|
2986
|
-
*/
|
|
2987
|
-
'readonly'?: boolean;
|
|
2988
|
-
/**
|
|
2989
|
-
* 3CX Sales Code
|
|
2990
|
-
* @type {string}
|
|
2991
|
-
* @memberof ItemDTO
|
|
2992
|
-
*/
|
|
2993
|
-
'tcxSalesCode'?: string | null;
|
|
2478
|
+
'refunded'?: number;
|
|
2994
2479
|
}
|
|
2995
2480
|
/**
|
|
2996
2481
|
* ItemsEntity
|
|
@@ -3124,31 +2609,6 @@ export interface ItemEntity {
|
|
|
3124
2609
|
* @memberof ItemEntity
|
|
3125
2610
|
*/
|
|
3126
2611
|
'promoItem'?: number;
|
|
3127
|
-
/**
|
|
3128
|
-
* 3CX Sales Code
|
|
3129
|
-
* @type {string}
|
|
3130
|
-
* @memberof ItemEntity
|
|
3131
|
-
*/
|
|
3132
|
-
'tcxSalesCode'?: string | null;
|
|
3133
|
-
}
|
|
3134
|
-
/**
|
|
3135
|
-
* LinkedOrdersEntity
|
|
3136
|
-
* @export
|
|
3137
|
-
* @interface LinkedOrderEntity
|
|
3138
|
-
*/
|
|
3139
|
-
export interface LinkedOrderEntity {
|
|
3140
|
-
/**
|
|
3141
|
-
* orderId
|
|
3142
|
-
* @type {number}
|
|
3143
|
-
* @memberof LinkedOrderEntity
|
|
3144
|
-
*/
|
|
3145
|
-
'orderId'?: number;
|
|
3146
|
-
/**
|
|
3147
|
-
* linkedOrderId
|
|
3148
|
-
* @type {number}
|
|
3149
|
-
* @memberof LinkedOrderEntity
|
|
3150
|
-
*/
|
|
3151
|
-
'linkedOrderId'?: number;
|
|
3152
2612
|
}
|
|
3153
2613
|
/**
|
|
3154
2614
|
* MFA Required
|
|
@@ -3802,19 +3262,13 @@ export interface OrderSummaryDTO {
|
|
|
3802
3262
|
* @type {string}
|
|
3803
3263
|
* @memberof OrderSummaryDTO
|
|
3804
3264
|
*/
|
|
3805
|
-
'reference'?: string
|
|
3265
|
+
'reference'?: string;
|
|
3806
3266
|
/**
|
|
3807
3267
|
* Invoice Number
|
|
3808
3268
|
* @type {string}
|
|
3809
3269
|
* @memberof OrderSummaryDTO
|
|
3810
3270
|
*/
|
|
3811
3271
|
'invoiceNumber'?: string;
|
|
3812
|
-
/**
|
|
3813
|
-
* Invoice ID
|
|
3814
|
-
* @type {string}
|
|
3815
|
-
* @memberof OrderSummaryDTO
|
|
3816
|
-
*/
|
|
3817
|
-
'invoiceId'?: string | null;
|
|
3818
3272
|
/**
|
|
3819
3273
|
* Date Time
|
|
3820
3274
|
* @type {string}
|
|
@@ -3869,24 +3323,6 @@ export interface OrderSummaryDTO {
|
|
|
3869
3323
|
* @memberof OrderSummaryDTO
|
|
3870
3324
|
*/
|
|
3871
3325
|
'fulfillable'?: boolean | null;
|
|
3872
|
-
/**
|
|
3873
|
-
* Provisioning URL
|
|
3874
|
-
* @type {string}
|
|
3875
|
-
* @memberof OrderSummaryDTO
|
|
3876
|
-
*/
|
|
3877
|
-
'provisioningUrl'?: string | null;
|
|
3878
|
-
/**
|
|
3879
|
-
*
|
|
3880
|
-
* @type {ShippingServiceDTO}
|
|
3881
|
-
* @memberof OrderSummaryDTO
|
|
3882
|
-
*/
|
|
3883
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
3884
|
-
/**
|
|
3885
|
-
* Readonly
|
|
3886
|
-
* @type {boolean}
|
|
3887
|
-
* @memberof OrderSummaryDTO
|
|
3888
|
-
*/
|
|
3889
|
-
'readonly'?: boolean;
|
|
3890
3326
|
}
|
|
3891
3327
|
/**
|
|
3892
3328
|
* Order Totals
|
|
@@ -3936,12 +3372,6 @@ export interface OrderTotalModel {
|
|
|
3936
3372
|
* @memberof OrderTotalModel
|
|
3937
3373
|
*/
|
|
3938
3374
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3939
|
-
/**
|
|
3940
|
-
* Delivery
|
|
3941
|
-
* @type {number}
|
|
3942
|
-
* @memberof OrderTotalModel
|
|
3943
|
-
*/
|
|
3944
|
-
'delivery'?: number | null;
|
|
3945
3375
|
}
|
|
3946
3376
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3947
3377
|
readonly Eur: "EUR";
|
|
@@ -4320,31 +3750,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4320
3750
|
*/
|
|
4321
3751
|
'scopes'?: Array<string>;
|
|
4322
3752
|
}
|
|
4323
|
-
/**
|
|
4324
|
-
*
|
|
4325
|
-
* @export
|
|
4326
|
-
* @interface PostGetProductForCustomerRequest
|
|
4327
|
-
*/
|
|
4328
|
-
export interface PostGetProductForCustomerRequest {
|
|
4329
|
-
/**
|
|
4330
|
-
* Quantity
|
|
4331
|
-
* @type {number}
|
|
4332
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4333
|
-
*/
|
|
4334
|
-
'quantity'?: number | null;
|
|
4335
|
-
/**
|
|
4336
|
-
* 3CX Licence Key
|
|
4337
|
-
* @type {string}
|
|
4338
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4339
|
-
*/
|
|
4340
|
-
'licenceKey'?: string | null;
|
|
4341
|
-
/**
|
|
4342
|
-
* 3CX Hosting
|
|
4343
|
-
* @type {boolean}
|
|
4344
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4345
|
-
*/
|
|
4346
|
-
'hosting'?: boolean | null;
|
|
4347
|
-
}
|
|
4348
3753
|
/**
|
|
4349
3754
|
* Price & Stock List
|
|
4350
3755
|
* @export
|
|
@@ -4433,10 +3838,10 @@ export interface PrizesEntity {
|
|
|
4433
3838
|
export interface ProductSearchResultsModel {
|
|
4434
3839
|
/**
|
|
4435
3840
|
* Results
|
|
4436
|
-
* @type {Array<
|
|
3841
|
+
* @type {Array<ProductSummaryModel>}
|
|
4437
3842
|
* @memberof ProductSearchResultsModel
|
|
4438
3843
|
*/
|
|
4439
|
-
'results'?: Array<
|
|
3844
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4440
3845
|
}
|
|
4441
3846
|
/**
|
|
4442
3847
|
* Product Serial Info
|
|
@@ -4472,51 +3877,45 @@ export interface ProductSerialInfoModel {
|
|
|
4472
3877
|
/**
|
|
4473
3878
|
* Product Summary
|
|
4474
3879
|
* @export
|
|
4475
|
-
* @interface
|
|
3880
|
+
* @interface ProductSummaryModel
|
|
4476
3881
|
*/
|
|
4477
|
-
export interface
|
|
3882
|
+
export interface ProductSummaryModel {
|
|
4478
3883
|
/**
|
|
4479
3884
|
* SKU
|
|
4480
3885
|
* @type {string}
|
|
4481
|
-
* @memberof
|
|
3886
|
+
* @memberof ProductSummaryModel
|
|
4482
3887
|
*/
|
|
4483
3888
|
'sku'?: string;
|
|
4484
3889
|
/**
|
|
4485
3890
|
* Title
|
|
4486
3891
|
* @type {string}
|
|
4487
|
-
* @memberof
|
|
3892
|
+
* @memberof ProductSummaryModel
|
|
4488
3893
|
*/
|
|
4489
3894
|
'title'?: string;
|
|
4490
3895
|
/**
|
|
4491
3896
|
* Stock Quantity
|
|
4492
3897
|
* @type {number}
|
|
4493
|
-
* @memberof
|
|
3898
|
+
* @memberof ProductSummaryModel
|
|
4494
3899
|
*/
|
|
4495
3900
|
'quantity'?: number | null;
|
|
4496
3901
|
/**
|
|
4497
3902
|
* Stock Product
|
|
4498
3903
|
* @type {boolean}
|
|
4499
|
-
* @memberof
|
|
3904
|
+
* @memberof ProductSummaryModel
|
|
4500
3905
|
*/
|
|
4501
3906
|
'stockProduct'?: boolean;
|
|
4502
3907
|
/**
|
|
4503
3908
|
* Price
|
|
4504
3909
|
* @type {number}
|
|
4505
|
-
* @memberof
|
|
3910
|
+
* @memberof ProductSummaryModel
|
|
4506
3911
|
*/
|
|
4507
3912
|
'price'?: number | null;
|
|
4508
3913
|
/**
|
|
4509
3914
|
* Carton Size
|
|
4510
3915
|
* @type {number}
|
|
4511
|
-
* @memberof
|
|
3916
|
+
* @memberof ProductSummaryModel
|
|
4512
3917
|
*/
|
|
4513
3918
|
'cartonSize'?: number | null;
|
|
4514
|
-
/**
|
|
4515
|
-
* RRP Price
|
|
4516
|
-
* @type {number}
|
|
4517
|
-
* @memberof ProductSummaryDTO
|
|
4518
|
-
*/
|
|
4519
|
-
'rrp'?: number | null;
|
|
4520
3919
|
}
|
|
4521
3920
|
/**
|
|
4522
3921
|
* PromoCodesEntity
|
|
@@ -4655,37 +4054,37 @@ export interface PromoItemsEntity {
|
|
|
4655
4054
|
/**
|
|
4656
4055
|
* Provisioning Group
|
|
4657
4056
|
* @export
|
|
4658
|
-
* @interface
|
|
4057
|
+
* @interface ProvisioningEntity
|
|
4659
4058
|
*/
|
|
4660
|
-
export interface
|
|
4059
|
+
export interface ProvisioningEntity {
|
|
4661
4060
|
/**
|
|
4662
4061
|
* Provisioning Group Name
|
|
4663
4062
|
* @type {string}
|
|
4664
|
-
* @memberof
|
|
4063
|
+
* @memberof ProvisioningEntity
|
|
4665
4064
|
*/
|
|
4666
4065
|
'groupName'?: string;
|
|
4667
4066
|
/**
|
|
4668
4067
|
* Provisioning URL (Static Provisioning Server)
|
|
4669
4068
|
* @type {string}
|
|
4670
|
-
* @memberof
|
|
4069
|
+
* @memberof ProvisioningEntity
|
|
4671
4070
|
*/
|
|
4672
4071
|
'provisioningUrl'?: string;
|
|
4673
4072
|
/**
|
|
4674
4073
|
* Additional Authentication Secret
|
|
4675
4074
|
* @type {string}
|
|
4676
|
-
* @memberof
|
|
4075
|
+
* @memberof ProvisioningEntity
|
|
4677
4076
|
*/
|
|
4678
4077
|
'auth'?: string;
|
|
4679
4078
|
/**
|
|
4680
4079
|
* Provisioning Group ID
|
|
4681
4080
|
* @type {number}
|
|
4682
|
-
* @memberof
|
|
4081
|
+
* @memberof ProvisioningEntity
|
|
4683
4082
|
*/
|
|
4684
4083
|
'id'?: number;
|
|
4685
4084
|
/**
|
|
4686
4085
|
* Owner ID
|
|
4687
4086
|
* @type {number}
|
|
4688
|
-
* @memberof
|
|
4087
|
+
* @memberof ProvisioningEntity
|
|
4689
4088
|
*/
|
|
4690
4089
|
'customerId'?: number;
|
|
4691
4090
|
}
|
|
@@ -5039,7 +4438,7 @@ export interface ShipmentEntity {
|
|
|
5039
4438
|
* @type {string}
|
|
5040
4439
|
* @memberof ShipmentEntity
|
|
5041
4440
|
*/
|
|
5042
|
-
'
|
|
4441
|
+
'date'?: string;
|
|
5043
4442
|
/**
|
|
5044
4443
|
* requestDate
|
|
5045
4444
|
* @type {string}
|
|
@@ -5090,149 +4489,6 @@ export interface ShipmentItemEntity {
|
|
|
5090
4489
|
*/
|
|
5091
4490
|
'itemId'?: string;
|
|
5092
4491
|
}
|
|
5093
|
-
/**
|
|
5094
|
-
*
|
|
5095
|
-
* @export
|
|
5096
|
-
* @interface ShippingConsignmentModel
|
|
5097
|
-
*/
|
|
5098
|
-
export interface ShippingConsignmentModel {
|
|
5099
|
-
/**
|
|
5100
|
-
*
|
|
5101
|
-
* @type {ShippingServiceModel}
|
|
5102
|
-
* @memberof ShippingConsignmentModel
|
|
5103
|
-
*/
|
|
5104
|
-
'service'?: ShippingServiceModel;
|
|
5105
|
-
/**
|
|
5106
|
-
* ID/Number
|
|
5107
|
-
* @type {string}
|
|
5108
|
-
* @memberof ShippingConsignmentModel
|
|
5109
|
-
*/
|
|
5110
|
-
'id'?: string;
|
|
5111
|
-
/**
|
|
5112
|
-
* Tracking Number
|
|
5113
|
-
* @type {string}
|
|
5114
|
-
* @memberof ShippingConsignmentModel
|
|
5115
|
-
*/
|
|
5116
|
-
'trackingNumber'?: string;
|
|
5117
|
-
/**
|
|
5118
|
-
* Parcels
|
|
5119
|
-
* @type {Array<string>}
|
|
5120
|
-
* @memberof ShippingConsignmentModel
|
|
5121
|
-
*/
|
|
5122
|
-
'parcelIds'?: Array<string>;
|
|
5123
|
-
}
|
|
5124
|
-
/**
|
|
5125
|
-
* Shipping Information
|
|
5126
|
-
* @export
|
|
5127
|
-
* @interface ShippingInformationDTO
|
|
5128
|
-
*/
|
|
5129
|
-
export interface ShippingInformationDTO {
|
|
5130
|
-
/**
|
|
5131
|
-
* Items
|
|
5132
|
-
* @type {Array<BasicItemDTO>}
|
|
5133
|
-
* @memberof ShippingInformationDTO
|
|
5134
|
-
*/
|
|
5135
|
-
'items'?: Array<BasicItemDTO>;
|
|
5136
|
-
/**
|
|
5137
|
-
* Destination Post Code
|
|
5138
|
-
* @type {string}
|
|
5139
|
-
* @memberof ShippingInformationDTO
|
|
5140
|
-
*/
|
|
5141
|
-
'postalCode'?: string;
|
|
5142
|
-
/**
|
|
5143
|
-
* Destination ISO
|
|
5144
|
-
* @type {string}
|
|
5145
|
-
* @memberof ShippingInformationDTO
|
|
5146
|
-
*/
|
|
5147
|
-
'iso'?: string;
|
|
5148
|
-
}
|
|
5149
|
-
/**
|
|
5150
|
-
* Shipping Service
|
|
5151
|
-
* @export
|
|
5152
|
-
* @interface ShippingServiceDTO
|
|
5153
|
-
*/
|
|
5154
|
-
export interface ShippingServiceDTO {
|
|
5155
|
-
/**
|
|
5156
|
-
* Courier
|
|
5157
|
-
* @type {string}
|
|
5158
|
-
* @memberof ShippingServiceDTO
|
|
5159
|
-
*/
|
|
5160
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5161
|
-
/**
|
|
5162
|
-
* Service Name
|
|
5163
|
-
* @type {string}
|
|
5164
|
-
* @memberof ShippingServiceDTO
|
|
5165
|
-
*/
|
|
5166
|
-
'serviceName'?: string;
|
|
5167
|
-
}
|
|
5168
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5169
|
-
readonly Dpd: "DPD";
|
|
5170
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5171
|
-
readonly Pops: "POPS";
|
|
5172
|
-
};
|
|
5173
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5174
|
-
/**
|
|
5175
|
-
* Shipping Service
|
|
5176
|
-
* @export
|
|
5177
|
-
* @interface ShippingServiceModel
|
|
5178
|
-
*/
|
|
5179
|
-
export interface ShippingServiceModel {
|
|
5180
|
-
/**
|
|
5181
|
-
* Courier
|
|
5182
|
-
* @type {string}
|
|
5183
|
-
* @memberof ShippingServiceModel
|
|
5184
|
-
*/
|
|
5185
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5186
|
-
/**
|
|
5187
|
-
* Code
|
|
5188
|
-
* @type {string}
|
|
5189
|
-
* @memberof ShippingServiceModel
|
|
5190
|
-
*/
|
|
5191
|
-
'code'?: string;
|
|
5192
|
-
/**
|
|
5193
|
-
* Name
|
|
5194
|
-
* @type {string}
|
|
5195
|
-
* @memberof ShippingServiceModel
|
|
5196
|
-
*/
|
|
5197
|
-
'name'?: string;
|
|
5198
|
-
/**
|
|
5199
|
-
* Description
|
|
5200
|
-
* @type {string}
|
|
5201
|
-
* @memberof ShippingServiceModel
|
|
5202
|
-
*/
|
|
5203
|
-
'description'?: string;
|
|
5204
|
-
/**
|
|
5205
|
-
* Label
|
|
5206
|
-
* @type {string}
|
|
5207
|
-
* @memberof ShippingServiceModel
|
|
5208
|
-
*/
|
|
5209
|
-
'label'?: string | null;
|
|
5210
|
-
/**
|
|
5211
|
-
* Price
|
|
5212
|
-
* @type {number}
|
|
5213
|
-
* @memberof ShippingServiceModel
|
|
5214
|
-
*/
|
|
5215
|
-
'price'?: number | null;
|
|
5216
|
-
}
|
|
5217
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5218
|
-
readonly Dpd: "DPD";
|
|
5219
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5220
|
-
readonly Pops: "POPS";
|
|
5221
|
-
};
|
|
5222
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5223
|
-
/**
|
|
5224
|
-
*
|
|
5225
|
-
* @export
|
|
5226
|
-
* @interface ShippingServicesModel
|
|
5227
|
-
*/
|
|
5228
|
-
export interface ShippingServicesModel {
|
|
5229
|
-
/**
|
|
5230
|
-
* Services
|
|
5231
|
-
* @type {Array<ShippingServiceModel>}
|
|
5232
|
-
* @memberof ShippingServicesModel
|
|
5233
|
-
*/
|
|
5234
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5235
|
-
}
|
|
5236
4492
|
/**
|
|
5237
4493
|
* Change Response
|
|
5238
4494
|
* @export
|
|
@@ -8052,49 +7308,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8052
7308
|
*/
|
|
8053
7309
|
'secretAccessKey'?: string;
|
|
8054
7310
|
}
|
|
8055
|
-
/**
|
|
8056
|
-
* SBC Data
|
|
8057
|
-
* @export
|
|
8058
|
-
* @interface TcxSbcDTO
|
|
8059
|
-
*/
|
|
8060
|
-
export interface TcxSbcDTO {
|
|
8061
|
-
/**
|
|
8062
|
-
* LAN IP Address
|
|
8063
|
-
* @type {string}
|
|
8064
|
-
* @memberof TcxSbcDTO
|
|
8065
|
-
*/
|
|
8066
|
-
'ipAddress'?: string;
|
|
8067
|
-
/**
|
|
8068
|
-
* LAN Default Gateway
|
|
8069
|
-
* @type {string}
|
|
8070
|
-
* @memberof TcxSbcDTO
|
|
8071
|
-
*/
|
|
8072
|
-
'defaultGateway'?: string;
|
|
8073
|
-
/**
|
|
8074
|
-
* LAN Subnet Mask
|
|
8075
|
-
* @type {string}
|
|
8076
|
-
* @memberof TcxSbcDTO
|
|
8077
|
-
*/
|
|
8078
|
-
'netmask'?: string;
|
|
8079
|
-
/**
|
|
8080
|
-
* DNS
|
|
8081
|
-
* @type {string}
|
|
8082
|
-
* @memberof TcxSbcDTO
|
|
8083
|
-
*/
|
|
8084
|
-
'dns'?: string;
|
|
8085
|
-
/**
|
|
8086
|
-
* 3CX URL
|
|
8087
|
-
* @type {string}
|
|
8088
|
-
* @memberof TcxSbcDTO
|
|
8089
|
-
*/
|
|
8090
|
-
'tcxUrl'?: string;
|
|
8091
|
-
/**
|
|
8092
|
-
* 3CX SBC Key
|
|
8093
|
-
* @type {string}
|
|
8094
|
-
* @memberof TcxSbcDTO
|
|
8095
|
-
*/
|
|
8096
|
-
'tcxKey'?: string;
|
|
8097
|
-
}
|
|
8098
7311
|
/**
|
|
8099
7312
|
* 3CX Wizard SBC
|
|
8100
7313
|
* @export
|
|
@@ -8199,7 +7412,7 @@ export interface TcxSbcEntity {
|
|
|
8199
7412
|
'technicalContact'?: string;
|
|
8200
7413
|
}
|
|
8201
7414
|
/**
|
|
8202
|
-
* 3CX
|
|
7415
|
+
* 3CX SBC Model
|
|
8203
7416
|
* @export
|
|
8204
7417
|
* @interface TcxSbcModel
|
|
8205
7418
|
*/
|
|
@@ -9277,14 +8490,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9277
8490
|
* @throws {RequiredError}
|
|
9278
8491
|
*/
|
|
9279
8492
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9280
|
-
/**
|
|
9281
|
-
* Get Account Detailed Summary
|
|
9282
|
-
* @summary Get Account Detailed Summary
|
|
9283
|
-
* @param {number} id Customer ID
|
|
9284
|
-
* @param {*} [options] Override http request option.
|
|
9285
|
-
* @throws {RequiredError}
|
|
9286
|
-
*/
|
|
9287
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9288
8493
|
/**
|
|
9289
8494
|
* Get Accounts
|
|
9290
8495
|
* @summary Get Accounts
|
|
@@ -9350,13 +8555,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9350
8555
|
* @throws {RequiredError}
|
|
9351
8556
|
*/
|
|
9352
8557
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9353
|
-
/**
|
|
9354
|
-
* Get Admin Account
|
|
9355
|
-
* @summary Get Admin Account
|
|
9356
|
-
* @param {*} [options] Override http request option.
|
|
9357
|
-
* @throws {RequiredError}
|
|
9358
|
-
*/
|
|
9359
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9360
8558
|
/**
|
|
9361
8559
|
* Create client credentials
|
|
9362
8560
|
* @summary Create client credentials
|
|
@@ -9437,14 +8635,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9437
8635
|
* @throws {RequiredError}
|
|
9438
8636
|
*/
|
|
9439
8637
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9440
|
-
/**
|
|
9441
|
-
* Get Account Detailed Summary
|
|
9442
|
-
* @summary Get Account Detailed Summary
|
|
9443
|
-
* @param {number} id Customer ID
|
|
9444
|
-
* @param {*} [options] Override http request option.
|
|
9445
|
-
* @throws {RequiredError}
|
|
9446
|
-
*/
|
|
9447
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9448
8638
|
/**
|
|
9449
8639
|
* Get Accounts
|
|
9450
8640
|
* @summary Get Accounts
|
|
@@ -9510,13 +8700,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9510
8700
|
* @throws {RequiredError}
|
|
9511
8701
|
*/
|
|
9512
8702
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9513
|
-
/**
|
|
9514
|
-
* Get Admin Account
|
|
9515
|
-
* @summary Get Admin Account
|
|
9516
|
-
* @param {*} [options] Override http request option.
|
|
9517
|
-
* @throws {RequiredError}
|
|
9518
|
-
*/
|
|
9519
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9520
8703
|
/**
|
|
9521
8704
|
* Create client credentials
|
|
9522
8705
|
* @summary Create client credentials
|
|
@@ -9597,14 +8780,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9597
8780
|
* @throws {RequiredError}
|
|
9598
8781
|
*/
|
|
9599
8782
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9600
|
-
/**
|
|
9601
|
-
* Get Account Detailed Summary
|
|
9602
|
-
* @summary Get Account Detailed Summary
|
|
9603
|
-
* @param {number} id Customer ID
|
|
9604
|
-
* @param {*} [options] Override http request option.
|
|
9605
|
-
* @throws {RequiredError}
|
|
9606
|
-
*/
|
|
9607
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9608
8783
|
/**
|
|
9609
8784
|
* Get Accounts
|
|
9610
8785
|
* @summary Get Accounts
|
|
@@ -9670,13 +8845,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9670
8845
|
* @throws {RequiredError}
|
|
9671
8846
|
*/
|
|
9672
8847
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9673
|
-
/**
|
|
9674
|
-
* Get Admin Account
|
|
9675
|
-
* @summary Get Admin Account
|
|
9676
|
-
* @param {*} [options] Override http request option.
|
|
9677
|
-
* @throws {RequiredError}
|
|
9678
|
-
*/
|
|
9679
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9680
8848
|
/**
|
|
9681
8849
|
* Create client credentials
|
|
9682
8850
|
* @summary Create client credentials
|
|
@@ -9755,23 +8923,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9755
8923
|
*/
|
|
9756
8924
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9757
8925
|
/**
|
|
9758
|
-
* Get Account Contacts
|
|
9759
|
-
* @summary Get Account Contacts
|
|
9760
|
-
* @param {string} [email] Contact Email Address
|
|
9761
|
-
* @param {*} [options] Override http request option.
|
|
9762
|
-
* @throws {RequiredError}
|
|
9763
|
-
* @memberof AccountsApi
|
|
9764
|
-
*/
|
|
9765
|
-
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9766
|
-
/**
|
|
9767
|
-
* Get Account Detailed Summary
|
|
9768
|
-
* @summary Get Account Detailed Summary
|
|
9769
|
-
* @param {number} id Customer ID
|
|
8926
|
+
* Get Account Contacts
|
|
8927
|
+
* @summary Get Account Contacts
|
|
8928
|
+
* @param {string} [email] Contact Email Address
|
|
9770
8929
|
* @param {*} [options] Override http request option.
|
|
9771
8930
|
* @throws {RequiredError}
|
|
9772
8931
|
* @memberof AccountsApi
|
|
9773
8932
|
*/
|
|
9774
|
-
|
|
8933
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9775
8934
|
/**
|
|
9776
8935
|
* Get Accounts
|
|
9777
8936
|
* @summary Get Accounts
|
|
@@ -9845,14 +9004,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9845
9004
|
* @memberof AccountsApi
|
|
9846
9005
|
*/
|
|
9847
9006
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9848
|
-
/**
|
|
9849
|
-
* Get Admin Account
|
|
9850
|
-
* @summary Get Admin Account
|
|
9851
|
-
* @param {*} [options] Override http request option.
|
|
9852
|
-
* @throws {RequiredError}
|
|
9853
|
-
* @memberof AccountsApi
|
|
9854
|
-
*/
|
|
9855
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9856
9007
|
/**
|
|
9857
9008
|
* Create client credentials
|
|
9858
9009
|
* @summary Create client credentials
|
|
@@ -9915,6 +9066,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9915
9066
|
* @throws {RequiredError}
|
|
9916
9067
|
*/
|
|
9917
9068
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9069
|
+
/**
|
|
9070
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9071
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9072
|
+
* @param {string} password Desired 3CX web access password
|
|
9073
|
+
* @param {*} [options] Override http request option.
|
|
9074
|
+
* @throws {RequiredError}
|
|
9075
|
+
*/
|
|
9076
|
+
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9918
9077
|
/**
|
|
9919
9078
|
* Get Bulk 3CX Licence Details
|
|
9920
9079
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9937,6 +9096,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9937
9096
|
* @throws {RequiredError}
|
|
9938
9097
|
*/
|
|
9939
9098
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9099
|
+
/**
|
|
9100
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9101
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9102
|
+
* @param {string} password Desired 3CX web access password
|
|
9103
|
+
* @param {*} [options] Override http request option.
|
|
9104
|
+
* @throws {RequiredError}
|
|
9105
|
+
*/
|
|
9106
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9940
9107
|
/**
|
|
9941
9108
|
* Get Bulk 3CX Licence Details
|
|
9942
9109
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9959,6 +9126,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9959
9126
|
* @throws {RequiredError}
|
|
9960
9127
|
*/
|
|
9961
9128
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9129
|
+
/**
|
|
9130
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9131
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9132
|
+
* @param {string} password Desired 3CX web access password
|
|
9133
|
+
* @param {*} [options] Override http request option.
|
|
9134
|
+
* @throws {RequiredError}
|
|
9135
|
+
*/
|
|
9136
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9962
9137
|
/**
|
|
9963
9138
|
* Get Bulk 3CX Licence Details
|
|
9964
9139
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9984,6 +9159,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9984
9159
|
* @memberof Class3CXApi
|
|
9985
9160
|
*/
|
|
9986
9161
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9162
|
+
/**
|
|
9163
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9164
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9165
|
+
* @param {string} password Desired 3CX web access password
|
|
9166
|
+
* @param {*} [options] Override http request option.
|
|
9167
|
+
* @throws {RequiredError}
|
|
9168
|
+
* @memberof Class3CXApi
|
|
9169
|
+
*/
|
|
9170
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9987
9171
|
/**
|
|
9988
9172
|
* Get Bulk 3CX Licence Details
|
|
9989
9173
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12513,19 +11697,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12513
11697
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12514
11698
|
/**
|
|
12515
11699
|
* Delete Orders
|
|
12516
|
-
* @summary Delete Orders
|
|
12517
|
-
* @param {number} id Order ID
|
|
12518
|
-
* @param {*} [options] Override http request option.
|
|
12519
|
-
* @throws {RequiredError}
|
|
12520
|
-
*/
|
|
12521
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12522
|
-
/**
|
|
12523
|
-
* Get Editable Order
|
|
12524
11700
|
* @param {number} id Order ID
|
|
12525
11701
|
* @param {*} [options] Override http request option.
|
|
12526
11702
|
* @throws {RequiredError}
|
|
12527
11703
|
*/
|
|
12528
|
-
|
|
11704
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12529
11705
|
/**
|
|
12530
11706
|
* Get Orders
|
|
12531
11707
|
* @summary Get Orders
|
|
@@ -12540,44 +11716,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12540
11716
|
* @throws {RequiredError}
|
|
12541
11717
|
*/
|
|
12542
11718
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12543
|
-
/**
|
|
12544
|
-
* Create An Order (Admin)
|
|
12545
|
-
* @summary Create An Order (Admin)
|
|
12546
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12547
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12548
|
-
* @param {*} [options] Override http request option.
|
|
12549
|
-
* @throws {RequiredError}
|
|
12550
|
-
*/
|
|
12551
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12552
|
-
/**
|
|
12553
|
-
* Create An Order
|
|
12554
|
-
* @summary Create An Order
|
|
12555
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12556
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12557
|
-
* @param {*} [options] Override http request option.
|
|
12558
|
-
* @throws {RequiredError}
|
|
12559
|
-
*/
|
|
12560
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12561
|
-
/**
|
|
12562
|
-
* Update An Order (Admin)
|
|
12563
|
-
* @summary Update An Order (Admin)
|
|
12564
|
-
* @param {number} id Order ID
|
|
12565
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12566
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12567
|
-
* @param {*} [options] Override http request option.
|
|
12568
|
-
* @throws {RequiredError}
|
|
12569
|
-
*/
|
|
12570
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12571
|
-
/**
|
|
12572
|
-
* Update An Order
|
|
12573
|
-
* @summary Update An Order
|
|
12574
|
-
* @param {number} id Order ID
|
|
12575
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12576
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12577
|
-
* @param {*} [options] Override http request option.
|
|
12578
|
-
* @throws {RequiredError}
|
|
12579
|
-
*/
|
|
12580
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12581
11719
|
};
|
|
12582
11720
|
/**
|
|
12583
11721
|
* OrdersApi - functional programming interface
|
|
@@ -12586,19 +11724,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12586
11724
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12587
11725
|
/**
|
|
12588
11726
|
* Delete Orders
|
|
12589
|
-
* @summary Delete Orders
|
|
12590
|
-
* @param {number} id Order ID
|
|
12591
|
-
* @param {*} [options] Override http request option.
|
|
12592
|
-
* @throws {RequiredError}
|
|
12593
|
-
*/
|
|
12594
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12595
|
-
/**
|
|
12596
|
-
* Get Editable Order
|
|
12597
11727
|
* @param {number} id Order ID
|
|
12598
11728
|
* @param {*} [options] Override http request option.
|
|
12599
11729
|
* @throws {RequiredError}
|
|
12600
11730
|
*/
|
|
12601
|
-
|
|
11731
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12602
11732
|
/**
|
|
12603
11733
|
* Get Orders
|
|
12604
11734
|
* @summary Get Orders
|
|
@@ -12613,44 +11743,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12613
11743
|
* @throws {RequiredError}
|
|
12614
11744
|
*/
|
|
12615
11745
|
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>>;
|
|
12616
|
-
/**
|
|
12617
|
-
* Create An Order (Admin)
|
|
12618
|
-
* @summary Create An Order (Admin)
|
|
12619
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12620
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12621
|
-
* @param {*} [options] Override http request option.
|
|
12622
|
-
* @throws {RequiredError}
|
|
12623
|
-
*/
|
|
12624
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12625
|
-
/**
|
|
12626
|
-
* Create An Order
|
|
12627
|
-
* @summary Create An Order
|
|
12628
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12629
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12630
|
-
* @param {*} [options] Override http request option.
|
|
12631
|
-
* @throws {RequiredError}
|
|
12632
|
-
*/
|
|
12633
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12634
|
-
/**
|
|
12635
|
-
* Update An Order (Admin)
|
|
12636
|
-
* @summary Update An Order (Admin)
|
|
12637
|
-
* @param {number} id Order ID
|
|
12638
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12639
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12640
|
-
* @param {*} [options] Override http request option.
|
|
12641
|
-
* @throws {RequiredError}
|
|
12642
|
-
*/
|
|
12643
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12644
|
-
/**
|
|
12645
|
-
* Update An Order
|
|
12646
|
-
* @summary Update An Order
|
|
12647
|
-
* @param {number} id Order ID
|
|
12648
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12649
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12650
|
-
* @param {*} [options] Override http request option.
|
|
12651
|
-
* @throws {RequiredError}
|
|
12652
|
-
*/
|
|
12653
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12654
11746
|
};
|
|
12655
11747
|
/**
|
|
12656
11748
|
* OrdersApi - factory interface
|
|
@@ -12659,19 +11751,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12659
11751
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12660
11752
|
/**
|
|
12661
11753
|
* Delete Orders
|
|
12662
|
-
* @summary Delete Orders
|
|
12663
11754
|
* @param {number} id Order ID
|
|
12664
11755
|
* @param {*} [options] Override http request option.
|
|
12665
11756
|
* @throws {RequiredError}
|
|
12666
11757
|
*/
|
|
12667
|
-
|
|
12668
|
-
/**
|
|
12669
|
-
* Get Editable Order
|
|
12670
|
-
* @param {number} id Order ID
|
|
12671
|
-
* @param {*} [options] Override http request option.
|
|
12672
|
-
* @throws {RequiredError}
|
|
12673
|
-
*/
|
|
12674
|
-
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11758
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12675
11759
|
/**
|
|
12676
11760
|
* Get Orders
|
|
12677
11761
|
* @summary Get Orders
|
|
@@ -12686,44 +11770,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12686
11770
|
* @throws {RequiredError}
|
|
12687
11771
|
*/
|
|
12688
11772
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12689
|
-
/**
|
|
12690
|
-
* Create An Order (Admin)
|
|
12691
|
-
* @summary Create An Order (Admin)
|
|
12692
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12693
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12694
|
-
* @param {*} [options] Override http request option.
|
|
12695
|
-
* @throws {RequiredError}
|
|
12696
|
-
*/
|
|
12697
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12698
|
-
/**
|
|
12699
|
-
* Create An Order
|
|
12700
|
-
* @summary Create An Order
|
|
12701
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12702
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12703
|
-
* @param {*} [options] Override http request option.
|
|
12704
|
-
* @throws {RequiredError}
|
|
12705
|
-
*/
|
|
12706
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12707
|
-
/**
|
|
12708
|
-
* Update An Order (Admin)
|
|
12709
|
-
* @summary Update An Order (Admin)
|
|
12710
|
-
* @param {number} id Order ID
|
|
12711
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12712
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12713
|
-
* @param {*} [options] Override http request option.
|
|
12714
|
-
* @throws {RequiredError}
|
|
12715
|
-
*/
|
|
12716
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12717
|
-
/**
|
|
12718
|
-
* Update An Order
|
|
12719
|
-
* @summary Update An Order
|
|
12720
|
-
* @param {number} id Order ID
|
|
12721
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12722
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12723
|
-
* @param {*} [options] Override http request option.
|
|
12724
|
-
* @throws {RequiredError}
|
|
12725
|
-
*/
|
|
12726
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12727
11773
|
};
|
|
12728
11774
|
/**
|
|
12729
11775
|
* OrdersApi - object-oriented interface
|
|
@@ -12734,21 +11780,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12734
11780
|
export declare class OrdersApi extends BaseAPI {
|
|
12735
11781
|
/**
|
|
12736
11782
|
* Delete Orders
|
|
12737
|
-
* @summary Delete Orders
|
|
12738
|
-
* @param {number} id Order ID
|
|
12739
|
-
* @param {*} [options] Override http request option.
|
|
12740
|
-
* @throws {RequiredError}
|
|
12741
|
-
* @memberof OrdersApi
|
|
12742
|
-
*/
|
|
12743
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12744
|
-
/**
|
|
12745
|
-
* Get Editable Order
|
|
12746
11783
|
* @param {number} id Order ID
|
|
12747
11784
|
* @param {*} [options] Override http request option.
|
|
12748
11785
|
* @throws {RequiredError}
|
|
12749
11786
|
* @memberof OrdersApi
|
|
12750
11787
|
*/
|
|
12751
|
-
|
|
11788
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12752
11789
|
/**
|
|
12753
11790
|
* Get Orders
|
|
12754
11791
|
* @summary Get Orders
|
|
@@ -12764,48 +11801,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12764
11801
|
* @memberof OrdersApi
|
|
12765
11802
|
*/
|
|
12766
11803
|
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, {}>>;
|
|
12767
|
-
/**
|
|
12768
|
-
* Create An Order (Admin)
|
|
12769
|
-
* @summary Create An Order (Admin)
|
|
12770
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12771
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12772
|
-
* @param {*} [options] Override http request option.
|
|
12773
|
-
* @throws {RequiredError}
|
|
12774
|
-
* @memberof OrdersApi
|
|
12775
|
-
*/
|
|
12776
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12777
|
-
/**
|
|
12778
|
-
* Create An Order
|
|
12779
|
-
* @summary Create An Order
|
|
12780
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12781
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12782
|
-
* @param {*} [options] Override http request option.
|
|
12783
|
-
* @throws {RequiredError}
|
|
12784
|
-
* @memberof OrdersApi
|
|
12785
|
-
*/
|
|
12786
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12787
|
-
/**
|
|
12788
|
-
* Update An Order (Admin)
|
|
12789
|
-
* @summary Update An Order (Admin)
|
|
12790
|
-
* @param {number} id Order ID
|
|
12791
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12792
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12793
|
-
* @param {*} [options] Override http request option.
|
|
12794
|
-
* @throws {RequiredError}
|
|
12795
|
-
* @memberof OrdersApi
|
|
12796
|
-
*/
|
|
12797
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12798
|
-
/**
|
|
12799
|
-
* Update An Order
|
|
12800
|
-
* @summary Update An Order
|
|
12801
|
-
* @param {number} id Order ID
|
|
12802
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12803
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12804
|
-
* @param {*} [options] Override http request option.
|
|
12805
|
-
* @throws {RequiredError}
|
|
12806
|
-
* @memberof OrdersApi
|
|
12807
|
-
*/
|
|
12808
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12809
11804
|
}
|
|
12810
11805
|
/**
|
|
12811
11806
|
* @export
|
|
@@ -13061,6 +12056,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13061
12056
|
* @throws {RequiredError}
|
|
13062
12057
|
*/
|
|
13063
12058
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12059
|
+
/**
|
|
12060
|
+
* Get Customer Price Lists
|
|
12061
|
+
* @summary Get Customer Price Lists
|
|
12062
|
+
* @param {*} [options] Override http request option.
|
|
12063
|
+
* @throws {RequiredError}
|
|
12064
|
+
*/
|
|
12065
|
+
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13064
12066
|
/**
|
|
13065
12067
|
* Get Current Stock & Pricing
|
|
13066
12068
|
* @summary Get Current Stock & Pricing
|
|
@@ -13073,10 +12075,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13073
12075
|
/**
|
|
13074
12076
|
* Get Products
|
|
13075
12077
|
* @summary Get Products
|
|
12078
|
+
* @param {number} [pageSize] Number Of Results
|
|
12079
|
+
* @param {number} [page] Page Number
|
|
12080
|
+
* @param {string} [search] Search
|
|
13076
12081
|
* @param {*} [options] Override http request option.
|
|
13077
12082
|
* @throws {RequiredError}
|
|
13078
12083
|
*/
|
|
13079
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12084
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13080
12085
|
/**
|
|
13081
12086
|
* Get Current Stock & Pricing
|
|
13082
12087
|
* @summary Get Current Stock & Pricing
|
|
@@ -13091,35 +12096,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13091
12096
|
* @throws {RequiredError}
|
|
13092
12097
|
*/
|
|
13093
12098
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13094
|
-
/**
|
|
13095
|
-
* Search Products
|
|
13096
|
-
* @summary Search Products
|
|
13097
|
-
* @param {number} [pageSize] Number Of Results
|
|
13098
|
-
* @param {number} [page] Page Number
|
|
13099
|
-
* @param {string} [search] Search
|
|
13100
|
-
* @param {*} [options] Override http request option.
|
|
13101
|
-
* @throws {RequiredError}
|
|
13102
|
-
*/
|
|
13103
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13104
|
-
/**
|
|
13105
|
-
* Get Product
|
|
13106
|
-
* @summary Get Product
|
|
13107
|
-
* @param {string} sku Product SKU
|
|
13108
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13109
|
-
* @param {*} [options] Override http request option.
|
|
13110
|
-
* @throws {RequiredError}
|
|
13111
|
-
*/
|
|
13112
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13113
|
-
/**
|
|
13114
|
-
* Get Product For Customer
|
|
13115
|
-
* @summary Get Product For Customer
|
|
13116
|
-
* @param {number} customerId Customer ID
|
|
13117
|
-
* @param {string} sku Product SKU
|
|
13118
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13119
|
-
* @param {*} [options] Override http request option.
|
|
13120
|
-
* @throws {RequiredError}
|
|
13121
|
-
*/
|
|
13122
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13123
12099
|
};
|
|
13124
12100
|
/**
|
|
13125
12101
|
* ProductsApi - functional programming interface
|
|
@@ -13133,6 +12109,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13133
12109
|
* @throws {RequiredError}
|
|
13134
12110
|
*/
|
|
13135
12111
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12112
|
+
/**
|
|
12113
|
+
* Get Customer Price Lists
|
|
12114
|
+
* @summary Get Customer Price Lists
|
|
12115
|
+
* @param {*} [options] Override http request option.
|
|
12116
|
+
* @throws {RequiredError}
|
|
12117
|
+
*/
|
|
12118
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
13136
12119
|
/**
|
|
13137
12120
|
* Get Current Stock & Pricing
|
|
13138
12121
|
* @summary Get Current Stock & Pricing
|
|
@@ -13145,10 +12128,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13145
12128
|
/**
|
|
13146
12129
|
* Get Products
|
|
13147
12130
|
* @summary Get Products
|
|
12131
|
+
* @param {number} [pageSize] Number Of Results
|
|
12132
|
+
* @param {number} [page] Page Number
|
|
12133
|
+
* @param {string} [search] Search
|
|
13148
12134
|
* @param {*} [options] Override http request option.
|
|
13149
12135
|
* @throws {RequiredError}
|
|
13150
12136
|
*/
|
|
13151
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12137
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13152
12138
|
/**
|
|
13153
12139
|
* Get Current Stock & Pricing
|
|
13154
12140
|
* @summary Get Current Stock & Pricing
|
|
@@ -13163,35 +12149,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13163
12149
|
* @throws {RequiredError}
|
|
13164
12150
|
*/
|
|
13165
12151
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13166
|
-
/**
|
|
13167
|
-
* Search Products
|
|
13168
|
-
* @summary Search Products
|
|
13169
|
-
* @param {number} [pageSize] Number Of Results
|
|
13170
|
-
* @param {number} [page] Page Number
|
|
13171
|
-
* @param {string} [search] Search
|
|
13172
|
-
* @param {*} [options] Override http request option.
|
|
13173
|
-
* @throws {RequiredError}
|
|
13174
|
-
*/
|
|
13175
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13176
|
-
/**
|
|
13177
|
-
* Get Product
|
|
13178
|
-
* @summary Get Product
|
|
13179
|
-
* @param {string} sku Product SKU
|
|
13180
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13181
|
-
* @param {*} [options] Override http request option.
|
|
13182
|
-
* @throws {RequiredError}
|
|
13183
|
-
*/
|
|
13184
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13185
|
-
/**
|
|
13186
|
-
* Get Product For Customer
|
|
13187
|
-
* @summary Get Product For Customer
|
|
13188
|
-
* @param {number} customerId Customer ID
|
|
13189
|
-
* @param {string} sku Product SKU
|
|
13190
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13191
|
-
* @param {*} [options] Override http request option.
|
|
13192
|
-
* @throws {RequiredError}
|
|
13193
|
-
*/
|
|
13194
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13195
12152
|
};
|
|
13196
12153
|
/**
|
|
13197
12154
|
* ProductsApi - factory interface
|
|
@@ -13205,6 +12162,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13205
12162
|
* @throws {RequiredError}
|
|
13206
12163
|
*/
|
|
13207
12164
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12165
|
+
/**
|
|
12166
|
+
* Get Customer Price Lists
|
|
12167
|
+
* @summary Get Customer Price Lists
|
|
12168
|
+
* @param {*} [options] Override http request option.
|
|
12169
|
+
* @throws {RequiredError}
|
|
12170
|
+
*/
|
|
12171
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
13208
12172
|
/**
|
|
13209
12173
|
* Get Current Stock & Pricing
|
|
13210
12174
|
* @summary Get Current Stock & Pricing
|
|
@@ -13217,10 +12181,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13217
12181
|
/**
|
|
13218
12182
|
* Get Products
|
|
13219
12183
|
* @summary Get Products
|
|
12184
|
+
* @param {number} [pageSize] Number Of Results
|
|
12185
|
+
* @param {number} [page] Page Number
|
|
12186
|
+
* @param {string} [search] Search
|
|
13220
12187
|
* @param {*} [options] Override http request option.
|
|
13221
12188
|
* @throws {RequiredError}
|
|
13222
12189
|
*/
|
|
13223
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12190
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13224
12191
|
/**
|
|
13225
12192
|
* Get Current Stock & Pricing
|
|
13226
12193
|
* @summary Get Current Stock & Pricing
|
|
@@ -13235,35 +12202,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13235
12202
|
* @throws {RequiredError}
|
|
13236
12203
|
*/
|
|
13237
12204
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13238
|
-
/**
|
|
13239
|
-
* Search Products
|
|
13240
|
-
* @summary Search Products
|
|
13241
|
-
* @param {number} [pageSize] Number Of Results
|
|
13242
|
-
* @param {number} [page] Page Number
|
|
13243
|
-
* @param {string} [search] Search
|
|
13244
|
-
* @param {*} [options] Override http request option.
|
|
13245
|
-
* @throws {RequiredError}
|
|
13246
|
-
*/
|
|
13247
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13248
|
-
/**
|
|
13249
|
-
* Get Product
|
|
13250
|
-
* @summary Get Product
|
|
13251
|
-
* @param {string} sku Product SKU
|
|
13252
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13253
|
-
* @param {*} [options] Override http request option.
|
|
13254
|
-
* @throws {RequiredError}
|
|
13255
|
-
*/
|
|
13256
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13257
|
-
/**
|
|
13258
|
-
* Get Product For Customer
|
|
13259
|
-
* @summary Get Product For Customer
|
|
13260
|
-
* @param {number} customerId Customer ID
|
|
13261
|
-
* @param {string} sku Product SKU
|
|
13262
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13263
|
-
* @param {*} [options] Override http request option.
|
|
13264
|
-
* @throws {RequiredError}
|
|
13265
|
-
*/
|
|
13266
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13267
12205
|
};
|
|
13268
12206
|
/**
|
|
13269
12207
|
* ProductsApi - object-oriented interface
|
|
@@ -13280,6 +12218,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13280
12218
|
* @memberof ProductsApi
|
|
13281
12219
|
*/
|
|
13282
12220
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12221
|
+
/**
|
|
12222
|
+
* Get Customer Price Lists
|
|
12223
|
+
* @summary Get Customer Price Lists
|
|
12224
|
+
* @param {*} [options] Override http request option.
|
|
12225
|
+
* @throws {RequiredError}
|
|
12226
|
+
* @memberof ProductsApi
|
|
12227
|
+
*/
|
|
12228
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
13283
12229
|
/**
|
|
13284
12230
|
* Get Current Stock & Pricing
|
|
13285
12231
|
* @summary Get Current Stock & Pricing
|
|
@@ -13293,11 +12239,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13293
12239
|
/**
|
|
13294
12240
|
* Get Products
|
|
13295
12241
|
* @summary Get Products
|
|
12242
|
+
* @param {number} [pageSize] Number Of Results
|
|
12243
|
+
* @param {number} [page] Page Number
|
|
12244
|
+
* @param {string} [search] Search
|
|
13296
12245
|
* @param {*} [options] Override http request option.
|
|
13297
12246
|
* @throws {RequiredError}
|
|
13298
12247
|
* @memberof ProductsApi
|
|
13299
12248
|
*/
|
|
13300
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12249
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13301
12250
|
/**
|
|
13302
12251
|
* Get Current Stock & Pricing
|
|
13303
12252
|
* @summary Get Current Stock & Pricing
|
|
@@ -13314,38 +12263,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13314
12263
|
* @memberof ProductsApi
|
|
13315
12264
|
*/
|
|
13316
12265
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13317
|
-
/**
|
|
13318
|
-
* Search Products
|
|
13319
|
-
* @summary Search Products
|
|
13320
|
-
* @param {number} [pageSize] Number Of Results
|
|
13321
|
-
* @param {number} [page] Page Number
|
|
13322
|
-
* @param {string} [search] Search
|
|
13323
|
-
* @param {*} [options] Override http request option.
|
|
13324
|
-
* @throws {RequiredError}
|
|
13325
|
-
* @memberof ProductsApi
|
|
13326
|
-
*/
|
|
13327
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13328
|
-
/**
|
|
13329
|
-
* Get Product
|
|
13330
|
-
* @summary Get Product
|
|
13331
|
-
* @param {string} sku Product SKU
|
|
13332
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13333
|
-
* @param {*} [options] Override http request option.
|
|
13334
|
-
* @throws {RequiredError}
|
|
13335
|
-
* @memberof ProductsApi
|
|
13336
|
-
*/
|
|
13337
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13338
|
-
/**
|
|
13339
|
-
* Get Product For Customer
|
|
13340
|
-
* @summary Get Product For Customer
|
|
13341
|
-
* @param {number} customerId Customer ID
|
|
13342
|
-
* @param {string} sku Product SKU
|
|
13343
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13344
|
-
* @param {*} [options] Override http request option.
|
|
13345
|
-
* @throws {RequiredError}
|
|
13346
|
-
* @memberof ProductsApi
|
|
13347
|
-
*/
|
|
13348
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13349
12266
|
}
|
|
13350
12267
|
/**
|
|
13351
12268
|
* @export
|
|
@@ -13466,7 +12383,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13466
12383
|
* @param {*} [options] Override http request option.
|
|
13467
12384
|
* @throws {RequiredError}
|
|
13468
12385
|
*/
|
|
13469
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12386
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13470
12387
|
/**
|
|
13471
12388
|
* Create a Fanvil provisioning group
|
|
13472
12389
|
* @summary Add group to DB and FDPS
|
|
@@ -13474,7 +12391,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13474
12391
|
* @param {*} [options] Override http request option.
|
|
13475
12392
|
* @throws {RequiredError}
|
|
13476
12393
|
*/
|
|
13477
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12394
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13478
12395
|
/**
|
|
13479
12396
|
* Add MAC address to DB and FDPS group
|
|
13480
12397
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13531,7 +12448,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13531
12448
|
* @param {*} [options] Override http request option.
|
|
13532
12449
|
* @throws {RequiredError}
|
|
13533
12450
|
*/
|
|
13534
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12451
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13535
12452
|
/**
|
|
13536
12453
|
* Create a Fanvil provisioning group
|
|
13537
12454
|
* @summary Add group to DB and FDPS
|
|
@@ -13539,7 +12456,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13539
12456
|
* @param {*} [options] Override http request option.
|
|
13540
12457
|
* @throws {RequiredError}
|
|
13541
12458
|
*/
|
|
13542
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12459
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13543
12460
|
/**
|
|
13544
12461
|
* Add MAC address to DB and FDPS group
|
|
13545
12462
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13603,7 +12520,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13603
12520
|
* @throws {RequiredError}
|
|
13604
12521
|
* @memberof ProvisioningApi
|
|
13605
12522
|
*/
|
|
13606
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12523
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13607
12524
|
/**
|
|
13608
12525
|
* Create a Fanvil provisioning group
|
|
13609
12526
|
* @summary Add group to DB and FDPS
|
|
@@ -13612,7 +12529,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13612
12529
|
* @throws {RequiredError}
|
|
13613
12530
|
* @memberof ProvisioningApi
|
|
13614
12531
|
*/
|
|
13615
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12532
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13616
12533
|
/**
|
|
13617
12534
|
* Add MAC address to DB and FDPS group
|
|
13618
12535
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14487,65 +13404,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14487
13404
|
*/
|
|
14488
13405
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14489
13406
|
}
|
|
14490
|
-
/**
|
|
14491
|
-
* ShippingApi - axios parameter creator
|
|
14492
|
-
* @export
|
|
14493
|
-
*/
|
|
14494
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14495
|
-
/**
|
|
14496
|
-
* Get Shipping Services
|
|
14497
|
-
* @summary Get Shipping Services
|
|
14498
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14499
|
-
* @param {*} [options] Override http request option.
|
|
14500
|
-
* @throws {RequiredError}
|
|
14501
|
-
*/
|
|
14502
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14503
|
-
};
|
|
14504
|
-
/**
|
|
14505
|
-
* ShippingApi - functional programming interface
|
|
14506
|
-
* @export
|
|
14507
|
-
*/
|
|
14508
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14509
|
-
/**
|
|
14510
|
-
* Get Shipping Services
|
|
14511
|
-
* @summary Get Shipping Services
|
|
14512
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14513
|
-
* @param {*} [options] Override http request option.
|
|
14514
|
-
* @throws {RequiredError}
|
|
14515
|
-
*/
|
|
14516
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14517
|
-
};
|
|
14518
|
-
/**
|
|
14519
|
-
* ShippingApi - factory interface
|
|
14520
|
-
* @export
|
|
14521
|
-
*/
|
|
14522
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14523
|
-
/**
|
|
14524
|
-
* Get Shipping Services
|
|
14525
|
-
* @summary Get Shipping Services
|
|
14526
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14527
|
-
* @param {*} [options] Override http request option.
|
|
14528
|
-
* @throws {RequiredError}
|
|
14529
|
-
*/
|
|
14530
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14531
|
-
};
|
|
14532
|
-
/**
|
|
14533
|
-
* ShippingApi - object-oriented interface
|
|
14534
|
-
* @export
|
|
14535
|
-
* @class ShippingApi
|
|
14536
|
-
* @extends {BaseAPI}
|
|
14537
|
-
*/
|
|
14538
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14539
|
-
/**
|
|
14540
|
-
* Get Shipping Services
|
|
14541
|
-
* @summary Get Shipping Services
|
|
14542
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14543
|
-
* @param {*} [options] Override http request option.
|
|
14544
|
-
* @throws {RequiredError}
|
|
14545
|
-
* @memberof ShippingApi
|
|
14546
|
-
*/
|
|
14547
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14548
|
-
}
|
|
14549
13407
|
/**
|
|
14550
13408
|
* StockManagementApi - axios parameter creator
|
|
14551
13409
|
* @export
|
|
@@ -14875,7 +13733,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14875
13733
|
* @param {*} [options] Override http request option.
|
|
14876
13734
|
* @throws {RequiredError}
|
|
14877
13735
|
*/
|
|
14878
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13736
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
14879
13737
|
/**
|
|
14880
13738
|
* Get Stock Order Supplier Invoice
|
|
14881
13739
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15090,7 +13948,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15090
13948
|
* @param {*} [options] Override http request option.
|
|
15091
13949
|
* @throws {RequiredError}
|
|
15092
13950
|
*/
|
|
15093
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13951
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15094
13952
|
/**
|
|
15095
13953
|
* Get Stock Order Supplier Invoice
|
|
15096
13954
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15320,7 +14178,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15320
14178
|
* @throws {RequiredError}
|
|
15321
14179
|
* @memberof StockManagementApi
|
|
15322
14180
|
*/
|
|
15323
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14181
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15324
14182
|
/**
|
|
15325
14183
|
* Get Stock Order Supplier Invoice
|
|
15326
14184
|
* @summary Get Stock Order Supplier Invoice
|