yellowgrid-api-ts 3.0.80-dev.0 → 3.0.81
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 -33
- package/api.ts +239 -1679
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +161 -1267
- package/dist/api.js +215 -974
- 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 +36 -97
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -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/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
|
|
@@ -1659,129 +1271,31 @@ export interface CustomerInformationModel {
|
|
|
1659
1271
|
* @type {string}
|
|
1660
1272
|
* @memberof CustomerInformationModel
|
|
1661
1273
|
*/
|
|
1662
|
-
'addressCity'?: string;
|
|
1663
|
-
/**
|
|
1664
|
-
* End User Postal Code
|
|
1665
|
-
* @type {string}
|
|
1666
|
-
* @memberof CustomerInformationModel
|
|
1667
|
-
*/
|
|
1668
|
-
'addressPostcode'?: string;
|
|
1669
|
-
/**
|
|
1670
|
-
* End User Company Name
|
|
1671
|
-
* @type {string}
|
|
1672
|
-
* @memberof CustomerInformationModel
|
|
1673
|
-
*/
|
|
1674
|
-
'companyName'?: string;
|
|
1675
|
-
/**
|
|
1676
|
-
* End User Contact First Name
|
|
1677
|
-
* @type {string}
|
|
1678
|
-
* @memberof CustomerInformationModel
|
|
1679
|
-
*/
|
|
1680
|
-
'contactFirstName'?: string;
|
|
1681
|
-
/**
|
|
1682
|
-
* End User Contact Surname
|
|
1683
|
-
* @type {string}
|
|
1684
|
-
* @memberof CustomerInformationModel
|
|
1685
|
-
*/
|
|
1686
|
-
'contactLastName'?: string;
|
|
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;
|
|
1274
|
+
'addressCity'?: string;
|
|
1761
1275
|
/**
|
|
1762
|
-
*
|
|
1276
|
+
* End User Postal Code
|
|
1763
1277
|
* @type {string}
|
|
1764
|
-
* @memberof
|
|
1278
|
+
* @memberof CustomerInformationModel
|
|
1765
1279
|
*/
|
|
1766
|
-
'
|
|
1280
|
+
'addressPostcode'?: string;
|
|
1767
1281
|
/**
|
|
1768
|
-
*
|
|
1769
|
-
* @type {
|
|
1770
|
-
* @memberof
|
|
1282
|
+
* End User Company Name
|
|
1283
|
+
* @type {string}
|
|
1284
|
+
* @memberof CustomerInformationModel
|
|
1771
1285
|
*/
|
|
1772
|
-
'
|
|
1286
|
+
'companyName'?: string;
|
|
1773
1287
|
/**
|
|
1774
|
-
*
|
|
1775
|
-
* @type {
|
|
1776
|
-
* @memberof
|
|
1288
|
+
* End User Contact First Name
|
|
1289
|
+
* @type {string}
|
|
1290
|
+
* @memberof CustomerInformationModel
|
|
1777
1291
|
*/
|
|
1778
|
-
'
|
|
1292
|
+
'contactFirstName'?: string;
|
|
1779
1293
|
/**
|
|
1780
|
-
*
|
|
1781
|
-
* @type {
|
|
1782
|
-
* @memberof
|
|
1294
|
+
* End User Contact Surname
|
|
1295
|
+
* @type {string}
|
|
1296
|
+
* @memberof CustomerInformationModel
|
|
1783
1297
|
*/
|
|
1784
|
-
'
|
|
1298
|
+
'contactLastName'?: string;
|
|
1785
1299
|
}
|
|
1786
1300
|
/**
|
|
1787
1301
|
* Customer Price List
|
|
@@ -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
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";
|
|
@@ -4372,10 +3801,10 @@ export interface PrizesEntity {
|
|
|
4372
3801
|
export interface ProductSearchResultsModel {
|
|
4373
3802
|
/**
|
|
4374
3803
|
* Results
|
|
4375
|
-
* @type {Array<
|
|
3804
|
+
* @type {Array<ProductSummaryModel>}
|
|
4376
3805
|
* @memberof ProductSearchResultsModel
|
|
4377
3806
|
*/
|
|
4378
|
-
'results'?: Array<
|
|
3807
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4379
3808
|
}
|
|
4380
3809
|
/**
|
|
4381
3810
|
* Product Serial Info
|
|
@@ -4411,51 +3840,45 @@ export interface ProductSerialInfoModel {
|
|
|
4411
3840
|
/**
|
|
4412
3841
|
* Product Summary
|
|
4413
3842
|
* @export
|
|
4414
|
-
* @interface
|
|
3843
|
+
* @interface ProductSummaryModel
|
|
4415
3844
|
*/
|
|
4416
|
-
export interface
|
|
3845
|
+
export interface ProductSummaryModel {
|
|
4417
3846
|
/**
|
|
4418
3847
|
* SKU
|
|
4419
3848
|
* @type {string}
|
|
4420
|
-
* @memberof
|
|
3849
|
+
* @memberof ProductSummaryModel
|
|
4421
3850
|
*/
|
|
4422
3851
|
'sku'?: string;
|
|
4423
3852
|
/**
|
|
4424
3853
|
* Title
|
|
4425
3854
|
* @type {string}
|
|
4426
|
-
* @memberof
|
|
3855
|
+
* @memberof ProductSummaryModel
|
|
4427
3856
|
*/
|
|
4428
3857
|
'title'?: string;
|
|
4429
3858
|
/**
|
|
4430
3859
|
* Stock Quantity
|
|
4431
3860
|
* @type {number}
|
|
4432
|
-
* @memberof
|
|
3861
|
+
* @memberof ProductSummaryModel
|
|
4433
3862
|
*/
|
|
4434
3863
|
'quantity'?: number | null;
|
|
4435
3864
|
/**
|
|
4436
3865
|
* Stock Product
|
|
4437
3866
|
* @type {boolean}
|
|
4438
|
-
* @memberof
|
|
3867
|
+
* @memberof ProductSummaryModel
|
|
4439
3868
|
*/
|
|
4440
3869
|
'stockProduct'?: boolean;
|
|
4441
3870
|
/**
|
|
4442
3871
|
* Price
|
|
4443
3872
|
* @type {number}
|
|
4444
|
-
* @memberof
|
|
3873
|
+
* @memberof ProductSummaryModel
|
|
4445
3874
|
*/
|
|
4446
3875
|
'price'?: number | null;
|
|
4447
3876
|
/**
|
|
4448
3877
|
* Carton Size
|
|
4449
3878
|
* @type {number}
|
|
4450
|
-
* @memberof
|
|
3879
|
+
* @memberof ProductSummaryModel
|
|
4451
3880
|
*/
|
|
4452
3881
|
'cartonSize'?: number | null;
|
|
4453
|
-
/**
|
|
4454
|
-
* RRP Price
|
|
4455
|
-
* @type {number}
|
|
4456
|
-
* @memberof ProductSummaryDTO
|
|
4457
|
-
*/
|
|
4458
|
-
'rrp'?: number | null;
|
|
4459
3882
|
}
|
|
4460
3883
|
/**
|
|
4461
3884
|
* PromoCodesEntity
|
|
@@ -4594,37 +4017,37 @@ export interface PromoItemsEntity {
|
|
|
4594
4017
|
/**
|
|
4595
4018
|
* Provisioning Group
|
|
4596
4019
|
* @export
|
|
4597
|
-
* @interface
|
|
4020
|
+
* @interface ProvisioningEntity
|
|
4598
4021
|
*/
|
|
4599
|
-
export interface
|
|
4022
|
+
export interface ProvisioningEntity {
|
|
4600
4023
|
/**
|
|
4601
4024
|
* Provisioning Group Name
|
|
4602
4025
|
* @type {string}
|
|
4603
|
-
* @memberof
|
|
4026
|
+
* @memberof ProvisioningEntity
|
|
4604
4027
|
*/
|
|
4605
4028
|
'groupName'?: string;
|
|
4606
4029
|
/**
|
|
4607
4030
|
* Provisioning URL (Static Provisioning Server)
|
|
4608
4031
|
* @type {string}
|
|
4609
|
-
* @memberof
|
|
4032
|
+
* @memberof ProvisioningEntity
|
|
4610
4033
|
*/
|
|
4611
4034
|
'provisioningUrl'?: string;
|
|
4612
4035
|
/**
|
|
4613
4036
|
* Additional Authentication Secret
|
|
4614
4037
|
* @type {string}
|
|
4615
|
-
* @memberof
|
|
4038
|
+
* @memberof ProvisioningEntity
|
|
4616
4039
|
*/
|
|
4617
4040
|
'auth'?: string;
|
|
4618
4041
|
/**
|
|
4619
4042
|
* Provisioning Group ID
|
|
4620
4043
|
* @type {number}
|
|
4621
|
-
* @memberof
|
|
4044
|
+
* @memberof ProvisioningEntity
|
|
4622
4045
|
*/
|
|
4623
4046
|
'id'?: number;
|
|
4624
4047
|
/**
|
|
4625
4048
|
* Owner ID
|
|
4626
4049
|
* @type {number}
|
|
4627
|
-
* @memberof
|
|
4050
|
+
* @memberof ProvisioningEntity
|
|
4628
4051
|
*/
|
|
4629
4052
|
'customerId'?: number;
|
|
4630
4053
|
}
|
|
@@ -4897,7 +4320,7 @@ export interface ShipmentEntity {
|
|
|
4897
4320
|
* @type {string}
|
|
4898
4321
|
* @memberof ShipmentEntity
|
|
4899
4322
|
*/
|
|
4900
|
-
'
|
|
4323
|
+
'date'?: string;
|
|
4901
4324
|
/**
|
|
4902
4325
|
* requestDate
|
|
4903
4326
|
* @type {string}
|
|
@@ -4948,149 +4371,6 @@ export interface ShipmentItemEntity {
|
|
|
4948
4371
|
*/
|
|
4949
4372
|
'itemId'?: string;
|
|
4950
4373
|
}
|
|
4951
|
-
/**
|
|
4952
|
-
*
|
|
4953
|
-
* @export
|
|
4954
|
-
* @interface ShippingConsignmentModel
|
|
4955
|
-
*/
|
|
4956
|
-
export interface ShippingConsignmentModel {
|
|
4957
|
-
/**
|
|
4958
|
-
*
|
|
4959
|
-
* @type {ShippingServiceModel}
|
|
4960
|
-
* @memberof ShippingConsignmentModel
|
|
4961
|
-
*/
|
|
4962
|
-
'service'?: ShippingServiceModel;
|
|
4963
|
-
/**
|
|
4964
|
-
* ID/Number
|
|
4965
|
-
* @type {string}
|
|
4966
|
-
* @memberof ShippingConsignmentModel
|
|
4967
|
-
*/
|
|
4968
|
-
'id'?: string;
|
|
4969
|
-
/**
|
|
4970
|
-
* Tracking Number
|
|
4971
|
-
* @type {string}
|
|
4972
|
-
* @memberof ShippingConsignmentModel
|
|
4973
|
-
*/
|
|
4974
|
-
'trackingNumber'?: string;
|
|
4975
|
-
/**
|
|
4976
|
-
* Parcels
|
|
4977
|
-
* @type {Array<string>}
|
|
4978
|
-
* @memberof ShippingConsignmentModel
|
|
4979
|
-
*/
|
|
4980
|
-
'parcelIds'?: Array<string>;
|
|
4981
|
-
}
|
|
4982
|
-
/**
|
|
4983
|
-
* Shipping Information
|
|
4984
|
-
* @export
|
|
4985
|
-
* @interface ShippingInformationDTO
|
|
4986
|
-
*/
|
|
4987
|
-
export interface ShippingInformationDTO {
|
|
4988
|
-
/**
|
|
4989
|
-
* Items
|
|
4990
|
-
* @type {Array<BasicItemDTO>}
|
|
4991
|
-
* @memberof ShippingInformationDTO
|
|
4992
|
-
*/
|
|
4993
|
-
'items'?: Array<BasicItemDTO>;
|
|
4994
|
-
/**
|
|
4995
|
-
* Destination Post Code
|
|
4996
|
-
* @type {string}
|
|
4997
|
-
* @memberof ShippingInformationDTO
|
|
4998
|
-
*/
|
|
4999
|
-
'postalCode'?: string;
|
|
5000
|
-
/**
|
|
5001
|
-
* Destination ISO
|
|
5002
|
-
* @type {string}
|
|
5003
|
-
* @memberof ShippingInformationDTO
|
|
5004
|
-
*/
|
|
5005
|
-
'iso'?: string;
|
|
5006
|
-
}
|
|
5007
|
-
/**
|
|
5008
|
-
* Shipping Service
|
|
5009
|
-
* @export
|
|
5010
|
-
* @interface ShippingServiceDTO
|
|
5011
|
-
*/
|
|
5012
|
-
export interface ShippingServiceDTO {
|
|
5013
|
-
/**
|
|
5014
|
-
* Courier
|
|
5015
|
-
* @type {string}
|
|
5016
|
-
* @memberof ShippingServiceDTO
|
|
5017
|
-
*/
|
|
5018
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5019
|
-
/**
|
|
5020
|
-
* Service Name
|
|
5021
|
-
* @type {string}
|
|
5022
|
-
* @memberof ShippingServiceDTO
|
|
5023
|
-
*/
|
|
5024
|
-
'serviceName'?: string;
|
|
5025
|
-
}
|
|
5026
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5027
|
-
readonly Dpd: "DPD";
|
|
5028
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5029
|
-
readonly Pops: "POPS";
|
|
5030
|
-
};
|
|
5031
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5032
|
-
/**
|
|
5033
|
-
* Shipping Service
|
|
5034
|
-
* @export
|
|
5035
|
-
* @interface ShippingServiceModel
|
|
5036
|
-
*/
|
|
5037
|
-
export interface ShippingServiceModel {
|
|
5038
|
-
/**
|
|
5039
|
-
* Courier
|
|
5040
|
-
* @type {string}
|
|
5041
|
-
* @memberof ShippingServiceModel
|
|
5042
|
-
*/
|
|
5043
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5044
|
-
/**
|
|
5045
|
-
* Code
|
|
5046
|
-
* @type {string}
|
|
5047
|
-
* @memberof ShippingServiceModel
|
|
5048
|
-
*/
|
|
5049
|
-
'code'?: string;
|
|
5050
|
-
/**
|
|
5051
|
-
* Name
|
|
5052
|
-
* @type {string}
|
|
5053
|
-
* @memberof ShippingServiceModel
|
|
5054
|
-
*/
|
|
5055
|
-
'name'?: string;
|
|
5056
|
-
/**
|
|
5057
|
-
* Description
|
|
5058
|
-
* @type {string}
|
|
5059
|
-
* @memberof ShippingServiceModel
|
|
5060
|
-
*/
|
|
5061
|
-
'description'?: string;
|
|
5062
|
-
/**
|
|
5063
|
-
* Label
|
|
5064
|
-
* @type {string}
|
|
5065
|
-
* @memberof ShippingServiceModel
|
|
5066
|
-
*/
|
|
5067
|
-
'label'?: string | null;
|
|
5068
|
-
/**
|
|
5069
|
-
* Price
|
|
5070
|
-
* @type {number}
|
|
5071
|
-
* @memberof ShippingServiceModel
|
|
5072
|
-
*/
|
|
5073
|
-
'price'?: number | null;
|
|
5074
|
-
}
|
|
5075
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5076
|
-
readonly Dpd: "DPD";
|
|
5077
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5078
|
-
readonly Pops: "POPS";
|
|
5079
|
-
};
|
|
5080
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5081
|
-
/**
|
|
5082
|
-
*
|
|
5083
|
-
* @export
|
|
5084
|
-
* @interface ShippingServicesModel
|
|
5085
|
-
*/
|
|
5086
|
-
export interface ShippingServicesModel {
|
|
5087
|
-
/**
|
|
5088
|
-
* Services
|
|
5089
|
-
* @type {Array<ShippingServiceModel>}
|
|
5090
|
-
* @memberof ShippingServicesModel
|
|
5091
|
-
*/
|
|
5092
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5093
|
-
}
|
|
5094
4374
|
/**
|
|
5095
4375
|
* Change Response
|
|
5096
4376
|
* @export
|
|
@@ -6495,31 +5775,6 @@ export interface StockTransactionsEntity {
|
|
|
6495
5775
|
*/
|
|
6496
5776
|
'user'?: number;
|
|
6497
5777
|
}
|
|
6498
|
-
/**
|
|
6499
|
-
* POPS Sub Navigation Item
|
|
6500
|
-
* @export
|
|
6501
|
-
* @interface SubNavigationItemModel
|
|
6502
|
-
*/
|
|
6503
|
-
export interface SubNavigationItemModel {
|
|
6504
|
-
/**
|
|
6505
|
-
* Title
|
|
6506
|
-
* @type {string}
|
|
6507
|
-
* @memberof SubNavigationItemModel
|
|
6508
|
-
*/
|
|
6509
|
-
'title'?: string;
|
|
6510
|
-
/**
|
|
6511
|
-
* URL
|
|
6512
|
-
* @type {string}
|
|
6513
|
-
* @memberof SubNavigationItemModel
|
|
6514
|
-
*/
|
|
6515
|
-
'url'?: string;
|
|
6516
|
-
/**
|
|
6517
|
-
* Icon (Font Awesome)
|
|
6518
|
-
* @type {string}
|
|
6519
|
-
* @memberof SubNavigationItemModel
|
|
6520
|
-
*/
|
|
6521
|
-
'icon'?: string | null;
|
|
6522
|
-
}
|
|
6523
5778
|
/**
|
|
6524
5779
|
* SuppliersEntity
|
|
6525
5780
|
* @export
|
|
@@ -7898,49 +7153,6 @@ export interface TcxPhonesEntity {
|
|
|
7898
7153
|
*/
|
|
7899
7154
|
'sbcId'?: string;
|
|
7900
7155
|
}
|
|
7901
|
-
/**
|
|
7902
|
-
* SBC Data
|
|
7903
|
-
* @export
|
|
7904
|
-
* @interface TcxSbcDTO
|
|
7905
|
-
*/
|
|
7906
|
-
export interface TcxSbcDTO {
|
|
7907
|
-
/**
|
|
7908
|
-
* LAN IP Address
|
|
7909
|
-
* @type {string}
|
|
7910
|
-
* @memberof TcxSbcDTO
|
|
7911
|
-
*/
|
|
7912
|
-
'ipAddress'?: string;
|
|
7913
|
-
/**
|
|
7914
|
-
* LAN Default Gateway
|
|
7915
|
-
* @type {string}
|
|
7916
|
-
* @memberof TcxSbcDTO
|
|
7917
|
-
*/
|
|
7918
|
-
'defaultGateway'?: string;
|
|
7919
|
-
/**
|
|
7920
|
-
* LAN Subnet Mask
|
|
7921
|
-
* @type {string}
|
|
7922
|
-
* @memberof TcxSbcDTO
|
|
7923
|
-
*/
|
|
7924
|
-
'netmask'?: string;
|
|
7925
|
-
/**
|
|
7926
|
-
* DNS
|
|
7927
|
-
* @type {string}
|
|
7928
|
-
* @memberof TcxSbcDTO
|
|
7929
|
-
*/
|
|
7930
|
-
'dns'?: string;
|
|
7931
|
-
/**
|
|
7932
|
-
* 3CX URL
|
|
7933
|
-
* @type {string}
|
|
7934
|
-
* @memberof TcxSbcDTO
|
|
7935
|
-
*/
|
|
7936
|
-
'tcxUrl'?: string;
|
|
7937
|
-
/**
|
|
7938
|
-
* 3CX SBC Key
|
|
7939
|
-
* @type {string}
|
|
7940
|
-
* @memberof TcxSbcDTO
|
|
7941
|
-
*/
|
|
7942
|
-
'tcxKey'?: string;
|
|
7943
|
-
}
|
|
7944
7156
|
/**
|
|
7945
7157
|
* 3CX Wizard SBC
|
|
7946
7158
|
* @export
|
|
@@ -8045,7 +7257,7 @@ export interface TcxSbcEntity {
|
|
|
8045
7257
|
'technicalContact'?: string;
|
|
8046
7258
|
}
|
|
8047
7259
|
/**
|
|
8048
|
-
* 3CX
|
|
7260
|
+
* 3CX SBC Model
|
|
8049
7261
|
* @export
|
|
8050
7262
|
* @interface TcxSbcModel
|
|
8051
7263
|
*/
|
|
@@ -9111,14 +8323,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9111
8323
|
* @throws {RequiredError}
|
|
9112
8324
|
*/
|
|
9113
8325
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9114
|
-
/**
|
|
9115
|
-
* Get Account Detailed Summary
|
|
9116
|
-
* @summary Get Account Detailed Summary
|
|
9117
|
-
* @param {number} id Customer ID
|
|
9118
|
-
* @param {*} [options] Override http request option.
|
|
9119
|
-
* @throws {RequiredError}
|
|
9120
|
-
*/
|
|
9121
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9122
8326
|
/**
|
|
9123
8327
|
* Get Accounts
|
|
9124
8328
|
* @summary Get Accounts
|
|
@@ -9184,13 +8388,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9184
8388
|
* @throws {RequiredError}
|
|
9185
8389
|
*/
|
|
9186
8390
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9187
|
-
/**
|
|
9188
|
-
* Get Admin Account
|
|
9189
|
-
* @summary Get Admin Account
|
|
9190
|
-
* @param {*} [options] Override http request option.
|
|
9191
|
-
* @throws {RequiredError}
|
|
9192
|
-
*/
|
|
9193
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9194
8391
|
/**
|
|
9195
8392
|
* Create client credentials
|
|
9196
8393
|
* @summary Create client credentials
|
|
@@ -9271,14 +8468,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9271
8468
|
* @throws {RequiredError}
|
|
9272
8469
|
*/
|
|
9273
8470
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9274
|
-
/**
|
|
9275
|
-
* Get Account Detailed Summary
|
|
9276
|
-
* @summary Get Account Detailed Summary
|
|
9277
|
-
* @param {number} id Customer ID
|
|
9278
|
-
* @param {*} [options] Override http request option.
|
|
9279
|
-
* @throws {RequiredError}
|
|
9280
|
-
*/
|
|
9281
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9282
8471
|
/**
|
|
9283
8472
|
* Get Accounts
|
|
9284
8473
|
* @summary Get Accounts
|
|
@@ -9344,13 +8533,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9344
8533
|
* @throws {RequiredError}
|
|
9345
8534
|
*/
|
|
9346
8535
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9347
|
-
/**
|
|
9348
|
-
* Get Admin Account
|
|
9349
|
-
* @summary Get Admin Account
|
|
9350
|
-
* @param {*} [options] Override http request option.
|
|
9351
|
-
* @throws {RequiredError}
|
|
9352
|
-
*/
|
|
9353
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9354
8536
|
/**
|
|
9355
8537
|
* Create client credentials
|
|
9356
8538
|
* @summary Create client credentials
|
|
@@ -9431,14 +8613,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9431
8613
|
* @throws {RequiredError}
|
|
9432
8614
|
*/
|
|
9433
8615
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9434
|
-
/**
|
|
9435
|
-
* Get Account Detailed Summary
|
|
9436
|
-
* @summary Get Account Detailed Summary
|
|
9437
|
-
* @param {number} id Customer ID
|
|
9438
|
-
* @param {*} [options] Override http request option.
|
|
9439
|
-
* @throws {RequiredError}
|
|
9440
|
-
*/
|
|
9441
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9442
8616
|
/**
|
|
9443
8617
|
* Get Accounts
|
|
9444
8618
|
* @summary Get Accounts
|
|
@@ -9504,13 +8678,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9504
8678
|
* @throws {RequiredError}
|
|
9505
8679
|
*/
|
|
9506
8680
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9507
|
-
/**
|
|
9508
|
-
* Get Admin Account
|
|
9509
|
-
* @summary Get Admin Account
|
|
9510
|
-
* @param {*} [options] Override http request option.
|
|
9511
|
-
* @throws {RequiredError}
|
|
9512
|
-
*/
|
|
9513
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9514
8681
|
/**
|
|
9515
8682
|
* Create client credentials
|
|
9516
8683
|
* @summary Create client credentials
|
|
@@ -9597,15 +8764,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9597
8764
|
* @memberof AccountsApi
|
|
9598
8765
|
*/
|
|
9599
8766
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9600
|
-
/**
|
|
9601
|
-
* Get Account Detailed Summary
|
|
9602
|
-
* @summary Get Account Detailed Summary
|
|
9603
|
-
* @param {number} id Customer ID
|
|
9604
|
-
* @param {*} [options] Override http request option.
|
|
9605
|
-
* @throws {RequiredError}
|
|
9606
|
-
* @memberof AccountsApi
|
|
9607
|
-
*/
|
|
9608
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
9609
8767
|
/**
|
|
9610
8768
|
* Get Accounts
|
|
9611
8769
|
* @summary Get Accounts
|
|
@@ -9679,14 +8837,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9679
8837
|
* @memberof AccountsApi
|
|
9680
8838
|
*/
|
|
9681
8839
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9682
|
-
/**
|
|
9683
|
-
* Get Admin Account
|
|
9684
|
-
* @summary Get Admin Account
|
|
9685
|
-
* @param {*} [options] Override http request option.
|
|
9686
|
-
* @throws {RequiredError}
|
|
9687
|
-
* @memberof AccountsApi
|
|
9688
|
-
*/
|
|
9689
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9690
8840
|
/**
|
|
9691
8841
|
* Create client credentials
|
|
9692
8842
|
* @summary Create client credentials
|
|
@@ -9749,6 +8899,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9749
8899
|
* @throws {RequiredError}
|
|
9750
8900
|
*/
|
|
9751
8901
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8902
|
+
/**
|
|
8903
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8904
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8905
|
+
* @param {string} password Desired 3CX web access password
|
|
8906
|
+
* @param {*} [options] Override http request option.
|
|
8907
|
+
* @throws {RequiredError}
|
|
8908
|
+
*/
|
|
8909
|
+
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9752
8910
|
/**
|
|
9753
8911
|
* Get Bulk 3CX Licence Details
|
|
9754
8912
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9771,6 +8929,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9771
8929
|
* @throws {RequiredError}
|
|
9772
8930
|
*/
|
|
9773
8931
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
8932
|
+
/**
|
|
8933
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8934
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8935
|
+
* @param {string} password Desired 3CX web access password
|
|
8936
|
+
* @param {*} [options] Override http request option.
|
|
8937
|
+
* @throws {RequiredError}
|
|
8938
|
+
*/
|
|
8939
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9774
8940
|
/**
|
|
9775
8941
|
* Get Bulk 3CX Licence Details
|
|
9776
8942
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9793,6 +8959,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9793
8959
|
* @throws {RequiredError}
|
|
9794
8960
|
*/
|
|
9795
8961
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
8962
|
+
/**
|
|
8963
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8964
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8965
|
+
* @param {string} password Desired 3CX web access password
|
|
8966
|
+
* @param {*} [options] Override http request option.
|
|
8967
|
+
* @throws {RequiredError}
|
|
8968
|
+
*/
|
|
8969
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9796
8970
|
/**
|
|
9797
8971
|
* Get Bulk 3CX Licence Details
|
|
9798
8972
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9818,6 +8992,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9818
8992
|
* @memberof Class3CXApi
|
|
9819
8993
|
*/
|
|
9820
8994
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
8995
|
+
/**
|
|
8996
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
8997
|
+
* @summary Convert a password to a hashed 3CX password
|
|
8998
|
+
* @param {string} password Desired 3CX web access password
|
|
8999
|
+
* @param {*} [options] Override http request option.
|
|
9000
|
+
* @throws {RequiredError}
|
|
9001
|
+
* @memberof Class3CXApi
|
|
9002
|
+
*/
|
|
9003
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
9821
9004
|
/**
|
|
9822
9005
|
* Get Bulk 3CX Licence Details
|
|
9823
9006
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12079,19 +11262,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12079
11262
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12080
11263
|
/**
|
|
12081
11264
|
* Delete Orders
|
|
12082
|
-
* @summary Delete Orders
|
|
12083
|
-
* @param {number} id Order ID
|
|
12084
|
-
* @param {*} [options] Override http request option.
|
|
12085
|
-
* @throws {RequiredError}
|
|
12086
|
-
*/
|
|
12087
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12088
|
-
/**
|
|
12089
|
-
* Get Editable Order
|
|
12090
11265
|
* @param {number} id Order ID
|
|
12091
11266
|
* @param {*} [options] Override http request option.
|
|
12092
11267
|
* @throws {RequiredError}
|
|
12093
11268
|
*/
|
|
12094
|
-
|
|
11269
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12095
11270
|
/**
|
|
12096
11271
|
* Get Orders
|
|
12097
11272
|
* @summary Get Orders
|
|
@@ -12106,44 +11281,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12106
11281
|
* @throws {RequiredError}
|
|
12107
11282
|
*/
|
|
12108
11283
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12109
|
-
/**
|
|
12110
|
-
* Create An Order (Admin)
|
|
12111
|
-
* @summary Create An Order (Admin)
|
|
12112
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12113
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12114
|
-
* @param {*} [options] Override http request option.
|
|
12115
|
-
* @throws {RequiredError}
|
|
12116
|
-
*/
|
|
12117
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12118
|
-
/**
|
|
12119
|
-
* Create An Order
|
|
12120
|
-
* @summary Create An Order
|
|
12121
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12122
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12123
|
-
* @param {*} [options] Override http request option.
|
|
12124
|
-
* @throws {RequiredError}
|
|
12125
|
-
*/
|
|
12126
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12127
|
-
/**
|
|
12128
|
-
* Update An Order (Admin)
|
|
12129
|
-
* @summary Update An Order (Admin)
|
|
12130
|
-
* @param {number} id Order ID
|
|
12131
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12132
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12133
|
-
* @param {*} [options] Override http request option.
|
|
12134
|
-
* @throws {RequiredError}
|
|
12135
|
-
*/
|
|
12136
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12137
|
-
/**
|
|
12138
|
-
* Update An Order
|
|
12139
|
-
* @summary Update An Order
|
|
12140
|
-
* @param {number} id Order ID
|
|
12141
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12142
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12143
|
-
* @param {*} [options] Override http request option.
|
|
12144
|
-
* @throws {RequiredError}
|
|
12145
|
-
*/
|
|
12146
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12147
11284
|
};
|
|
12148
11285
|
/**
|
|
12149
11286
|
* OrdersApi - functional programming interface
|
|
@@ -12152,19 +11289,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12152
11289
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12153
11290
|
/**
|
|
12154
11291
|
* Delete Orders
|
|
12155
|
-
* @summary Delete Orders
|
|
12156
|
-
* @param {number} id Order ID
|
|
12157
|
-
* @param {*} [options] Override http request option.
|
|
12158
|
-
* @throws {RequiredError}
|
|
12159
|
-
*/
|
|
12160
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12161
|
-
/**
|
|
12162
|
-
* Get Editable Order
|
|
12163
11292
|
* @param {number} id Order ID
|
|
12164
11293
|
* @param {*} [options] Override http request option.
|
|
12165
11294
|
* @throws {RequiredError}
|
|
12166
11295
|
*/
|
|
12167
|
-
|
|
11296
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12168
11297
|
/**
|
|
12169
11298
|
* Get Orders
|
|
12170
11299
|
* @summary Get Orders
|
|
@@ -12179,44 +11308,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12179
11308
|
* @throws {RequiredError}
|
|
12180
11309
|
*/
|
|
12181
11310
|
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>>;
|
|
12182
|
-
/**
|
|
12183
|
-
* Create An Order (Admin)
|
|
12184
|
-
* @summary Create An Order (Admin)
|
|
12185
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12186
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12187
|
-
* @param {*} [options] Override http request option.
|
|
12188
|
-
* @throws {RequiredError}
|
|
12189
|
-
*/
|
|
12190
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12191
|
-
/**
|
|
12192
|
-
* Create An Order
|
|
12193
|
-
* @summary Create An Order
|
|
12194
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12195
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12196
|
-
* @param {*} [options] Override http request option.
|
|
12197
|
-
* @throws {RequiredError}
|
|
12198
|
-
*/
|
|
12199
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12200
|
-
/**
|
|
12201
|
-
* Update An Order (Admin)
|
|
12202
|
-
* @summary Update An Order (Admin)
|
|
12203
|
-
* @param {number} id Order ID
|
|
12204
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12205
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12206
|
-
* @param {*} [options] Override http request option.
|
|
12207
|
-
* @throws {RequiredError}
|
|
12208
|
-
*/
|
|
12209
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12210
|
-
/**
|
|
12211
|
-
* Update An Order
|
|
12212
|
-
* @summary Update An Order
|
|
12213
|
-
* @param {number} id Order ID
|
|
12214
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12215
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12216
|
-
* @param {*} [options] Override http request option.
|
|
12217
|
-
* @throws {RequiredError}
|
|
12218
|
-
*/
|
|
12219
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12220
11311
|
};
|
|
12221
11312
|
/**
|
|
12222
11313
|
* OrdersApi - factory interface
|
|
@@ -12225,19 +11316,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12225
11316
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12226
11317
|
/**
|
|
12227
11318
|
* Delete Orders
|
|
12228
|
-
* @summary Delete Orders
|
|
12229
|
-
* @param {number} id Order ID
|
|
12230
|
-
* @param {*} [options] Override http request option.
|
|
12231
|
-
* @throws {RequiredError}
|
|
12232
|
-
*/
|
|
12233
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12234
|
-
/**
|
|
12235
|
-
* Get Editable Order
|
|
12236
11319
|
* @param {number} id Order ID
|
|
12237
11320
|
* @param {*} [options] Override http request option.
|
|
12238
11321
|
* @throws {RequiredError}
|
|
12239
11322
|
*/
|
|
12240
|
-
|
|
11323
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12241
11324
|
/**
|
|
12242
11325
|
* Get Orders
|
|
12243
11326
|
* @summary Get Orders
|
|
@@ -12252,44 +11335,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12252
11335
|
* @throws {RequiredError}
|
|
12253
11336
|
*/
|
|
12254
11337
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12255
|
-
/**
|
|
12256
|
-
* Create An Order (Admin)
|
|
12257
|
-
* @summary Create An Order (Admin)
|
|
12258
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12259
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12260
|
-
* @param {*} [options] Override http request option.
|
|
12261
|
-
* @throws {RequiredError}
|
|
12262
|
-
*/
|
|
12263
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12264
|
-
/**
|
|
12265
|
-
* Create An Order
|
|
12266
|
-
* @summary Create An Order
|
|
12267
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12268
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12269
|
-
* @param {*} [options] Override http request option.
|
|
12270
|
-
* @throws {RequiredError}
|
|
12271
|
-
*/
|
|
12272
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12273
|
-
/**
|
|
12274
|
-
* Update An Order (Admin)
|
|
12275
|
-
* @summary Update An Order (Admin)
|
|
12276
|
-
* @param {number} id Order ID
|
|
12277
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12278
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12279
|
-
* @param {*} [options] Override http request option.
|
|
12280
|
-
* @throws {RequiredError}
|
|
12281
|
-
*/
|
|
12282
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12283
|
-
/**
|
|
12284
|
-
* Update An Order
|
|
12285
|
-
* @summary Update An Order
|
|
12286
|
-
* @param {number} id Order ID
|
|
12287
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12288
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12289
|
-
* @param {*} [options] Override http request option.
|
|
12290
|
-
* @throws {RequiredError}
|
|
12291
|
-
*/
|
|
12292
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12293
11338
|
};
|
|
12294
11339
|
/**
|
|
12295
11340
|
* OrdersApi - object-oriented interface
|
|
@@ -12300,21 +11345,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12300
11345
|
export declare class OrdersApi extends BaseAPI {
|
|
12301
11346
|
/**
|
|
12302
11347
|
* Delete Orders
|
|
12303
|
-
* @summary Delete Orders
|
|
12304
|
-
* @param {number} id Order ID
|
|
12305
|
-
* @param {*} [options] Override http request option.
|
|
12306
|
-
* @throws {RequiredError}
|
|
12307
|
-
* @memberof OrdersApi
|
|
12308
|
-
*/
|
|
12309
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12310
|
-
/**
|
|
12311
|
-
* Get Editable Order
|
|
12312
11348
|
* @param {number} id Order ID
|
|
12313
11349
|
* @param {*} [options] Override http request option.
|
|
12314
11350
|
* @throws {RequiredError}
|
|
12315
11351
|
* @memberof OrdersApi
|
|
12316
11352
|
*/
|
|
12317
|
-
|
|
11353
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12318
11354
|
/**
|
|
12319
11355
|
* Get Orders
|
|
12320
11356
|
* @summary Get Orders
|
|
@@ -12330,48 +11366,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12330
11366
|
* @memberof OrdersApi
|
|
12331
11367
|
*/
|
|
12332
11368
|
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, {}>>;
|
|
12333
|
-
/**
|
|
12334
|
-
* Create An Order (Admin)
|
|
12335
|
-
* @summary Create An Order (Admin)
|
|
12336
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12337
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12338
|
-
* @param {*} [options] Override http request option.
|
|
12339
|
-
* @throws {RequiredError}
|
|
12340
|
-
* @memberof OrdersApi
|
|
12341
|
-
*/
|
|
12342
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12343
|
-
/**
|
|
12344
|
-
* Create An Order
|
|
12345
|
-
* @summary Create An Order
|
|
12346
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12347
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12348
|
-
* @param {*} [options] Override http request option.
|
|
12349
|
-
* @throws {RequiredError}
|
|
12350
|
-
* @memberof OrdersApi
|
|
12351
|
-
*/
|
|
12352
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12353
|
-
/**
|
|
12354
|
-
* Update An Order (Admin)
|
|
12355
|
-
* @summary Update An Order (Admin)
|
|
12356
|
-
* @param {number} id Order ID
|
|
12357
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12358
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12359
|
-
* @param {*} [options] Override http request option.
|
|
12360
|
-
* @throws {RequiredError}
|
|
12361
|
-
* @memberof OrdersApi
|
|
12362
|
-
*/
|
|
12363
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12364
|
-
/**
|
|
12365
|
-
* Update An Order
|
|
12366
|
-
* @summary Update An Order
|
|
12367
|
-
* @param {number} id Order ID
|
|
12368
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12369
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12370
|
-
* @param {*} [options] Override http request option.
|
|
12371
|
-
* @throws {RequiredError}
|
|
12372
|
-
* @memberof OrdersApi
|
|
12373
|
-
*/
|
|
12374
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12375
11369
|
}
|
|
12376
11370
|
/**
|
|
12377
11371
|
* @export
|
|
@@ -12627,6 +11621,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12627
11621
|
* @throws {RequiredError}
|
|
12628
11622
|
*/
|
|
12629
11623
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11624
|
+
/**
|
|
11625
|
+
* Get Customer Price Lists
|
|
11626
|
+
* @summary Get Customer Price Lists
|
|
11627
|
+
* @param {*} [options] Override http request option.
|
|
11628
|
+
* @throws {RequiredError}
|
|
11629
|
+
*/
|
|
11630
|
+
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12630
11631
|
/**
|
|
12631
11632
|
* Get Current Stock & Pricing
|
|
12632
11633
|
* @summary Get Current Stock & Pricing
|
|
@@ -12636,23 +11637,16 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12636
11637
|
* @throws {RequiredError}
|
|
12637
11638
|
*/
|
|
12638
11639
|
getGetLegacyStockList: (format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12639
|
-
/**
|
|
12640
|
-
* Get Product
|
|
12641
|
-
* @summary Get Product
|
|
12642
|
-
* @param {string} sku Product SKU
|
|
12643
|
-
* @param {number} [quantity] Quantity
|
|
12644
|
-
* @param {string} [licenceKey] 3CX Licence Key
|
|
12645
|
-
* @param {*} [options] Override http request option.
|
|
12646
|
-
* @throws {RequiredError}
|
|
12647
|
-
*/
|
|
12648
|
-
getGetProduct: (sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12649
11640
|
/**
|
|
12650
11641
|
* Get Products
|
|
12651
11642
|
* @summary Get Products
|
|
11643
|
+
* @param {number} [pageSize] Number Of Results
|
|
11644
|
+
* @param {number} [page] Page Number
|
|
11645
|
+
* @param {string} [search] Search
|
|
12652
11646
|
* @param {*} [options] Override http request option.
|
|
12653
11647
|
* @throws {RequiredError}
|
|
12654
11648
|
*/
|
|
12655
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11649
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12656
11650
|
/**
|
|
12657
11651
|
* Get Current Stock & Pricing
|
|
12658
11652
|
* @summary Get Current Stock & Pricing
|
|
@@ -12667,16 +11661,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12667
11661
|
* @throws {RequiredError}
|
|
12668
11662
|
*/
|
|
12669
11663
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12670
|
-
/**
|
|
12671
|
-
* Search Products
|
|
12672
|
-
* @summary Search Products
|
|
12673
|
-
* @param {number} [pageSize] Number Of Results
|
|
12674
|
-
* @param {number} [page] Page Number
|
|
12675
|
-
* @param {string} [search] Search
|
|
12676
|
-
* @param {*} [options] Override http request option.
|
|
12677
|
-
* @throws {RequiredError}
|
|
12678
|
-
*/
|
|
12679
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12680
11664
|
};
|
|
12681
11665
|
/**
|
|
12682
11666
|
* ProductsApi - functional programming interface
|
|
@@ -12690,6 +11674,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12690
11674
|
* @throws {RequiredError}
|
|
12691
11675
|
*/
|
|
12692
11676
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
11677
|
+
/**
|
|
11678
|
+
* Get Customer Price Lists
|
|
11679
|
+
* @summary Get Customer Price Lists
|
|
11680
|
+
* @param {*} [options] Override http request option.
|
|
11681
|
+
* @throws {RequiredError}
|
|
11682
|
+
*/
|
|
11683
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
12693
11684
|
/**
|
|
12694
11685
|
* Get Current Stock & Pricing
|
|
12695
11686
|
* @summary Get Current Stock & Pricing
|
|
@@ -12699,23 +11690,16 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12699
11690
|
* @throws {RequiredError}
|
|
12700
11691
|
*/
|
|
12701
11692
|
getGetLegacyStockList(format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
12702
|
-
/**
|
|
12703
|
-
* Get Product
|
|
12704
|
-
* @summary Get Product
|
|
12705
|
-
* @param {string} sku Product SKU
|
|
12706
|
-
* @param {number} [quantity] Quantity
|
|
12707
|
-
* @param {string} [licenceKey] 3CX Licence Key
|
|
12708
|
-
* @param {*} [options] Override http request option.
|
|
12709
|
-
* @throws {RequiredError}
|
|
12710
|
-
*/
|
|
12711
|
-
getGetProduct(sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
12712
11693
|
/**
|
|
12713
11694
|
* Get Products
|
|
12714
11695
|
* @summary Get Products
|
|
11696
|
+
* @param {number} [pageSize] Number Of Results
|
|
11697
|
+
* @param {number} [page] Page Number
|
|
11698
|
+
* @param {string} [search] Search
|
|
12715
11699
|
* @param {*} [options] Override http request option.
|
|
12716
11700
|
* @throws {RequiredError}
|
|
12717
11701
|
*/
|
|
12718
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11702
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12719
11703
|
/**
|
|
12720
11704
|
* Get Current Stock & Pricing
|
|
12721
11705
|
* @summary Get Current Stock & Pricing
|
|
@@ -12730,16 +11714,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12730
11714
|
* @throws {RequiredError}
|
|
12731
11715
|
*/
|
|
12732
11716
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
12733
|
-
/**
|
|
12734
|
-
* Search Products
|
|
12735
|
-
* @summary Search Products
|
|
12736
|
-
* @param {number} [pageSize] Number Of Results
|
|
12737
|
-
* @param {number} [page] Page Number
|
|
12738
|
-
* @param {string} [search] Search
|
|
12739
|
-
* @param {*} [options] Override http request option.
|
|
12740
|
-
* @throws {RequiredError}
|
|
12741
|
-
*/
|
|
12742
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
12743
11717
|
};
|
|
12744
11718
|
/**
|
|
12745
11719
|
* ProductsApi - factory interface
|
|
@@ -12753,6 +11727,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12753
11727
|
* @throws {RequiredError}
|
|
12754
11728
|
*/
|
|
12755
11729
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
11730
|
+
/**
|
|
11731
|
+
* Get Customer Price Lists
|
|
11732
|
+
* @summary Get Customer Price Lists
|
|
11733
|
+
* @param {*} [options] Override http request option.
|
|
11734
|
+
* @throws {RequiredError}
|
|
11735
|
+
*/
|
|
11736
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
12756
11737
|
/**
|
|
12757
11738
|
* Get Current Stock & Pricing
|
|
12758
11739
|
* @summary Get Current Stock & Pricing
|
|
@@ -12762,23 +11743,16 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12762
11743
|
* @throws {RequiredError}
|
|
12763
11744
|
*/
|
|
12764
11745
|
getGetLegacyStockList(format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
12765
|
-
/**
|
|
12766
|
-
* Get Product
|
|
12767
|
-
* @summary Get Product
|
|
12768
|
-
* @param {string} sku Product SKU
|
|
12769
|
-
* @param {number} [quantity] Quantity
|
|
12770
|
-
* @param {string} [licenceKey] 3CX Licence Key
|
|
12771
|
-
* @param {*} [options] Override http request option.
|
|
12772
|
-
* @throws {RequiredError}
|
|
12773
|
-
*/
|
|
12774
|
-
getGetProduct(sku: string, quantity?: number, licenceKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
12775
11746
|
/**
|
|
12776
11747
|
* Get Products
|
|
12777
11748
|
* @summary Get Products
|
|
11749
|
+
* @param {number} [pageSize] Number Of Results
|
|
11750
|
+
* @param {number} [page] Page Number
|
|
11751
|
+
* @param {string} [search] Search
|
|
12778
11752
|
* @param {*} [options] Override http request option.
|
|
12779
11753
|
* @throws {RequiredError}
|
|
12780
11754
|
*/
|
|
12781
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11755
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12782
11756
|
/**
|
|
12783
11757
|
* Get Current Stock & Pricing
|
|
12784
11758
|
* @summary Get Current Stock & Pricing
|
|
@@ -12793,16 +11767,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12793
11767
|
* @throws {RequiredError}
|
|
12794
11768
|
*/
|
|
12795
11769
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
12796
|
-
/**
|
|
12797
|
-
* Search Products
|
|
12798
|
-
* @summary Search Products
|
|
12799
|
-
* @param {number} [pageSize] Number Of Results
|
|
12800
|
-
* @param {number} [page] Page Number
|
|
12801
|
-
* @param {string} [search] Search
|
|
12802
|
-
* @param {*} [options] Override http request option.
|
|
12803
|
-
* @throws {RequiredError}
|
|
12804
|
-
*/
|
|
12805
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
12806
11770
|
};
|
|
12807
11771
|
/**
|
|
12808
11772
|
* ProductsApi - object-oriented interface
|
|
@@ -12820,34 +11784,34 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12820
11784
|
*/
|
|
12821
11785
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12822
11786
|
/**
|
|
12823
|
-
* Get
|
|
12824
|
-
* @summary Get
|
|
12825
|
-
* @param {GetGetLegacyStockListFormatEnum} format File Format
|
|
11787
|
+
* Get Customer Price Lists
|
|
11788
|
+
* @summary Get Customer Price Lists
|
|
12826
11789
|
* @param {*} [options] Override http request option.
|
|
12827
|
-
* @deprecated
|
|
12828
11790
|
* @throws {RequiredError}
|
|
12829
11791
|
* @memberof ProductsApi
|
|
12830
11792
|
*/
|
|
12831
|
-
|
|
11793
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
12832
11794
|
/**
|
|
12833
|
-
* Get
|
|
12834
|
-
* @summary Get
|
|
12835
|
-
* @param {
|
|
12836
|
-
* @param {number} [quantity] Quantity
|
|
12837
|
-
* @param {string} [licenceKey] 3CX Licence Key
|
|
11795
|
+
* Get Current Stock & Pricing
|
|
11796
|
+
* @summary Get Current Stock & Pricing
|
|
11797
|
+
* @param {GetGetLegacyStockListFormatEnum} format File Format
|
|
12838
11798
|
* @param {*} [options] Override http request option.
|
|
11799
|
+
* @deprecated
|
|
12839
11800
|
* @throws {RequiredError}
|
|
12840
11801
|
* @memberof ProductsApi
|
|
12841
11802
|
*/
|
|
12842
|
-
|
|
11803
|
+
getGetLegacyStockList(format: GetGetLegacyStockListFormatEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
12843
11804
|
/**
|
|
12844
11805
|
* Get Products
|
|
12845
11806
|
* @summary Get Products
|
|
11807
|
+
* @param {number} [pageSize] Number Of Results
|
|
11808
|
+
* @param {number} [page] Page Number
|
|
11809
|
+
* @param {string} [search] Search
|
|
12846
11810
|
* @param {*} [options] Override http request option.
|
|
12847
11811
|
* @throws {RequiredError}
|
|
12848
11812
|
* @memberof ProductsApi
|
|
12849
11813
|
*/
|
|
12850
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11814
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12851
11815
|
/**
|
|
12852
11816
|
* Get Current Stock & Pricing
|
|
12853
11817
|
* @summary Get Current Stock & Pricing
|
|
@@ -12864,17 +11828,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12864
11828
|
* @memberof ProductsApi
|
|
12865
11829
|
*/
|
|
12866
11830
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
12867
|
-
/**
|
|
12868
|
-
* Search Products
|
|
12869
|
-
* @summary Search Products
|
|
12870
|
-
* @param {number} [pageSize] Number Of Results
|
|
12871
|
-
* @param {number} [page] Page Number
|
|
12872
|
-
* @param {string} [search] Search
|
|
12873
|
-
* @param {*} [options] Override http request option.
|
|
12874
|
-
* @throws {RequiredError}
|
|
12875
|
-
* @memberof ProductsApi
|
|
12876
|
-
*/
|
|
12877
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
12878
11831
|
}
|
|
12879
11832
|
/**
|
|
12880
11833
|
* @export
|
|
@@ -12995,7 +11948,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12995
11948
|
* @param {*} [options] Override http request option.
|
|
12996
11949
|
* @throws {RequiredError}
|
|
12997
11950
|
*/
|
|
12998
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
11951
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
12999
11952
|
/**
|
|
13000
11953
|
* Create a Fanvil provisioning group
|
|
13001
11954
|
* @summary Add group to DB and FDPS
|
|
@@ -13003,7 +11956,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13003
11956
|
* @param {*} [options] Override http request option.
|
|
13004
11957
|
* @throws {RequiredError}
|
|
13005
11958
|
*/
|
|
13006
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11959
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13007
11960
|
/**
|
|
13008
11961
|
* Add MAC address to DB and FDPS group
|
|
13009
11962
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13060,7 +12013,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13060
12013
|
* @param {*} [options] Override http request option.
|
|
13061
12014
|
* @throws {RequiredError}
|
|
13062
12015
|
*/
|
|
13063
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12016
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13064
12017
|
/**
|
|
13065
12018
|
* Create a Fanvil provisioning group
|
|
13066
12019
|
* @summary Add group to DB and FDPS
|
|
@@ -13068,7 +12021,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13068
12021
|
* @param {*} [options] Override http request option.
|
|
13069
12022
|
* @throws {RequiredError}
|
|
13070
12023
|
*/
|
|
13071
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12024
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13072
12025
|
/**
|
|
13073
12026
|
* Add MAC address to DB and FDPS group
|
|
13074
12027
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13132,7 +12085,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13132
12085
|
* @throws {RequiredError}
|
|
13133
12086
|
* @memberof ProvisioningApi
|
|
13134
12087
|
*/
|
|
13135
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12088
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13136
12089
|
/**
|
|
13137
12090
|
* Create a Fanvil provisioning group
|
|
13138
12091
|
* @summary Add group to DB and FDPS
|
|
@@ -13141,7 +12094,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13141
12094
|
* @throws {RequiredError}
|
|
13142
12095
|
* @memberof ProvisioningApi
|
|
13143
12096
|
*/
|
|
13144
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12097
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13145
12098
|
/**
|
|
13146
12099
|
* Add MAC address to DB and FDPS group
|
|
13147
12100
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14016,65 +12969,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14016
12969
|
*/
|
|
14017
12970
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14018
12971
|
}
|
|
14019
|
-
/**
|
|
14020
|
-
* ShippingApi - axios parameter creator
|
|
14021
|
-
* @export
|
|
14022
|
-
*/
|
|
14023
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14024
|
-
/**
|
|
14025
|
-
* Get Shipping Services
|
|
14026
|
-
* @summary Get Shipping Services
|
|
14027
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14028
|
-
* @param {*} [options] Override http request option.
|
|
14029
|
-
* @throws {RequiredError}
|
|
14030
|
-
*/
|
|
14031
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14032
|
-
};
|
|
14033
|
-
/**
|
|
14034
|
-
* ShippingApi - functional programming interface
|
|
14035
|
-
* @export
|
|
14036
|
-
*/
|
|
14037
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14038
|
-
/**
|
|
14039
|
-
* Get Shipping Services
|
|
14040
|
-
* @summary Get Shipping Services
|
|
14041
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14042
|
-
* @param {*} [options] Override http request option.
|
|
14043
|
-
* @throws {RequiredError}
|
|
14044
|
-
*/
|
|
14045
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14046
|
-
};
|
|
14047
|
-
/**
|
|
14048
|
-
* ShippingApi - factory interface
|
|
14049
|
-
* @export
|
|
14050
|
-
*/
|
|
14051
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14052
|
-
/**
|
|
14053
|
-
* Get Shipping Services
|
|
14054
|
-
* @summary Get Shipping Services
|
|
14055
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14056
|
-
* @param {*} [options] Override http request option.
|
|
14057
|
-
* @throws {RequiredError}
|
|
14058
|
-
*/
|
|
14059
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14060
|
-
};
|
|
14061
|
-
/**
|
|
14062
|
-
* ShippingApi - object-oriented interface
|
|
14063
|
-
* @export
|
|
14064
|
-
* @class ShippingApi
|
|
14065
|
-
* @extends {BaseAPI}
|
|
14066
|
-
*/
|
|
14067
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14068
|
-
/**
|
|
14069
|
-
* Get Shipping Services
|
|
14070
|
-
* @summary Get Shipping Services
|
|
14071
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14072
|
-
* @param {*} [options] Override http request option.
|
|
14073
|
-
* @throws {RequiredError}
|
|
14074
|
-
* @memberof ShippingApi
|
|
14075
|
-
*/
|
|
14076
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14077
|
-
}
|
|
14078
12972
|
/**
|
|
14079
12973
|
* StockManagementApi - axios parameter creator
|
|
14080
12974
|
* @export
|
|
@@ -14404,7 +13298,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14404
13298
|
* @param {*} [options] Override http request option.
|
|
14405
13299
|
* @throws {RequiredError}
|
|
14406
13300
|
*/
|
|
14407
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13301
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
14408
13302
|
/**
|
|
14409
13303
|
* Get Stock Order Supplier Invoice
|
|
14410
13304
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14619,7 +13513,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14619
13513
|
* @param {*} [options] Override http request option.
|
|
14620
13514
|
* @throws {RequiredError}
|
|
14621
13515
|
*/
|
|
14622
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13516
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
14623
13517
|
/**
|
|
14624
13518
|
* Get Stock Order Supplier Invoice
|
|
14625
13519
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14849,7 +13743,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14849
13743
|
* @throws {RequiredError}
|
|
14850
13744
|
* @memberof StockManagementApi
|
|
14851
13745
|
*/
|
|
14852
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13746
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
14853
13747
|
/**
|
|
14854
13748
|
* Get Stock Order Supplier Invoice
|
|
14855
13749
|
* @summary Get Stock Order Supplier Invoice
|