yellowgrid-api-ts 3.0.85-dev.0 → 3.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +190 -209
- package/README.md +7 -35
- package/api.ts +276 -1816
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +156 -1318
- package/dist/api.js +208 -1060
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AccountsApi.md +0 -103
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -10
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -301
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxBackupModel.md +2 -0
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -35
- package/docs/AdminItemRequestDTO.md +0 -37
- package/docs/AdminOrderRequestDTO.md +0 -41
- package/docs/AdminUserModel.md +0 -31
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -33
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/NavigationItemModel.md +0 -27
- package/docs/PostGetProductForCustomerRequest.md +0 -24
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/SubNavigationItemModel.md +0 -25
- package/docs/TcxSbcDTO.md +0 -31
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,55 +13,6 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
* Order Request
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AbstractOrderRequestDTO
|
|
20
|
-
*/
|
|
21
|
-
export interface AbstractOrderRequestDTO {
|
|
22
|
-
/**
|
|
23
|
-
* Order Reference
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AbstractOrderRequestDTO
|
|
26
|
-
*/
|
|
27
|
-
'orderReference'?: string;
|
|
28
|
-
/**
|
|
29
|
-
* Items
|
|
30
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
-
* @memberof AbstractOrderRequestDTO
|
|
32
|
-
*/
|
|
33
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {ShippingServiceDTO}
|
|
37
|
-
* @memberof AbstractOrderRequestDTO
|
|
38
|
-
*/
|
|
39
|
-
'shippingService'?: ShippingServiceDTO;
|
|
40
|
-
/**
|
|
41
|
-
* Provisioning URL
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AbstractOrderRequestDTO
|
|
44
|
-
*/
|
|
45
|
-
'provisioningUrl'?: string | null;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {AddressModel}
|
|
49
|
-
* @memberof AbstractOrderRequestDTO
|
|
50
|
-
*/
|
|
51
|
-
'shippingAddress'?: AddressModel | null;
|
|
52
|
-
/**
|
|
53
|
-
* Part Ship Order
|
|
54
|
-
* @type {boolean}
|
|
55
|
-
* @memberof AbstractOrderRequestDTO
|
|
56
|
-
*/
|
|
57
|
-
'partShip'?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Quote
|
|
60
|
-
* @type {boolean}
|
|
61
|
-
* @memberof AbstractOrderRequestDTO
|
|
62
|
-
*/
|
|
63
|
-
'quote'?: boolean;
|
|
64
|
-
}
|
|
65
16
|
/**
|
|
66
17
|
* AccountContactsEntity
|
|
67
18
|
* @export
|
|
@@ -293,61 +244,6 @@ export interface AccountContactRequestModel {
|
|
|
293
244
|
*/
|
|
294
245
|
'despatchEmails'?: boolean;
|
|
295
246
|
}
|
|
296
|
-
/**
|
|
297
|
-
* Account Details
|
|
298
|
-
* @export
|
|
299
|
-
* @interface AccountDetailedSummaryDTO
|
|
300
|
-
*/
|
|
301
|
-
export interface AccountDetailedSummaryDTO {
|
|
302
|
-
/**
|
|
303
|
-
* ID
|
|
304
|
-
* @type {number}
|
|
305
|
-
* @memberof AccountDetailedSummaryDTO
|
|
306
|
-
*/
|
|
307
|
-
'id'?: number;
|
|
308
|
-
/**
|
|
309
|
-
* Xero ID
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof AccountDetailedSummaryDTO
|
|
312
|
-
*/
|
|
313
|
-
'xeroId'?: string;
|
|
314
|
-
/**
|
|
315
|
-
* Company
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof AccountDetailedSummaryDTO
|
|
318
|
-
*/
|
|
319
|
-
'company'?: string;
|
|
320
|
-
/**
|
|
321
|
-
* Credit Limit
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof AccountDetailedSummaryDTO
|
|
324
|
-
*/
|
|
325
|
-
'creditLimit'?: number;
|
|
326
|
-
/**
|
|
327
|
-
* Contacts
|
|
328
|
-
* @type {Array<AccountContactModel>}
|
|
329
|
-
* @memberof AccountDetailedSummaryDTO
|
|
330
|
-
*/
|
|
331
|
-
'contacts'?: Array<AccountContactModel>;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {AddressModel}
|
|
335
|
-
* @memberof AccountDetailedSummaryDTO
|
|
336
|
-
*/
|
|
337
|
-
'billingAddress'?: AddressModel;
|
|
338
|
-
/**
|
|
339
|
-
* Addresses
|
|
340
|
-
* @type {Array<AddressModel>}
|
|
341
|
-
* @memberof AccountDetailedSummaryDTO
|
|
342
|
-
*/
|
|
343
|
-
'addresses'?: Array<AddressModel>;
|
|
344
|
-
/**
|
|
345
|
-
* Provisioning URLs
|
|
346
|
-
* @type {Array<ProvisioningModel>}
|
|
347
|
-
* @memberof AccountDetailedSummaryDTO
|
|
348
|
-
*/
|
|
349
|
-
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
-
}
|
|
351
247
|
/**
|
|
352
248
|
* New Account Request
|
|
353
249
|
* @export
|
|
@@ -629,191 +525,6 @@ export interface AddressRequestModel {
|
|
|
629
525
|
*/
|
|
630
526
|
'addressPostcode'?: string;
|
|
631
527
|
}
|
|
632
|
-
/**
|
|
633
|
-
* Admin Order Item Request
|
|
634
|
-
* @export
|
|
635
|
-
* @interface AdminItemRequestDTO
|
|
636
|
-
*/
|
|
637
|
-
export interface AdminItemRequestDTO {
|
|
638
|
-
/**
|
|
639
|
-
* SKU
|
|
640
|
-
* @type {string}
|
|
641
|
-
* @memberof AdminItemRequestDTO
|
|
642
|
-
*/
|
|
643
|
-
'sku'?: string;
|
|
644
|
-
/**
|
|
645
|
-
* Quantity
|
|
646
|
-
* @type {number}
|
|
647
|
-
* @memberof AdminItemRequestDTO
|
|
648
|
-
*/
|
|
649
|
-
'quantity'?: number;
|
|
650
|
-
/**
|
|
651
|
-
* ID
|
|
652
|
-
* @type {number}
|
|
653
|
-
* @memberof AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
'id'?: number | null;
|
|
656
|
-
/**
|
|
657
|
-
* 3CX Licence Key
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'licenceKey'?: string | null;
|
|
662
|
-
/**
|
|
663
|
-
* 3CX Hosting
|
|
664
|
-
* @type {boolean}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'hosting'?: boolean | null;
|
|
668
|
-
/**
|
|
669
|
-
* Date Time
|
|
670
|
-
* @type {string}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'processDate'?: string;
|
|
674
|
-
/**
|
|
675
|
-
* SBCS
|
|
676
|
-
* @type {Array<TcxSbcDTO>}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
680
|
-
/**
|
|
681
|
-
* Title
|
|
682
|
-
* @type {string}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'title'?: string | null;
|
|
686
|
-
/**
|
|
687
|
-
* Price (£)
|
|
688
|
-
* @type {number}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'itemPrice'?: number | null;
|
|
692
|
-
}
|
|
693
|
-
/**
|
|
694
|
-
* Admin Order Request
|
|
695
|
-
* @export
|
|
696
|
-
* @interface AdminOrderRequestDTO
|
|
697
|
-
*/
|
|
698
|
-
export interface AdminOrderRequestDTO {
|
|
699
|
-
/**
|
|
700
|
-
* Order Reference
|
|
701
|
-
* @type {string}
|
|
702
|
-
* @memberof AdminOrderRequestDTO
|
|
703
|
-
*/
|
|
704
|
-
'orderReference'?: string;
|
|
705
|
-
/**
|
|
706
|
-
* Items
|
|
707
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
708
|
-
* @memberof AdminOrderRequestDTO
|
|
709
|
-
*/
|
|
710
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
711
|
-
/**
|
|
712
|
-
*
|
|
713
|
-
* @type {ShippingServiceDTO}
|
|
714
|
-
* @memberof AdminOrderRequestDTO
|
|
715
|
-
*/
|
|
716
|
-
'shippingService'?: ShippingServiceDTO;
|
|
717
|
-
/**
|
|
718
|
-
* Provisioning URL
|
|
719
|
-
* @type {string}
|
|
720
|
-
* @memberof AdminOrderRequestDTO
|
|
721
|
-
*/
|
|
722
|
-
'provisioningUrl'?: string | null;
|
|
723
|
-
/**
|
|
724
|
-
*
|
|
725
|
-
* @type {AddressModel}
|
|
726
|
-
* @memberof AdminOrderRequestDTO
|
|
727
|
-
*/
|
|
728
|
-
'shippingAddress'?: AddressModel;
|
|
729
|
-
/**
|
|
730
|
-
* Part Ship Order
|
|
731
|
-
* @type {boolean}
|
|
732
|
-
* @memberof AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
'partShip'?: boolean;
|
|
735
|
-
/**
|
|
736
|
-
* Quote
|
|
737
|
-
* @type {boolean}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'quote'?: boolean;
|
|
741
|
-
/**
|
|
742
|
-
* Customer ID
|
|
743
|
-
* @type {number}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'customerId'?: number;
|
|
747
|
-
/**
|
|
748
|
-
* Ignore Customer On Hold
|
|
749
|
-
* @type {boolean}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'ignoreOnHold'?: boolean;
|
|
753
|
-
/**
|
|
754
|
-
* Ignore Customer Credit Limit
|
|
755
|
-
* @type {boolean}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'ignoreCreditLimit'?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* Include NFR Promos
|
|
761
|
-
* @type {boolean}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'includeNfrPromos'?: boolean;
|
|
765
|
-
}
|
|
766
|
-
/**
|
|
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];
|
|
817
528
|
/**
|
|
818
529
|
* Agent Hours Graph
|
|
819
530
|
* @export
|
|
@@ -1043,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1043
754
|
*/
|
|
1044
755
|
'redirect_uri'?: string | null;
|
|
1045
756
|
}
|
|
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
|
-
}
|
|
1084
757
|
/**
|
|
1085
758
|
* BatchesEntity
|
|
1086
759
|
* @export
|
|
@@ -1275,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1275
948
|
* @memberof ClientDetailsModel
|
|
1276
949
|
*/
|
|
1277
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1278
957
|
}
|
|
1279
958
|
/**
|
|
1280
959
|
* OAuth client details
|
|
@@ -1436,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1436
1115
|
*/
|
|
1437
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1438
1117
|
}
|
|
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
|
-
}
|
|
1506
1118
|
/**
|
|
1507
1119
|
* Credit Account
|
|
1508
1120
|
* @export
|
|
@@ -1685,104 +1297,6 @@ export interface CustomerInformationModel {
|
|
|
1685
1297
|
*/
|
|
1686
1298
|
'contactLastName'?: string;
|
|
1687
1299
|
}
|
|
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
|
-
}
|
|
1786
1300
|
/**
|
|
1787
1301
|
* Customer Price List
|
|
1788
1302
|
* @export
|
|
@@ -2289,6 +1803,19 @@ export interface GenericFileModel {
|
|
|
2289
1803
|
*/
|
|
2290
1804
|
'type'?: string;
|
|
2291
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
|
+
}
|
|
2292
1819
|
/**
|
|
2293
1820
|
*
|
|
2294
1821
|
* @export
|
|
@@ -2846,36 +2373,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2846
2373
|
* @interface ItemDTO
|
|
2847
2374
|
*/
|
|
2848
2375
|
export interface ItemDTO {
|
|
2849
|
-
/**
|
|
2850
|
-
* SKU
|
|
2851
|
-
* @type {string}
|
|
2852
|
-
* @memberof ItemDTO
|
|
2853
|
-
*/
|
|
2854
|
-
'sku'?: string;
|
|
2855
|
-
/**
|
|
2856
|
-
* Quantity
|
|
2857
|
-
* @type {number}
|
|
2858
|
-
* @memberof ItemDTO
|
|
2859
|
-
*/
|
|
2860
|
-
'quantity'?: number;
|
|
2861
2376
|
/**
|
|
2862
2377
|
* ID
|
|
2863
2378
|
* @type {number}
|
|
2864
2379
|
* @memberof ItemDTO
|
|
2865
2380
|
*/
|
|
2866
|
-
'id'?: number
|
|
2381
|
+
'id'?: number;
|
|
2867
2382
|
/**
|
|
2868
2383
|
* Order ID
|
|
2869
2384
|
* @type {number}
|
|
2870
2385
|
* @memberof ItemDTO
|
|
2871
2386
|
*/
|
|
2872
|
-
'orderId'?: number
|
|
2387
|
+
'orderId'?: number;
|
|
2873
2388
|
/**
|
|
2874
2389
|
* Title
|
|
2875
2390
|
* @type {string}
|
|
2876
2391
|
* @memberof ItemDTO
|
|
2877
2392
|
*/
|
|
2878
|
-
'title'?: string;
|
|
2393
|
+
'title'?: string;
|
|
2394
|
+
/**
|
|
2395
|
+
* SKU
|
|
2396
|
+
* @type {string}
|
|
2397
|
+
* @memberof ItemDTO
|
|
2398
|
+
*/
|
|
2399
|
+
'sku'?: string;
|
|
2400
|
+
/**
|
|
2401
|
+
* Quantity
|
|
2402
|
+
* @type {number}
|
|
2403
|
+
* @memberof ItemDTO
|
|
2404
|
+
*/
|
|
2405
|
+
'quantity'?: number;
|
|
2879
2406
|
/**
|
|
2880
2407
|
* Price
|
|
2881
2408
|
* @type {number}
|
|
@@ -2900,12 +2427,6 @@ export interface ItemDTO {
|
|
|
2900
2427
|
* @memberof ItemDTO
|
|
2901
2428
|
*/
|
|
2902
2429
|
'processDate'?: string;
|
|
2903
|
-
/**
|
|
2904
|
-
* 3CX Hosting
|
|
2905
|
-
* @type {boolean}
|
|
2906
|
-
* @memberof ItemDTO
|
|
2907
|
-
*/
|
|
2908
|
-
'hosting'?: boolean | null;
|
|
2909
2430
|
/**
|
|
2910
2431
|
* Promo Item
|
|
2911
2432
|
* @type {boolean}
|
|
@@ -2917,19 +2438,7 @@ export interface ItemDTO {
|
|
|
2917
2438
|
* @type {number}
|
|
2918
2439
|
* @memberof ItemDTO
|
|
2919
2440
|
*/
|
|
2920
|
-
'refunded'?: number
|
|
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;
|
|
2441
|
+
'refunded'?: number;
|
|
2933
2442
|
}
|
|
2934
2443
|
/**
|
|
2935
2444
|
* ItemsEntity
|
|
@@ -3064,25 +2573,6 @@ export interface ItemEntity {
|
|
|
3064
2573
|
*/
|
|
3065
2574
|
'promoItem'?: number;
|
|
3066
2575
|
}
|
|
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
|
-
}
|
|
3086
2576
|
/**
|
|
3087
2577
|
* MFA Required
|
|
3088
2578
|
* @export
|
|
@@ -3169,37 +2659,6 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
3169
2659
|
readonly CallBarring: "Call Barring";
|
|
3170
2660
|
};
|
|
3171
2661
|
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
|
-
}
|
|
3203
2662
|
/**
|
|
3204
2663
|
* Navigation Endpoint
|
|
3205
2664
|
* @export
|
|
@@ -3773,12 +3232,6 @@ export interface OrderSummaryDTO {
|
|
|
3773
3232
|
* @memberof OrderSummaryDTO
|
|
3774
3233
|
*/
|
|
3775
3234
|
'invoiceNumber'?: string;
|
|
3776
|
-
/**
|
|
3777
|
-
* Invoice ID
|
|
3778
|
-
* @type {string}
|
|
3779
|
-
* @memberof OrderSummaryDTO
|
|
3780
|
-
*/
|
|
3781
|
-
'invoiceId'?: string | null;
|
|
3782
3235
|
/**
|
|
3783
3236
|
* Date Time
|
|
3784
3237
|
* @type {string}
|
|
@@ -3833,24 +3286,6 @@ export interface OrderSummaryDTO {
|
|
|
3833
3286
|
* @memberof OrderSummaryDTO
|
|
3834
3287
|
*/
|
|
3835
3288
|
'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;
|
|
3854
3289
|
}
|
|
3855
3290
|
/**
|
|
3856
3291
|
* Order Totals
|
|
@@ -3900,12 +3335,6 @@ export interface OrderTotalModel {
|
|
|
3900
3335
|
* @memberof OrderTotalModel
|
|
3901
3336
|
*/
|
|
3902
3337
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3903
|
-
/**
|
|
3904
|
-
* Delivery
|
|
3905
|
-
* @type {number}
|
|
3906
|
-
* @memberof OrderTotalModel
|
|
3907
|
-
*/
|
|
3908
|
-
'delivery'?: number | null;
|
|
3909
3338
|
}
|
|
3910
3339
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3911
3340
|
readonly Eur: "EUR";
|
|
@@ -4284,31 +3713,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4284
3713
|
*/
|
|
4285
3714
|
'scopes'?: Array<string>;
|
|
4286
3715
|
}
|
|
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
|
-
}
|
|
4312
3716
|
/**
|
|
4313
3717
|
* Price & Stock List
|
|
4314
3718
|
* @export
|
|
@@ -4397,10 +3801,10 @@ export interface PrizesEntity {
|
|
|
4397
3801
|
export interface ProductSearchResultsModel {
|
|
4398
3802
|
/**
|
|
4399
3803
|
* Results
|
|
4400
|
-
* @type {Array<
|
|
3804
|
+
* @type {Array<ProductSummaryModel>}
|
|
4401
3805
|
* @memberof ProductSearchResultsModel
|
|
4402
3806
|
*/
|
|
4403
|
-
'results'?: Array<
|
|
3807
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4404
3808
|
}
|
|
4405
3809
|
/**
|
|
4406
3810
|
* Product Serial Info
|
|
@@ -4436,51 +3840,45 @@ export interface ProductSerialInfoModel {
|
|
|
4436
3840
|
/**
|
|
4437
3841
|
* Product Summary
|
|
4438
3842
|
* @export
|
|
4439
|
-
* @interface
|
|
3843
|
+
* @interface ProductSummaryModel
|
|
4440
3844
|
*/
|
|
4441
|
-
export interface
|
|
3845
|
+
export interface ProductSummaryModel {
|
|
4442
3846
|
/**
|
|
4443
3847
|
* SKU
|
|
4444
3848
|
* @type {string}
|
|
4445
|
-
* @memberof
|
|
3849
|
+
* @memberof ProductSummaryModel
|
|
4446
3850
|
*/
|
|
4447
3851
|
'sku'?: string;
|
|
4448
3852
|
/**
|
|
4449
3853
|
* Title
|
|
4450
3854
|
* @type {string}
|
|
4451
|
-
* @memberof
|
|
3855
|
+
* @memberof ProductSummaryModel
|
|
4452
3856
|
*/
|
|
4453
3857
|
'title'?: string;
|
|
4454
3858
|
/**
|
|
4455
3859
|
* Stock Quantity
|
|
4456
3860
|
* @type {number}
|
|
4457
|
-
* @memberof
|
|
3861
|
+
* @memberof ProductSummaryModel
|
|
4458
3862
|
*/
|
|
4459
3863
|
'quantity'?: number | null;
|
|
4460
3864
|
/**
|
|
4461
3865
|
* Stock Product
|
|
4462
3866
|
* @type {boolean}
|
|
4463
|
-
* @memberof
|
|
3867
|
+
* @memberof ProductSummaryModel
|
|
4464
3868
|
*/
|
|
4465
3869
|
'stockProduct'?: boolean;
|
|
4466
3870
|
/**
|
|
4467
3871
|
* Price
|
|
4468
3872
|
* @type {number}
|
|
4469
|
-
* @memberof
|
|
3873
|
+
* @memberof ProductSummaryModel
|
|
4470
3874
|
*/
|
|
4471
3875
|
'price'?: number | null;
|
|
4472
3876
|
/**
|
|
4473
3877
|
* Carton Size
|
|
4474
3878
|
* @type {number}
|
|
4475
|
-
* @memberof
|
|
3879
|
+
* @memberof ProductSummaryModel
|
|
4476
3880
|
*/
|
|
4477
3881
|
'cartonSize'?: number | null;
|
|
4478
|
-
/**
|
|
4479
|
-
* RRP Price
|
|
4480
|
-
* @type {number}
|
|
4481
|
-
* @memberof ProductSummaryDTO
|
|
4482
|
-
*/
|
|
4483
|
-
'rrp'?: number | null;
|
|
4484
3882
|
}
|
|
4485
3883
|
/**
|
|
4486
3884
|
* PromoCodesEntity
|
|
@@ -4619,37 +4017,37 @@ export interface PromoItemsEntity {
|
|
|
4619
4017
|
/**
|
|
4620
4018
|
* Provisioning Group
|
|
4621
4019
|
* @export
|
|
4622
|
-
* @interface
|
|
4020
|
+
* @interface ProvisioningEntity
|
|
4623
4021
|
*/
|
|
4624
|
-
export interface
|
|
4022
|
+
export interface ProvisioningEntity {
|
|
4625
4023
|
/**
|
|
4626
4024
|
* Provisioning Group Name
|
|
4627
4025
|
* @type {string}
|
|
4628
|
-
* @memberof
|
|
4026
|
+
* @memberof ProvisioningEntity
|
|
4629
4027
|
*/
|
|
4630
4028
|
'groupName'?: string;
|
|
4631
4029
|
/**
|
|
4632
4030
|
* Provisioning URL (Static Provisioning Server)
|
|
4633
4031
|
* @type {string}
|
|
4634
|
-
* @memberof
|
|
4032
|
+
* @memberof ProvisioningEntity
|
|
4635
4033
|
*/
|
|
4636
4034
|
'provisioningUrl'?: string;
|
|
4637
4035
|
/**
|
|
4638
4036
|
* Additional Authentication Secret
|
|
4639
4037
|
* @type {string}
|
|
4640
|
-
* @memberof
|
|
4038
|
+
* @memberof ProvisioningEntity
|
|
4641
4039
|
*/
|
|
4642
4040
|
'auth'?: string;
|
|
4643
4041
|
/**
|
|
4644
4042
|
* Provisioning Group ID
|
|
4645
4043
|
* @type {number}
|
|
4646
|
-
* @memberof
|
|
4044
|
+
* @memberof ProvisioningEntity
|
|
4647
4045
|
*/
|
|
4648
4046
|
'id'?: number;
|
|
4649
4047
|
/**
|
|
4650
4048
|
* Owner ID
|
|
4651
4049
|
* @type {number}
|
|
4652
|
-
* @memberof
|
|
4050
|
+
* @memberof ProvisioningEntity
|
|
4653
4051
|
*/
|
|
4654
4052
|
'customerId'?: number;
|
|
4655
4053
|
}
|
|
@@ -4922,7 +4320,7 @@ export interface ShipmentEntity {
|
|
|
4922
4320
|
* @type {string}
|
|
4923
4321
|
* @memberof ShipmentEntity
|
|
4924
4322
|
*/
|
|
4925
|
-
'
|
|
4323
|
+
'date'?: string;
|
|
4926
4324
|
/**
|
|
4927
4325
|
* requestDate
|
|
4928
4326
|
* @type {string}
|
|
@@ -4973,149 +4371,6 @@ export interface ShipmentItemEntity {
|
|
|
4973
4371
|
*/
|
|
4974
4372
|
'itemId'?: string;
|
|
4975
4373
|
}
|
|
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
|
-
}
|
|
5119
4374
|
/**
|
|
5120
4375
|
* Change Response
|
|
5121
4376
|
* @export
|
|
@@ -6520,31 +5775,6 @@ export interface StockTransactionsEntity {
|
|
|
6520
5775
|
*/
|
|
6521
5776
|
'user'?: number;
|
|
6522
5777
|
}
|
|
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
|
-
}
|
|
6548
5778
|
/**
|
|
6549
5779
|
* SuppliersEntity
|
|
6550
5780
|
* @export
|
|
@@ -6836,6 +6066,12 @@ export interface TcxBackupModel {
|
|
|
6836
6066
|
* @memberof TcxBackupModel
|
|
6837
6067
|
*/
|
|
6838
6068
|
'phone'?: string | null;
|
|
6069
|
+
/**
|
|
6070
|
+
* Company Name
|
|
6071
|
+
* @type {string}
|
|
6072
|
+
* @memberof TcxBackupModel
|
|
6073
|
+
*/
|
|
6074
|
+
'companyName'?: string | null;
|
|
6839
6075
|
}
|
|
6840
6076
|
/**
|
|
6841
6077
|
* TcxBillingEntity
|
|
@@ -7923,49 +7159,6 @@ export interface TcxPhonesEntity {
|
|
|
7923
7159
|
*/
|
|
7924
7160
|
'sbcId'?: string;
|
|
7925
7161
|
}
|
|
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
|
-
}
|
|
7969
7162
|
/**
|
|
7970
7163
|
* 3CX Wizard SBC
|
|
7971
7164
|
* @export
|
|
@@ -8070,7 +7263,7 @@ export interface TcxSbcEntity {
|
|
|
8070
7263
|
'technicalContact'?: string;
|
|
8071
7264
|
}
|
|
8072
7265
|
/**
|
|
8073
|
-
* 3CX
|
|
7266
|
+
* 3CX SBC Model
|
|
8074
7267
|
* @export
|
|
8075
7268
|
* @interface TcxSbcModel
|
|
8076
7269
|
*/
|
|
@@ -9136,14 +8329,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9136
8329
|
* @throws {RequiredError}
|
|
9137
8330
|
*/
|
|
9138
8331
|
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>;
|
|
9147
8332
|
/**
|
|
9148
8333
|
* Get Accounts
|
|
9149
8334
|
* @summary Get Accounts
|
|
@@ -9209,13 +8394,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9209
8394
|
* @throws {RequiredError}
|
|
9210
8395
|
*/
|
|
9211
8396
|
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>;
|
|
9219
8397
|
/**
|
|
9220
8398
|
* Create client credentials
|
|
9221
8399
|
* @summary Create client credentials
|
|
@@ -9296,14 +8474,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9296
8474
|
* @throws {RequiredError}
|
|
9297
8475
|
*/
|
|
9298
8476
|
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>>;
|
|
9307
8477
|
/**
|
|
9308
8478
|
* Get Accounts
|
|
9309
8479
|
* @summary Get Accounts
|
|
@@ -9369,13 +8539,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9369
8539
|
* @throws {RequiredError}
|
|
9370
8540
|
*/
|
|
9371
8541
|
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>>;
|
|
9379
8542
|
/**
|
|
9380
8543
|
* Create client credentials
|
|
9381
8544
|
* @summary Create client credentials
|
|
@@ -9456,14 +8619,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9456
8619
|
* @throws {RequiredError}
|
|
9457
8620
|
*/
|
|
9458
8621
|
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>;
|
|
9467
8622
|
/**
|
|
9468
8623
|
* Get Accounts
|
|
9469
8624
|
* @summary Get Accounts
|
|
@@ -9529,13 +8684,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9529
8684
|
* @throws {RequiredError}
|
|
9530
8685
|
*/
|
|
9531
8686
|
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>;
|
|
9539
8687
|
/**
|
|
9540
8688
|
* Create client credentials
|
|
9541
8689
|
* @summary Create client credentials
|
|
@@ -9614,23 +8762,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9614
8762
|
*/
|
|
9615
8763
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9616
8764
|
/**
|
|
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
|
|
8765
|
+
* Get Account Contacts
|
|
8766
|
+
* @summary Get Account Contacts
|
|
8767
|
+
* @param {string} [email] Contact Email Address
|
|
9629
8768
|
* @param {*} [options] Override http request option.
|
|
9630
8769
|
* @throws {RequiredError}
|
|
9631
8770
|
* @memberof AccountsApi
|
|
9632
8771
|
*/
|
|
9633
|
-
|
|
8772
|
+
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9634
8773
|
/**
|
|
9635
8774
|
* Get Accounts
|
|
9636
8775
|
* @summary Get Accounts
|
|
@@ -9704,14 +8843,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9704
8843
|
* @memberof AccountsApi
|
|
9705
8844
|
*/
|
|
9706
8845
|
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, {}>>;
|
|
9715
8846
|
/**
|
|
9716
8847
|
* Create client credentials
|
|
9717
8848
|
* @summary Create client credentials
|
|
@@ -9774,6 +8905,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9774
8905
|
* @throws {RequiredError}
|
|
9775
8906
|
*/
|
|
9776
8907
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8908
|
+
/**
|
|
8909
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8910
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8911
|
+
* @param {string} password Desired 3CX web access password
|
|
8912
|
+
* @param {*} [options] Override http request option.
|
|
8913
|
+
* @throws {RequiredError}
|
|
8914
|
+
*/
|
|
8915
|
+
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9777
8916
|
/**
|
|
9778
8917
|
* Get Bulk 3CX Licence Details
|
|
9779
8918
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9796,6 +8935,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9796
8935
|
* @throws {RequiredError}
|
|
9797
8936
|
*/
|
|
9798
8937
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
8938
|
+
/**
|
|
8939
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8940
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8941
|
+
* @param {string} password Desired 3CX web access password
|
|
8942
|
+
* @param {*} [options] Override http request option.
|
|
8943
|
+
* @throws {RequiredError}
|
|
8944
|
+
*/
|
|
8945
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9799
8946
|
/**
|
|
9800
8947
|
* Get Bulk 3CX Licence Details
|
|
9801
8948
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9818,6 +8965,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9818
8965
|
* @throws {RequiredError}
|
|
9819
8966
|
*/
|
|
9820
8967
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
8968
|
+
/**
|
|
8969
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8970
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8971
|
+
* @param {string} password Desired 3CX web access password
|
|
8972
|
+
* @param {*} [options] Override http request option.
|
|
8973
|
+
* @throws {RequiredError}
|
|
8974
|
+
*/
|
|
8975
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9821
8976
|
/**
|
|
9822
8977
|
* Get Bulk 3CX Licence Details
|
|
9823
8978
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9843,6 +8998,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9843
8998
|
* @memberof Class3CXApi
|
|
9844
8999
|
*/
|
|
9845
9000
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9001
|
+
/**
|
|
9002
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9003
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9004
|
+
* @param {string} password Desired 3CX web access password
|
|
9005
|
+
* @param {*} [options] Override http request option.
|
|
9006
|
+
* @throws {RequiredError}
|
|
9007
|
+
* @memberof Class3CXApi
|
|
9008
|
+
*/
|
|
9009
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9846
9010
|
/**
|
|
9847
9011
|
* Get Bulk 3CX Licence Details
|
|
9848
9012
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12104,19 +11268,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12104
11268
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12105
11269
|
/**
|
|
12106
11270
|
* 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
|
|
12115
11271
|
* @param {number} id Order ID
|
|
12116
11272
|
* @param {*} [options] Override http request option.
|
|
12117
11273
|
* @throws {RequiredError}
|
|
12118
11274
|
*/
|
|
12119
|
-
|
|
11275
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12120
11276
|
/**
|
|
12121
11277
|
* Get Orders
|
|
12122
11278
|
* @summary Get Orders
|
|
@@ -12131,44 +11287,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12131
11287
|
* @throws {RequiredError}
|
|
12132
11288
|
*/
|
|
12133
11289
|
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>;
|
|
12172
11290
|
};
|
|
12173
11291
|
/**
|
|
12174
11292
|
* OrdersApi - functional programming interface
|
|
@@ -12177,19 +11295,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12177
11295
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12178
11296
|
/**
|
|
12179
11297
|
* 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
|
|
12188
11298
|
* @param {number} id Order ID
|
|
12189
11299
|
* @param {*} [options] Override http request option.
|
|
12190
11300
|
* @throws {RequiredError}
|
|
12191
11301
|
*/
|
|
12192
|
-
|
|
11302
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12193
11303
|
/**
|
|
12194
11304
|
* Get Orders
|
|
12195
11305
|
* @summary Get Orders
|
|
@@ -12204,44 +11314,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12204
11314
|
* @throws {RequiredError}
|
|
12205
11315
|
*/
|
|
12206
11316
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummariesModel>>;
|
|
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>>>;
|
|
12245
11317
|
};
|
|
12246
11318
|
/**
|
|
12247
11319
|
* OrdersApi - factory interface
|
|
@@ -12250,19 +11322,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12250
11322
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12251
11323
|
/**
|
|
12252
11324
|
* Delete Orders
|
|
12253
|
-
* @summary Delete Orders
|
|
12254
11325
|
* @param {number} id Order ID
|
|
12255
11326
|
* @param {*} [options] Override http request option.
|
|
12256
11327
|
* @throws {RequiredError}
|
|
12257
11328
|
*/
|
|
12258
|
-
|
|
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>;
|
|
11329
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12266
11330
|
/**
|
|
12267
11331
|
* Get Orders
|
|
12268
11332
|
* @summary Get Orders
|
|
@@ -12277,44 +11341,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12277
11341
|
* @throws {RequiredError}
|
|
12278
11342
|
*/
|
|
12279
11343
|
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>>;
|
|
12318
11344
|
};
|
|
12319
11345
|
/**
|
|
12320
11346
|
* OrdersApi - object-oriented interface
|
|
@@ -12325,21 +11351,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12325
11351
|
export declare class OrdersApi extends BaseAPI {
|
|
12326
11352
|
/**
|
|
12327
11353
|
* 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
|
|
12337
11354
|
* @param {number} id Order ID
|
|
12338
11355
|
* @param {*} [options] Override http request option.
|
|
12339
11356
|
* @throws {RequiredError}
|
|
12340
11357
|
* @memberof OrdersApi
|
|
12341
11358
|
*/
|
|
12342
|
-
|
|
11359
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12343
11360
|
/**
|
|
12344
11361
|
* Get Orders
|
|
12345
11362
|
* @summary Get Orders
|
|
@@ -12355,48 +11372,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12355
11372
|
* @memberof OrdersApi
|
|
12356
11373
|
*/
|
|
12357
11374
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummariesModel, any, {}>>;
|
|
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, {}>>;
|
|
12400
11375
|
}
|
|
12401
11376
|
/**
|
|
12402
11377
|
* @export
|
|
@@ -12652,6 +11627,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12652
11627
|
* @throws {RequiredError}
|
|
12653
11628
|
*/
|
|
12654
11629
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11630
|
+
/**
|
|
11631
|
+
* Get Customer Price Lists
|
|
11632
|
+
* @summary Get Customer Price Lists
|
|
11633
|
+
* @param {*} [options] Override http request option.
|
|
11634
|
+
* @throws {RequiredError}
|
|
11635
|
+
*/
|
|
11636
|
+
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12655
11637
|
/**
|
|
12656
11638
|
* Get Current Stock & Pricing
|
|
12657
11639
|
* @summary Get Current Stock & Pricing
|
|
@@ -12664,10 +11646,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12664
11646
|
/**
|
|
12665
11647
|
* Get Products
|
|
12666
11648
|
* @summary Get Products
|
|
11649
|
+
* @param {number} [pageSize] Number Of Results
|
|
11650
|
+
* @param {number} [page] Page Number
|
|
11651
|
+
* @param {string} [search] Search
|
|
12667
11652
|
* @param {*} [options] Override http request option.
|
|
12668
11653
|
* @throws {RequiredError}
|
|
12669
11654
|
*/
|
|
12670
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11655
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12671
11656
|
/**
|
|
12672
11657
|
* Get Current Stock & Pricing
|
|
12673
11658
|
* @summary Get Current Stock & Pricing
|
|
@@ -12682,35 +11667,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12682
11667
|
* @throws {RequiredError}
|
|
12683
11668
|
*/
|
|
12684
11669
|
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>;
|
|
12714
11670
|
};
|
|
12715
11671
|
/**
|
|
12716
11672
|
* ProductsApi - functional programming interface
|
|
@@ -12724,6 +11680,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12724
11680
|
* @throws {RequiredError}
|
|
12725
11681
|
*/
|
|
12726
11682
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
11683
|
+
/**
|
|
11684
|
+
* Get Customer Price Lists
|
|
11685
|
+
* @summary Get Customer Price Lists
|
|
11686
|
+
* @param {*} [options] Override http request option.
|
|
11687
|
+
* @throws {RequiredError}
|
|
11688
|
+
*/
|
|
11689
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12727
11690
|
/**
|
|
12728
11691
|
* Get Current Stock & Pricing
|
|
12729
11692
|
* @summary Get Current Stock & Pricing
|
|
@@ -12736,10 +11699,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12736
11699
|
/**
|
|
12737
11700
|
* Get Products
|
|
12738
11701
|
* @summary Get Products
|
|
11702
|
+
* @param {number} [pageSize] Number Of Results
|
|
11703
|
+
* @param {number} [page] Page Number
|
|
11704
|
+
* @param {string} [search] Search
|
|
12739
11705
|
* @param {*} [options] Override http request option.
|
|
12740
11706
|
* @throws {RequiredError}
|
|
12741
11707
|
*/
|
|
12742
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11708
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12743
11709
|
/**
|
|
12744
11710
|
* Get Current Stock & Pricing
|
|
12745
11711
|
* @summary Get Current Stock & Pricing
|
|
@@ -12754,35 +11720,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12754
11720
|
* @throws {RequiredError}
|
|
12755
11721
|
*/
|
|
12756
11722
|
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>>;
|
|
12786
11723
|
};
|
|
12787
11724
|
/**
|
|
12788
11725
|
* ProductsApi - factory interface
|
|
@@ -12796,6 +11733,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12796
11733
|
* @throws {RequiredError}
|
|
12797
11734
|
*/
|
|
12798
11735
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
11736
|
+
/**
|
|
11737
|
+
* Get Customer Price Lists
|
|
11738
|
+
* @summary Get Customer Price Lists
|
|
11739
|
+
* @param {*} [options] Override http request option.
|
|
11740
|
+
* @throws {RequiredError}
|
|
11741
|
+
*/
|
|
11742
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12799
11743
|
/**
|
|
12800
11744
|
* Get Current Stock & Pricing
|
|
12801
11745
|
* @summary Get Current Stock & Pricing
|
|
@@ -12808,10 +11752,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12808
11752
|
/**
|
|
12809
11753
|
* Get Products
|
|
12810
11754
|
* @summary Get Products
|
|
11755
|
+
* @param {number} [pageSize] Number Of Results
|
|
11756
|
+
* @param {number} [page] Page Number
|
|
11757
|
+
* @param {string} [search] Search
|
|
12811
11758
|
* @param {*} [options] Override http request option.
|
|
12812
11759
|
* @throws {RequiredError}
|
|
12813
11760
|
*/
|
|
12814
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11761
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12815
11762
|
/**
|
|
12816
11763
|
* Get Current Stock & Pricing
|
|
12817
11764
|
* @summary Get Current Stock & Pricing
|
|
@@ -12826,35 +11773,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12826
11773
|
* @throws {RequiredError}
|
|
12827
11774
|
*/
|
|
12828
11775
|
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>;
|
|
12858
11776
|
};
|
|
12859
11777
|
/**
|
|
12860
11778
|
* ProductsApi - object-oriented interface
|
|
@@ -12871,6 +11789,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12871
11789
|
* @memberof ProductsApi
|
|
12872
11790
|
*/
|
|
12873
11791
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
11792
|
+
/**
|
|
11793
|
+
* Get Customer Price Lists
|
|
11794
|
+
* @summary Get Customer Price Lists
|
|
11795
|
+
* @param {*} [options] Override http request option.
|
|
11796
|
+
* @throws {RequiredError}
|
|
11797
|
+
* @memberof ProductsApi
|
|
11798
|
+
*/
|
|
11799
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12874
11800
|
/**
|
|
12875
11801
|
* Get Current Stock & Pricing
|
|
12876
11802
|
* @summary Get Current Stock & Pricing
|
|
@@ -12884,11 +11810,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12884
11810
|
/**
|
|
12885
11811
|
* Get Products
|
|
12886
11812
|
* @summary Get Products
|
|
11813
|
+
* @param {number} [pageSize] Number Of Results
|
|
11814
|
+
* @param {number} [page] Page Number
|
|
11815
|
+
* @param {string} [search] Search
|
|
12887
11816
|
* @param {*} [options] Override http request option.
|
|
12888
11817
|
* @throws {RequiredError}
|
|
12889
11818
|
* @memberof ProductsApi
|
|
12890
11819
|
*/
|
|
12891
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11820
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12892
11821
|
/**
|
|
12893
11822
|
* Get Current Stock & Pricing
|
|
12894
11823
|
* @summary Get Current Stock & Pricing
|
|
@@ -12905,38 +11834,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12905
11834
|
* @memberof ProductsApi
|
|
12906
11835
|
*/
|
|
12907
11836
|
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, {}>>;
|
|
12940
11837
|
}
|
|
12941
11838
|
/**
|
|
12942
11839
|
* @export
|
|
@@ -13057,7 +11954,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13057
11954
|
* @param {*} [options] Override http request option.
|
|
13058
11955
|
* @throws {RequiredError}
|
|
13059
11956
|
*/
|
|
13060
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
11957
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13061
11958
|
/**
|
|
13062
11959
|
* Create a Fanvil provisioning group
|
|
13063
11960
|
* @summary Add group to DB and FDPS
|
|
@@ -13065,7 +11962,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13065
11962
|
* @param {*} [options] Override http request option.
|
|
13066
11963
|
* @throws {RequiredError}
|
|
13067
11964
|
*/
|
|
13068
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11965
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13069
11966
|
/**
|
|
13070
11967
|
* Add MAC address to DB and FDPS group
|
|
13071
11968
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13122,7 +12019,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13122
12019
|
* @param {*} [options] Override http request option.
|
|
13123
12020
|
* @throws {RequiredError}
|
|
13124
12021
|
*/
|
|
13125
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12022
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13126
12023
|
/**
|
|
13127
12024
|
* Create a Fanvil provisioning group
|
|
13128
12025
|
* @summary Add group to DB and FDPS
|
|
@@ -13130,7 +12027,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13130
12027
|
* @param {*} [options] Override http request option.
|
|
13131
12028
|
* @throws {RequiredError}
|
|
13132
12029
|
*/
|
|
13133
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12030
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13134
12031
|
/**
|
|
13135
12032
|
* Add MAC address to DB and FDPS group
|
|
13136
12033
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13194,7 +12091,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13194
12091
|
* @throws {RequiredError}
|
|
13195
12092
|
* @memberof ProvisioningApi
|
|
13196
12093
|
*/
|
|
13197
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12094
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13198
12095
|
/**
|
|
13199
12096
|
* Create a Fanvil provisioning group
|
|
13200
12097
|
* @summary Add group to DB and FDPS
|
|
@@ -13203,7 +12100,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13203
12100
|
* @throws {RequiredError}
|
|
13204
12101
|
* @memberof ProvisioningApi
|
|
13205
12102
|
*/
|
|
13206
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12103
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13207
12104
|
/**
|
|
13208
12105
|
* Add MAC address to DB and FDPS group
|
|
13209
12106
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14078,65 +12975,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14078
12975
|
*/
|
|
14079
12976
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14080
12977
|
}
|
|
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
|
-
}
|
|
14140
12978
|
/**
|
|
14141
12979
|
* StockManagementApi - axios parameter creator
|
|
14142
12980
|
* @export
|
|
@@ -14466,7 +13304,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14466
13304
|
* @param {*} [options] Override http request option.
|
|
14467
13305
|
* @throws {RequiredError}
|
|
14468
13306
|
*/
|
|
14469
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13307
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
14470
13308
|
/**
|
|
14471
13309
|
* Get Stock Order Supplier Invoice
|
|
14472
13310
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14681,7 +13519,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14681
13519
|
* @param {*} [options] Override http request option.
|
|
14682
13520
|
* @throws {RequiredError}
|
|
14683
13521
|
*/
|
|
14684
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13522
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
14685
13523
|
/**
|
|
14686
13524
|
* Get Stock Order Supplier Invoice
|
|
14687
13525
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14911,7 +13749,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14911
13749
|
* @throws {RequiredError}
|
|
14912
13750
|
* @memberof StockManagementApi
|
|
14913
13751
|
*/
|
|
14914
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13752
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
14915
13753
|
/**
|
|
14916
13754
|
* Get Stock Order Supplier Invoice
|
|
14917
13755
|
* @summary Get Stock Order Supplier Invoice
|