yellowgrid-api-ts 3.0.83 → 3.0.85-dev.0
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 +209 -190
- package/README.md +35 -7
- package/api.ts +1825 -285
- 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 +1318 -156
- package/dist/api.js +1059 -207
- 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/AbstractOrderRequestDTO.md +33 -0
- package/docs/AccountDetailedSummaryDTO.md +35 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AdminItemRequestDTO.md +37 -0
- package/docs/AdminOrderRequestDTO.md +41 -0
- package/docs/AdminUserModel.md +31 -0
- package/docs/BasicItemDTO.md +23 -0
- package/docs/BasicProductDTO.md +23 -0
- package/docs/Class3CXApi.md +0 -55
- package/docs/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CustomerItemRequestDTO.md +33 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +10 -4
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/NavigationItemModel.md +27 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +301 -4
- package/docs/PostGetProductForCustomerRequest.md +24 -0
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +5 -3
- package/docs/ProductsApi.md +164 -43
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningEntity.md → ProvisioningModel.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/ShippingApi.md +63 -0
- package/docs/ShippingConsignmentModel.md +26 -0
- package/docs/ShippingInformationDTO.md +25 -0
- package/docs/ShippingServiceDTO.md +23 -0
- package/docs/ShippingServiceModel.md +31 -0
- package/docs/{GetGetPasswordHash200Response.md → ShippingServicesModel.md} +5 -5
- package/docs/StockManagementApi.md +2 -2
- package/docs/SubNavigationItemModel.md +25 -0
- package/docs/TcxBackupModel.md +0 -2
- package/docs/TcxSbcDTO.md +31 -0
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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,6 +13,55 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
* Order Request
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AbstractOrderRequestDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface AbstractOrderRequestDTO {
|
|
22
|
+
/**
|
|
23
|
+
* Order Reference
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AbstractOrderRequestDTO
|
|
26
|
+
*/
|
|
27
|
+
'orderReference'?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Items
|
|
30
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
+
* @memberof AbstractOrderRequestDTO
|
|
32
|
+
*/
|
|
33
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {ShippingServiceDTO}
|
|
37
|
+
* @memberof AbstractOrderRequestDTO
|
|
38
|
+
*/
|
|
39
|
+
'shippingService'?: ShippingServiceDTO;
|
|
40
|
+
/**
|
|
41
|
+
* Provisioning URL
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof AbstractOrderRequestDTO
|
|
44
|
+
*/
|
|
45
|
+
'provisioningUrl'?: string | null;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {AddressModel}
|
|
49
|
+
* @memberof AbstractOrderRequestDTO
|
|
50
|
+
*/
|
|
51
|
+
'shippingAddress'?: AddressModel | null;
|
|
52
|
+
/**
|
|
53
|
+
* Part Ship Order
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof AbstractOrderRequestDTO
|
|
56
|
+
*/
|
|
57
|
+
'partShip'?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Quote
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof AbstractOrderRequestDTO
|
|
62
|
+
*/
|
|
63
|
+
'quote'?: boolean;
|
|
64
|
+
}
|
|
16
65
|
/**
|
|
17
66
|
* AccountContactsEntity
|
|
18
67
|
* @export
|
|
@@ -244,6 +293,61 @@ export interface AccountContactRequestModel {
|
|
|
244
293
|
*/
|
|
245
294
|
'despatchEmails'?: boolean;
|
|
246
295
|
}
|
|
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
|
+
}
|
|
247
351
|
/**
|
|
248
352
|
* New Account Request
|
|
249
353
|
* @export
|
|
@@ -525,6 +629,191 @@ export interface AddressRequestModel {
|
|
|
525
629
|
*/
|
|
526
630
|
'addressPostcode'?: string;
|
|
527
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* Admin Order Item Request
|
|
634
|
+
* @export
|
|
635
|
+
* @interface AdminItemRequestDTO
|
|
636
|
+
*/
|
|
637
|
+
export interface AdminItemRequestDTO {
|
|
638
|
+
/**
|
|
639
|
+
* SKU
|
|
640
|
+
* @type {string}
|
|
641
|
+
* @memberof AdminItemRequestDTO
|
|
642
|
+
*/
|
|
643
|
+
'sku'?: string;
|
|
644
|
+
/**
|
|
645
|
+
* Quantity
|
|
646
|
+
* @type {number}
|
|
647
|
+
* @memberof AdminItemRequestDTO
|
|
648
|
+
*/
|
|
649
|
+
'quantity'?: number;
|
|
650
|
+
/**
|
|
651
|
+
* ID
|
|
652
|
+
* @type {number}
|
|
653
|
+
* @memberof AdminItemRequestDTO
|
|
654
|
+
*/
|
|
655
|
+
'id'?: number | null;
|
|
656
|
+
/**
|
|
657
|
+
* 3CX Licence Key
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof AdminItemRequestDTO
|
|
660
|
+
*/
|
|
661
|
+
'licenceKey'?: string | null;
|
|
662
|
+
/**
|
|
663
|
+
* 3CX Hosting
|
|
664
|
+
* @type {boolean}
|
|
665
|
+
* @memberof AdminItemRequestDTO
|
|
666
|
+
*/
|
|
667
|
+
'hosting'?: boolean | null;
|
|
668
|
+
/**
|
|
669
|
+
* Date Time
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof AdminItemRequestDTO
|
|
672
|
+
*/
|
|
673
|
+
'processDate'?: string;
|
|
674
|
+
/**
|
|
675
|
+
* SBCS
|
|
676
|
+
* @type {Array<TcxSbcDTO>}
|
|
677
|
+
* @memberof AdminItemRequestDTO
|
|
678
|
+
*/
|
|
679
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
680
|
+
/**
|
|
681
|
+
* Title
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof AdminItemRequestDTO
|
|
684
|
+
*/
|
|
685
|
+
'title'?: string | null;
|
|
686
|
+
/**
|
|
687
|
+
* Price (£)
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'itemPrice'?: number | null;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* Admin Order Request
|
|
695
|
+
* @export
|
|
696
|
+
* @interface AdminOrderRequestDTO
|
|
697
|
+
*/
|
|
698
|
+
export interface AdminOrderRequestDTO {
|
|
699
|
+
/**
|
|
700
|
+
* Order Reference
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof AdminOrderRequestDTO
|
|
703
|
+
*/
|
|
704
|
+
'orderReference'?: string;
|
|
705
|
+
/**
|
|
706
|
+
* Items
|
|
707
|
+
* @type {Array<AdminItemRequestDTO>}
|
|
708
|
+
* @memberof AdminOrderRequestDTO
|
|
709
|
+
*/
|
|
710
|
+
'items'?: Array<AdminItemRequestDTO>;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {ShippingServiceDTO}
|
|
714
|
+
* @memberof AdminOrderRequestDTO
|
|
715
|
+
*/
|
|
716
|
+
'shippingService'?: ShippingServiceDTO;
|
|
717
|
+
/**
|
|
718
|
+
* Provisioning URL
|
|
719
|
+
* @type {string}
|
|
720
|
+
* @memberof AdminOrderRequestDTO
|
|
721
|
+
*/
|
|
722
|
+
'provisioningUrl'?: string | null;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {AddressModel}
|
|
726
|
+
* @memberof AdminOrderRequestDTO
|
|
727
|
+
*/
|
|
728
|
+
'shippingAddress'?: AddressModel;
|
|
729
|
+
/**
|
|
730
|
+
* Part Ship Order
|
|
731
|
+
* @type {boolean}
|
|
732
|
+
* @memberof AdminOrderRequestDTO
|
|
733
|
+
*/
|
|
734
|
+
'partShip'?: boolean;
|
|
735
|
+
/**
|
|
736
|
+
* Quote
|
|
737
|
+
* @type {boolean}
|
|
738
|
+
* @memberof AdminOrderRequestDTO
|
|
739
|
+
*/
|
|
740
|
+
'quote'?: boolean;
|
|
741
|
+
/**
|
|
742
|
+
* Customer ID
|
|
743
|
+
* @type {number}
|
|
744
|
+
* @memberof AdminOrderRequestDTO
|
|
745
|
+
*/
|
|
746
|
+
'customerId'?: number;
|
|
747
|
+
/**
|
|
748
|
+
* Ignore Customer On Hold
|
|
749
|
+
* @type {boolean}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'ignoreOnHold'?: boolean;
|
|
753
|
+
/**
|
|
754
|
+
* Ignore Customer Credit Limit
|
|
755
|
+
* @type {boolean}
|
|
756
|
+
* @memberof AdminOrderRequestDTO
|
|
757
|
+
*/
|
|
758
|
+
'ignoreCreditLimit'?: boolean;
|
|
759
|
+
/**
|
|
760
|
+
* Include NFR Promos
|
|
761
|
+
* @type {boolean}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'includeNfrPromos'?: boolean;
|
|
765
|
+
}
|
|
766
|
+
/**
|
|
767
|
+
* Admin User
|
|
768
|
+
* @export
|
|
769
|
+
* @interface AdminUserModel
|
|
770
|
+
*/
|
|
771
|
+
export interface AdminUserModel {
|
|
772
|
+
/**
|
|
773
|
+
* First Name
|
|
774
|
+
* @type {string}
|
|
775
|
+
* @memberof AdminUserModel
|
|
776
|
+
*/
|
|
777
|
+
'firstName'?: string;
|
|
778
|
+
/**
|
|
779
|
+
* Last Name
|
|
780
|
+
* @type {string}
|
|
781
|
+
* @memberof AdminUserModel
|
|
782
|
+
*/
|
|
783
|
+
'lastName'?: string;
|
|
784
|
+
/**
|
|
785
|
+
* Avatar
|
|
786
|
+
* @type {string}
|
|
787
|
+
* @memberof AdminUserModel
|
|
788
|
+
*/
|
|
789
|
+
'avatar'?: string | null;
|
|
790
|
+
/**
|
|
791
|
+
* Role
|
|
792
|
+
* @type {number}
|
|
793
|
+
* @memberof AdminUserModel
|
|
794
|
+
*/
|
|
795
|
+
'role'?: AdminUserModelRoleEnum;
|
|
796
|
+
/**
|
|
797
|
+
* Navigation
|
|
798
|
+
* @type {Array<NavigationItemModel>}
|
|
799
|
+
* @memberof AdminUserModel
|
|
800
|
+
*/
|
|
801
|
+
'navigation'?: Array<NavigationItemModel>;
|
|
802
|
+
/**
|
|
803
|
+
* Email
|
|
804
|
+
* @type {string}
|
|
805
|
+
* @memberof AdminUserModel
|
|
806
|
+
*/
|
|
807
|
+
'email'?: string | null;
|
|
808
|
+
}
|
|
809
|
+
export declare const AdminUserModelRoleEnum: {
|
|
810
|
+
readonly NUMBER_0: 0;
|
|
811
|
+
readonly NUMBER_1: 1;
|
|
812
|
+
readonly NUMBER_2: 2;
|
|
813
|
+
readonly NUMBER_3: 3;
|
|
814
|
+
readonly NUMBER_4: 4;
|
|
815
|
+
};
|
|
816
|
+
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
528
817
|
/**
|
|
529
818
|
* Agent Hours Graph
|
|
530
819
|
* @export
|
|
@@ -754,6 +1043,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1043
|
*/
|
|
755
1044
|
'redirect_uri'?: string | null;
|
|
756
1045
|
}
|
|
1046
|
+
/**
|
|
1047
|
+
* Basic Order Item
|
|
1048
|
+
* @export
|
|
1049
|
+
* @interface BasicItemDTO
|
|
1050
|
+
*/
|
|
1051
|
+
export interface BasicItemDTO {
|
|
1052
|
+
/**
|
|
1053
|
+
* SKU
|
|
1054
|
+
* @type {string}
|
|
1055
|
+
* @memberof BasicItemDTO
|
|
1056
|
+
*/
|
|
1057
|
+
'sku'?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* Quantity
|
|
1060
|
+
* @type {number}
|
|
1061
|
+
* @memberof BasicItemDTO
|
|
1062
|
+
*/
|
|
1063
|
+
'quantity'?: number;
|
|
1064
|
+
}
|
|
1065
|
+
/**
|
|
1066
|
+
* Basic Product
|
|
1067
|
+
* @export
|
|
1068
|
+
* @interface BasicProductDTO
|
|
1069
|
+
*/
|
|
1070
|
+
export interface BasicProductDTO {
|
|
1071
|
+
/**
|
|
1072
|
+
* SKU
|
|
1073
|
+
* @type {string}
|
|
1074
|
+
* @memberof BasicProductDTO
|
|
1075
|
+
*/
|
|
1076
|
+
'sku'?: string;
|
|
1077
|
+
/**
|
|
1078
|
+
* Title
|
|
1079
|
+
* @type {string}
|
|
1080
|
+
* @memberof BasicProductDTO
|
|
1081
|
+
*/
|
|
1082
|
+
'title'?: string;
|
|
1083
|
+
}
|
|
757
1084
|
/**
|
|
758
1085
|
* BatchesEntity
|
|
759
1086
|
* @export
|
|
@@ -948,12 +1275,6 @@ export interface ClientDetailsModel {
|
|
|
948
1275
|
* @memberof ClientDetailsModel
|
|
949
1276
|
*/
|
|
950
1277
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1278
|
}
|
|
958
1279
|
/**
|
|
959
1280
|
* OAuth client details
|
|
@@ -1115,6 +1436,73 @@ export interface ConversationModel {
|
|
|
1115
1436
|
*/
|
|
1116
1437
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* CourierPricesEntity
|
|
1441
|
+
* @export
|
|
1442
|
+
* @interface CourierPriceEntity
|
|
1443
|
+
*/
|
|
1444
|
+
export interface CourierPriceEntity {
|
|
1445
|
+
/**
|
|
1446
|
+
* id
|
|
1447
|
+
* @type {number}
|
|
1448
|
+
* @memberof CourierPriceEntity
|
|
1449
|
+
*/
|
|
1450
|
+
'id'?: number;
|
|
1451
|
+
/**
|
|
1452
|
+
* courier
|
|
1453
|
+
* @type {string}
|
|
1454
|
+
* @memberof CourierPriceEntity
|
|
1455
|
+
*/
|
|
1456
|
+
'courier'?: string;
|
|
1457
|
+
/**
|
|
1458
|
+
* destinationIso
|
|
1459
|
+
* @type {string}
|
|
1460
|
+
* @memberof CourierPriceEntity
|
|
1461
|
+
*/
|
|
1462
|
+
'destinationIso'?: string;
|
|
1463
|
+
/**
|
|
1464
|
+
* serviceDescription
|
|
1465
|
+
* @type {string}
|
|
1466
|
+
* @memberof CourierPriceEntity
|
|
1467
|
+
*/
|
|
1468
|
+
'serviceDescription'?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* flatRate
|
|
1471
|
+
* @type {number}
|
|
1472
|
+
* @memberof CourierPriceEntity
|
|
1473
|
+
*/
|
|
1474
|
+
'flatRate'?: number;
|
|
1475
|
+
/**
|
|
1476
|
+
* initialBox
|
|
1477
|
+
* @type {number}
|
|
1478
|
+
* @memberof CourierPriceEntity
|
|
1479
|
+
*/
|
|
1480
|
+
'initialBox'?: number;
|
|
1481
|
+
/**
|
|
1482
|
+
* initialKg
|
|
1483
|
+
* @type {number}
|
|
1484
|
+
* @memberof CourierPriceEntity
|
|
1485
|
+
*/
|
|
1486
|
+
'initialKg'?: number;
|
|
1487
|
+
/**
|
|
1488
|
+
* perBox
|
|
1489
|
+
* @type {number}
|
|
1490
|
+
* @memberof CourierPriceEntity
|
|
1491
|
+
*/
|
|
1492
|
+
'perBox'?: number;
|
|
1493
|
+
/**
|
|
1494
|
+
* perKg
|
|
1495
|
+
* @type {number}
|
|
1496
|
+
* @memberof CourierPriceEntity
|
|
1497
|
+
*/
|
|
1498
|
+
'perKg'?: number;
|
|
1499
|
+
/**
|
|
1500
|
+
* maxKg
|
|
1501
|
+
* @type {number}
|
|
1502
|
+
* @memberof CourierPriceEntity
|
|
1503
|
+
*/
|
|
1504
|
+
'maxKg'?: number;
|
|
1505
|
+
}
|
|
1118
1506
|
/**
|
|
1119
1507
|
* Credit Account
|
|
1120
1508
|
* @export
|
|
@@ -1297,6 +1685,104 @@ export interface CustomerInformationModel {
|
|
|
1297
1685
|
*/
|
|
1298
1686
|
'contactLastName'?: string;
|
|
1299
1687
|
}
|
|
1688
|
+
/**
|
|
1689
|
+
* Order Item Request
|
|
1690
|
+
* @export
|
|
1691
|
+
* @interface CustomerItemRequestDTO
|
|
1692
|
+
*/
|
|
1693
|
+
export interface CustomerItemRequestDTO {
|
|
1694
|
+
/**
|
|
1695
|
+
* SKU
|
|
1696
|
+
* @type {string}
|
|
1697
|
+
* @memberof CustomerItemRequestDTO
|
|
1698
|
+
*/
|
|
1699
|
+
'sku'?: string;
|
|
1700
|
+
/**
|
|
1701
|
+
* Quantity
|
|
1702
|
+
* @type {number}
|
|
1703
|
+
* @memberof CustomerItemRequestDTO
|
|
1704
|
+
*/
|
|
1705
|
+
'quantity'?: number;
|
|
1706
|
+
/**
|
|
1707
|
+
* ID
|
|
1708
|
+
* @type {number}
|
|
1709
|
+
* @memberof CustomerItemRequestDTO
|
|
1710
|
+
*/
|
|
1711
|
+
'id'?: number | null;
|
|
1712
|
+
/**
|
|
1713
|
+
* 3CX Licence Key
|
|
1714
|
+
* @type {string}
|
|
1715
|
+
* @memberof CustomerItemRequestDTO
|
|
1716
|
+
*/
|
|
1717
|
+
'licenceKey'?: string | null;
|
|
1718
|
+
/**
|
|
1719
|
+
* 3CX Hosting
|
|
1720
|
+
* @type {boolean}
|
|
1721
|
+
* @memberof CustomerItemRequestDTO
|
|
1722
|
+
*/
|
|
1723
|
+
'hosting'?: boolean | null;
|
|
1724
|
+
/**
|
|
1725
|
+
* Date Time
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof CustomerItemRequestDTO
|
|
1728
|
+
*/
|
|
1729
|
+
'processDate'?: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* SBCS
|
|
1732
|
+
* @type {Array<TcxSbcDTO>}
|
|
1733
|
+
* @memberof CustomerItemRequestDTO
|
|
1734
|
+
*/
|
|
1735
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
1736
|
+
}
|
|
1737
|
+
/**
|
|
1738
|
+
* Order Request
|
|
1739
|
+
* @export
|
|
1740
|
+
* @interface CustomerOrderRequestDTO
|
|
1741
|
+
*/
|
|
1742
|
+
export interface CustomerOrderRequestDTO {
|
|
1743
|
+
/**
|
|
1744
|
+
* Order Reference
|
|
1745
|
+
* @type {string}
|
|
1746
|
+
* @memberof CustomerOrderRequestDTO
|
|
1747
|
+
*/
|
|
1748
|
+
'orderReference'?: string;
|
|
1749
|
+
/**
|
|
1750
|
+
* Items
|
|
1751
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
1752
|
+
* @memberof CustomerOrderRequestDTO
|
|
1753
|
+
*/
|
|
1754
|
+
'items'?: Array<CustomerItemRequestDTO>;
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {ShippingServiceDTO}
|
|
1758
|
+
* @memberof CustomerOrderRequestDTO
|
|
1759
|
+
*/
|
|
1760
|
+
'shippingService'?: ShippingServiceDTO;
|
|
1761
|
+
/**
|
|
1762
|
+
* Provisioning URL
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof CustomerOrderRequestDTO
|
|
1765
|
+
*/
|
|
1766
|
+
'provisioningUrl'?: string | null;
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @type {AddressModel}
|
|
1770
|
+
* @memberof CustomerOrderRequestDTO
|
|
1771
|
+
*/
|
|
1772
|
+
'shippingAddress'?: AddressModel;
|
|
1773
|
+
/**
|
|
1774
|
+
* Part Ship Order
|
|
1775
|
+
* @type {boolean}
|
|
1776
|
+
* @memberof CustomerOrderRequestDTO
|
|
1777
|
+
*/
|
|
1778
|
+
'partShip'?: boolean;
|
|
1779
|
+
/**
|
|
1780
|
+
* Quote
|
|
1781
|
+
* @type {boolean}
|
|
1782
|
+
* @memberof CustomerOrderRequestDTO
|
|
1783
|
+
*/
|
|
1784
|
+
'quote'?: boolean;
|
|
1785
|
+
}
|
|
1300
1786
|
/**
|
|
1301
1787
|
* Customer Price List
|
|
1302
1788
|
* @export
|
|
@@ -1803,19 +2289,6 @@ export interface GenericFileModel {
|
|
|
1803
2289
|
*/
|
|
1804
2290
|
'type'?: string;
|
|
1805
2291
|
}
|
|
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
|
-
}
|
|
1819
2292
|
/**
|
|
1820
2293
|
*
|
|
1821
2294
|
* @export
|
|
@@ -2374,35 +2847,35 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2374
2847
|
*/
|
|
2375
2848
|
export interface ItemDTO {
|
|
2376
2849
|
/**
|
|
2377
|
-
*
|
|
2378
|
-
* @type {
|
|
2850
|
+
* SKU
|
|
2851
|
+
* @type {string}
|
|
2379
2852
|
* @memberof ItemDTO
|
|
2380
2853
|
*/
|
|
2381
|
-
'
|
|
2854
|
+
'sku'?: string;
|
|
2382
2855
|
/**
|
|
2383
|
-
*
|
|
2856
|
+
* Quantity
|
|
2384
2857
|
* @type {number}
|
|
2385
2858
|
* @memberof ItemDTO
|
|
2386
2859
|
*/
|
|
2387
|
-
'
|
|
2860
|
+
'quantity'?: number;
|
|
2388
2861
|
/**
|
|
2389
|
-
*
|
|
2390
|
-
* @type {
|
|
2862
|
+
* ID
|
|
2863
|
+
* @type {number}
|
|
2391
2864
|
* @memberof ItemDTO
|
|
2392
2865
|
*/
|
|
2393
|
-
'
|
|
2866
|
+
'id'?: number | null;
|
|
2394
2867
|
/**
|
|
2395
|
-
*
|
|
2396
|
-
* @type {
|
|
2868
|
+
* Order ID
|
|
2869
|
+
* @type {number}
|
|
2397
2870
|
* @memberof ItemDTO
|
|
2398
2871
|
*/
|
|
2399
|
-
'
|
|
2400
|
-
/**
|
|
2401
|
-
*
|
|
2402
|
-
* @type {
|
|
2872
|
+
'orderId'?: number | null;
|
|
2873
|
+
/**
|
|
2874
|
+
* Title
|
|
2875
|
+
* @type {string}
|
|
2403
2876
|
* @memberof ItemDTO
|
|
2404
2877
|
*/
|
|
2405
|
-
'
|
|
2878
|
+
'title'?: string;
|
|
2406
2879
|
/**
|
|
2407
2880
|
* Price
|
|
2408
2881
|
* @type {number}
|
|
@@ -2427,6 +2900,12 @@ export interface ItemDTO {
|
|
|
2427
2900
|
* @memberof ItemDTO
|
|
2428
2901
|
*/
|
|
2429
2902
|
'processDate'?: string;
|
|
2903
|
+
/**
|
|
2904
|
+
* 3CX Hosting
|
|
2905
|
+
* @type {boolean}
|
|
2906
|
+
* @memberof ItemDTO
|
|
2907
|
+
*/
|
|
2908
|
+
'hosting'?: boolean | null;
|
|
2430
2909
|
/**
|
|
2431
2910
|
* Promo Item
|
|
2432
2911
|
* @type {boolean}
|
|
@@ -2438,7 +2917,19 @@ export interface ItemDTO {
|
|
|
2438
2917
|
* @type {number}
|
|
2439
2918
|
* @memberof ItemDTO
|
|
2440
2919
|
*/
|
|
2441
|
-
'refunded'?: number;
|
|
2920
|
+
'refunded'?: number | null;
|
|
2921
|
+
/**
|
|
2922
|
+
* SBCs
|
|
2923
|
+
* @type {Array<TcxSbcDTO>}
|
|
2924
|
+
* @memberof ItemDTO
|
|
2925
|
+
*/
|
|
2926
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
2927
|
+
/**
|
|
2928
|
+
* Readonly
|
|
2929
|
+
* @type {boolean}
|
|
2930
|
+
* @memberof ItemDTO
|
|
2931
|
+
*/
|
|
2932
|
+
'readonly'?: boolean;
|
|
2442
2933
|
}
|
|
2443
2934
|
/**
|
|
2444
2935
|
* ItemsEntity
|
|
@@ -2573,6 +3064,25 @@ export interface ItemEntity {
|
|
|
2573
3064
|
*/
|
|
2574
3065
|
'promoItem'?: number;
|
|
2575
3066
|
}
|
|
3067
|
+
/**
|
|
3068
|
+
* LinkedOrdersEntity
|
|
3069
|
+
* @export
|
|
3070
|
+
* @interface LinkedOrderEntity
|
|
3071
|
+
*/
|
|
3072
|
+
export interface LinkedOrderEntity {
|
|
3073
|
+
/**
|
|
3074
|
+
* orderId
|
|
3075
|
+
* @type {number}
|
|
3076
|
+
* @memberof LinkedOrderEntity
|
|
3077
|
+
*/
|
|
3078
|
+
'orderId'?: number;
|
|
3079
|
+
/**
|
|
3080
|
+
* linkedOrderId
|
|
3081
|
+
* @type {number}
|
|
3082
|
+
* @memberof LinkedOrderEntity
|
|
3083
|
+
*/
|
|
3084
|
+
'linkedOrderId'?: number;
|
|
3085
|
+
}
|
|
2576
3086
|
/**
|
|
2577
3087
|
* MFA Required
|
|
2578
3088
|
* @export
|
|
@@ -2659,6 +3169,37 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
2659
3169
|
readonly CallBarring: "Call Barring";
|
|
2660
3170
|
};
|
|
2661
3171
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
3172
|
+
/**
|
|
3173
|
+
* POPS Navigation Item
|
|
3174
|
+
* @export
|
|
3175
|
+
* @interface NavigationItemModel
|
|
3176
|
+
*/
|
|
3177
|
+
export interface NavigationItemModel {
|
|
3178
|
+
/**
|
|
3179
|
+
* Title
|
|
3180
|
+
* @type {string}
|
|
3181
|
+
* @memberof NavigationItemModel
|
|
3182
|
+
*/
|
|
3183
|
+
'title'?: string;
|
|
3184
|
+
/**
|
|
3185
|
+
* URL
|
|
3186
|
+
* @type {string}
|
|
3187
|
+
* @memberof NavigationItemModel
|
|
3188
|
+
*/
|
|
3189
|
+
'url'?: string | null;
|
|
3190
|
+
/**
|
|
3191
|
+
* Icon (Font Awesome)
|
|
3192
|
+
* @type {string}
|
|
3193
|
+
* @memberof NavigationItemModel
|
|
3194
|
+
*/
|
|
3195
|
+
'icon'?: string;
|
|
3196
|
+
/**
|
|
3197
|
+
* Sub Navigation
|
|
3198
|
+
* @type {Array<SubNavigationItemModel>}
|
|
3199
|
+
* @memberof NavigationItemModel
|
|
3200
|
+
*/
|
|
3201
|
+
'items'?: Array<SubNavigationItemModel>;
|
|
3202
|
+
}
|
|
2662
3203
|
/**
|
|
2663
3204
|
* Navigation Endpoint
|
|
2664
3205
|
* @export
|
|
@@ -3232,6 +3773,12 @@ export interface OrderSummaryDTO {
|
|
|
3232
3773
|
* @memberof OrderSummaryDTO
|
|
3233
3774
|
*/
|
|
3234
3775
|
'invoiceNumber'?: string;
|
|
3776
|
+
/**
|
|
3777
|
+
* Invoice ID
|
|
3778
|
+
* @type {string}
|
|
3779
|
+
* @memberof OrderSummaryDTO
|
|
3780
|
+
*/
|
|
3781
|
+
'invoiceId'?: string | null;
|
|
3235
3782
|
/**
|
|
3236
3783
|
* Date Time
|
|
3237
3784
|
* @type {string}
|
|
@@ -3286,6 +3833,24 @@ export interface OrderSummaryDTO {
|
|
|
3286
3833
|
* @memberof OrderSummaryDTO
|
|
3287
3834
|
*/
|
|
3288
3835
|
'fulfillable'?: boolean | null;
|
|
3836
|
+
/**
|
|
3837
|
+
* Provisioning URL
|
|
3838
|
+
* @type {string}
|
|
3839
|
+
* @memberof OrderSummaryDTO
|
|
3840
|
+
*/
|
|
3841
|
+
'provisioningUrl'?: string | null;
|
|
3842
|
+
/**
|
|
3843
|
+
*
|
|
3844
|
+
* @type {ShippingServiceDTO}
|
|
3845
|
+
* @memberof OrderSummaryDTO
|
|
3846
|
+
*/
|
|
3847
|
+
'shippingService'?: ShippingServiceDTO | null;
|
|
3848
|
+
/**
|
|
3849
|
+
* Readonly
|
|
3850
|
+
* @type {boolean}
|
|
3851
|
+
* @memberof OrderSummaryDTO
|
|
3852
|
+
*/
|
|
3853
|
+
'readonly'?: boolean;
|
|
3289
3854
|
}
|
|
3290
3855
|
/**
|
|
3291
3856
|
* Order Totals
|
|
@@ -3335,6 +3900,12 @@ export interface OrderTotalModel {
|
|
|
3335
3900
|
* @memberof OrderTotalModel
|
|
3336
3901
|
*/
|
|
3337
3902
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3903
|
+
/**
|
|
3904
|
+
* Delivery
|
|
3905
|
+
* @type {number}
|
|
3906
|
+
* @memberof OrderTotalModel
|
|
3907
|
+
*/
|
|
3908
|
+
'delivery'?: number | null;
|
|
3338
3909
|
}
|
|
3339
3910
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3340
3911
|
readonly Eur: "EUR";
|
|
@@ -3713,6 +4284,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3713
4284
|
*/
|
|
3714
4285
|
'scopes'?: Array<string>;
|
|
3715
4286
|
}
|
|
4287
|
+
/**
|
|
4288
|
+
*
|
|
4289
|
+
* @export
|
|
4290
|
+
* @interface PostGetProductForCustomerRequest
|
|
4291
|
+
*/
|
|
4292
|
+
export interface PostGetProductForCustomerRequest {
|
|
4293
|
+
/**
|
|
4294
|
+
* Quantity
|
|
4295
|
+
* @type {number}
|
|
4296
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4297
|
+
*/
|
|
4298
|
+
'quantity'?: number | null;
|
|
4299
|
+
/**
|
|
4300
|
+
* 3CX Licence Key
|
|
4301
|
+
* @type {string}
|
|
4302
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4303
|
+
*/
|
|
4304
|
+
'licenceKey'?: string | null;
|
|
4305
|
+
/**
|
|
4306
|
+
* 3CX Hosting
|
|
4307
|
+
* @type {boolean}
|
|
4308
|
+
* @memberof PostGetProductForCustomerRequest
|
|
4309
|
+
*/
|
|
4310
|
+
'hosting'?: boolean | null;
|
|
4311
|
+
}
|
|
3716
4312
|
/**
|
|
3717
4313
|
* Price & Stock List
|
|
3718
4314
|
* @export
|
|
@@ -3801,10 +4397,10 @@ export interface PrizesEntity {
|
|
|
3801
4397
|
export interface ProductSearchResultsModel {
|
|
3802
4398
|
/**
|
|
3803
4399
|
* Results
|
|
3804
|
-
* @type {Array<
|
|
4400
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3805
4401
|
* @memberof ProductSearchResultsModel
|
|
3806
4402
|
*/
|
|
3807
|
-
'results'?: Array<
|
|
4403
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3808
4404
|
}
|
|
3809
4405
|
/**
|
|
3810
4406
|
* Product Serial Info
|
|
@@ -3840,45 +4436,51 @@ export interface ProductSerialInfoModel {
|
|
|
3840
4436
|
/**
|
|
3841
4437
|
* Product Summary
|
|
3842
4438
|
* @export
|
|
3843
|
-
* @interface
|
|
4439
|
+
* @interface ProductSummaryDTO
|
|
3844
4440
|
*/
|
|
3845
|
-
export interface
|
|
4441
|
+
export interface ProductSummaryDTO {
|
|
3846
4442
|
/**
|
|
3847
4443
|
* SKU
|
|
3848
4444
|
* @type {string}
|
|
3849
|
-
* @memberof
|
|
4445
|
+
* @memberof ProductSummaryDTO
|
|
3850
4446
|
*/
|
|
3851
4447
|
'sku'?: string;
|
|
3852
4448
|
/**
|
|
3853
4449
|
* Title
|
|
3854
4450
|
* @type {string}
|
|
3855
|
-
* @memberof
|
|
4451
|
+
* @memberof ProductSummaryDTO
|
|
3856
4452
|
*/
|
|
3857
4453
|
'title'?: string;
|
|
3858
4454
|
/**
|
|
3859
4455
|
* Stock Quantity
|
|
3860
4456
|
* @type {number}
|
|
3861
|
-
* @memberof
|
|
4457
|
+
* @memberof ProductSummaryDTO
|
|
3862
4458
|
*/
|
|
3863
4459
|
'quantity'?: number | null;
|
|
3864
4460
|
/**
|
|
3865
4461
|
* Stock Product
|
|
3866
4462
|
* @type {boolean}
|
|
3867
|
-
* @memberof
|
|
4463
|
+
* @memberof ProductSummaryDTO
|
|
3868
4464
|
*/
|
|
3869
4465
|
'stockProduct'?: boolean;
|
|
3870
4466
|
/**
|
|
3871
4467
|
* Price
|
|
3872
4468
|
* @type {number}
|
|
3873
|
-
* @memberof
|
|
4469
|
+
* @memberof ProductSummaryDTO
|
|
3874
4470
|
*/
|
|
3875
4471
|
'price'?: number | null;
|
|
3876
4472
|
/**
|
|
3877
4473
|
* Carton Size
|
|
3878
4474
|
* @type {number}
|
|
3879
|
-
* @memberof
|
|
4475
|
+
* @memberof ProductSummaryDTO
|
|
3880
4476
|
*/
|
|
3881
4477
|
'cartonSize'?: number | null;
|
|
4478
|
+
/**
|
|
4479
|
+
* RRP Price
|
|
4480
|
+
* @type {number}
|
|
4481
|
+
* @memberof ProductSummaryDTO
|
|
4482
|
+
*/
|
|
4483
|
+
'rrp'?: number | null;
|
|
3882
4484
|
}
|
|
3883
4485
|
/**
|
|
3884
4486
|
* PromoCodesEntity
|
|
@@ -4017,37 +4619,37 @@ export interface PromoItemsEntity {
|
|
|
4017
4619
|
/**
|
|
4018
4620
|
* Provisioning Group
|
|
4019
4621
|
* @export
|
|
4020
|
-
* @interface
|
|
4622
|
+
* @interface ProvisioningModel
|
|
4021
4623
|
*/
|
|
4022
|
-
export interface
|
|
4624
|
+
export interface ProvisioningModel {
|
|
4023
4625
|
/**
|
|
4024
4626
|
* Provisioning Group Name
|
|
4025
4627
|
* @type {string}
|
|
4026
|
-
* @memberof
|
|
4628
|
+
* @memberof ProvisioningModel
|
|
4027
4629
|
*/
|
|
4028
4630
|
'groupName'?: string;
|
|
4029
4631
|
/**
|
|
4030
4632
|
* Provisioning URL (Static Provisioning Server)
|
|
4031
4633
|
* @type {string}
|
|
4032
|
-
* @memberof
|
|
4634
|
+
* @memberof ProvisioningModel
|
|
4033
4635
|
*/
|
|
4034
4636
|
'provisioningUrl'?: string;
|
|
4035
4637
|
/**
|
|
4036
4638
|
* Additional Authentication Secret
|
|
4037
4639
|
* @type {string}
|
|
4038
|
-
* @memberof
|
|
4640
|
+
* @memberof ProvisioningModel
|
|
4039
4641
|
*/
|
|
4040
4642
|
'auth'?: string;
|
|
4041
4643
|
/**
|
|
4042
4644
|
* Provisioning Group ID
|
|
4043
4645
|
* @type {number}
|
|
4044
|
-
* @memberof
|
|
4646
|
+
* @memberof ProvisioningModel
|
|
4045
4647
|
*/
|
|
4046
4648
|
'id'?: number;
|
|
4047
4649
|
/**
|
|
4048
4650
|
* Owner ID
|
|
4049
4651
|
* @type {number}
|
|
4050
|
-
* @memberof
|
|
4652
|
+
* @memberof ProvisioningModel
|
|
4051
4653
|
*/
|
|
4052
4654
|
'customerId'?: number;
|
|
4053
4655
|
}
|
|
@@ -4320,7 +4922,7 @@ export interface ShipmentEntity {
|
|
|
4320
4922
|
* @type {string}
|
|
4321
4923
|
* @memberof ShipmentEntity
|
|
4322
4924
|
*/
|
|
4323
|
-
'
|
|
4925
|
+
'dateShipped'?: string;
|
|
4324
4926
|
/**
|
|
4325
4927
|
* requestDate
|
|
4326
4928
|
* @type {string}
|
|
@@ -4371,6 +4973,149 @@ export interface ShipmentItemEntity {
|
|
|
4371
4973
|
*/
|
|
4372
4974
|
'itemId'?: string;
|
|
4373
4975
|
}
|
|
4976
|
+
/**
|
|
4977
|
+
*
|
|
4978
|
+
* @export
|
|
4979
|
+
* @interface ShippingConsignmentModel
|
|
4980
|
+
*/
|
|
4981
|
+
export interface ShippingConsignmentModel {
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4984
|
+
* @type {ShippingServiceModel}
|
|
4985
|
+
* @memberof ShippingConsignmentModel
|
|
4986
|
+
*/
|
|
4987
|
+
'service'?: ShippingServiceModel;
|
|
4988
|
+
/**
|
|
4989
|
+
* ID/Number
|
|
4990
|
+
* @type {string}
|
|
4991
|
+
* @memberof ShippingConsignmentModel
|
|
4992
|
+
*/
|
|
4993
|
+
'id'?: string;
|
|
4994
|
+
/**
|
|
4995
|
+
* Tracking Number
|
|
4996
|
+
* @type {string}
|
|
4997
|
+
* @memberof ShippingConsignmentModel
|
|
4998
|
+
*/
|
|
4999
|
+
'trackingNumber'?: string;
|
|
5000
|
+
/**
|
|
5001
|
+
* Parcels
|
|
5002
|
+
* @type {Array<string>}
|
|
5003
|
+
* @memberof ShippingConsignmentModel
|
|
5004
|
+
*/
|
|
5005
|
+
'parcelIds'?: Array<string>;
|
|
5006
|
+
}
|
|
5007
|
+
/**
|
|
5008
|
+
* Shipping Information
|
|
5009
|
+
* @export
|
|
5010
|
+
* @interface ShippingInformationDTO
|
|
5011
|
+
*/
|
|
5012
|
+
export interface ShippingInformationDTO {
|
|
5013
|
+
/**
|
|
5014
|
+
* Items
|
|
5015
|
+
* @type {Array<BasicItemDTO>}
|
|
5016
|
+
* @memberof ShippingInformationDTO
|
|
5017
|
+
*/
|
|
5018
|
+
'items'?: Array<BasicItemDTO>;
|
|
5019
|
+
/**
|
|
5020
|
+
* Destination Post Code
|
|
5021
|
+
* @type {string}
|
|
5022
|
+
* @memberof ShippingInformationDTO
|
|
5023
|
+
*/
|
|
5024
|
+
'postalCode'?: string;
|
|
5025
|
+
/**
|
|
5026
|
+
* Destination ISO
|
|
5027
|
+
* @type {string}
|
|
5028
|
+
* @memberof ShippingInformationDTO
|
|
5029
|
+
*/
|
|
5030
|
+
'iso'?: string;
|
|
5031
|
+
}
|
|
5032
|
+
/**
|
|
5033
|
+
* Shipping Service
|
|
5034
|
+
* @export
|
|
5035
|
+
* @interface ShippingServiceDTO
|
|
5036
|
+
*/
|
|
5037
|
+
export interface ShippingServiceDTO {
|
|
5038
|
+
/**
|
|
5039
|
+
* Courier
|
|
5040
|
+
* @type {string}
|
|
5041
|
+
* @memberof ShippingServiceDTO
|
|
5042
|
+
*/
|
|
5043
|
+
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5044
|
+
/**
|
|
5045
|
+
* Service Name
|
|
5046
|
+
* @type {string}
|
|
5047
|
+
* @memberof ShippingServiceDTO
|
|
5048
|
+
*/
|
|
5049
|
+
'serviceName'?: string;
|
|
5050
|
+
}
|
|
5051
|
+
export declare const ShippingServiceDTOCourierEnum: {
|
|
5052
|
+
readonly Dpd: "DPD";
|
|
5053
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5054
|
+
readonly Pops: "POPS";
|
|
5055
|
+
};
|
|
5056
|
+
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5057
|
+
/**
|
|
5058
|
+
* Shipping Service
|
|
5059
|
+
* @export
|
|
5060
|
+
* @interface ShippingServiceModel
|
|
5061
|
+
*/
|
|
5062
|
+
export interface ShippingServiceModel {
|
|
5063
|
+
/**
|
|
5064
|
+
* Courier
|
|
5065
|
+
* @type {string}
|
|
5066
|
+
* @memberof ShippingServiceModel
|
|
5067
|
+
*/
|
|
5068
|
+
'courier'?: ShippingServiceModelCourierEnum;
|
|
5069
|
+
/**
|
|
5070
|
+
* Code
|
|
5071
|
+
* @type {string}
|
|
5072
|
+
* @memberof ShippingServiceModel
|
|
5073
|
+
*/
|
|
5074
|
+
'code'?: string;
|
|
5075
|
+
/**
|
|
5076
|
+
* Name
|
|
5077
|
+
* @type {string}
|
|
5078
|
+
* @memberof ShippingServiceModel
|
|
5079
|
+
*/
|
|
5080
|
+
'name'?: string;
|
|
5081
|
+
/**
|
|
5082
|
+
* Description
|
|
5083
|
+
* @type {string}
|
|
5084
|
+
* @memberof ShippingServiceModel
|
|
5085
|
+
*/
|
|
5086
|
+
'description'?: string;
|
|
5087
|
+
/**
|
|
5088
|
+
* Label
|
|
5089
|
+
* @type {string}
|
|
5090
|
+
* @memberof ShippingServiceModel
|
|
5091
|
+
*/
|
|
5092
|
+
'label'?: string | null;
|
|
5093
|
+
/**
|
|
5094
|
+
* Price
|
|
5095
|
+
* @type {number}
|
|
5096
|
+
* @memberof ShippingServiceModel
|
|
5097
|
+
*/
|
|
5098
|
+
'price'?: number | null;
|
|
5099
|
+
}
|
|
5100
|
+
export declare const ShippingServiceModelCourierEnum: {
|
|
5101
|
+
readonly Dpd: "DPD";
|
|
5102
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5103
|
+
readonly Pops: "POPS";
|
|
5104
|
+
};
|
|
5105
|
+
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5106
|
+
/**
|
|
5107
|
+
*
|
|
5108
|
+
* @export
|
|
5109
|
+
* @interface ShippingServicesModel
|
|
5110
|
+
*/
|
|
5111
|
+
export interface ShippingServicesModel {
|
|
5112
|
+
/**
|
|
5113
|
+
* Services
|
|
5114
|
+
* @type {Array<ShippingServiceModel>}
|
|
5115
|
+
* @memberof ShippingServicesModel
|
|
5116
|
+
*/
|
|
5117
|
+
'services'?: Array<ShippingServiceModel>;
|
|
5118
|
+
}
|
|
4374
5119
|
/**
|
|
4375
5120
|
* Change Response
|
|
4376
5121
|
* @export
|
|
@@ -5775,6 +6520,31 @@ export interface StockTransactionsEntity {
|
|
|
5775
6520
|
*/
|
|
5776
6521
|
'user'?: number;
|
|
5777
6522
|
}
|
|
6523
|
+
/**
|
|
6524
|
+
* POPS Sub Navigation Item
|
|
6525
|
+
* @export
|
|
6526
|
+
* @interface SubNavigationItemModel
|
|
6527
|
+
*/
|
|
6528
|
+
export interface SubNavigationItemModel {
|
|
6529
|
+
/**
|
|
6530
|
+
* Title
|
|
6531
|
+
* @type {string}
|
|
6532
|
+
* @memberof SubNavigationItemModel
|
|
6533
|
+
*/
|
|
6534
|
+
'title'?: string;
|
|
6535
|
+
/**
|
|
6536
|
+
* URL
|
|
6537
|
+
* @type {string}
|
|
6538
|
+
* @memberof SubNavigationItemModel
|
|
6539
|
+
*/
|
|
6540
|
+
'url'?: string;
|
|
6541
|
+
/**
|
|
6542
|
+
* Icon (Font Awesome)
|
|
6543
|
+
* @type {string}
|
|
6544
|
+
* @memberof SubNavigationItemModel
|
|
6545
|
+
*/
|
|
6546
|
+
'icon'?: string | null;
|
|
6547
|
+
}
|
|
5778
6548
|
/**
|
|
5779
6549
|
* SuppliersEntity
|
|
5780
6550
|
* @export
|
|
@@ -6066,12 +6836,6 @@ export interface TcxBackupModel {
|
|
|
6066
6836
|
* @memberof TcxBackupModel
|
|
6067
6837
|
*/
|
|
6068
6838
|
'phone'?: string | null;
|
|
6069
|
-
/**
|
|
6070
|
-
* Company Name
|
|
6071
|
-
* @type {string}
|
|
6072
|
-
* @memberof TcxBackupModel
|
|
6073
|
-
*/
|
|
6074
|
-
'companyName'?: string | null;
|
|
6075
6839
|
}
|
|
6076
6840
|
/**
|
|
6077
6841
|
* TcxBillingEntity
|
|
@@ -7159,6 +7923,49 @@ export interface TcxPhonesEntity {
|
|
|
7159
7923
|
*/
|
|
7160
7924
|
'sbcId'?: string;
|
|
7161
7925
|
}
|
|
7926
|
+
/**
|
|
7927
|
+
* SBC Data
|
|
7928
|
+
* @export
|
|
7929
|
+
* @interface TcxSbcDTO
|
|
7930
|
+
*/
|
|
7931
|
+
export interface TcxSbcDTO {
|
|
7932
|
+
/**
|
|
7933
|
+
* LAN IP Address
|
|
7934
|
+
* @type {string}
|
|
7935
|
+
* @memberof TcxSbcDTO
|
|
7936
|
+
*/
|
|
7937
|
+
'ipAddress'?: string;
|
|
7938
|
+
/**
|
|
7939
|
+
* LAN Default Gateway
|
|
7940
|
+
* @type {string}
|
|
7941
|
+
* @memberof TcxSbcDTO
|
|
7942
|
+
*/
|
|
7943
|
+
'defaultGateway'?: string;
|
|
7944
|
+
/**
|
|
7945
|
+
* LAN Subnet Mask
|
|
7946
|
+
* @type {string}
|
|
7947
|
+
* @memberof TcxSbcDTO
|
|
7948
|
+
*/
|
|
7949
|
+
'netmask'?: string;
|
|
7950
|
+
/**
|
|
7951
|
+
* DNS
|
|
7952
|
+
* @type {string}
|
|
7953
|
+
* @memberof TcxSbcDTO
|
|
7954
|
+
*/
|
|
7955
|
+
'dns'?: string;
|
|
7956
|
+
/**
|
|
7957
|
+
* 3CX URL
|
|
7958
|
+
* @type {string}
|
|
7959
|
+
* @memberof TcxSbcDTO
|
|
7960
|
+
*/
|
|
7961
|
+
'tcxUrl'?: string;
|
|
7962
|
+
/**
|
|
7963
|
+
* 3CX SBC Key
|
|
7964
|
+
* @type {string}
|
|
7965
|
+
* @memberof TcxSbcDTO
|
|
7966
|
+
*/
|
|
7967
|
+
'tcxKey'?: string;
|
|
7968
|
+
}
|
|
7162
7969
|
/**
|
|
7163
7970
|
* 3CX Wizard SBC
|
|
7164
7971
|
* @export
|
|
@@ -7263,7 +8070,7 @@ export interface TcxSbcEntity {
|
|
|
7263
8070
|
'technicalContact'?: string;
|
|
7264
8071
|
}
|
|
7265
8072
|
/**
|
|
7266
|
-
* 3CX SBC
|
|
8073
|
+
* 3CX Wizard SBC
|
|
7267
8074
|
* @export
|
|
7268
8075
|
* @interface TcxSbcModel
|
|
7269
8076
|
*/
|
|
@@ -8329,6 +9136,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8329
9136
|
* @throws {RequiredError}
|
|
8330
9137
|
*/
|
|
8331
9138
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9139
|
+
/**
|
|
9140
|
+
* Get Account Detailed Summary
|
|
9141
|
+
* @summary Get Account Detailed Summary
|
|
9142
|
+
* @param {number} id Customer ID
|
|
9143
|
+
* @param {*} [options] Override http request option.
|
|
9144
|
+
* @throws {RequiredError}
|
|
9145
|
+
*/
|
|
9146
|
+
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8332
9147
|
/**
|
|
8333
9148
|
* Get Accounts
|
|
8334
9149
|
* @summary Get Accounts
|
|
@@ -8394,6 +9209,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8394
9209
|
* @throws {RequiredError}
|
|
8395
9210
|
*/
|
|
8396
9211
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9212
|
+
/**
|
|
9213
|
+
* Get Admin Account
|
|
9214
|
+
* @summary Get Admin Account
|
|
9215
|
+
* @param {*} [options] Override http request option.
|
|
9216
|
+
* @throws {RequiredError}
|
|
9217
|
+
*/
|
|
9218
|
+
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8397
9219
|
/**
|
|
8398
9220
|
* Create client credentials
|
|
8399
9221
|
* @summary Create client credentials
|
|
@@ -8474,6 +9296,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8474
9296
|
* @throws {RequiredError}
|
|
8475
9297
|
*/
|
|
8476
9298
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9299
|
+
/**
|
|
9300
|
+
* Get Account Detailed Summary
|
|
9301
|
+
* @summary Get Account Detailed Summary
|
|
9302
|
+
* @param {number} id Customer ID
|
|
9303
|
+
* @param {*} [options] Override http request option.
|
|
9304
|
+
* @throws {RequiredError}
|
|
9305
|
+
*/
|
|
9306
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
8477
9307
|
/**
|
|
8478
9308
|
* Get Accounts
|
|
8479
9309
|
* @summary Get Accounts
|
|
@@ -8539,6 +9369,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8539
9369
|
* @throws {RequiredError}
|
|
8540
9370
|
*/
|
|
8541
9371
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9372
|
+
/**
|
|
9373
|
+
* Get Admin Account
|
|
9374
|
+
* @summary Get Admin Account
|
|
9375
|
+
* @param {*} [options] Override http request option.
|
|
9376
|
+
* @throws {RequiredError}
|
|
9377
|
+
*/
|
|
9378
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
8542
9379
|
/**
|
|
8543
9380
|
* Create client credentials
|
|
8544
9381
|
* @summary Create client credentials
|
|
@@ -8619,6 +9456,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8619
9456
|
* @throws {RequiredError}
|
|
8620
9457
|
*/
|
|
8621
9458
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9459
|
+
/**
|
|
9460
|
+
* Get Account Detailed Summary
|
|
9461
|
+
* @summary Get Account Detailed Summary
|
|
9462
|
+
* @param {number} id Customer ID
|
|
9463
|
+
* @param {*} [options] Override http request option.
|
|
9464
|
+
* @throws {RequiredError}
|
|
9465
|
+
*/
|
|
9466
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
8622
9467
|
/**
|
|
8623
9468
|
* Get Accounts
|
|
8624
9469
|
* @summary Get Accounts
|
|
@@ -8684,6 +9529,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8684
9529
|
* @throws {RequiredError}
|
|
8685
9530
|
*/
|
|
8686
9531
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9532
|
+
/**
|
|
9533
|
+
* Get Admin Account
|
|
9534
|
+
* @summary Get Admin Account
|
|
9535
|
+
* @param {*} [options] Override http request option.
|
|
9536
|
+
* @throws {RequiredError}
|
|
9537
|
+
*/
|
|
9538
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
8687
9539
|
/**
|
|
8688
9540
|
* Create client credentials
|
|
8689
9541
|
* @summary Create client credentials
|
|
@@ -8762,14 +9614,23 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8762
9614
|
*/
|
|
8763
9615
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
8764
9616
|
/**
|
|
8765
|
-
* Get Account Contacts
|
|
8766
|
-
* @summary Get Account Contacts
|
|
8767
|
-
* @param {string} [email] Contact Email Address
|
|
9617
|
+
* Get Account Contacts
|
|
9618
|
+
* @summary Get Account Contacts
|
|
9619
|
+
* @param {string} [email] Contact Email Address
|
|
9620
|
+
* @param {*} [options] Override http request option.
|
|
9621
|
+
* @throws {RequiredError}
|
|
9622
|
+
* @memberof AccountsApi
|
|
9623
|
+
*/
|
|
9624
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9625
|
+
/**
|
|
9626
|
+
* Get Account Detailed Summary
|
|
9627
|
+
* @summary Get Account Detailed Summary
|
|
9628
|
+
* @param {number} id Customer ID
|
|
8768
9629
|
* @param {*} [options] Override http request option.
|
|
8769
9630
|
* @throws {RequiredError}
|
|
8770
9631
|
* @memberof AccountsApi
|
|
8771
9632
|
*/
|
|
8772
|
-
|
|
9633
|
+
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
8773
9634
|
/**
|
|
8774
9635
|
* Get Accounts
|
|
8775
9636
|
* @summary Get Accounts
|
|
@@ -8843,6 +9704,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
8843
9704
|
* @memberof AccountsApi
|
|
8844
9705
|
*/
|
|
8845
9706
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9707
|
+
/**
|
|
9708
|
+
* Get Admin Account
|
|
9709
|
+
* @summary Get Admin Account
|
|
9710
|
+
* @param {*} [options] Override http request option.
|
|
9711
|
+
* @throws {RequiredError}
|
|
9712
|
+
* @memberof AccountsApi
|
|
9713
|
+
*/
|
|
9714
|
+
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
8846
9715
|
/**
|
|
8847
9716
|
* Create client credentials
|
|
8848
9717
|
* @summary Create client credentials
|
|
@@ -8905,14 +9774,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8905
9774
|
* @throws {RequiredError}
|
|
8906
9775
|
*/
|
|
8907
9776
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8908
|
-
/**
|
|
8909
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8910
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8911
|
-
* @param {string} password Desired 3CX web access password
|
|
8912
|
-
* @param {*} [options] Override http request option.
|
|
8913
|
-
* @throws {RequiredError}
|
|
8914
|
-
*/
|
|
8915
|
-
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8916
9777
|
/**
|
|
8917
9778
|
* Get Bulk 3CX Licence Details
|
|
8918
9779
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8935,14 +9796,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
8935
9796
|
* @throws {RequiredError}
|
|
8936
9797
|
*/
|
|
8937
9798
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
8938
|
-
/**
|
|
8939
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8940
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8941
|
-
* @param {string} password Desired 3CX web access password
|
|
8942
|
-
* @param {*} [options] Override http request option.
|
|
8943
|
-
* @throws {RequiredError}
|
|
8944
|
-
*/
|
|
8945
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
8946
9799
|
/**
|
|
8947
9800
|
* Get Bulk 3CX Licence Details
|
|
8948
9801
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8965,14 +9818,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
8965
9818
|
* @throws {RequiredError}
|
|
8966
9819
|
*/
|
|
8967
9820
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
8968
|
-
/**
|
|
8969
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
8970
|
-
* @summary Convert a password to a hashed 3CX password
|
|
8971
|
-
* @param {string} password Desired 3CX web access password
|
|
8972
|
-
* @param {*} [options] Override http request option.
|
|
8973
|
-
* @throws {RequiredError}
|
|
8974
|
-
*/
|
|
8975
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
8976
9821
|
/**
|
|
8977
9822
|
* Get Bulk 3CX Licence Details
|
|
8978
9823
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -8998,15 +9843,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
8998
9843
|
* @memberof Class3CXApi
|
|
8999
9844
|
*/
|
|
9000
9845
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9001
|
-
/**
|
|
9002
|
-
* Generate a 3CX hashed password for 3CX installation
|
|
9003
|
-
* @summary Convert a password to a hashed 3CX password
|
|
9004
|
-
* @param {string} password Desired 3CX web access password
|
|
9005
|
-
* @param {*} [options] Override http request option.
|
|
9006
|
-
* @throws {RequiredError}
|
|
9007
|
-
* @memberof Class3CXApi
|
|
9008
|
-
*/
|
|
9009
|
-
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9010
9846
|
/**
|
|
9011
9847
|
* Get Bulk 3CX Licence Details
|
|
9012
9848
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11268,11 +12104,19 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11268
12104
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11269
12105
|
/**
|
|
11270
12106
|
* Delete Orders
|
|
12107
|
+
* @summary Delete Orders
|
|
12108
|
+
* @param {number} id Order ID
|
|
12109
|
+
* @param {*} [options] Override http request option.
|
|
12110
|
+
* @throws {RequiredError}
|
|
12111
|
+
*/
|
|
12112
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12113
|
+
/**
|
|
12114
|
+
* Get Editable Order
|
|
11271
12115
|
* @param {number} id Order ID
|
|
11272
12116
|
* @param {*} [options] Override http request option.
|
|
11273
12117
|
* @throws {RequiredError}
|
|
11274
12118
|
*/
|
|
11275
|
-
|
|
12119
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11276
12120
|
/**
|
|
11277
12121
|
* Get Orders
|
|
11278
12122
|
* @summary Get Orders
|
|
@@ -11287,6 +12131,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11287
12131
|
* @throws {RequiredError}
|
|
11288
12132
|
*/
|
|
11289
12133
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12134
|
+
/**
|
|
12135
|
+
* Create An Order (Admin)
|
|
12136
|
+
* @summary Create An Order (Admin)
|
|
12137
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12138
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12139
|
+
* @param {*} [options] Override http request option.
|
|
12140
|
+
* @throws {RequiredError}
|
|
12141
|
+
*/
|
|
12142
|
+
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12143
|
+
/**
|
|
12144
|
+
* Create An Order
|
|
12145
|
+
* @summary Create An Order
|
|
12146
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12147
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12148
|
+
* @param {*} [options] Override http request option.
|
|
12149
|
+
* @throws {RequiredError}
|
|
12150
|
+
*/
|
|
12151
|
+
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12152
|
+
/**
|
|
12153
|
+
* Update An Order (Admin)
|
|
12154
|
+
* @summary Update An Order (Admin)
|
|
12155
|
+
* @param {number} id Order ID
|
|
12156
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12157
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12158
|
+
* @param {*} [options] Override http request option.
|
|
12159
|
+
* @throws {RequiredError}
|
|
12160
|
+
*/
|
|
12161
|
+
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12162
|
+
/**
|
|
12163
|
+
* Update An Order
|
|
12164
|
+
* @summary Update An Order
|
|
12165
|
+
* @param {number} id Order ID
|
|
12166
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12167
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12168
|
+
* @param {*} [options] Override http request option.
|
|
12169
|
+
* @throws {RequiredError}
|
|
12170
|
+
*/
|
|
12171
|
+
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11290
12172
|
};
|
|
11291
12173
|
/**
|
|
11292
12174
|
* OrdersApi - functional programming interface
|
|
@@ -11295,11 +12177,19 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11295
12177
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11296
12178
|
/**
|
|
11297
12179
|
* Delete Orders
|
|
12180
|
+
* @summary Delete Orders
|
|
12181
|
+
* @param {number} id Order ID
|
|
12182
|
+
* @param {*} [options] Override http request option.
|
|
12183
|
+
* @throws {RequiredError}
|
|
12184
|
+
*/
|
|
12185
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12186
|
+
/**
|
|
12187
|
+
* Get Editable Order
|
|
11298
12188
|
* @param {number} id Order ID
|
|
11299
12189
|
* @param {*} [options] Override http request option.
|
|
11300
12190
|
* @throws {RequiredError}
|
|
11301
12191
|
*/
|
|
11302
|
-
|
|
12192
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummaryDTO>>;
|
|
11303
12193
|
/**
|
|
11304
12194
|
* Get Orders
|
|
11305
12195
|
* @summary Get Orders
|
|
@@ -11314,6 +12204,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11314
12204
|
* @throws {RequiredError}
|
|
11315
12205
|
*/
|
|
11316
12206
|
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>>;
|
|
12207
|
+
/**
|
|
12208
|
+
* Create An Order (Admin)
|
|
12209
|
+
* @summary Create An Order (Admin)
|
|
12210
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12211
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12212
|
+
* @param {*} [options] Override http request option.
|
|
12213
|
+
* @throws {RequiredError}
|
|
12214
|
+
*/
|
|
12215
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12216
|
+
/**
|
|
12217
|
+
* Create An Order
|
|
12218
|
+
* @summary Create An Order
|
|
12219
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12220
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12221
|
+
* @param {*} [options] Override http request option.
|
|
12222
|
+
* @throws {RequiredError}
|
|
12223
|
+
*/
|
|
12224
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12225
|
+
/**
|
|
12226
|
+
* Update An Order (Admin)
|
|
12227
|
+
* @summary Update An Order (Admin)
|
|
12228
|
+
* @param {number} id Order ID
|
|
12229
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12230
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12231
|
+
* @param {*} [options] Override http request option.
|
|
12232
|
+
* @throws {RequiredError}
|
|
12233
|
+
*/
|
|
12234
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12235
|
+
/**
|
|
12236
|
+
* Update An Order
|
|
12237
|
+
* @summary Update An Order
|
|
12238
|
+
* @param {number} id Order ID
|
|
12239
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12240
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12241
|
+
* @param {*} [options] Override http request option.
|
|
12242
|
+
* @throws {RequiredError}
|
|
12243
|
+
*/
|
|
12244
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
11317
12245
|
};
|
|
11318
12246
|
/**
|
|
11319
12247
|
* OrdersApi - factory interface
|
|
@@ -11322,11 +12250,19 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11322
12250
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11323
12251
|
/**
|
|
11324
12252
|
* Delete Orders
|
|
12253
|
+
* @summary Delete Orders
|
|
11325
12254
|
* @param {number} id Order ID
|
|
11326
12255
|
* @param {*} [options] Override http request option.
|
|
11327
12256
|
* @throws {RequiredError}
|
|
11328
12257
|
*/
|
|
11329
|
-
|
|
12258
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12259
|
+
/**
|
|
12260
|
+
* Get Editable Order
|
|
12261
|
+
* @param {number} id Order ID
|
|
12262
|
+
* @param {*} [options] Override http request option.
|
|
12263
|
+
* @throws {RequiredError}
|
|
12264
|
+
*/
|
|
12265
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummaryDTO>;
|
|
11330
12266
|
/**
|
|
11331
12267
|
* Get Orders
|
|
11332
12268
|
* @summary Get Orders
|
|
@@ -11341,6 +12277,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11341
12277
|
* @throws {RequiredError}
|
|
11342
12278
|
*/
|
|
11343
12279
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12280
|
+
/**
|
|
12281
|
+
* Create An Order (Admin)
|
|
12282
|
+
* @summary Create An Order (Admin)
|
|
12283
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12284
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12285
|
+
* @param {*} [options] Override http request option.
|
|
12286
|
+
* @throws {RequiredError}
|
|
12287
|
+
*/
|
|
12288
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12289
|
+
/**
|
|
12290
|
+
* Create An Order
|
|
12291
|
+
* @summary Create An Order
|
|
12292
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12293
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12294
|
+
* @param {*} [options] Override http request option.
|
|
12295
|
+
* @throws {RequiredError}
|
|
12296
|
+
*/
|
|
12297
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12298
|
+
/**
|
|
12299
|
+
* Update An Order (Admin)
|
|
12300
|
+
* @summary Update An Order (Admin)
|
|
12301
|
+
* @param {number} id Order ID
|
|
12302
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12303
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12304
|
+
* @param {*} [options] Override http request option.
|
|
12305
|
+
* @throws {RequiredError}
|
|
12306
|
+
*/
|
|
12307
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12308
|
+
/**
|
|
12309
|
+
* Update An Order
|
|
12310
|
+
* @summary Update An Order
|
|
12311
|
+
* @param {number} id Order ID
|
|
12312
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12313
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12314
|
+
* @param {*} [options] Override http request option.
|
|
12315
|
+
* @throws {RequiredError}
|
|
12316
|
+
*/
|
|
12317
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
11344
12318
|
};
|
|
11345
12319
|
/**
|
|
11346
12320
|
* OrdersApi - object-oriented interface
|
|
@@ -11351,12 +12325,21 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11351
12325
|
export declare class OrdersApi extends BaseAPI {
|
|
11352
12326
|
/**
|
|
11353
12327
|
* Delete Orders
|
|
12328
|
+
* @summary Delete Orders
|
|
12329
|
+
* @param {number} id Order ID
|
|
12330
|
+
* @param {*} [options] Override http request option.
|
|
12331
|
+
* @throws {RequiredError}
|
|
12332
|
+
* @memberof OrdersApi
|
|
12333
|
+
*/
|
|
12334
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12335
|
+
/**
|
|
12336
|
+
* Get Editable Order
|
|
11354
12337
|
* @param {number} id Order ID
|
|
11355
12338
|
* @param {*} [options] Override http request option.
|
|
11356
12339
|
* @throws {RequiredError}
|
|
11357
12340
|
* @memberof OrdersApi
|
|
11358
12341
|
*/
|
|
11359
|
-
|
|
12342
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO, any, {}>>;
|
|
11360
12343
|
/**
|
|
11361
12344
|
* Get Orders
|
|
11362
12345
|
* @summary Get Orders
|
|
@@ -11372,6 +12355,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11372
12355
|
* @memberof OrdersApi
|
|
11373
12356
|
*/
|
|
11374
12357
|
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, {}>>;
|
|
12358
|
+
/**
|
|
12359
|
+
* Create An Order (Admin)
|
|
12360
|
+
* @summary Create An Order (Admin)
|
|
12361
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12362
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12363
|
+
* @param {*} [options] Override http request option.
|
|
12364
|
+
* @throws {RequiredError}
|
|
12365
|
+
* @memberof OrdersApi
|
|
12366
|
+
*/
|
|
12367
|
+
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12368
|
+
/**
|
|
12369
|
+
* Create An Order
|
|
12370
|
+
* @summary Create An Order
|
|
12371
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12372
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12373
|
+
* @param {*} [options] Override http request option.
|
|
12374
|
+
* @throws {RequiredError}
|
|
12375
|
+
* @memberof OrdersApi
|
|
12376
|
+
*/
|
|
12377
|
+
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12378
|
+
/**
|
|
12379
|
+
* Update An Order (Admin)
|
|
12380
|
+
* @summary Update An Order (Admin)
|
|
12381
|
+
* @param {number} id Order ID
|
|
12382
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12383
|
+
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12384
|
+
* @param {*} [options] Override http request option.
|
|
12385
|
+
* @throws {RequiredError}
|
|
12386
|
+
* @memberof OrdersApi
|
|
12387
|
+
*/
|
|
12388
|
+
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12389
|
+
/**
|
|
12390
|
+
* Update An Order
|
|
12391
|
+
* @summary Update An Order
|
|
12392
|
+
* @param {number} id Order ID
|
|
12393
|
+
* @param {boolean} [readonly] Readonly Order
|
|
12394
|
+
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12395
|
+
* @param {*} [options] Override http request option.
|
|
12396
|
+
* @throws {RequiredError}
|
|
12397
|
+
* @memberof OrdersApi
|
|
12398
|
+
*/
|
|
12399
|
+
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
11375
12400
|
}
|
|
11376
12401
|
/**
|
|
11377
12402
|
* @export
|
|
@@ -11627,13 +12652,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11627
12652
|
* @throws {RequiredError}
|
|
11628
12653
|
*/
|
|
11629
12654
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11630
|
-
/**
|
|
11631
|
-
* Get Customer Price Lists
|
|
11632
|
-
* @summary Get Customer Price Lists
|
|
11633
|
-
* @param {*} [options] Override http request option.
|
|
11634
|
-
* @throws {RequiredError}
|
|
11635
|
-
*/
|
|
11636
|
-
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11637
12655
|
/**
|
|
11638
12656
|
* Get Current Stock & Pricing
|
|
11639
12657
|
* @summary Get Current Stock & Pricing
|
|
@@ -11646,13 +12664,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11646
12664
|
/**
|
|
11647
12665
|
* Get Products
|
|
11648
12666
|
* @summary Get Products
|
|
11649
|
-
* @param {number} [pageSize] Number Of Results
|
|
11650
|
-
* @param {number} [page] Page Number
|
|
11651
|
-
* @param {string} [search] Search
|
|
11652
12667
|
* @param {*} [options] Override http request option.
|
|
11653
12668
|
* @throws {RequiredError}
|
|
11654
12669
|
*/
|
|
11655
|
-
getGetProducts: (
|
|
12670
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11656
12671
|
/**
|
|
11657
12672
|
* Get Current Stock & Pricing
|
|
11658
12673
|
* @summary Get Current Stock & Pricing
|
|
@@ -11667,6 +12682,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11667
12682
|
* @throws {RequiredError}
|
|
11668
12683
|
*/
|
|
11669
12684
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12685
|
+
/**
|
|
12686
|
+
* Search Products
|
|
12687
|
+
* @summary Search Products
|
|
12688
|
+
* @param {number} [pageSize] Number Of Results
|
|
12689
|
+
* @param {number} [page] Page Number
|
|
12690
|
+
* @param {string} [search] Search
|
|
12691
|
+
* @param {*} [options] Override http request option.
|
|
12692
|
+
* @throws {RequiredError}
|
|
12693
|
+
*/
|
|
12694
|
+
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12695
|
+
/**
|
|
12696
|
+
* Get Product
|
|
12697
|
+
* @summary Get Product
|
|
12698
|
+
* @param {string} sku Product SKU
|
|
12699
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12700
|
+
* @param {*} [options] Override http request option.
|
|
12701
|
+
* @throws {RequiredError}
|
|
12702
|
+
*/
|
|
12703
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12704
|
+
/**
|
|
12705
|
+
* Get Product For Customer
|
|
12706
|
+
* @summary Get Product For Customer
|
|
12707
|
+
* @param {number} customerId Customer ID
|
|
12708
|
+
* @param {string} sku Product SKU
|
|
12709
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12710
|
+
* @param {*} [options] Override http request option.
|
|
12711
|
+
* @throws {RequiredError}
|
|
12712
|
+
*/
|
|
12713
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11670
12714
|
};
|
|
11671
12715
|
/**
|
|
11672
12716
|
* ProductsApi - functional programming interface
|
|
@@ -11680,13 +12724,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
11680
12724
|
* @throws {RequiredError}
|
|
11681
12725
|
*/
|
|
11682
12726
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
11683
|
-
/**
|
|
11684
|
-
* Get Customer Price Lists
|
|
11685
|
-
* @summary Get Customer Price Lists
|
|
11686
|
-
* @param {*} [options] Override http request option.
|
|
11687
|
-
* @throws {RequiredError}
|
|
11688
|
-
*/
|
|
11689
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
11690
12727
|
/**
|
|
11691
12728
|
* Get Current Stock & Pricing
|
|
11692
12729
|
* @summary Get Current Stock & Pricing
|
|
@@ -11699,13 +12736,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
11699
12736
|
/**
|
|
11700
12737
|
* Get Products
|
|
11701
12738
|
* @summary Get Products
|
|
11702
|
-
* @param {number} [pageSize] Number Of Results
|
|
11703
|
-
* @param {number} [page] Page Number
|
|
11704
|
-
* @param {string} [search] Search
|
|
11705
12739
|
* @param {*} [options] Override http request option.
|
|
11706
12740
|
* @throws {RequiredError}
|
|
11707
12741
|
*/
|
|
11708
|
-
getGetProducts(
|
|
12742
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
11709
12743
|
/**
|
|
11710
12744
|
* Get Current Stock & Pricing
|
|
11711
12745
|
* @summary Get Current Stock & Pricing
|
|
@@ -11720,6 +12754,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
11720
12754
|
* @throws {RequiredError}
|
|
11721
12755
|
*/
|
|
11722
12756
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
12757
|
+
/**
|
|
12758
|
+
* Search Products
|
|
12759
|
+
* @summary Search Products
|
|
12760
|
+
* @param {number} [pageSize] Number Of Results
|
|
12761
|
+
* @param {number} [page] Page Number
|
|
12762
|
+
* @param {string} [search] Search
|
|
12763
|
+
* @param {*} [options] Override http request option.
|
|
12764
|
+
* @throws {RequiredError}
|
|
12765
|
+
*/
|
|
12766
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12767
|
+
/**
|
|
12768
|
+
* Get Product
|
|
12769
|
+
* @summary Get Product
|
|
12770
|
+
* @param {string} sku Product SKU
|
|
12771
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12772
|
+
* @param {*} [options] Override http request option.
|
|
12773
|
+
* @throws {RequiredError}
|
|
12774
|
+
*/
|
|
12775
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12776
|
+
/**
|
|
12777
|
+
* Get Product For Customer
|
|
12778
|
+
* @summary Get Product For Customer
|
|
12779
|
+
* @param {number} customerId Customer ID
|
|
12780
|
+
* @param {string} sku Product SKU
|
|
12781
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12782
|
+
* @param {*} [options] Override http request option.
|
|
12783
|
+
* @throws {RequiredError}
|
|
12784
|
+
*/
|
|
12785
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
11723
12786
|
};
|
|
11724
12787
|
/**
|
|
11725
12788
|
* ProductsApi - factory interface
|
|
@@ -11733,13 +12796,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
11733
12796
|
* @throws {RequiredError}
|
|
11734
12797
|
*/
|
|
11735
12798
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
11736
|
-
/**
|
|
11737
|
-
* Get Customer Price Lists
|
|
11738
|
-
* @summary Get Customer Price Lists
|
|
11739
|
-
* @param {*} [options] Override http request option.
|
|
11740
|
-
* @throws {RequiredError}
|
|
11741
|
-
*/
|
|
11742
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
11743
12799
|
/**
|
|
11744
12800
|
* Get Current Stock & Pricing
|
|
11745
12801
|
* @summary Get Current Stock & Pricing
|
|
@@ -11752,13 +12808,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
11752
12808
|
/**
|
|
11753
12809
|
* Get Products
|
|
11754
12810
|
* @summary Get Products
|
|
11755
|
-
* @param {number} [pageSize] Number Of Results
|
|
11756
|
-
* @param {number} [page] Page Number
|
|
11757
|
-
* @param {string} [search] Search
|
|
11758
12811
|
* @param {*} [options] Override http request option.
|
|
11759
12812
|
* @throws {RequiredError}
|
|
11760
12813
|
*/
|
|
11761
|
-
getGetProducts(
|
|
12814
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
11762
12815
|
/**
|
|
11763
12816
|
* Get Current Stock & Pricing
|
|
11764
12817
|
* @summary Get Current Stock & Pricing
|
|
@@ -11773,6 +12826,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
11773
12826
|
* @throws {RequiredError}
|
|
11774
12827
|
*/
|
|
11775
12828
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
12829
|
+
/**
|
|
12830
|
+
* Search Products
|
|
12831
|
+
* @summary Search Products
|
|
12832
|
+
* @param {number} [pageSize] Number Of Results
|
|
12833
|
+
* @param {number} [page] Page Number
|
|
12834
|
+
* @param {string} [search] Search
|
|
12835
|
+
* @param {*} [options] Override http request option.
|
|
12836
|
+
* @throws {RequiredError}
|
|
12837
|
+
*/
|
|
12838
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12839
|
+
/**
|
|
12840
|
+
* Get Product
|
|
12841
|
+
* @summary Get Product
|
|
12842
|
+
* @param {string} sku Product SKU
|
|
12843
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12844
|
+
* @param {*} [options] Override http request option.
|
|
12845
|
+
* @throws {RequiredError}
|
|
12846
|
+
*/
|
|
12847
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12848
|
+
/**
|
|
12849
|
+
* Get Product For Customer
|
|
12850
|
+
* @summary Get Product For Customer
|
|
12851
|
+
* @param {number} customerId Customer ID
|
|
12852
|
+
* @param {string} sku Product SKU
|
|
12853
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12854
|
+
* @param {*} [options] Override http request option.
|
|
12855
|
+
* @throws {RequiredError}
|
|
12856
|
+
*/
|
|
12857
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
11776
12858
|
};
|
|
11777
12859
|
/**
|
|
11778
12860
|
* ProductsApi - object-oriented interface
|
|
@@ -11789,14 +12871,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
11789
12871
|
* @memberof ProductsApi
|
|
11790
12872
|
*/
|
|
11791
12873
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
11792
|
-
/**
|
|
11793
|
-
* Get Customer Price Lists
|
|
11794
|
-
* @summary Get Customer Price Lists
|
|
11795
|
-
* @param {*} [options] Override http request option.
|
|
11796
|
-
* @throws {RequiredError}
|
|
11797
|
-
* @memberof ProductsApi
|
|
11798
|
-
*/
|
|
11799
|
-
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
11800
12874
|
/**
|
|
11801
12875
|
* Get Current Stock & Pricing
|
|
11802
12876
|
* @summary Get Current Stock & Pricing
|
|
@@ -11810,14 +12884,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
11810
12884
|
/**
|
|
11811
12885
|
* Get Products
|
|
11812
12886
|
* @summary Get Products
|
|
11813
|
-
* @param {number} [pageSize] Number Of Results
|
|
11814
|
-
* @param {number} [page] Page Number
|
|
11815
|
-
* @param {string} [search] Search
|
|
11816
12887
|
* @param {*} [options] Override http request option.
|
|
11817
12888
|
* @throws {RequiredError}
|
|
11818
12889
|
* @memberof ProductsApi
|
|
11819
12890
|
*/
|
|
11820
|
-
getGetProducts(
|
|
12891
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
11821
12892
|
/**
|
|
11822
12893
|
* Get Current Stock & Pricing
|
|
11823
12894
|
* @summary Get Current Stock & Pricing
|
|
@@ -11834,6 +12905,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
11834
12905
|
* @memberof ProductsApi
|
|
11835
12906
|
*/
|
|
11836
12907
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
12908
|
+
/**
|
|
12909
|
+
* Search Products
|
|
12910
|
+
* @summary Search Products
|
|
12911
|
+
* @param {number} [pageSize] Number Of Results
|
|
12912
|
+
* @param {number} [page] Page Number
|
|
12913
|
+
* @param {string} [search] Search
|
|
12914
|
+
* @param {*} [options] Override http request option.
|
|
12915
|
+
* @throws {RequiredError}
|
|
12916
|
+
* @memberof ProductsApi
|
|
12917
|
+
*/
|
|
12918
|
+
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12919
|
+
/**
|
|
12920
|
+
* Get Product
|
|
12921
|
+
* @summary Get Product
|
|
12922
|
+
* @param {string} sku Product SKU
|
|
12923
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12924
|
+
* @param {*} [options] Override http request option.
|
|
12925
|
+
* @throws {RequiredError}
|
|
12926
|
+
* @memberof ProductsApi
|
|
12927
|
+
*/
|
|
12928
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
12929
|
+
/**
|
|
12930
|
+
* Get Product For Customer
|
|
12931
|
+
* @summary Get Product For Customer
|
|
12932
|
+
* @param {number} customerId Customer ID
|
|
12933
|
+
* @param {string} sku Product SKU
|
|
12934
|
+
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
12935
|
+
* @param {*} [options] Override http request option.
|
|
12936
|
+
* @throws {RequiredError}
|
|
12937
|
+
* @memberof ProductsApi
|
|
12938
|
+
*/
|
|
12939
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
11837
12940
|
}
|
|
11838
12941
|
/**
|
|
11839
12942
|
* @export
|
|
@@ -11954,7 +13057,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
11954
13057
|
* @param {*} [options] Override http request option.
|
|
11955
13058
|
* @throws {RequiredError}
|
|
11956
13059
|
*/
|
|
11957
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13060
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
11958
13061
|
/**
|
|
11959
13062
|
* Create a Fanvil provisioning group
|
|
11960
13063
|
* @summary Add group to DB and FDPS
|
|
@@ -11962,7 +13065,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
11962
13065
|
* @param {*} [options] Override http request option.
|
|
11963
13066
|
* @throws {RequiredError}
|
|
11964
13067
|
*/
|
|
11965
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13068
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
11966
13069
|
/**
|
|
11967
13070
|
* Add MAC address to DB and FDPS group
|
|
11968
13071
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12019,7 +13122,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12019
13122
|
* @param {*} [options] Override http request option.
|
|
12020
13123
|
* @throws {RequiredError}
|
|
12021
13124
|
*/
|
|
12022
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13125
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12023
13126
|
/**
|
|
12024
13127
|
* Create a Fanvil provisioning group
|
|
12025
13128
|
* @summary Add group to DB and FDPS
|
|
@@ -12027,7 +13130,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12027
13130
|
* @param {*} [options] Override http request option.
|
|
12028
13131
|
* @throws {RequiredError}
|
|
12029
13132
|
*/
|
|
12030
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13133
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12031
13134
|
/**
|
|
12032
13135
|
* Add MAC address to DB and FDPS group
|
|
12033
13136
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12091,7 +13194,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12091
13194
|
* @throws {RequiredError}
|
|
12092
13195
|
* @memberof ProvisioningApi
|
|
12093
13196
|
*/
|
|
12094
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13197
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12095
13198
|
/**
|
|
12096
13199
|
* Create a Fanvil provisioning group
|
|
12097
13200
|
* @summary Add group to DB and FDPS
|
|
@@ -12100,7 +13203,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12100
13203
|
* @throws {RequiredError}
|
|
12101
13204
|
* @memberof ProvisioningApi
|
|
12102
13205
|
*/
|
|
12103
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13206
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12104
13207
|
/**
|
|
12105
13208
|
* Add MAC address to DB and FDPS group
|
|
12106
13209
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12975,6 +14078,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
12975
14078
|
*/
|
|
12976
14079
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
12977
14080
|
}
|
|
14081
|
+
/**
|
|
14082
|
+
* ShippingApi - axios parameter creator
|
|
14083
|
+
* @export
|
|
14084
|
+
*/
|
|
14085
|
+
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14086
|
+
/**
|
|
14087
|
+
* Get Shipping Services
|
|
14088
|
+
* @summary Get Shipping Services
|
|
14089
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14090
|
+
* @param {*} [options] Override http request option.
|
|
14091
|
+
* @throws {RequiredError}
|
|
14092
|
+
*/
|
|
14093
|
+
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14094
|
+
};
|
|
14095
|
+
/**
|
|
14096
|
+
* ShippingApi - functional programming interface
|
|
14097
|
+
* @export
|
|
14098
|
+
*/
|
|
14099
|
+
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14100
|
+
/**
|
|
14101
|
+
* Get Shipping Services
|
|
14102
|
+
* @summary Get Shipping Services
|
|
14103
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14104
|
+
* @param {*} [options] Override http request option.
|
|
14105
|
+
* @throws {RequiredError}
|
|
14106
|
+
*/
|
|
14107
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14108
|
+
};
|
|
14109
|
+
/**
|
|
14110
|
+
* ShippingApi - factory interface
|
|
14111
|
+
* @export
|
|
14112
|
+
*/
|
|
14113
|
+
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14114
|
+
/**
|
|
14115
|
+
* Get Shipping Services
|
|
14116
|
+
* @summary Get Shipping Services
|
|
14117
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14118
|
+
* @param {*} [options] Override http request option.
|
|
14119
|
+
* @throws {RequiredError}
|
|
14120
|
+
*/
|
|
14121
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14122
|
+
};
|
|
14123
|
+
/**
|
|
14124
|
+
* ShippingApi - object-oriented interface
|
|
14125
|
+
* @export
|
|
14126
|
+
* @class ShippingApi
|
|
14127
|
+
* @extends {BaseAPI}
|
|
14128
|
+
*/
|
|
14129
|
+
export declare class ShippingApi extends BaseAPI {
|
|
14130
|
+
/**
|
|
14131
|
+
* Get Shipping Services
|
|
14132
|
+
* @summary Get Shipping Services
|
|
14133
|
+
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14134
|
+
* @param {*} [options] Override http request option.
|
|
14135
|
+
* @throws {RequiredError}
|
|
14136
|
+
* @memberof ShippingApi
|
|
14137
|
+
*/
|
|
14138
|
+
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14139
|
+
}
|
|
12978
14140
|
/**
|
|
12979
14141
|
* StockManagementApi - axios parameter creator
|
|
12980
14142
|
* @export
|
|
@@ -13304,7 +14466,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13304
14466
|
* @param {*} [options] Override http request option.
|
|
13305
14467
|
* @throws {RequiredError}
|
|
13306
14468
|
*/
|
|
13307
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
14469
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13308
14470
|
/**
|
|
13309
14471
|
* Get Stock Order Supplier Invoice
|
|
13310
14472
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13519,7 +14681,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
13519
14681
|
* @param {*} [options] Override http request option.
|
|
13520
14682
|
* @throws {RequiredError}
|
|
13521
14683
|
*/
|
|
13522
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14684
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
13523
14685
|
/**
|
|
13524
14686
|
* Get Stock Order Supplier Invoice
|
|
13525
14687
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -13749,7 +14911,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
13749
14911
|
* @throws {RequiredError}
|
|
13750
14912
|
* @memberof StockManagementApi
|
|
13751
14913
|
*/
|
|
13752
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14914
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
13753
14915
|
/**
|
|
13754
14916
|
* Get Stock Order Supplier Invoice
|
|
13755
14917
|
* @summary Get Stock Order Supplier Invoice
|