yellowgrid-api-ts 3.1.4-dev.0 → 3.1.4
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/.openapi-generator/VERSION +1 -1
- package/README.md +7 -33
- package/api.ts +254 -1792
- package/base.ts +1 -1
- package/common.ts +5 -5
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +150 -1310
- 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/AddressModel.md +0 -2
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -12
- package/docs/ItemEntity.md +0 -2
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -301
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/openapitools.json +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -39
- package/docs/AdminItemRequestDTO.md +0 -39
- 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 -35
- 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
|
|
@@ -609,12 +493,6 @@ export interface AddressModel {
|
|
|
609
493
|
* @memberof AddressModel
|
|
610
494
|
*/
|
|
611
495
|
'company'?: string;
|
|
612
|
-
/**
|
|
613
|
-
* Default
|
|
614
|
-
* @type {boolean}
|
|
615
|
-
* @memberof AddressModel
|
|
616
|
-
*/
|
|
617
|
-
'default'?: boolean;
|
|
618
496
|
}
|
|
619
497
|
/**
|
|
620
498
|
* Address Request
|
|
@@ -647,203 +525,6 @@ export interface AddressRequestModel {
|
|
|
647
525
|
*/
|
|
648
526
|
'addressPostcode'?: string;
|
|
649
527
|
}
|
|
650
|
-
/**
|
|
651
|
-
* Admin Order Item Request
|
|
652
|
-
* @export
|
|
653
|
-
* @interface AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
export interface AdminItemRequestDTO {
|
|
656
|
-
/**
|
|
657
|
-
* SKU
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'sku'?: string;
|
|
662
|
-
/**
|
|
663
|
-
* Quantity
|
|
664
|
-
* @type {number}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'quantity'?: number;
|
|
668
|
-
/**
|
|
669
|
-
* ID
|
|
670
|
-
* @type {number}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'id'?: number | null;
|
|
674
|
-
/**
|
|
675
|
-
* 3CX Licence Key
|
|
676
|
-
* @type {string}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'licenceKey'?: string | null;
|
|
680
|
-
/**
|
|
681
|
-
* 3CX Hosting
|
|
682
|
-
* @type {boolean}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'hosting'?: boolean | null;
|
|
686
|
-
/**
|
|
687
|
-
* Date Time
|
|
688
|
-
* @type {string}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'processDate'?: string;
|
|
692
|
-
/**
|
|
693
|
-
* 3CX Sales Code
|
|
694
|
-
* @type {string}
|
|
695
|
-
* @memberof AdminItemRequestDTO
|
|
696
|
-
*/
|
|
697
|
-
'tcxSalesCode'?: string | null;
|
|
698
|
-
/**
|
|
699
|
-
* SBCS
|
|
700
|
-
* @type {Array<TcxSbcDTO>}
|
|
701
|
-
* @memberof AdminItemRequestDTO
|
|
702
|
-
*/
|
|
703
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
704
|
-
/**
|
|
705
|
-
* Title
|
|
706
|
-
* @type {string}
|
|
707
|
-
* @memberof AdminItemRequestDTO
|
|
708
|
-
*/
|
|
709
|
-
'title'?: string | null;
|
|
710
|
-
/**
|
|
711
|
-
* Price (£)
|
|
712
|
-
* @type {number}
|
|
713
|
-
* @memberof AdminItemRequestDTO
|
|
714
|
-
*/
|
|
715
|
-
'itemPrice'?: number | null;
|
|
716
|
-
}
|
|
717
|
-
/**
|
|
718
|
-
* Admin Order Request
|
|
719
|
-
* @export
|
|
720
|
-
* @interface AdminOrderRequestDTO
|
|
721
|
-
*/
|
|
722
|
-
export interface AdminOrderRequestDTO {
|
|
723
|
-
/**
|
|
724
|
-
* Order Reference
|
|
725
|
-
* @type {string}
|
|
726
|
-
* @memberof AdminOrderRequestDTO
|
|
727
|
-
*/
|
|
728
|
-
'orderReference'?: string | null;
|
|
729
|
-
/**
|
|
730
|
-
* Items
|
|
731
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
732
|
-
* @memberof AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {ShippingServiceDTO}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'shippingService'?: ShippingServiceDTO;
|
|
741
|
-
/**
|
|
742
|
-
* Provisioning URL
|
|
743
|
-
* @type {string}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'provisioningUrl'?: string | null;
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {AddressModel}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'shippingAddress'?: AddressModel;
|
|
753
|
-
/**
|
|
754
|
-
* Part Ship Order
|
|
755
|
-
* @type {boolean}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'partShip'?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* Quote
|
|
761
|
-
* @type {boolean}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'quote'?: boolean;
|
|
765
|
-
/**
|
|
766
|
-
* Customer ID
|
|
767
|
-
* @type {number}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'customerId'?: number;
|
|
771
|
-
/**
|
|
772
|
-
* Contact
|
|
773
|
-
* @type {string}
|
|
774
|
-
* @memberof AdminOrderRequestDTO
|
|
775
|
-
*/
|
|
776
|
-
'contact'?: string;
|
|
777
|
-
/**
|
|
778
|
-
* Ignore Customer On Hold
|
|
779
|
-
* @type {boolean}
|
|
780
|
-
* @memberof AdminOrderRequestDTO
|
|
781
|
-
*/
|
|
782
|
-
'ignoreOnHold'?: boolean;
|
|
783
|
-
/**
|
|
784
|
-
* Ignore Customer Credit Limit
|
|
785
|
-
* @type {boolean}
|
|
786
|
-
* @memberof AdminOrderRequestDTO
|
|
787
|
-
*/
|
|
788
|
-
'ignoreCreditLimit'?: boolean;
|
|
789
|
-
/**
|
|
790
|
-
* Include NFR Promos
|
|
791
|
-
* @type {boolean}
|
|
792
|
-
* @memberof AdminOrderRequestDTO
|
|
793
|
-
*/
|
|
794
|
-
'includeNfrPromos'?: boolean;
|
|
795
|
-
/**
|
|
796
|
-
* Carriage Charge
|
|
797
|
-
* @type {number}
|
|
798
|
-
* @memberof AdminOrderRequestDTO
|
|
799
|
-
*/
|
|
800
|
-
'carriageCharge'?: number;
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
* Admin User
|
|
804
|
-
* @export
|
|
805
|
-
* @interface AdminUserModel
|
|
806
|
-
*/
|
|
807
|
-
export interface AdminUserModel {
|
|
808
|
-
/**
|
|
809
|
-
* First Name
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof AdminUserModel
|
|
812
|
-
*/
|
|
813
|
-
'firstName'?: string;
|
|
814
|
-
/**
|
|
815
|
-
* Last Name
|
|
816
|
-
* @type {string}
|
|
817
|
-
* @memberof AdminUserModel
|
|
818
|
-
*/
|
|
819
|
-
'lastName'?: string;
|
|
820
|
-
/**
|
|
821
|
-
* Avatar
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof AdminUserModel
|
|
824
|
-
*/
|
|
825
|
-
'avatar'?: string | null;
|
|
826
|
-
/**
|
|
827
|
-
* Role
|
|
828
|
-
* @type {number}
|
|
829
|
-
* @memberof AdminUserModel
|
|
830
|
-
*/
|
|
831
|
-
'role'?: AdminUserModelRoleEnum;
|
|
832
|
-
/**
|
|
833
|
-
* Email
|
|
834
|
-
* @type {string}
|
|
835
|
-
* @memberof AdminUserModel
|
|
836
|
-
*/
|
|
837
|
-
'email'?: string | null;
|
|
838
|
-
}
|
|
839
|
-
export declare const AdminUserModelRoleEnum: {
|
|
840
|
-
readonly NUMBER_0: 0;
|
|
841
|
-
readonly NUMBER_1: 1;
|
|
842
|
-
readonly NUMBER_2: 2;
|
|
843
|
-
readonly NUMBER_3: 3;
|
|
844
|
-
readonly NUMBER_4: 4;
|
|
845
|
-
};
|
|
846
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
847
528
|
/**
|
|
848
529
|
* Agent Hours Graph
|
|
849
530
|
* @export
|
|
@@ -1073,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1073
754
|
*/
|
|
1074
755
|
'redirect_uri'?: string | null;
|
|
1075
756
|
}
|
|
1076
|
-
/**
|
|
1077
|
-
* Basic Order Item
|
|
1078
|
-
* @export
|
|
1079
|
-
* @interface BasicItemDTO
|
|
1080
|
-
*/
|
|
1081
|
-
export interface BasicItemDTO {
|
|
1082
|
-
/**
|
|
1083
|
-
* SKU
|
|
1084
|
-
* @type {string}
|
|
1085
|
-
* @memberof BasicItemDTO
|
|
1086
|
-
*/
|
|
1087
|
-
'sku'?: string;
|
|
1088
|
-
/**
|
|
1089
|
-
* Quantity
|
|
1090
|
-
* @type {number}
|
|
1091
|
-
* @memberof BasicItemDTO
|
|
1092
|
-
*/
|
|
1093
|
-
'quantity'?: number;
|
|
1094
|
-
}
|
|
1095
|
-
/**
|
|
1096
|
-
* Basic Product
|
|
1097
|
-
* @export
|
|
1098
|
-
* @interface BasicProductDTO
|
|
1099
|
-
*/
|
|
1100
|
-
export interface BasicProductDTO {
|
|
1101
|
-
/**
|
|
1102
|
-
* SKU
|
|
1103
|
-
* @type {string}
|
|
1104
|
-
* @memberof BasicProductDTO
|
|
1105
|
-
*/
|
|
1106
|
-
'sku'?: string;
|
|
1107
|
-
/**
|
|
1108
|
-
* Title
|
|
1109
|
-
* @type {string}
|
|
1110
|
-
* @memberof BasicProductDTO
|
|
1111
|
-
*/
|
|
1112
|
-
'title'?: string;
|
|
1113
|
-
}
|
|
1114
757
|
/**
|
|
1115
758
|
* BatchesEntity
|
|
1116
759
|
* @export
|
|
@@ -1305,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1305
948
|
* @memberof ClientDetailsModel
|
|
1306
949
|
*/
|
|
1307
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1308
957
|
}
|
|
1309
958
|
/**
|
|
1310
959
|
* OAuth client details
|
|
@@ -1466,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1466
1115
|
*/
|
|
1467
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1468
1117
|
}
|
|
1469
|
-
/**
|
|
1470
|
-
* CourierPricesEntity
|
|
1471
|
-
* @export
|
|
1472
|
-
* @interface CourierPriceEntity
|
|
1473
|
-
*/
|
|
1474
|
-
export interface CourierPriceEntity {
|
|
1475
|
-
/**
|
|
1476
|
-
* id
|
|
1477
|
-
* @type {number}
|
|
1478
|
-
* @memberof CourierPriceEntity
|
|
1479
|
-
*/
|
|
1480
|
-
'id'?: number;
|
|
1481
|
-
/**
|
|
1482
|
-
* courier
|
|
1483
|
-
* @type {string}
|
|
1484
|
-
* @memberof CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
'courier'?: string;
|
|
1487
|
-
/**
|
|
1488
|
-
* destinationIso
|
|
1489
|
-
* @type {string}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'destinationIso'?: string;
|
|
1493
|
-
/**
|
|
1494
|
-
* serviceDescription
|
|
1495
|
-
* @type {string}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'serviceDescription'?: string;
|
|
1499
|
-
/**
|
|
1500
|
-
* flatRate
|
|
1501
|
-
* @type {number}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'flatRate'?: number;
|
|
1505
|
-
/**
|
|
1506
|
-
* initialBox
|
|
1507
|
-
* @type {number}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'initialBox'?: number;
|
|
1511
|
-
/**
|
|
1512
|
-
* initialKg
|
|
1513
|
-
* @type {number}
|
|
1514
|
-
* @memberof CourierPriceEntity
|
|
1515
|
-
*/
|
|
1516
|
-
'initialKg'?: number;
|
|
1517
|
-
/**
|
|
1518
|
-
* perBox
|
|
1519
|
-
* @type {number}
|
|
1520
|
-
* @memberof CourierPriceEntity
|
|
1521
|
-
*/
|
|
1522
|
-
'perBox'?: number;
|
|
1523
|
-
/**
|
|
1524
|
-
* perKg
|
|
1525
|
-
* @type {number}
|
|
1526
|
-
* @memberof CourierPriceEntity
|
|
1527
|
-
*/
|
|
1528
|
-
'perKg'?: number;
|
|
1529
|
-
/**
|
|
1530
|
-
* maxKg
|
|
1531
|
-
* @type {number}
|
|
1532
|
-
* @memberof CourierPriceEntity
|
|
1533
|
-
*/
|
|
1534
|
-
'maxKg'?: number;
|
|
1535
|
-
}
|
|
1536
1118
|
/**
|
|
1537
1119
|
* Credit Account
|
|
1538
1120
|
* @export
|
|
@@ -1715,110 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1715
1297
|
*/
|
|
1716
1298
|
'contactLastName'?: string;
|
|
1717
1299
|
}
|
|
1718
|
-
/**
|
|
1719
|
-
* Order Item Request
|
|
1720
|
-
* @export
|
|
1721
|
-
* @interface CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
export interface CustomerItemRequestDTO {
|
|
1724
|
-
/**
|
|
1725
|
-
* SKU
|
|
1726
|
-
* @type {string}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'sku'?: string;
|
|
1730
|
-
/**
|
|
1731
|
-
* Quantity
|
|
1732
|
-
* @type {number}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'quantity'?: number;
|
|
1736
|
-
/**
|
|
1737
|
-
* ID
|
|
1738
|
-
* @type {number}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'id'?: number | null;
|
|
1742
|
-
/**
|
|
1743
|
-
* 3CX Licence Key
|
|
1744
|
-
* @type {string}
|
|
1745
|
-
* @memberof CustomerItemRequestDTO
|
|
1746
|
-
*/
|
|
1747
|
-
'licenceKey'?: string | null;
|
|
1748
|
-
/**
|
|
1749
|
-
* 3CX Hosting
|
|
1750
|
-
* @type {boolean}
|
|
1751
|
-
* @memberof CustomerItemRequestDTO
|
|
1752
|
-
*/
|
|
1753
|
-
'hosting'?: boolean | null;
|
|
1754
|
-
/**
|
|
1755
|
-
* Date Time
|
|
1756
|
-
* @type {string}
|
|
1757
|
-
* @memberof CustomerItemRequestDTO
|
|
1758
|
-
*/
|
|
1759
|
-
'processDate'?: string;
|
|
1760
|
-
/**
|
|
1761
|
-
* 3CX Sales Code
|
|
1762
|
-
* @type {string}
|
|
1763
|
-
* @memberof CustomerItemRequestDTO
|
|
1764
|
-
*/
|
|
1765
|
-
'tcxSalesCode'?: string | null;
|
|
1766
|
-
/**
|
|
1767
|
-
* SBCS
|
|
1768
|
-
* @type {Array<TcxSbcDTO>}
|
|
1769
|
-
* @memberof CustomerItemRequestDTO
|
|
1770
|
-
*/
|
|
1771
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1772
|
-
}
|
|
1773
|
-
/**
|
|
1774
|
-
* Order Request
|
|
1775
|
-
* @export
|
|
1776
|
-
* @interface CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
export interface CustomerOrderRequestDTO {
|
|
1779
|
-
/**
|
|
1780
|
-
* Order Reference
|
|
1781
|
-
* @type {string}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'orderReference'?: string | null;
|
|
1785
|
-
/**
|
|
1786
|
-
* Items
|
|
1787
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1791
|
-
/**
|
|
1792
|
-
*
|
|
1793
|
-
* @type {ShippingServiceDTO}
|
|
1794
|
-
* @memberof CustomerOrderRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1797
|
-
/**
|
|
1798
|
-
* Provisioning URL
|
|
1799
|
-
* @type {string}
|
|
1800
|
-
* @memberof CustomerOrderRequestDTO
|
|
1801
|
-
*/
|
|
1802
|
-
'provisioningUrl'?: string | null;
|
|
1803
|
-
/**
|
|
1804
|
-
*
|
|
1805
|
-
* @type {AddressModel}
|
|
1806
|
-
* @memberof CustomerOrderRequestDTO
|
|
1807
|
-
*/
|
|
1808
|
-
'shippingAddress'?: AddressModel;
|
|
1809
|
-
/**
|
|
1810
|
-
* Part Ship Order
|
|
1811
|
-
* @type {boolean}
|
|
1812
|
-
* @memberof CustomerOrderRequestDTO
|
|
1813
|
-
*/
|
|
1814
|
-
'partShip'?: boolean;
|
|
1815
|
-
/**
|
|
1816
|
-
* Quote
|
|
1817
|
-
* @type {boolean}
|
|
1818
|
-
* @memberof CustomerOrderRequestDTO
|
|
1819
|
-
*/
|
|
1820
|
-
'quote'?: boolean;
|
|
1821
|
-
}
|
|
1822
1300
|
/**
|
|
1823
1301
|
* Customer Price List
|
|
1824
1302
|
* @export
|
|
@@ -2325,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2325
1803
|
*/
|
|
2326
1804
|
'type'?: string;
|
|
2327
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
|
+
}
|
|
2328
1819
|
/**
|
|
2329
1820
|
*
|
|
2330
1821
|
* @export
|
|
@@ -2919,36 +2410,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2919
2410
|
* @interface ItemDTO
|
|
2920
2411
|
*/
|
|
2921
2412
|
export interface ItemDTO {
|
|
2922
|
-
/**
|
|
2923
|
-
* SKU
|
|
2924
|
-
* @type {string}
|
|
2925
|
-
* @memberof ItemDTO
|
|
2926
|
-
*/
|
|
2927
|
-
'sku'?: string;
|
|
2928
|
-
/**
|
|
2929
|
-
* Quantity
|
|
2930
|
-
* @type {number}
|
|
2931
|
-
* @memberof ItemDTO
|
|
2932
|
-
*/
|
|
2933
|
-
'quantity'?: number;
|
|
2934
2413
|
/**
|
|
2935
2414
|
* ID
|
|
2936
2415
|
* @type {number}
|
|
2937
2416
|
* @memberof ItemDTO
|
|
2938
2417
|
*/
|
|
2939
|
-
'id'?: number
|
|
2418
|
+
'id'?: number;
|
|
2940
2419
|
/**
|
|
2941
2420
|
* Order ID
|
|
2942
2421
|
* @type {number}
|
|
2943
2422
|
* @memberof ItemDTO
|
|
2944
2423
|
*/
|
|
2945
|
-
'orderId'?: number
|
|
2424
|
+
'orderId'?: number;
|
|
2946
2425
|
/**
|
|
2947
2426
|
* Title
|
|
2948
2427
|
* @type {string}
|
|
2949
2428
|
* @memberof ItemDTO
|
|
2950
2429
|
*/
|
|
2951
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;
|
|
2952
2443
|
/**
|
|
2953
2444
|
* Price
|
|
2954
2445
|
* @type {number}
|
|
@@ -2973,12 +2464,6 @@ export interface ItemDTO {
|
|
|
2973
2464
|
* @memberof ItemDTO
|
|
2974
2465
|
*/
|
|
2975
2466
|
'processDate'?: string;
|
|
2976
|
-
/**
|
|
2977
|
-
* 3CX Hosting
|
|
2978
|
-
* @type {boolean}
|
|
2979
|
-
* @memberof ItemDTO
|
|
2980
|
-
*/
|
|
2981
|
-
'hosting'?: boolean | null;
|
|
2982
2467
|
/**
|
|
2983
2468
|
* Promo Item
|
|
2984
2469
|
* @type {boolean}
|
|
@@ -2990,25 +2475,7 @@ export interface ItemDTO {
|
|
|
2990
2475
|
* @type {number}
|
|
2991
2476
|
* @memberof ItemDTO
|
|
2992
2477
|
*/
|
|
2993
|
-
'refunded'?: number
|
|
2994
|
-
/**
|
|
2995
|
-
* SBCs
|
|
2996
|
-
* @type {Array<TcxSbcDTO>}
|
|
2997
|
-
* @memberof ItemDTO
|
|
2998
|
-
*/
|
|
2999
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3000
|
-
/**
|
|
3001
|
-
* Readonly
|
|
3002
|
-
* @type {boolean}
|
|
3003
|
-
* @memberof ItemDTO
|
|
3004
|
-
*/
|
|
3005
|
-
'readonly'?: boolean;
|
|
3006
|
-
/**
|
|
3007
|
-
* 3CX Sales Code
|
|
3008
|
-
* @type {string}
|
|
3009
|
-
* @memberof ItemDTO
|
|
3010
|
-
*/
|
|
3011
|
-
'tcxSalesCode'?: string | null;
|
|
2478
|
+
'refunded'?: number;
|
|
3012
2479
|
}
|
|
3013
2480
|
/**
|
|
3014
2481
|
* ItemsEntity
|
|
@@ -3142,31 +2609,6 @@ export interface ItemEntity {
|
|
|
3142
2609
|
* @memberof ItemEntity
|
|
3143
2610
|
*/
|
|
3144
2611
|
'promoItem'?: number;
|
|
3145
|
-
/**
|
|
3146
|
-
* 3CX Sales Code
|
|
3147
|
-
* @type {string}
|
|
3148
|
-
* @memberof ItemEntity
|
|
3149
|
-
*/
|
|
3150
|
-
'tcxSalesCode'?: string | null;
|
|
3151
|
-
}
|
|
3152
|
-
/**
|
|
3153
|
-
* LinkedOrdersEntity
|
|
3154
|
-
* @export
|
|
3155
|
-
* @interface LinkedOrderEntity
|
|
3156
|
-
*/
|
|
3157
|
-
export interface LinkedOrderEntity {
|
|
3158
|
-
/**
|
|
3159
|
-
* orderId
|
|
3160
|
-
* @type {number}
|
|
3161
|
-
* @memberof LinkedOrderEntity
|
|
3162
|
-
*/
|
|
3163
|
-
'orderId'?: number;
|
|
3164
|
-
/**
|
|
3165
|
-
* linkedOrderId
|
|
3166
|
-
* @type {number}
|
|
3167
|
-
* @memberof LinkedOrderEntity
|
|
3168
|
-
*/
|
|
3169
|
-
'linkedOrderId'?: number;
|
|
3170
2612
|
}
|
|
3171
2613
|
/**
|
|
3172
2614
|
* MFA Required
|
|
@@ -3820,19 +3262,13 @@ export interface OrderSummaryDTO {
|
|
|
3820
3262
|
* @type {string}
|
|
3821
3263
|
* @memberof OrderSummaryDTO
|
|
3822
3264
|
*/
|
|
3823
|
-
'reference'?: string
|
|
3265
|
+
'reference'?: string;
|
|
3824
3266
|
/**
|
|
3825
3267
|
* Invoice Number
|
|
3826
3268
|
* @type {string}
|
|
3827
3269
|
* @memberof OrderSummaryDTO
|
|
3828
3270
|
*/
|
|
3829
3271
|
'invoiceNumber'?: string;
|
|
3830
|
-
/**
|
|
3831
|
-
* Invoice ID
|
|
3832
|
-
* @type {string}
|
|
3833
|
-
* @memberof OrderSummaryDTO
|
|
3834
|
-
*/
|
|
3835
|
-
'invoiceId'?: string | null;
|
|
3836
3272
|
/**
|
|
3837
3273
|
* Date Time
|
|
3838
3274
|
* @type {string}
|
|
@@ -3887,24 +3323,6 @@ export interface OrderSummaryDTO {
|
|
|
3887
3323
|
* @memberof OrderSummaryDTO
|
|
3888
3324
|
*/
|
|
3889
3325
|
'fulfillable'?: boolean | null;
|
|
3890
|
-
/**
|
|
3891
|
-
* Provisioning URL
|
|
3892
|
-
* @type {string}
|
|
3893
|
-
* @memberof OrderSummaryDTO
|
|
3894
|
-
*/
|
|
3895
|
-
'provisioningUrl'?: string | null;
|
|
3896
|
-
/**
|
|
3897
|
-
*
|
|
3898
|
-
* @type {ShippingServiceDTO}
|
|
3899
|
-
* @memberof OrderSummaryDTO
|
|
3900
|
-
*/
|
|
3901
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
3902
|
-
/**
|
|
3903
|
-
* Readonly
|
|
3904
|
-
* @type {boolean}
|
|
3905
|
-
* @memberof OrderSummaryDTO
|
|
3906
|
-
*/
|
|
3907
|
-
'readonly'?: boolean;
|
|
3908
3326
|
}
|
|
3909
3327
|
/**
|
|
3910
3328
|
* Order Totals
|
|
@@ -3954,12 +3372,6 @@ export interface OrderTotalModel {
|
|
|
3954
3372
|
* @memberof OrderTotalModel
|
|
3955
3373
|
*/
|
|
3956
3374
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3957
|
-
/**
|
|
3958
|
-
* Delivery
|
|
3959
|
-
* @type {number}
|
|
3960
|
-
* @memberof OrderTotalModel
|
|
3961
|
-
*/
|
|
3962
|
-
'delivery'?: number | null;
|
|
3963
3375
|
}
|
|
3964
3376
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3965
3377
|
readonly Eur: "EUR";
|
|
@@ -4338,31 +3750,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4338
3750
|
*/
|
|
4339
3751
|
'scopes'?: Array<string>;
|
|
4340
3752
|
}
|
|
4341
|
-
/**
|
|
4342
|
-
*
|
|
4343
|
-
* @export
|
|
4344
|
-
* @interface PostGetProductForCustomerRequest
|
|
4345
|
-
*/
|
|
4346
|
-
export interface PostGetProductForCustomerRequest {
|
|
4347
|
-
/**
|
|
4348
|
-
* Quantity
|
|
4349
|
-
* @type {number}
|
|
4350
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4351
|
-
*/
|
|
4352
|
-
'quantity'?: number | null;
|
|
4353
|
-
/**
|
|
4354
|
-
* 3CX Licence Key
|
|
4355
|
-
* @type {string}
|
|
4356
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4357
|
-
*/
|
|
4358
|
-
'licenceKey'?: string | null;
|
|
4359
|
-
/**
|
|
4360
|
-
* 3CX Hosting
|
|
4361
|
-
* @type {boolean}
|
|
4362
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4363
|
-
*/
|
|
4364
|
-
'hosting'?: boolean | null;
|
|
4365
|
-
}
|
|
4366
3753
|
/**
|
|
4367
3754
|
* Price & Stock List
|
|
4368
3755
|
* @export
|
|
@@ -4451,10 +3838,10 @@ export interface PrizesEntity {
|
|
|
4451
3838
|
export interface ProductSearchResultsModel {
|
|
4452
3839
|
/**
|
|
4453
3840
|
* Results
|
|
4454
|
-
* @type {Array<
|
|
3841
|
+
* @type {Array<ProductSummaryModel>}
|
|
4455
3842
|
* @memberof ProductSearchResultsModel
|
|
4456
3843
|
*/
|
|
4457
|
-
'results'?: Array<
|
|
3844
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4458
3845
|
}
|
|
4459
3846
|
/**
|
|
4460
3847
|
* Product Serial Info
|
|
@@ -4490,51 +3877,45 @@ export interface ProductSerialInfoModel {
|
|
|
4490
3877
|
/**
|
|
4491
3878
|
* Product Summary
|
|
4492
3879
|
* @export
|
|
4493
|
-
* @interface
|
|
3880
|
+
* @interface ProductSummaryModel
|
|
4494
3881
|
*/
|
|
4495
|
-
export interface
|
|
3882
|
+
export interface ProductSummaryModel {
|
|
4496
3883
|
/**
|
|
4497
3884
|
* SKU
|
|
4498
3885
|
* @type {string}
|
|
4499
|
-
* @memberof
|
|
3886
|
+
* @memberof ProductSummaryModel
|
|
4500
3887
|
*/
|
|
4501
3888
|
'sku'?: string;
|
|
4502
3889
|
/**
|
|
4503
3890
|
* Title
|
|
4504
3891
|
* @type {string}
|
|
4505
|
-
* @memberof
|
|
3892
|
+
* @memberof ProductSummaryModel
|
|
4506
3893
|
*/
|
|
4507
3894
|
'title'?: string;
|
|
4508
3895
|
/**
|
|
4509
3896
|
* Stock Quantity
|
|
4510
3897
|
* @type {number}
|
|
4511
|
-
* @memberof
|
|
3898
|
+
* @memberof ProductSummaryModel
|
|
4512
3899
|
*/
|
|
4513
3900
|
'quantity'?: number | null;
|
|
4514
3901
|
/**
|
|
4515
3902
|
* Stock Product
|
|
4516
3903
|
* @type {boolean}
|
|
4517
|
-
* @memberof
|
|
3904
|
+
* @memberof ProductSummaryModel
|
|
4518
3905
|
*/
|
|
4519
3906
|
'stockProduct'?: boolean;
|
|
4520
3907
|
/**
|
|
4521
3908
|
* Price
|
|
4522
3909
|
* @type {number}
|
|
4523
|
-
* @memberof
|
|
3910
|
+
* @memberof ProductSummaryModel
|
|
4524
3911
|
*/
|
|
4525
3912
|
'price'?: number | null;
|
|
4526
3913
|
/**
|
|
4527
3914
|
* Carton Size
|
|
4528
3915
|
* @type {number}
|
|
4529
|
-
* @memberof
|
|
3916
|
+
* @memberof ProductSummaryModel
|
|
4530
3917
|
*/
|
|
4531
3918
|
'cartonSize'?: number | null;
|
|
4532
|
-
/**
|
|
4533
|
-
* RRP Price
|
|
4534
|
-
* @type {number}
|
|
4535
|
-
* @memberof ProductSummaryDTO
|
|
4536
|
-
*/
|
|
4537
|
-
'rrp'?: number | null;
|
|
4538
3919
|
}
|
|
4539
3920
|
/**
|
|
4540
3921
|
* PromoCodesEntity
|
|
@@ -4673,37 +4054,37 @@ export interface PromoItemsEntity {
|
|
|
4673
4054
|
/**
|
|
4674
4055
|
* Provisioning Group
|
|
4675
4056
|
* @export
|
|
4676
|
-
* @interface
|
|
4057
|
+
* @interface ProvisioningEntity
|
|
4677
4058
|
*/
|
|
4678
|
-
export interface
|
|
4059
|
+
export interface ProvisioningEntity {
|
|
4679
4060
|
/**
|
|
4680
4061
|
* Provisioning Group Name
|
|
4681
4062
|
* @type {string}
|
|
4682
|
-
* @memberof
|
|
4063
|
+
* @memberof ProvisioningEntity
|
|
4683
4064
|
*/
|
|
4684
4065
|
'groupName'?: string;
|
|
4685
4066
|
/**
|
|
4686
4067
|
* Provisioning URL (Static Provisioning Server)
|
|
4687
4068
|
* @type {string}
|
|
4688
|
-
* @memberof
|
|
4069
|
+
* @memberof ProvisioningEntity
|
|
4689
4070
|
*/
|
|
4690
4071
|
'provisioningUrl'?: string;
|
|
4691
4072
|
/**
|
|
4692
4073
|
* Additional Authentication Secret
|
|
4693
4074
|
* @type {string}
|
|
4694
|
-
* @memberof
|
|
4075
|
+
* @memberof ProvisioningEntity
|
|
4695
4076
|
*/
|
|
4696
4077
|
'auth'?: string;
|
|
4697
4078
|
/**
|
|
4698
4079
|
* Provisioning Group ID
|
|
4699
4080
|
* @type {number}
|
|
4700
|
-
* @memberof
|
|
4081
|
+
* @memberof ProvisioningEntity
|
|
4701
4082
|
*/
|
|
4702
4083
|
'id'?: number;
|
|
4703
4084
|
/**
|
|
4704
4085
|
* Owner ID
|
|
4705
4086
|
* @type {number}
|
|
4706
|
-
* @memberof
|
|
4087
|
+
* @memberof ProvisioningEntity
|
|
4707
4088
|
*/
|
|
4708
4089
|
'customerId'?: number;
|
|
4709
4090
|
}
|
|
@@ -5057,7 +4438,7 @@ export interface ShipmentEntity {
|
|
|
5057
4438
|
* @type {string}
|
|
5058
4439
|
* @memberof ShipmentEntity
|
|
5059
4440
|
*/
|
|
5060
|
-
'
|
|
4441
|
+
'date'?: string;
|
|
5061
4442
|
/**
|
|
5062
4443
|
* requestDate
|
|
5063
4444
|
* @type {string}
|
|
@@ -5108,149 +4489,6 @@ export interface ShipmentItemEntity {
|
|
|
5108
4489
|
*/
|
|
5109
4490
|
'itemId'?: string;
|
|
5110
4491
|
}
|
|
5111
|
-
/**
|
|
5112
|
-
*
|
|
5113
|
-
* @export
|
|
5114
|
-
* @interface ShippingConsignmentModel
|
|
5115
|
-
*/
|
|
5116
|
-
export interface ShippingConsignmentModel {
|
|
5117
|
-
/**
|
|
5118
|
-
*
|
|
5119
|
-
* @type {ShippingServiceModel}
|
|
5120
|
-
* @memberof ShippingConsignmentModel
|
|
5121
|
-
*/
|
|
5122
|
-
'service'?: ShippingServiceModel;
|
|
5123
|
-
/**
|
|
5124
|
-
* ID/Number
|
|
5125
|
-
* @type {string}
|
|
5126
|
-
* @memberof ShippingConsignmentModel
|
|
5127
|
-
*/
|
|
5128
|
-
'id'?: string;
|
|
5129
|
-
/**
|
|
5130
|
-
* Tracking Number
|
|
5131
|
-
* @type {string}
|
|
5132
|
-
* @memberof ShippingConsignmentModel
|
|
5133
|
-
*/
|
|
5134
|
-
'trackingNumber'?: string;
|
|
5135
|
-
/**
|
|
5136
|
-
* Parcels
|
|
5137
|
-
* @type {Array<string>}
|
|
5138
|
-
* @memberof ShippingConsignmentModel
|
|
5139
|
-
*/
|
|
5140
|
-
'parcelIds'?: Array<string>;
|
|
5141
|
-
}
|
|
5142
|
-
/**
|
|
5143
|
-
* Shipping Information
|
|
5144
|
-
* @export
|
|
5145
|
-
* @interface ShippingInformationDTO
|
|
5146
|
-
*/
|
|
5147
|
-
export interface ShippingInformationDTO {
|
|
5148
|
-
/**
|
|
5149
|
-
* Items
|
|
5150
|
-
* @type {Array<BasicItemDTO>}
|
|
5151
|
-
* @memberof ShippingInformationDTO
|
|
5152
|
-
*/
|
|
5153
|
-
'items'?: Array<BasicItemDTO>;
|
|
5154
|
-
/**
|
|
5155
|
-
* Destination Post Code
|
|
5156
|
-
* @type {string}
|
|
5157
|
-
* @memberof ShippingInformationDTO
|
|
5158
|
-
*/
|
|
5159
|
-
'postalCode'?: string;
|
|
5160
|
-
/**
|
|
5161
|
-
* Destination ISO
|
|
5162
|
-
* @type {string}
|
|
5163
|
-
* @memberof ShippingInformationDTO
|
|
5164
|
-
*/
|
|
5165
|
-
'iso'?: string;
|
|
5166
|
-
}
|
|
5167
|
-
/**
|
|
5168
|
-
* Shipping Service
|
|
5169
|
-
* @export
|
|
5170
|
-
* @interface ShippingServiceDTO
|
|
5171
|
-
*/
|
|
5172
|
-
export interface ShippingServiceDTO {
|
|
5173
|
-
/**
|
|
5174
|
-
* Courier
|
|
5175
|
-
* @type {string}
|
|
5176
|
-
* @memberof ShippingServiceDTO
|
|
5177
|
-
*/
|
|
5178
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5179
|
-
/**
|
|
5180
|
-
* Service Name
|
|
5181
|
-
* @type {string}
|
|
5182
|
-
* @memberof ShippingServiceDTO
|
|
5183
|
-
*/
|
|
5184
|
-
'serviceName'?: string;
|
|
5185
|
-
}
|
|
5186
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5187
|
-
readonly Dpd: "DPD";
|
|
5188
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5189
|
-
readonly Pops: "POPS";
|
|
5190
|
-
};
|
|
5191
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5192
|
-
/**
|
|
5193
|
-
* Shipping Service
|
|
5194
|
-
* @export
|
|
5195
|
-
* @interface ShippingServiceModel
|
|
5196
|
-
*/
|
|
5197
|
-
export interface ShippingServiceModel {
|
|
5198
|
-
/**
|
|
5199
|
-
* Courier
|
|
5200
|
-
* @type {string}
|
|
5201
|
-
* @memberof ShippingServiceModel
|
|
5202
|
-
*/
|
|
5203
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5204
|
-
/**
|
|
5205
|
-
* Code
|
|
5206
|
-
* @type {string}
|
|
5207
|
-
* @memberof ShippingServiceModel
|
|
5208
|
-
*/
|
|
5209
|
-
'code'?: string;
|
|
5210
|
-
/**
|
|
5211
|
-
* Name
|
|
5212
|
-
* @type {string}
|
|
5213
|
-
* @memberof ShippingServiceModel
|
|
5214
|
-
*/
|
|
5215
|
-
'name'?: string;
|
|
5216
|
-
/**
|
|
5217
|
-
* Description
|
|
5218
|
-
* @type {string}
|
|
5219
|
-
* @memberof ShippingServiceModel
|
|
5220
|
-
*/
|
|
5221
|
-
'description'?: string;
|
|
5222
|
-
/**
|
|
5223
|
-
* Label
|
|
5224
|
-
* @type {string}
|
|
5225
|
-
* @memberof ShippingServiceModel
|
|
5226
|
-
*/
|
|
5227
|
-
'label'?: string | null;
|
|
5228
|
-
/**
|
|
5229
|
-
* Price
|
|
5230
|
-
* @type {number}
|
|
5231
|
-
* @memberof ShippingServiceModel
|
|
5232
|
-
*/
|
|
5233
|
-
'price'?: number | null;
|
|
5234
|
-
}
|
|
5235
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5236
|
-
readonly Dpd: "DPD";
|
|
5237
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5238
|
-
readonly Pops: "POPS";
|
|
5239
|
-
};
|
|
5240
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5241
|
-
/**
|
|
5242
|
-
*
|
|
5243
|
-
* @export
|
|
5244
|
-
* @interface ShippingServicesModel
|
|
5245
|
-
*/
|
|
5246
|
-
export interface ShippingServicesModel {
|
|
5247
|
-
/**
|
|
5248
|
-
* Services
|
|
5249
|
-
* @type {Array<ShippingServiceModel>}
|
|
5250
|
-
* @memberof ShippingServicesModel
|
|
5251
|
-
*/
|
|
5252
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5253
|
-
}
|
|
5254
4492
|
/**
|
|
5255
4493
|
* Change Response
|
|
5256
4494
|
* @export
|
|
@@ -8070,49 +7308,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8070
7308
|
*/
|
|
8071
7309
|
'secretAccessKey'?: string;
|
|
8072
7310
|
}
|
|
8073
|
-
/**
|
|
8074
|
-
* SBC Data
|
|
8075
|
-
* @export
|
|
8076
|
-
* @interface TcxSbcDTO
|
|
8077
|
-
*/
|
|
8078
|
-
export interface TcxSbcDTO {
|
|
8079
|
-
/**
|
|
8080
|
-
* LAN IP Address
|
|
8081
|
-
* @type {string}
|
|
8082
|
-
* @memberof TcxSbcDTO
|
|
8083
|
-
*/
|
|
8084
|
-
'ipAddress'?: string;
|
|
8085
|
-
/**
|
|
8086
|
-
* LAN Default Gateway
|
|
8087
|
-
* @type {string}
|
|
8088
|
-
* @memberof TcxSbcDTO
|
|
8089
|
-
*/
|
|
8090
|
-
'defaultGateway'?: string;
|
|
8091
|
-
/**
|
|
8092
|
-
* LAN Subnet Mask
|
|
8093
|
-
* @type {string}
|
|
8094
|
-
* @memberof TcxSbcDTO
|
|
8095
|
-
*/
|
|
8096
|
-
'netmask'?: string;
|
|
8097
|
-
/**
|
|
8098
|
-
* DNS
|
|
8099
|
-
* @type {string}
|
|
8100
|
-
* @memberof TcxSbcDTO
|
|
8101
|
-
*/
|
|
8102
|
-
'dns'?: string;
|
|
8103
|
-
/**
|
|
8104
|
-
* 3CX URL
|
|
8105
|
-
* @type {string}
|
|
8106
|
-
* @memberof TcxSbcDTO
|
|
8107
|
-
*/
|
|
8108
|
-
'tcxUrl'?: string;
|
|
8109
|
-
/**
|
|
8110
|
-
* 3CX SBC Key
|
|
8111
|
-
* @type {string}
|
|
8112
|
-
* @memberof TcxSbcDTO
|
|
8113
|
-
*/
|
|
8114
|
-
'tcxKey'?: string;
|
|
8115
|
-
}
|
|
8116
7311
|
/**
|
|
8117
7312
|
* 3CX Wizard SBC
|
|
8118
7313
|
* @export
|
|
@@ -8217,7 +7412,7 @@ export interface TcxSbcEntity {
|
|
|
8217
7412
|
'technicalContact'?: string;
|
|
8218
7413
|
}
|
|
8219
7414
|
/**
|
|
8220
|
-
* 3CX
|
|
7415
|
+
* 3CX SBC Model
|
|
8221
7416
|
* @export
|
|
8222
7417
|
* @interface TcxSbcModel
|
|
8223
7418
|
*/
|
|
@@ -9295,14 +8490,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9295
8490
|
* @throws {RequiredError}
|
|
9296
8491
|
*/
|
|
9297
8492
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9298
|
-
/**
|
|
9299
|
-
* Get Account Detailed Summary
|
|
9300
|
-
* @summary Get Account Detailed Summary
|
|
9301
|
-
* @param {number} id Customer ID
|
|
9302
|
-
* @param {*} [options] Override http request option.
|
|
9303
|
-
* @throws {RequiredError}
|
|
9304
|
-
*/
|
|
9305
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9306
8493
|
/**
|
|
9307
8494
|
* Get Accounts
|
|
9308
8495
|
* @summary Get Accounts
|
|
@@ -9368,13 +8555,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9368
8555
|
* @throws {RequiredError}
|
|
9369
8556
|
*/
|
|
9370
8557
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9371
|
-
/**
|
|
9372
|
-
* Get Admin Account
|
|
9373
|
-
* @summary Get Admin Account
|
|
9374
|
-
* @param {*} [options] Override http request option.
|
|
9375
|
-
* @throws {RequiredError}
|
|
9376
|
-
*/
|
|
9377
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9378
8558
|
/**
|
|
9379
8559
|
* Create client credentials
|
|
9380
8560
|
* @summary Create client credentials
|
|
@@ -9455,14 +8635,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9455
8635
|
* @throws {RequiredError}
|
|
9456
8636
|
*/
|
|
9457
8637
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9458
|
-
/**
|
|
9459
|
-
* Get Account Detailed Summary
|
|
9460
|
-
* @summary Get Account Detailed Summary
|
|
9461
|
-
* @param {number} id Customer ID
|
|
9462
|
-
* @param {*} [options] Override http request option.
|
|
9463
|
-
* @throws {RequiredError}
|
|
9464
|
-
*/
|
|
9465
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9466
8638
|
/**
|
|
9467
8639
|
* Get Accounts
|
|
9468
8640
|
* @summary Get Accounts
|
|
@@ -9528,13 +8700,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9528
8700
|
* @throws {RequiredError}
|
|
9529
8701
|
*/
|
|
9530
8702
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9531
|
-
/**
|
|
9532
|
-
* Get Admin Account
|
|
9533
|
-
* @summary Get Admin Account
|
|
9534
|
-
* @param {*} [options] Override http request option.
|
|
9535
|
-
* @throws {RequiredError}
|
|
9536
|
-
*/
|
|
9537
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9538
8703
|
/**
|
|
9539
8704
|
* Create client credentials
|
|
9540
8705
|
* @summary Create client credentials
|
|
@@ -9615,14 +8780,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9615
8780
|
* @throws {RequiredError}
|
|
9616
8781
|
*/
|
|
9617
8782
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9618
|
-
/**
|
|
9619
|
-
* Get Account Detailed Summary
|
|
9620
|
-
* @summary Get Account Detailed Summary
|
|
9621
|
-
* @param {number} id Customer ID
|
|
9622
|
-
* @param {*} [options] Override http request option.
|
|
9623
|
-
* @throws {RequiredError}
|
|
9624
|
-
*/
|
|
9625
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9626
8783
|
/**
|
|
9627
8784
|
* Get Accounts
|
|
9628
8785
|
* @summary Get Accounts
|
|
@@ -9688,13 +8845,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9688
8845
|
* @throws {RequiredError}
|
|
9689
8846
|
*/
|
|
9690
8847
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9691
|
-
/**
|
|
9692
|
-
* Get Admin Account
|
|
9693
|
-
* @summary Get Admin Account
|
|
9694
|
-
* @param {*} [options] Override http request option.
|
|
9695
|
-
* @throws {RequiredError}
|
|
9696
|
-
*/
|
|
9697
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9698
8848
|
/**
|
|
9699
8849
|
* Create client credentials
|
|
9700
8850
|
* @summary Create client credentials
|
|
@@ -9773,23 +8923,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9773
8923
|
*/
|
|
9774
8924
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9775
8925
|
/**
|
|
9776
|
-
* Get Account Contacts
|
|
9777
|
-
* @summary Get Account Contacts
|
|
9778
|
-
* @param {string} [email] Contact Email Address
|
|
9779
|
-
* @param {*} [options] Override http request option.
|
|
9780
|
-
* @throws {RequiredError}
|
|
9781
|
-
* @memberof AccountsApi
|
|
9782
|
-
*/
|
|
9783
|
-
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9784
|
-
/**
|
|
9785
|
-
* Get Account Detailed Summary
|
|
9786
|
-
* @summary Get Account Detailed Summary
|
|
9787
|
-
* @param {number} id Customer ID
|
|
8926
|
+
* Get Account Contacts
|
|
8927
|
+
* @summary Get Account Contacts
|
|
8928
|
+
* @param {string} [email] Contact Email Address
|
|
9788
8929
|
* @param {*} [options] Override http request option.
|
|
9789
8930
|
* @throws {RequiredError}
|
|
9790
8931
|
* @memberof AccountsApi
|
|
9791
8932
|
*/
|
|
9792
|
-
|
|
8933
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9793
8934
|
/**
|
|
9794
8935
|
* Get Accounts
|
|
9795
8936
|
* @summary Get Accounts
|
|
@@ -9863,14 +9004,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9863
9004
|
* @memberof AccountsApi
|
|
9864
9005
|
*/
|
|
9865
9006
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9866
|
-
/**
|
|
9867
|
-
* Get Admin Account
|
|
9868
|
-
* @summary Get Admin Account
|
|
9869
|
-
* @param {*} [options] Override http request option.
|
|
9870
|
-
* @throws {RequiredError}
|
|
9871
|
-
* @memberof AccountsApi
|
|
9872
|
-
*/
|
|
9873
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9874
9007
|
/**
|
|
9875
9008
|
* Create client credentials
|
|
9876
9009
|
* @summary Create client credentials
|
|
@@ -9933,6 +9066,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9933
9066
|
* @throws {RequiredError}
|
|
9934
9067
|
*/
|
|
9935
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>;
|
|
9936
9077
|
/**
|
|
9937
9078
|
* Get Bulk 3CX Licence Details
|
|
9938
9079
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9955,6 +9096,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9955
9096
|
* @throws {RequiredError}
|
|
9956
9097
|
*/
|
|
9957
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>>;
|
|
9958
9107
|
/**
|
|
9959
9108
|
* Get Bulk 3CX Licence Details
|
|
9960
9109
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9977,6 +9126,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9977
9126
|
* @throws {RequiredError}
|
|
9978
9127
|
*/
|
|
9979
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>;
|
|
9980
9137
|
/**
|
|
9981
9138
|
* Get Bulk 3CX Licence Details
|
|
9982
9139
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10002,6 +9159,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10002
9159
|
* @memberof Class3CXApi
|
|
10003
9160
|
*/
|
|
10004
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, {}>>;
|
|
10005
9171
|
/**
|
|
10006
9172
|
* Get Bulk 3CX Licence Details
|
|
10007
9173
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12531,19 +11697,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12531
11697
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12532
11698
|
/**
|
|
12533
11699
|
* Delete Orders
|
|
12534
|
-
* @summary Delete Orders
|
|
12535
|
-
* @param {number} id Order ID
|
|
12536
|
-
* @param {*} [options] Override http request option.
|
|
12537
|
-
* @throws {RequiredError}
|
|
12538
|
-
*/
|
|
12539
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12540
|
-
/**
|
|
12541
|
-
* Get Editable Order
|
|
12542
11700
|
* @param {number} id Order ID
|
|
12543
11701
|
* @param {*} [options] Override http request option.
|
|
12544
11702
|
* @throws {RequiredError}
|
|
12545
11703
|
*/
|
|
12546
|
-
|
|
11704
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12547
11705
|
/**
|
|
12548
11706
|
* Get Orders
|
|
12549
11707
|
* @summary Get Orders
|
|
@@ -12558,44 +11716,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12558
11716
|
* @throws {RequiredError}
|
|
12559
11717
|
*/
|
|
12560
11718
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12561
|
-
/**
|
|
12562
|
-
* Create An Order (Admin)
|
|
12563
|
-
* @summary Create An Order (Admin)
|
|
12564
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12565
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12566
|
-
* @param {*} [options] Override http request option.
|
|
12567
|
-
* @throws {RequiredError}
|
|
12568
|
-
*/
|
|
12569
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12570
|
-
/**
|
|
12571
|
-
* Create An Order
|
|
12572
|
-
* @summary Create An Order
|
|
12573
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12574
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12575
|
-
* @param {*} [options] Override http request option.
|
|
12576
|
-
* @throws {RequiredError}
|
|
12577
|
-
*/
|
|
12578
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12579
|
-
/**
|
|
12580
|
-
* Update An Order (Admin)
|
|
12581
|
-
* @summary Update An Order (Admin)
|
|
12582
|
-
* @param {number} id Order ID
|
|
12583
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12584
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12585
|
-
* @param {*} [options] Override http request option.
|
|
12586
|
-
* @throws {RequiredError}
|
|
12587
|
-
*/
|
|
12588
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12589
|
-
/**
|
|
12590
|
-
* Update An Order
|
|
12591
|
-
* @summary Update An Order
|
|
12592
|
-
* @param {number} id Order ID
|
|
12593
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12594
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12595
|
-
* @param {*} [options] Override http request option.
|
|
12596
|
-
* @throws {RequiredError}
|
|
12597
|
-
*/
|
|
12598
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12599
11719
|
};
|
|
12600
11720
|
/**
|
|
12601
11721
|
* OrdersApi - functional programming interface
|
|
@@ -12604,19 +11724,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12604
11724
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12605
11725
|
/**
|
|
12606
11726
|
* Delete Orders
|
|
12607
|
-
* @summary Delete Orders
|
|
12608
|
-
* @param {number} id Order ID
|
|
12609
|
-
* @param {*} [options] Override http request option.
|
|
12610
|
-
* @throws {RequiredError}
|
|
12611
|
-
*/
|
|
12612
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12613
|
-
/**
|
|
12614
|
-
* Get Editable Order
|
|
12615
11727
|
* @param {number} id Order ID
|
|
12616
11728
|
* @param {*} [options] Override http request option.
|
|
12617
11729
|
* @throws {RequiredError}
|
|
12618
11730
|
*/
|
|
12619
|
-
|
|
11731
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12620
11732
|
/**
|
|
12621
11733
|
* Get Orders
|
|
12622
11734
|
* @summary Get Orders
|
|
@@ -12631,44 +11743,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12631
11743
|
* @throws {RequiredError}
|
|
12632
11744
|
*/
|
|
12633
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>>;
|
|
12634
|
-
/**
|
|
12635
|
-
* Create An Order (Admin)
|
|
12636
|
-
* @summary Create An Order (Admin)
|
|
12637
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12638
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12639
|
-
* @param {*} [options] Override http request option.
|
|
12640
|
-
* @throws {RequiredError}
|
|
12641
|
-
*/
|
|
12642
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12643
|
-
/**
|
|
12644
|
-
* Create An Order
|
|
12645
|
-
* @summary Create An Order
|
|
12646
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12647
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12648
|
-
* @param {*} [options] Override http request option.
|
|
12649
|
-
* @throws {RequiredError}
|
|
12650
|
-
*/
|
|
12651
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12652
|
-
/**
|
|
12653
|
-
* Update An Order (Admin)
|
|
12654
|
-
* @summary Update An Order (Admin)
|
|
12655
|
-
* @param {number} id Order ID
|
|
12656
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12657
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12658
|
-
* @param {*} [options] Override http request option.
|
|
12659
|
-
* @throws {RequiredError}
|
|
12660
|
-
*/
|
|
12661
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12662
|
-
/**
|
|
12663
|
-
* Update An Order
|
|
12664
|
-
* @summary Update An Order
|
|
12665
|
-
* @param {number} id Order ID
|
|
12666
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12667
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12668
|
-
* @param {*} [options] Override http request option.
|
|
12669
|
-
* @throws {RequiredError}
|
|
12670
|
-
*/
|
|
12671
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12672
11746
|
};
|
|
12673
11747
|
/**
|
|
12674
11748
|
* OrdersApi - factory interface
|
|
@@ -12677,19 +11751,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12677
11751
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12678
11752
|
/**
|
|
12679
11753
|
* Delete Orders
|
|
12680
|
-
* @summary Delete Orders
|
|
12681
11754
|
* @param {number} id Order ID
|
|
12682
11755
|
* @param {*} [options] Override http request option.
|
|
12683
11756
|
* @throws {RequiredError}
|
|
12684
11757
|
*/
|
|
12685
|
-
|
|
12686
|
-
/**
|
|
12687
|
-
* Get Editable Order
|
|
12688
|
-
* @param {number} id Order ID
|
|
12689
|
-
* @param {*} [options] Override http request option.
|
|
12690
|
-
* @throws {RequiredError}
|
|
12691
|
-
*/
|
|
12692
|
-
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11758
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12693
11759
|
/**
|
|
12694
11760
|
* Get Orders
|
|
12695
11761
|
* @summary Get Orders
|
|
@@ -12704,44 +11770,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12704
11770
|
* @throws {RequiredError}
|
|
12705
11771
|
*/
|
|
12706
11772
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12707
|
-
/**
|
|
12708
|
-
* Create An Order (Admin)
|
|
12709
|
-
* @summary Create An Order (Admin)
|
|
12710
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12711
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12712
|
-
* @param {*} [options] Override http request option.
|
|
12713
|
-
* @throws {RequiredError}
|
|
12714
|
-
*/
|
|
12715
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12716
|
-
/**
|
|
12717
|
-
* Create An Order
|
|
12718
|
-
* @summary Create An Order
|
|
12719
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12720
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12721
|
-
* @param {*} [options] Override http request option.
|
|
12722
|
-
* @throws {RequiredError}
|
|
12723
|
-
*/
|
|
12724
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12725
|
-
/**
|
|
12726
|
-
* Update An Order (Admin)
|
|
12727
|
-
* @summary Update An Order (Admin)
|
|
12728
|
-
* @param {number} id Order ID
|
|
12729
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12730
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12731
|
-
* @param {*} [options] Override http request option.
|
|
12732
|
-
* @throws {RequiredError}
|
|
12733
|
-
*/
|
|
12734
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12735
|
-
/**
|
|
12736
|
-
* Update An Order
|
|
12737
|
-
* @summary Update An Order
|
|
12738
|
-
* @param {number} id Order ID
|
|
12739
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12740
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12741
|
-
* @param {*} [options] Override http request option.
|
|
12742
|
-
* @throws {RequiredError}
|
|
12743
|
-
*/
|
|
12744
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12745
11773
|
};
|
|
12746
11774
|
/**
|
|
12747
11775
|
* OrdersApi - object-oriented interface
|
|
@@ -12752,21 +11780,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12752
11780
|
export declare class OrdersApi extends BaseAPI {
|
|
12753
11781
|
/**
|
|
12754
11782
|
* Delete Orders
|
|
12755
|
-
* @summary Delete Orders
|
|
12756
|
-
* @param {number} id Order ID
|
|
12757
|
-
* @param {*} [options] Override http request option.
|
|
12758
|
-
* @throws {RequiredError}
|
|
12759
|
-
* @memberof OrdersApi
|
|
12760
|
-
*/
|
|
12761
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12762
|
-
/**
|
|
12763
|
-
* Get Editable Order
|
|
12764
11783
|
* @param {number} id Order ID
|
|
12765
11784
|
* @param {*} [options] Override http request option.
|
|
12766
11785
|
* @throws {RequiredError}
|
|
12767
11786
|
* @memberof OrdersApi
|
|
12768
11787
|
*/
|
|
12769
|
-
|
|
11788
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12770
11789
|
/**
|
|
12771
11790
|
* Get Orders
|
|
12772
11791
|
* @summary Get Orders
|
|
@@ -12782,48 +11801,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12782
11801
|
* @memberof OrdersApi
|
|
12783
11802
|
*/
|
|
12784
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, {}>>;
|
|
12785
|
-
/**
|
|
12786
|
-
* Create An Order (Admin)
|
|
12787
|
-
* @summary Create An Order (Admin)
|
|
12788
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12789
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12790
|
-
* @param {*} [options] Override http request option.
|
|
12791
|
-
* @throws {RequiredError}
|
|
12792
|
-
* @memberof OrdersApi
|
|
12793
|
-
*/
|
|
12794
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12795
|
-
/**
|
|
12796
|
-
* Create An Order
|
|
12797
|
-
* @summary Create An Order
|
|
12798
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12799
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12800
|
-
* @param {*} [options] Override http request option.
|
|
12801
|
-
* @throws {RequiredError}
|
|
12802
|
-
* @memberof OrdersApi
|
|
12803
|
-
*/
|
|
12804
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12805
|
-
/**
|
|
12806
|
-
* Update An Order (Admin)
|
|
12807
|
-
* @summary Update An Order (Admin)
|
|
12808
|
-
* @param {number} id Order ID
|
|
12809
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12810
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12811
|
-
* @param {*} [options] Override http request option.
|
|
12812
|
-
* @throws {RequiredError}
|
|
12813
|
-
* @memberof OrdersApi
|
|
12814
|
-
*/
|
|
12815
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12816
|
-
/**
|
|
12817
|
-
* Update An Order
|
|
12818
|
-
* @summary Update An Order
|
|
12819
|
-
* @param {number} id Order ID
|
|
12820
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12821
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12822
|
-
* @param {*} [options] Override http request option.
|
|
12823
|
-
* @throws {RequiredError}
|
|
12824
|
-
* @memberof OrdersApi
|
|
12825
|
-
*/
|
|
12826
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12827
11804
|
}
|
|
12828
11805
|
/**
|
|
12829
11806
|
* @export
|
|
@@ -13079,6 +12056,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13079
12056
|
* @throws {RequiredError}
|
|
13080
12057
|
*/
|
|
13081
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>;
|
|
13082
12066
|
/**
|
|
13083
12067
|
* Get Current Stock & Pricing
|
|
13084
12068
|
* @summary Get Current Stock & Pricing
|
|
@@ -13091,10 +12075,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13091
12075
|
/**
|
|
13092
12076
|
* Get Products
|
|
13093
12077
|
* @summary Get Products
|
|
12078
|
+
* @param {number} [pageSize] Number Of Results
|
|
12079
|
+
* @param {number} [page] Page Number
|
|
12080
|
+
* @param {string} [search] Search
|
|
13094
12081
|
* @param {*} [options] Override http request option.
|
|
13095
12082
|
* @throws {RequiredError}
|
|
13096
12083
|
*/
|
|
13097
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12084
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13098
12085
|
/**
|
|
13099
12086
|
* Get Current Stock & Pricing
|
|
13100
12087
|
* @summary Get Current Stock & Pricing
|
|
@@ -13109,35 +12096,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13109
12096
|
* @throws {RequiredError}
|
|
13110
12097
|
*/
|
|
13111
12098
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13112
|
-
/**
|
|
13113
|
-
* Search Products
|
|
13114
|
-
* @summary Search Products
|
|
13115
|
-
* @param {number} [pageSize] Number Of Results
|
|
13116
|
-
* @param {number} [page] Page Number
|
|
13117
|
-
* @param {string} [search] Search
|
|
13118
|
-
* @param {*} [options] Override http request option.
|
|
13119
|
-
* @throws {RequiredError}
|
|
13120
|
-
*/
|
|
13121
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13122
|
-
/**
|
|
13123
|
-
* Get Product
|
|
13124
|
-
* @summary Get Product
|
|
13125
|
-
* @param {string} sku Product SKU
|
|
13126
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13127
|
-
* @param {*} [options] Override http request option.
|
|
13128
|
-
* @throws {RequiredError}
|
|
13129
|
-
*/
|
|
13130
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13131
|
-
/**
|
|
13132
|
-
* Get Product For Customer
|
|
13133
|
-
* @summary Get Product For Customer
|
|
13134
|
-
* @param {number} customerId Customer ID
|
|
13135
|
-
* @param {string} sku Product SKU
|
|
13136
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13137
|
-
* @param {*} [options] Override http request option.
|
|
13138
|
-
* @throws {RequiredError}
|
|
13139
|
-
*/
|
|
13140
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13141
12099
|
};
|
|
13142
12100
|
/**
|
|
13143
12101
|
* ProductsApi - functional programming interface
|
|
@@ -13151,6 +12109,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13151
12109
|
* @throws {RequiredError}
|
|
13152
12110
|
*/
|
|
13153
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>>>;
|
|
13154
12119
|
/**
|
|
13155
12120
|
* Get Current Stock & Pricing
|
|
13156
12121
|
* @summary Get Current Stock & Pricing
|
|
@@ -13163,10 +12128,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13163
12128
|
/**
|
|
13164
12129
|
* Get Products
|
|
13165
12130
|
* @summary Get Products
|
|
12131
|
+
* @param {number} [pageSize] Number Of Results
|
|
12132
|
+
* @param {number} [page] Page Number
|
|
12133
|
+
* @param {string} [search] Search
|
|
13166
12134
|
* @param {*} [options] Override http request option.
|
|
13167
12135
|
* @throws {RequiredError}
|
|
13168
12136
|
*/
|
|
13169
|
-
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>>;
|
|
13170
12138
|
/**
|
|
13171
12139
|
* Get Current Stock & Pricing
|
|
13172
12140
|
* @summary Get Current Stock & Pricing
|
|
@@ -13181,35 +12149,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13181
12149
|
* @throws {RequiredError}
|
|
13182
12150
|
*/
|
|
13183
12151
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13184
|
-
/**
|
|
13185
|
-
* Search Products
|
|
13186
|
-
* @summary Search Products
|
|
13187
|
-
* @param {number} [pageSize] Number Of Results
|
|
13188
|
-
* @param {number} [page] Page Number
|
|
13189
|
-
* @param {string} [search] Search
|
|
13190
|
-
* @param {*} [options] Override http request option.
|
|
13191
|
-
* @throws {RequiredError}
|
|
13192
|
-
*/
|
|
13193
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13194
|
-
/**
|
|
13195
|
-
* Get Product
|
|
13196
|
-
* @summary Get Product
|
|
13197
|
-
* @param {string} sku Product SKU
|
|
13198
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13199
|
-
* @param {*} [options] Override http request option.
|
|
13200
|
-
* @throws {RequiredError}
|
|
13201
|
-
*/
|
|
13202
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13203
|
-
/**
|
|
13204
|
-
* Get Product For Customer
|
|
13205
|
-
* @summary Get Product For Customer
|
|
13206
|
-
* @param {number} customerId Customer ID
|
|
13207
|
-
* @param {string} sku Product SKU
|
|
13208
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13209
|
-
* @param {*} [options] Override http request option.
|
|
13210
|
-
* @throws {RequiredError}
|
|
13211
|
-
*/
|
|
13212
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13213
12152
|
};
|
|
13214
12153
|
/**
|
|
13215
12154
|
* ProductsApi - factory interface
|
|
@@ -13223,6 +12162,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13223
12162
|
* @throws {RequiredError}
|
|
13224
12163
|
*/
|
|
13225
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>>;
|
|
13226
12172
|
/**
|
|
13227
12173
|
* Get Current Stock & Pricing
|
|
13228
12174
|
* @summary Get Current Stock & Pricing
|
|
@@ -13235,10 +12181,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13235
12181
|
/**
|
|
13236
12182
|
* Get Products
|
|
13237
12183
|
* @summary Get Products
|
|
12184
|
+
* @param {number} [pageSize] Number Of Results
|
|
12185
|
+
* @param {number} [page] Page Number
|
|
12186
|
+
* @param {string} [search] Search
|
|
13238
12187
|
* @param {*} [options] Override http request option.
|
|
13239
12188
|
* @throws {RequiredError}
|
|
13240
12189
|
*/
|
|
13241
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12190
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13242
12191
|
/**
|
|
13243
12192
|
* Get Current Stock & Pricing
|
|
13244
12193
|
* @summary Get Current Stock & Pricing
|
|
@@ -13253,35 +12202,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13253
12202
|
* @throws {RequiredError}
|
|
13254
12203
|
*/
|
|
13255
12204
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13256
|
-
/**
|
|
13257
|
-
* Search Products
|
|
13258
|
-
* @summary Search Products
|
|
13259
|
-
* @param {number} [pageSize] Number Of Results
|
|
13260
|
-
* @param {number} [page] Page Number
|
|
13261
|
-
* @param {string} [search] Search
|
|
13262
|
-
* @param {*} [options] Override http request option.
|
|
13263
|
-
* @throws {RequiredError}
|
|
13264
|
-
*/
|
|
13265
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13266
|
-
/**
|
|
13267
|
-
* Get Product
|
|
13268
|
-
* @summary Get Product
|
|
13269
|
-
* @param {string} sku Product SKU
|
|
13270
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13271
|
-
* @param {*} [options] Override http request option.
|
|
13272
|
-
* @throws {RequiredError}
|
|
13273
|
-
*/
|
|
13274
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13275
|
-
/**
|
|
13276
|
-
* Get Product For Customer
|
|
13277
|
-
* @summary Get Product For Customer
|
|
13278
|
-
* @param {number} customerId Customer ID
|
|
13279
|
-
* @param {string} sku Product SKU
|
|
13280
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13281
|
-
* @param {*} [options] Override http request option.
|
|
13282
|
-
* @throws {RequiredError}
|
|
13283
|
-
*/
|
|
13284
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13285
12205
|
};
|
|
13286
12206
|
/**
|
|
13287
12207
|
* ProductsApi - object-oriented interface
|
|
@@ -13298,6 +12218,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13298
12218
|
* @memberof ProductsApi
|
|
13299
12219
|
*/
|
|
13300
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, {}>>;
|
|
13301
12229
|
/**
|
|
13302
12230
|
* Get Current Stock & Pricing
|
|
13303
12231
|
* @summary Get Current Stock & Pricing
|
|
@@ -13311,11 +12239,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13311
12239
|
/**
|
|
13312
12240
|
* Get Products
|
|
13313
12241
|
* @summary Get Products
|
|
12242
|
+
* @param {number} [pageSize] Number Of Results
|
|
12243
|
+
* @param {number} [page] Page Number
|
|
12244
|
+
* @param {string} [search] Search
|
|
13314
12245
|
* @param {*} [options] Override http request option.
|
|
13315
12246
|
* @throws {RequiredError}
|
|
13316
12247
|
* @memberof ProductsApi
|
|
13317
12248
|
*/
|
|
13318
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12249
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13319
12250
|
/**
|
|
13320
12251
|
* Get Current Stock & Pricing
|
|
13321
12252
|
* @summary Get Current Stock & Pricing
|
|
@@ -13332,38 +12263,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13332
12263
|
* @memberof ProductsApi
|
|
13333
12264
|
*/
|
|
13334
12265
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13335
|
-
/**
|
|
13336
|
-
* Search Products
|
|
13337
|
-
* @summary Search Products
|
|
13338
|
-
* @param {number} [pageSize] Number Of Results
|
|
13339
|
-
* @param {number} [page] Page Number
|
|
13340
|
-
* @param {string} [search] Search
|
|
13341
|
-
* @param {*} [options] Override http request option.
|
|
13342
|
-
* @throws {RequiredError}
|
|
13343
|
-
* @memberof ProductsApi
|
|
13344
|
-
*/
|
|
13345
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13346
|
-
/**
|
|
13347
|
-
* Get Product
|
|
13348
|
-
* @summary Get Product
|
|
13349
|
-
* @param {string} sku Product SKU
|
|
13350
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13351
|
-
* @param {*} [options] Override http request option.
|
|
13352
|
-
* @throws {RequiredError}
|
|
13353
|
-
* @memberof ProductsApi
|
|
13354
|
-
*/
|
|
13355
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13356
|
-
/**
|
|
13357
|
-
* Get Product For Customer
|
|
13358
|
-
* @summary Get Product For Customer
|
|
13359
|
-
* @param {number} customerId Customer ID
|
|
13360
|
-
* @param {string} sku Product SKU
|
|
13361
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13362
|
-
* @param {*} [options] Override http request option.
|
|
13363
|
-
* @throws {RequiredError}
|
|
13364
|
-
* @memberof ProductsApi
|
|
13365
|
-
*/
|
|
13366
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13367
12266
|
}
|
|
13368
12267
|
/**
|
|
13369
12268
|
* @export
|
|
@@ -13484,7 +12383,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13484
12383
|
* @param {*} [options] Override http request option.
|
|
13485
12384
|
* @throws {RequiredError}
|
|
13486
12385
|
*/
|
|
13487
|
-
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>>>;
|
|
13488
12387
|
/**
|
|
13489
12388
|
* Create a Fanvil provisioning group
|
|
13490
12389
|
* @summary Add group to DB and FDPS
|
|
@@ -13492,7 +12391,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13492
12391
|
* @param {*} [options] Override http request option.
|
|
13493
12392
|
* @throws {RequiredError}
|
|
13494
12393
|
*/
|
|
13495
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12394
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13496
12395
|
/**
|
|
13497
12396
|
* Add MAC address to DB and FDPS group
|
|
13498
12397
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13549,7 +12448,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13549
12448
|
* @param {*} [options] Override http request option.
|
|
13550
12449
|
* @throws {RequiredError}
|
|
13551
12450
|
*/
|
|
13552
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12451
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13553
12452
|
/**
|
|
13554
12453
|
* Create a Fanvil provisioning group
|
|
13555
12454
|
* @summary Add group to DB and FDPS
|
|
@@ -13557,7 +12456,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13557
12456
|
* @param {*} [options] Override http request option.
|
|
13558
12457
|
* @throws {RequiredError}
|
|
13559
12458
|
*/
|
|
13560
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12459
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13561
12460
|
/**
|
|
13562
12461
|
* Add MAC address to DB and FDPS group
|
|
13563
12462
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13621,7 +12520,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13621
12520
|
* @throws {RequiredError}
|
|
13622
12521
|
* @memberof ProvisioningApi
|
|
13623
12522
|
*/
|
|
13624
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12523
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13625
12524
|
/**
|
|
13626
12525
|
* Create a Fanvil provisioning group
|
|
13627
12526
|
* @summary Add group to DB and FDPS
|
|
@@ -13630,7 +12529,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13630
12529
|
* @throws {RequiredError}
|
|
13631
12530
|
* @memberof ProvisioningApi
|
|
13632
12531
|
*/
|
|
13633
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12532
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13634
12533
|
/**
|
|
13635
12534
|
* Add MAC address to DB and FDPS group
|
|
13636
12535
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14505,65 +13404,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14505
13404
|
*/
|
|
14506
13405
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14507
13406
|
}
|
|
14508
|
-
/**
|
|
14509
|
-
* ShippingApi - axios parameter creator
|
|
14510
|
-
* @export
|
|
14511
|
-
*/
|
|
14512
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14513
|
-
/**
|
|
14514
|
-
* Get Shipping Services
|
|
14515
|
-
* @summary Get Shipping Services
|
|
14516
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14517
|
-
* @param {*} [options] Override http request option.
|
|
14518
|
-
* @throws {RequiredError}
|
|
14519
|
-
*/
|
|
14520
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14521
|
-
};
|
|
14522
|
-
/**
|
|
14523
|
-
* ShippingApi - functional programming interface
|
|
14524
|
-
* @export
|
|
14525
|
-
*/
|
|
14526
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14527
|
-
/**
|
|
14528
|
-
* Get Shipping Services
|
|
14529
|
-
* @summary Get Shipping Services
|
|
14530
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14531
|
-
* @param {*} [options] Override http request option.
|
|
14532
|
-
* @throws {RequiredError}
|
|
14533
|
-
*/
|
|
14534
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14535
|
-
};
|
|
14536
|
-
/**
|
|
14537
|
-
* ShippingApi - factory interface
|
|
14538
|
-
* @export
|
|
14539
|
-
*/
|
|
14540
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14541
|
-
/**
|
|
14542
|
-
* Get Shipping Services
|
|
14543
|
-
* @summary Get Shipping Services
|
|
14544
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14545
|
-
* @param {*} [options] Override http request option.
|
|
14546
|
-
* @throws {RequiredError}
|
|
14547
|
-
*/
|
|
14548
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14549
|
-
};
|
|
14550
|
-
/**
|
|
14551
|
-
* ShippingApi - object-oriented interface
|
|
14552
|
-
* @export
|
|
14553
|
-
* @class ShippingApi
|
|
14554
|
-
* @extends {BaseAPI}
|
|
14555
|
-
*/
|
|
14556
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14557
|
-
/**
|
|
14558
|
-
* Get Shipping Services
|
|
14559
|
-
* @summary Get Shipping Services
|
|
14560
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14561
|
-
* @param {*} [options] Override http request option.
|
|
14562
|
-
* @throws {RequiredError}
|
|
14563
|
-
* @memberof ShippingApi
|
|
14564
|
-
*/
|
|
14565
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14566
|
-
}
|
|
14567
13407
|
/**
|
|
14568
13408
|
* StockManagementApi - axios parameter creator
|
|
14569
13409
|
* @export
|
|
@@ -14893,7 +13733,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14893
13733
|
* @param {*} [options] Override http request option.
|
|
14894
13734
|
* @throws {RequiredError}
|
|
14895
13735
|
*/
|
|
14896
|
-
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>>>;
|
|
14897
13737
|
/**
|
|
14898
13738
|
* Get Stock Order Supplier Invoice
|
|
14899
13739
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15108,7 +13948,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15108
13948
|
* @param {*} [options] Override http request option.
|
|
15109
13949
|
* @throws {RequiredError}
|
|
15110
13950
|
*/
|
|
15111
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13951
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15112
13952
|
/**
|
|
15113
13953
|
* Get Stock Order Supplier Invoice
|
|
15114
13954
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15338,7 +14178,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15338
14178
|
* @throws {RequiredError}
|
|
15339
14179
|
* @memberof StockManagementApi
|
|
15340
14180
|
*/
|
|
15341
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14181
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15342
14182
|
/**
|
|
15343
14183
|
* Get Stock Order Supplier Invoice
|
|
15344
14184
|
* @summary Get Stock Order Supplier Invoice
|