yellowgrid-api-ts 3.1.15-dev.0 → 3.1.15
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 +198 -217
- package/README.md +7 -36
- package/api.ts +233 -1975
- 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 +159 -1484
- package/dist/api.js +197 -1140
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AccountsApi.md +0 -103
- package/docs/AddressModel.md +0 -2
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -12
- package/docs/ItemEntity.md +2 -4
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -356
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -7
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -39
- package/docs/AdminItemRequestDTO.md +0 -43
- package/docs/AdminOrderRequestDTO.md +0 -45
- package/docs/AdminUserModel.md +0 -29
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -37
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/DetailedItemRequestDTO.md +0 -43
- package/docs/DetailedOrderRequestDTO.md +0 -33
- package/docs/ItemDiscountEntity.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/PostGetProductForCustomerRequest.md +0 -24
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/TcxSbcDTO.md +0 -31
- package/hs_err_pid58424.log +0 -247
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,55 +13,6 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
* Order Request
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AbstractOrderRequestDTO
|
|
20
|
-
*/
|
|
21
|
-
export interface AbstractOrderRequestDTO {
|
|
22
|
-
/**
|
|
23
|
-
* Order Reference
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AbstractOrderRequestDTO
|
|
26
|
-
*/
|
|
27
|
-
'orderReference'?: string | null;
|
|
28
|
-
/**
|
|
29
|
-
* Items
|
|
30
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
-
* @memberof AbstractOrderRequestDTO
|
|
32
|
-
*/
|
|
33
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {ShippingServiceDTO}
|
|
37
|
-
* @memberof AbstractOrderRequestDTO
|
|
38
|
-
*/
|
|
39
|
-
'shippingService'?: ShippingServiceDTO;
|
|
40
|
-
/**
|
|
41
|
-
* Provisioning URL
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AbstractOrderRequestDTO
|
|
44
|
-
*/
|
|
45
|
-
'provisioningUrl'?: string | null;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {AddressModel}
|
|
49
|
-
* @memberof AbstractOrderRequestDTO
|
|
50
|
-
*/
|
|
51
|
-
'shippingAddress'?: AddressModel | null;
|
|
52
|
-
/**
|
|
53
|
-
* Part Ship Order
|
|
54
|
-
* @type {boolean}
|
|
55
|
-
* @memberof AbstractOrderRequestDTO
|
|
56
|
-
*/
|
|
57
|
-
'partShip'?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Quote
|
|
60
|
-
* @type {boolean}
|
|
61
|
-
* @memberof AbstractOrderRequestDTO
|
|
62
|
-
*/
|
|
63
|
-
'quote'?: boolean;
|
|
64
|
-
}
|
|
65
16
|
/**
|
|
66
17
|
* AccountContactsEntity
|
|
67
18
|
* @export
|
|
@@ -293,73 +244,6 @@ export interface AccountContactRequestModel {
|
|
|
293
244
|
*/
|
|
294
245
|
'despatchEmails'?: boolean;
|
|
295
246
|
}
|
|
296
|
-
/**
|
|
297
|
-
* Account Details
|
|
298
|
-
* @export
|
|
299
|
-
* @interface AccountDetailedSummaryDTO
|
|
300
|
-
*/
|
|
301
|
-
export interface AccountDetailedSummaryDTO {
|
|
302
|
-
/**
|
|
303
|
-
* ID
|
|
304
|
-
* @type {number}
|
|
305
|
-
* @memberof AccountDetailedSummaryDTO
|
|
306
|
-
*/
|
|
307
|
-
'id'?: number;
|
|
308
|
-
/**
|
|
309
|
-
* Xero ID
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof AccountDetailedSummaryDTO
|
|
312
|
-
*/
|
|
313
|
-
'xeroId'?: string;
|
|
314
|
-
/**
|
|
315
|
-
* Company
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof AccountDetailedSummaryDTO
|
|
318
|
-
*/
|
|
319
|
-
'company'?: string;
|
|
320
|
-
/**
|
|
321
|
-
* Credit Limit
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof AccountDetailedSummaryDTO
|
|
324
|
-
*/
|
|
325
|
-
'creditLimit'?: number;
|
|
326
|
-
/**
|
|
327
|
-
* Contacts
|
|
328
|
-
* @type {Array<AccountContactModel>}
|
|
329
|
-
* @memberof AccountDetailedSummaryDTO
|
|
330
|
-
*/
|
|
331
|
-
'contacts'?: Array<AccountContactModel>;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {AddressModel}
|
|
335
|
-
* @memberof AccountDetailedSummaryDTO
|
|
336
|
-
*/
|
|
337
|
-
'billingAddress'?: AddressModel;
|
|
338
|
-
/**
|
|
339
|
-
* Addresses
|
|
340
|
-
* @type {Array<AddressModel>}
|
|
341
|
-
* @memberof AccountDetailedSummaryDTO
|
|
342
|
-
*/
|
|
343
|
-
'addresses'?: Array<AddressModel>;
|
|
344
|
-
/**
|
|
345
|
-
* Provisioning URLs
|
|
346
|
-
* @type {Array<ProvisioningModel>}
|
|
347
|
-
* @memberof AccountDetailedSummaryDTO
|
|
348
|
-
*/
|
|
349
|
-
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
-
/**
|
|
351
|
-
* On Hold
|
|
352
|
-
* @type {boolean}
|
|
353
|
-
* @memberof AccountDetailedSummaryDTO
|
|
354
|
-
*/
|
|
355
|
-
'onHold'?: boolean;
|
|
356
|
-
/**
|
|
357
|
-
* Balance (£)
|
|
358
|
-
* @type {number}
|
|
359
|
-
* @memberof AccountDetailedSummaryDTO
|
|
360
|
-
*/
|
|
361
|
-
'balance'?: number | null;
|
|
362
|
-
}
|
|
363
247
|
/**
|
|
364
248
|
* New Account Request
|
|
365
249
|
* @export
|
|
@@ -609,12 +493,6 @@ export interface AddressModel {
|
|
|
609
493
|
* @memberof AddressModel
|
|
610
494
|
*/
|
|
611
495
|
'company'?: string;
|
|
612
|
-
/**
|
|
613
|
-
* Default
|
|
614
|
-
* @type {boolean}
|
|
615
|
-
* @memberof AddressModel
|
|
616
|
-
*/
|
|
617
|
-
'default'?: boolean;
|
|
618
496
|
}
|
|
619
497
|
/**
|
|
620
498
|
* Address Request
|
|
@@ -647,136 +525,6 @@ export interface AddressRequestModel {
|
|
|
647
525
|
*/
|
|
648
526
|
'addressPostcode'?: string;
|
|
649
527
|
}
|
|
650
|
-
/**
|
|
651
|
-
* Admin Order Request
|
|
652
|
-
* @export
|
|
653
|
-
* @interface AdminOrderRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
export interface AdminOrderRequestDTO {
|
|
656
|
-
/**
|
|
657
|
-
* Order Reference
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof AdminOrderRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'orderReference'?: string | null;
|
|
662
|
-
/**
|
|
663
|
-
* Items
|
|
664
|
-
* @type {Array<DetailedItemRequestDTO>}
|
|
665
|
-
* @memberof AdminOrderRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'items'?: Array<DetailedItemRequestDTO>;
|
|
668
|
-
/**
|
|
669
|
-
*
|
|
670
|
-
* @type {ShippingServiceDTO}
|
|
671
|
-
* @memberof AdminOrderRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'shippingService'?: ShippingServiceDTO;
|
|
674
|
-
/**
|
|
675
|
-
* Provisioning URL
|
|
676
|
-
* @type {string}
|
|
677
|
-
* @memberof AdminOrderRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'provisioningUrl'?: string | null;
|
|
680
|
-
/**
|
|
681
|
-
*
|
|
682
|
-
* @type {AddressModel}
|
|
683
|
-
* @memberof AdminOrderRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'shippingAddress'?: AddressModel;
|
|
686
|
-
/**
|
|
687
|
-
* Part Ship Order
|
|
688
|
-
* @type {boolean}
|
|
689
|
-
* @memberof AdminOrderRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'partShip'?: boolean;
|
|
692
|
-
/**
|
|
693
|
-
* Quote
|
|
694
|
-
* @type {boolean}
|
|
695
|
-
* @memberof AdminOrderRequestDTO
|
|
696
|
-
*/
|
|
697
|
-
'quote'?: boolean;
|
|
698
|
-
/**
|
|
699
|
-
* Customer ID
|
|
700
|
-
* @type {number}
|
|
701
|
-
* @memberof AdminOrderRequestDTO
|
|
702
|
-
*/
|
|
703
|
-
'customerId'?: number;
|
|
704
|
-
/**
|
|
705
|
-
* Contact
|
|
706
|
-
* @type {string}
|
|
707
|
-
* @memberof AdminOrderRequestDTO
|
|
708
|
-
*/
|
|
709
|
-
'contact'?: string;
|
|
710
|
-
/**
|
|
711
|
-
* Ignore Customer On Hold
|
|
712
|
-
* @type {boolean}
|
|
713
|
-
* @memberof AdminOrderRequestDTO
|
|
714
|
-
*/
|
|
715
|
-
'ignoreOnHold'?: boolean;
|
|
716
|
-
/**
|
|
717
|
-
* Ignore Customer Credit Limit
|
|
718
|
-
* @type {boolean}
|
|
719
|
-
* @memberof AdminOrderRequestDTO
|
|
720
|
-
*/
|
|
721
|
-
'ignoreCreditLimit'?: boolean;
|
|
722
|
-
/**
|
|
723
|
-
* Include NFR Promos
|
|
724
|
-
* @type {boolean}
|
|
725
|
-
* @memberof AdminOrderRequestDTO
|
|
726
|
-
*/
|
|
727
|
-
'includeNfrPromos'?: boolean;
|
|
728
|
-
/**
|
|
729
|
-
* Carriage Charge
|
|
730
|
-
* @type {number}
|
|
731
|
-
* @memberof AdminOrderRequestDTO
|
|
732
|
-
*/
|
|
733
|
-
'carriageCharge'?: number;
|
|
734
|
-
}
|
|
735
|
-
/**
|
|
736
|
-
* Admin User
|
|
737
|
-
* @export
|
|
738
|
-
* @interface AdminUserModel
|
|
739
|
-
*/
|
|
740
|
-
export interface AdminUserModel {
|
|
741
|
-
/**
|
|
742
|
-
* First Name
|
|
743
|
-
* @type {string}
|
|
744
|
-
* @memberof AdminUserModel
|
|
745
|
-
*/
|
|
746
|
-
'firstName'?: string;
|
|
747
|
-
/**
|
|
748
|
-
* Last Name
|
|
749
|
-
* @type {string}
|
|
750
|
-
* @memberof AdminUserModel
|
|
751
|
-
*/
|
|
752
|
-
'lastName'?: string;
|
|
753
|
-
/**
|
|
754
|
-
* Avatar
|
|
755
|
-
* @type {string}
|
|
756
|
-
* @memberof AdminUserModel
|
|
757
|
-
*/
|
|
758
|
-
'avatar'?: string | null;
|
|
759
|
-
/**
|
|
760
|
-
* Role
|
|
761
|
-
* @type {number}
|
|
762
|
-
* @memberof AdminUserModel
|
|
763
|
-
*/
|
|
764
|
-
'role'?: AdminUserModelRoleEnum;
|
|
765
|
-
/**
|
|
766
|
-
* Email
|
|
767
|
-
* @type {string}
|
|
768
|
-
* @memberof AdminUserModel
|
|
769
|
-
*/
|
|
770
|
-
'email'?: string | null;
|
|
771
|
-
}
|
|
772
|
-
export declare const AdminUserModelRoleEnum: {
|
|
773
|
-
readonly NUMBER_0: 0;
|
|
774
|
-
readonly NUMBER_1: 1;
|
|
775
|
-
readonly NUMBER_2: 2;
|
|
776
|
-
readonly NUMBER_3: 3;
|
|
777
|
-
readonly NUMBER_4: 4;
|
|
778
|
-
};
|
|
779
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
780
528
|
/**
|
|
781
529
|
* Agent Hours Graph
|
|
782
530
|
* @export
|
|
@@ -1006,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1006
754
|
*/
|
|
1007
755
|
'redirect_uri'?: string | null;
|
|
1008
756
|
}
|
|
1009
|
-
/**
|
|
1010
|
-
* Basic Order Item
|
|
1011
|
-
* @export
|
|
1012
|
-
* @interface BasicItemDTO
|
|
1013
|
-
*/
|
|
1014
|
-
export interface BasicItemDTO {
|
|
1015
|
-
/**
|
|
1016
|
-
* SKU
|
|
1017
|
-
* @type {string}
|
|
1018
|
-
* @memberof BasicItemDTO
|
|
1019
|
-
*/
|
|
1020
|
-
'sku'?: string;
|
|
1021
|
-
/**
|
|
1022
|
-
* Quantity
|
|
1023
|
-
* @type {number}
|
|
1024
|
-
* @memberof BasicItemDTO
|
|
1025
|
-
*/
|
|
1026
|
-
'quantity'?: number;
|
|
1027
|
-
}
|
|
1028
|
-
/**
|
|
1029
|
-
* Basic Product
|
|
1030
|
-
* @export
|
|
1031
|
-
* @interface BasicProductDTO
|
|
1032
|
-
*/
|
|
1033
|
-
export interface BasicProductDTO {
|
|
1034
|
-
/**
|
|
1035
|
-
* SKU
|
|
1036
|
-
* @type {string}
|
|
1037
|
-
* @memberof BasicProductDTO
|
|
1038
|
-
*/
|
|
1039
|
-
'sku'?: string;
|
|
1040
|
-
/**
|
|
1041
|
-
* Title
|
|
1042
|
-
* @type {string}
|
|
1043
|
-
* @memberof BasicProductDTO
|
|
1044
|
-
*/
|
|
1045
|
-
'title'?: string;
|
|
1046
|
-
}
|
|
1047
757
|
/**
|
|
1048
758
|
* BatchesEntity
|
|
1049
759
|
* @export
|
|
@@ -1238,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1238
948
|
* @memberof ClientDetailsModel
|
|
1239
949
|
*/
|
|
1240
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1241
957
|
}
|
|
1242
958
|
/**
|
|
1243
959
|
* OAuth client details
|
|
@@ -1399,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1399
1115
|
*/
|
|
1400
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1401
1117
|
}
|
|
1402
|
-
/**
|
|
1403
|
-
* CourierPricesEntity
|
|
1404
|
-
* @export
|
|
1405
|
-
* @interface CourierPriceEntity
|
|
1406
|
-
*/
|
|
1407
|
-
export interface CourierPriceEntity {
|
|
1408
|
-
/**
|
|
1409
|
-
* id
|
|
1410
|
-
* @type {number}
|
|
1411
|
-
* @memberof CourierPriceEntity
|
|
1412
|
-
*/
|
|
1413
|
-
'id'?: number;
|
|
1414
|
-
/**
|
|
1415
|
-
* courier
|
|
1416
|
-
* @type {string}
|
|
1417
|
-
* @memberof CourierPriceEntity
|
|
1418
|
-
*/
|
|
1419
|
-
'courier'?: string;
|
|
1420
|
-
/**
|
|
1421
|
-
* destinationIso
|
|
1422
|
-
* @type {string}
|
|
1423
|
-
* @memberof CourierPriceEntity
|
|
1424
|
-
*/
|
|
1425
|
-
'destinationIso'?: string;
|
|
1426
|
-
/**
|
|
1427
|
-
* serviceDescription
|
|
1428
|
-
* @type {string}
|
|
1429
|
-
* @memberof CourierPriceEntity
|
|
1430
|
-
*/
|
|
1431
|
-
'serviceDescription'?: string;
|
|
1432
|
-
/**
|
|
1433
|
-
* flatRate
|
|
1434
|
-
* @type {number}
|
|
1435
|
-
* @memberof CourierPriceEntity
|
|
1436
|
-
*/
|
|
1437
|
-
'flatRate'?: number;
|
|
1438
|
-
/**
|
|
1439
|
-
* initialBox
|
|
1440
|
-
* @type {number}
|
|
1441
|
-
* @memberof CourierPriceEntity
|
|
1442
|
-
*/
|
|
1443
|
-
'initialBox'?: number;
|
|
1444
|
-
/**
|
|
1445
|
-
* initialKg
|
|
1446
|
-
* @type {number}
|
|
1447
|
-
* @memberof CourierPriceEntity
|
|
1448
|
-
*/
|
|
1449
|
-
'initialKg'?: number;
|
|
1450
|
-
/**
|
|
1451
|
-
* perBox
|
|
1452
|
-
* @type {number}
|
|
1453
|
-
* @memberof CourierPriceEntity
|
|
1454
|
-
*/
|
|
1455
|
-
'perBox'?: number;
|
|
1456
|
-
/**
|
|
1457
|
-
* perKg
|
|
1458
|
-
* @type {number}
|
|
1459
|
-
* @memberof CourierPriceEntity
|
|
1460
|
-
*/
|
|
1461
|
-
'perKg'?: number;
|
|
1462
|
-
/**
|
|
1463
|
-
* maxKg
|
|
1464
|
-
* @type {number}
|
|
1465
|
-
* @memberof CourierPriceEntity
|
|
1466
|
-
*/
|
|
1467
|
-
'maxKg'?: number;
|
|
1468
|
-
}
|
|
1469
1118
|
/**
|
|
1470
1119
|
* Credit Account
|
|
1471
1120
|
* @export
|
|
@@ -1697,116 +1346,6 @@ export interface CustomerInformationModel {
|
|
|
1697
1346
|
*/
|
|
1698
1347
|
'contactLastName'?: string;
|
|
1699
1348
|
}
|
|
1700
|
-
/**
|
|
1701
|
-
* Order Item Request
|
|
1702
|
-
* @export
|
|
1703
|
-
* @interface CustomerItemRequestDTO
|
|
1704
|
-
*/
|
|
1705
|
-
export interface CustomerItemRequestDTO {
|
|
1706
|
-
/**
|
|
1707
|
-
* SKU
|
|
1708
|
-
* @type {string}
|
|
1709
|
-
* @memberof CustomerItemRequestDTO
|
|
1710
|
-
*/
|
|
1711
|
-
'sku'?: string;
|
|
1712
|
-
/**
|
|
1713
|
-
* Quantity
|
|
1714
|
-
* @type {number}
|
|
1715
|
-
* @memberof CustomerItemRequestDTO
|
|
1716
|
-
*/
|
|
1717
|
-
'quantity'?: number;
|
|
1718
|
-
/**
|
|
1719
|
-
* ID
|
|
1720
|
-
* @type {number}
|
|
1721
|
-
* @memberof CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
'id'?: number | null;
|
|
1724
|
-
/**
|
|
1725
|
-
* 3CX Licence Key
|
|
1726
|
-
* @type {string}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'licenceKey'?: string | null;
|
|
1730
|
-
/**
|
|
1731
|
-
* 3CX Hosting
|
|
1732
|
-
* @type {boolean}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'hosting'?: boolean | null;
|
|
1736
|
-
/**
|
|
1737
|
-
* Date Time
|
|
1738
|
-
* @type {string}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'processDate'?: string;
|
|
1742
|
-
/**
|
|
1743
|
-
* 3CX Sales Code
|
|
1744
|
-
* @type {string}
|
|
1745
|
-
* @memberof CustomerItemRequestDTO
|
|
1746
|
-
*/
|
|
1747
|
-
'tcxSalesCode'?: string | null;
|
|
1748
|
-
/**
|
|
1749
|
-
* SBCS
|
|
1750
|
-
* @type {Array<TcxSbcDTO>}
|
|
1751
|
-
* @memberof CustomerItemRequestDTO
|
|
1752
|
-
*/
|
|
1753
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1754
|
-
/**
|
|
1755
|
-
* Read Only (Cannot be edited)
|
|
1756
|
-
* @type {boolean}
|
|
1757
|
-
* @memberof CustomerItemRequestDTO
|
|
1758
|
-
*/
|
|
1759
|
-
'readOnly'?: boolean;
|
|
1760
|
-
}
|
|
1761
|
-
/**
|
|
1762
|
-
* Order Request
|
|
1763
|
-
* @export
|
|
1764
|
-
* @interface CustomerOrderRequestDTO
|
|
1765
|
-
*/
|
|
1766
|
-
export interface CustomerOrderRequestDTO {
|
|
1767
|
-
/**
|
|
1768
|
-
* Order Reference
|
|
1769
|
-
* @type {string}
|
|
1770
|
-
* @memberof CustomerOrderRequestDTO
|
|
1771
|
-
*/
|
|
1772
|
-
'orderReference'?: string | null;
|
|
1773
|
-
/**
|
|
1774
|
-
* Items
|
|
1775
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1776
|
-
* @memberof CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1779
|
-
/**
|
|
1780
|
-
*
|
|
1781
|
-
* @type {ShippingServiceDTO}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1785
|
-
/**
|
|
1786
|
-
* Provisioning URL
|
|
1787
|
-
* @type {string}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'provisioningUrl'?: string | null;
|
|
1791
|
-
/**
|
|
1792
|
-
*
|
|
1793
|
-
* @type {AddressModel}
|
|
1794
|
-
* @memberof CustomerOrderRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'shippingAddress'?: AddressModel;
|
|
1797
|
-
/**
|
|
1798
|
-
* Part Ship Order
|
|
1799
|
-
* @type {boolean}
|
|
1800
|
-
* @memberof CustomerOrderRequestDTO
|
|
1801
|
-
*/
|
|
1802
|
-
'partShip'?: boolean;
|
|
1803
|
-
/**
|
|
1804
|
-
* Quote
|
|
1805
|
-
* @type {boolean}
|
|
1806
|
-
* @memberof CustomerOrderRequestDTO
|
|
1807
|
-
*/
|
|
1808
|
-
'quote'?: boolean;
|
|
1809
|
-
}
|
|
1810
1349
|
/**
|
|
1811
1350
|
* Customer Price List
|
|
1812
1351
|
* @export
|
|
@@ -1907,134 +1446,6 @@ export interface DdiRangesRequestModel {
|
|
|
1907
1446
|
*/
|
|
1908
1447
|
'ranges'?: Array<DdiRangeRequestModel>;
|
|
1909
1448
|
}
|
|
1910
|
-
/**
|
|
1911
|
-
* Detailed Order Item Request
|
|
1912
|
-
* @export
|
|
1913
|
-
* @interface DetailedItemRequestDTO
|
|
1914
|
-
*/
|
|
1915
|
-
export interface DetailedItemRequestDTO {
|
|
1916
|
-
/**
|
|
1917
|
-
* SKU
|
|
1918
|
-
* @type {string}
|
|
1919
|
-
* @memberof DetailedItemRequestDTO
|
|
1920
|
-
*/
|
|
1921
|
-
'sku'?: string;
|
|
1922
|
-
/**
|
|
1923
|
-
* Quantity
|
|
1924
|
-
* @type {number}
|
|
1925
|
-
* @memberof DetailedItemRequestDTO
|
|
1926
|
-
*/
|
|
1927
|
-
'quantity'?: number;
|
|
1928
|
-
/**
|
|
1929
|
-
* ID
|
|
1930
|
-
* @type {number}
|
|
1931
|
-
* @memberof DetailedItemRequestDTO
|
|
1932
|
-
*/
|
|
1933
|
-
'id'?: number | null;
|
|
1934
|
-
/**
|
|
1935
|
-
* 3CX Licence Key
|
|
1936
|
-
* @type {string}
|
|
1937
|
-
* @memberof DetailedItemRequestDTO
|
|
1938
|
-
*/
|
|
1939
|
-
'licenceKey'?: string | null;
|
|
1940
|
-
/**
|
|
1941
|
-
* 3CX Hosting
|
|
1942
|
-
* @type {boolean}
|
|
1943
|
-
* @memberof DetailedItemRequestDTO
|
|
1944
|
-
*/
|
|
1945
|
-
'hosting'?: boolean | null;
|
|
1946
|
-
/**
|
|
1947
|
-
* Date Time
|
|
1948
|
-
* @type {string}
|
|
1949
|
-
* @memberof DetailedItemRequestDTO
|
|
1950
|
-
*/
|
|
1951
|
-
'processDate'?: string;
|
|
1952
|
-
/**
|
|
1953
|
-
* 3CX Sales Code
|
|
1954
|
-
* @type {string}
|
|
1955
|
-
* @memberof DetailedItemRequestDTO
|
|
1956
|
-
*/
|
|
1957
|
-
'tcxSalesCode'?: string | null;
|
|
1958
|
-
/**
|
|
1959
|
-
* SBCS
|
|
1960
|
-
* @type {Array<TcxSbcDTO>}
|
|
1961
|
-
* @memberof DetailedItemRequestDTO
|
|
1962
|
-
*/
|
|
1963
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1964
|
-
/**
|
|
1965
|
-
* Read Only (Cannot be edited)
|
|
1966
|
-
* @type {boolean}
|
|
1967
|
-
* @memberof DetailedItemRequestDTO
|
|
1968
|
-
*/
|
|
1969
|
-
'readOnly'?: boolean;
|
|
1970
|
-
/**
|
|
1971
|
-
* Title
|
|
1972
|
-
* @type {string}
|
|
1973
|
-
* @memberof DetailedItemRequestDTO
|
|
1974
|
-
*/
|
|
1975
|
-
'title'?: string | null;
|
|
1976
|
-
/**
|
|
1977
|
-
* Price (£)
|
|
1978
|
-
* @type {number}
|
|
1979
|
-
* @memberof DetailedItemRequestDTO
|
|
1980
|
-
*/
|
|
1981
|
-
'itemPrice'?: number | null;
|
|
1982
|
-
/**
|
|
1983
|
-
* Additional Discount
|
|
1984
|
-
* @type {number}
|
|
1985
|
-
* @memberof DetailedItemRequestDTO
|
|
1986
|
-
*/
|
|
1987
|
-
'additionalDiscount'?: number | null;
|
|
1988
|
-
}
|
|
1989
|
-
/**
|
|
1990
|
-
* Detailed Order Request
|
|
1991
|
-
* @export
|
|
1992
|
-
* @interface DetailedOrderRequestDTO
|
|
1993
|
-
*/
|
|
1994
|
-
export interface DetailedOrderRequestDTO {
|
|
1995
|
-
/**
|
|
1996
|
-
* Order Reference
|
|
1997
|
-
* @type {string}
|
|
1998
|
-
* @memberof DetailedOrderRequestDTO
|
|
1999
|
-
*/
|
|
2000
|
-
'orderReference'?: string | null;
|
|
2001
|
-
/**
|
|
2002
|
-
* Items
|
|
2003
|
-
* @type {Array<DetailedItemRequestDTO>}
|
|
2004
|
-
* @memberof DetailedOrderRequestDTO
|
|
2005
|
-
*/
|
|
2006
|
-
'items'?: Array<DetailedItemRequestDTO>;
|
|
2007
|
-
/**
|
|
2008
|
-
*
|
|
2009
|
-
* @type {ShippingServiceDTO}
|
|
2010
|
-
* @memberof DetailedOrderRequestDTO
|
|
2011
|
-
*/
|
|
2012
|
-
'shippingService'?: ShippingServiceDTO;
|
|
2013
|
-
/**
|
|
2014
|
-
* Provisioning URL
|
|
2015
|
-
* @type {string}
|
|
2016
|
-
* @memberof DetailedOrderRequestDTO
|
|
2017
|
-
*/
|
|
2018
|
-
'provisioningUrl'?: string | null;
|
|
2019
|
-
/**
|
|
2020
|
-
*
|
|
2021
|
-
* @type {AddressModel}
|
|
2022
|
-
* @memberof DetailedOrderRequestDTO
|
|
2023
|
-
*/
|
|
2024
|
-
'shippingAddress'?: AddressModel;
|
|
2025
|
-
/**
|
|
2026
|
-
* Part Ship Order
|
|
2027
|
-
* @type {boolean}
|
|
2028
|
-
* @memberof DetailedOrderRequestDTO
|
|
2029
|
-
*/
|
|
2030
|
-
'partShip'?: boolean;
|
|
2031
|
-
/**
|
|
2032
|
-
* Quote
|
|
2033
|
-
* @type {boolean}
|
|
2034
|
-
* @memberof DetailedOrderRequestDTO
|
|
2035
|
-
*/
|
|
2036
|
-
'quote'?: boolean;
|
|
2037
|
-
}
|
|
2038
1449
|
/**
|
|
2039
1450
|
* Divert Request
|
|
2040
1451
|
* @export
|
|
@@ -2441,6 +1852,19 @@ export interface GenericFileModel {
|
|
|
2441
1852
|
*/
|
|
2442
1853
|
'type'?: string;
|
|
2443
1854
|
}
|
|
1855
|
+
/**
|
|
1856
|
+
*
|
|
1857
|
+
* @export
|
|
1858
|
+
* @interface GetGetPasswordHash200Response
|
|
1859
|
+
*/
|
|
1860
|
+
export interface GetGetPasswordHash200Response {
|
|
1861
|
+
/**
|
|
1862
|
+
*
|
|
1863
|
+
* @type {string}
|
|
1864
|
+
* @memberof GetGetPasswordHash200Response
|
|
1865
|
+
*/
|
|
1866
|
+
'hash'?: string;
|
|
1867
|
+
}
|
|
2444
1868
|
/**
|
|
2445
1869
|
*
|
|
2446
1870
|
* @export
|
|
@@ -3035,30 +2459,18 @@ export interface InstanceUserCredentialsEntity {
|
|
|
3035
2459
|
* @interface ItemDTO
|
|
3036
2460
|
*/
|
|
3037
2461
|
export interface ItemDTO {
|
|
3038
|
-
/**
|
|
3039
|
-
* SKU
|
|
3040
|
-
* @type {string}
|
|
3041
|
-
* @memberof ItemDTO
|
|
3042
|
-
*/
|
|
3043
|
-
'sku'?: string;
|
|
3044
|
-
/**
|
|
3045
|
-
* Quantity
|
|
3046
|
-
* @type {number}
|
|
3047
|
-
* @memberof ItemDTO
|
|
3048
|
-
*/
|
|
3049
|
-
'quantity'?: number;
|
|
3050
2462
|
/**
|
|
3051
2463
|
* ID
|
|
3052
2464
|
* @type {number}
|
|
3053
2465
|
* @memberof ItemDTO
|
|
3054
2466
|
*/
|
|
3055
|
-
'id'?: number
|
|
2467
|
+
'id'?: number;
|
|
3056
2468
|
/**
|
|
3057
2469
|
* Order ID
|
|
3058
2470
|
* @type {number}
|
|
3059
2471
|
* @memberof ItemDTO
|
|
3060
2472
|
*/
|
|
3061
|
-
'orderId'?: number
|
|
2473
|
+
'orderId'?: number;
|
|
3062
2474
|
/**
|
|
3063
2475
|
* Title
|
|
3064
2476
|
* @type {string}
|
|
@@ -3066,121 +2478,54 @@ export interface ItemDTO {
|
|
|
3066
2478
|
*/
|
|
3067
2479
|
'title'?: string;
|
|
3068
2480
|
/**
|
|
3069
|
-
*
|
|
3070
|
-
* @type {number}
|
|
3071
|
-
* @memberof ItemDTO
|
|
3072
|
-
*/
|
|
3073
|
-
'price'?: number;
|
|
3074
|
-
/**
|
|
3075
|
-
* 3CX Licence Key
|
|
3076
|
-
* @type {string}
|
|
3077
|
-
* @memberof ItemDTO
|
|
3078
|
-
*/
|
|
3079
|
-
'licenceKey'?: string | null;
|
|
3080
|
-
/**
|
|
3081
|
-
* Date Time
|
|
3082
|
-
* @type {string}
|
|
3083
|
-
* @memberof ItemDTO
|
|
3084
|
-
*/
|
|
3085
|
-
'licenceExpiry'?: string;
|
|
3086
|
-
/**
|
|
3087
|
-
* Date Time
|
|
3088
|
-
* @type {string}
|
|
3089
|
-
* @memberof ItemDTO
|
|
3090
|
-
*/
|
|
3091
|
-
'processDate'?: string;
|
|
3092
|
-
/**
|
|
3093
|
-
* 3CX Hosting
|
|
3094
|
-
* @type {boolean}
|
|
3095
|
-
* @memberof ItemDTO
|
|
3096
|
-
*/
|
|
3097
|
-
'hosting'?: boolean | null;
|
|
3098
|
-
/**
|
|
3099
|
-
* Promo Item
|
|
3100
|
-
* @type {boolean}
|
|
3101
|
-
* @memberof ItemDTO
|
|
3102
|
-
*/
|
|
3103
|
-
'promoItem'?: boolean;
|
|
3104
|
-
/**
|
|
3105
|
-
* Refunded
|
|
3106
|
-
* @type {number}
|
|
3107
|
-
* @memberof ItemDTO
|
|
3108
|
-
*/
|
|
3109
|
-
'refunded'?: number | null;
|
|
3110
|
-
/**
|
|
3111
|
-
* SBCs
|
|
3112
|
-
* @type {Array<TcxSbcDTO>}
|
|
3113
|
-
* @memberof ItemDTO
|
|
3114
|
-
*/
|
|
3115
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3116
|
-
/**
|
|
3117
|
-
* Readonly
|
|
3118
|
-
* @type {boolean}
|
|
3119
|
-
* @memberof ItemDTO
|
|
3120
|
-
*/
|
|
3121
|
-
'readonly'?: boolean;
|
|
3122
|
-
/**
|
|
3123
|
-
* 3CX Sales Code
|
|
2481
|
+
* SKU
|
|
3124
2482
|
* @type {string}
|
|
3125
2483
|
* @memberof ItemDTO
|
|
3126
2484
|
*/
|
|
3127
|
-
'
|
|
3128
|
-
}
|
|
3129
|
-
/**
|
|
3130
|
-
* ItemDiscountsEntity
|
|
3131
|
-
* @export
|
|
3132
|
-
* @interface ItemDiscountEntity
|
|
3133
|
-
*/
|
|
3134
|
-
export interface ItemDiscountEntity {
|
|
2485
|
+
'sku'?: string;
|
|
3135
2486
|
/**
|
|
3136
|
-
*
|
|
2487
|
+
* Quantity
|
|
3137
2488
|
* @type {number}
|
|
3138
|
-
* @memberof
|
|
2489
|
+
* @memberof ItemDTO
|
|
3139
2490
|
*/
|
|
3140
|
-
'
|
|
2491
|
+
'quantity'?: number;
|
|
3141
2492
|
/**
|
|
3142
|
-
*
|
|
2493
|
+
* Price
|
|
3143
2494
|
* @type {number}
|
|
3144
|
-
* @memberof
|
|
2495
|
+
* @memberof ItemDTO
|
|
3145
2496
|
*/
|
|
3146
|
-
'
|
|
2497
|
+
'price'?: number;
|
|
3147
2498
|
/**
|
|
3148
|
-
*
|
|
2499
|
+
* 3CX Licence Key
|
|
3149
2500
|
* @type {string}
|
|
3150
|
-
* @memberof
|
|
2501
|
+
* @memberof ItemDTO
|
|
3151
2502
|
*/
|
|
3152
|
-
'
|
|
2503
|
+
'licenceKey'?: string | null;
|
|
3153
2504
|
/**
|
|
3154
|
-
*
|
|
3155
|
-
* @type {
|
|
3156
|
-
* @memberof
|
|
2505
|
+
* Date Time
|
|
2506
|
+
* @type {string}
|
|
2507
|
+
* @memberof ItemDTO
|
|
3157
2508
|
*/
|
|
3158
|
-
'
|
|
2509
|
+
'licenceExpiry'?: string;
|
|
3159
2510
|
/**
|
|
3160
|
-
*
|
|
2511
|
+
* Date Time
|
|
3161
2512
|
* @type {string}
|
|
3162
|
-
* @memberof
|
|
2513
|
+
* @memberof ItemDTO
|
|
3163
2514
|
*/
|
|
3164
|
-
'
|
|
2515
|
+
'processDate'?: string;
|
|
3165
2516
|
/**
|
|
3166
|
-
*
|
|
3167
|
-
* @type {
|
|
3168
|
-
* @memberof
|
|
2517
|
+
* Promo Item
|
|
2518
|
+
* @type {boolean}
|
|
2519
|
+
* @memberof ItemDTO
|
|
3169
2520
|
*/
|
|
3170
|
-
'
|
|
2521
|
+
'promoItem'?: boolean;
|
|
3171
2522
|
/**
|
|
3172
|
-
*
|
|
2523
|
+
* Refunded
|
|
3173
2524
|
* @type {number}
|
|
3174
|
-
* @memberof
|
|
2525
|
+
* @memberof ItemDTO
|
|
3175
2526
|
*/
|
|
3176
|
-
'
|
|
2527
|
+
'refunded'?: number;
|
|
3177
2528
|
}
|
|
3178
|
-
export declare const ItemDiscountEntityTypeEnum: {
|
|
3179
|
-
readonly TcxPhones: "TCX_PHONES";
|
|
3180
|
-
readonly PhoneBulk: "PHONE_BULK";
|
|
3181
|
-
readonly Additional: "ADDITIONAL";
|
|
3182
|
-
};
|
|
3183
|
-
export type ItemDiscountEntityTypeEnum = typeof ItemDiscountEntityTypeEnum[keyof typeof ItemDiscountEntityTypeEnum];
|
|
3184
2529
|
/**
|
|
3185
2530
|
* ItemsEntity
|
|
3186
2531
|
* @export
|
|
@@ -3288,7 +2633,7 @@ export interface ItemEntity {
|
|
|
3288
2633
|
* @type {string}
|
|
3289
2634
|
* @memberof ItemEntity
|
|
3290
2635
|
*/
|
|
3291
|
-
'
|
|
2636
|
+
'licencekey'?: string;
|
|
3292
2637
|
/**
|
|
3293
2638
|
* addHosting
|
|
3294
2639
|
* @type {number}
|
|
@@ -3313,31 +2658,6 @@ export interface ItemEntity {
|
|
|
3313
2658
|
* @memberof ItemEntity
|
|
3314
2659
|
*/
|
|
3315
2660
|
'promoItem'?: number;
|
|
3316
|
-
/**
|
|
3317
|
-
* 3CX Sales Code
|
|
3318
|
-
* @type {string}
|
|
3319
|
-
* @memberof ItemEntity
|
|
3320
|
-
*/
|
|
3321
|
-
'tcxSalesCode'?: string | null;
|
|
3322
|
-
}
|
|
3323
|
-
/**
|
|
3324
|
-
* LinkedOrdersEntity
|
|
3325
|
-
* @export
|
|
3326
|
-
* @interface LinkedOrderEntity
|
|
3327
|
-
*/
|
|
3328
|
-
export interface LinkedOrderEntity {
|
|
3329
|
-
/**
|
|
3330
|
-
* orderId
|
|
3331
|
-
* @type {number}
|
|
3332
|
-
* @memberof LinkedOrderEntity
|
|
3333
|
-
*/
|
|
3334
|
-
'orderId'?: number;
|
|
3335
|
-
/**
|
|
3336
|
-
* linkedOrderId
|
|
3337
|
-
* @type {number}
|
|
3338
|
-
* @memberof LinkedOrderEntity
|
|
3339
|
-
*/
|
|
3340
|
-
'linkedOrderId'?: number;
|
|
3341
2661
|
}
|
|
3342
2662
|
/**
|
|
3343
2663
|
* MFA Required
|
|
@@ -3991,19 +3311,13 @@ export interface OrderSummaryDTO {
|
|
|
3991
3311
|
* @type {string}
|
|
3992
3312
|
* @memberof OrderSummaryDTO
|
|
3993
3313
|
*/
|
|
3994
|
-
'reference'?: string
|
|
3314
|
+
'reference'?: string;
|
|
3995
3315
|
/**
|
|
3996
3316
|
* Invoice Number
|
|
3997
3317
|
* @type {string}
|
|
3998
3318
|
* @memberof OrderSummaryDTO
|
|
3999
3319
|
*/
|
|
4000
3320
|
'invoiceNumber'?: string;
|
|
4001
|
-
/**
|
|
4002
|
-
* Invoice ID
|
|
4003
|
-
* @type {string}
|
|
4004
|
-
* @memberof OrderSummaryDTO
|
|
4005
|
-
*/
|
|
4006
|
-
'invoiceId'?: string | null;
|
|
4007
3321
|
/**
|
|
4008
3322
|
* Date Time
|
|
4009
3323
|
* @type {string}
|
|
@@ -4058,24 +3372,6 @@ export interface OrderSummaryDTO {
|
|
|
4058
3372
|
* @memberof OrderSummaryDTO
|
|
4059
3373
|
*/
|
|
4060
3374
|
'fulfillable'?: boolean | null;
|
|
4061
|
-
/**
|
|
4062
|
-
* Provisioning URL
|
|
4063
|
-
* @type {string}
|
|
4064
|
-
* @memberof OrderSummaryDTO
|
|
4065
|
-
*/
|
|
4066
|
-
'provisioningUrl'?: string | null;
|
|
4067
|
-
/**
|
|
4068
|
-
*
|
|
4069
|
-
* @type {ShippingServiceDTO}
|
|
4070
|
-
* @memberof OrderSummaryDTO
|
|
4071
|
-
*/
|
|
4072
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
4073
|
-
/**
|
|
4074
|
-
* Readonly
|
|
4075
|
-
* @type {boolean}
|
|
4076
|
-
* @memberof OrderSummaryDTO
|
|
4077
|
-
*/
|
|
4078
|
-
'readonly'?: boolean;
|
|
4079
3375
|
}
|
|
4080
3376
|
/**
|
|
4081
3377
|
* Order Totals
|
|
@@ -4125,12 +3421,6 @@ export interface OrderTotalModel {
|
|
|
4125
3421
|
* @memberof OrderTotalModel
|
|
4126
3422
|
*/
|
|
4127
3423
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4128
|
-
/**
|
|
4129
|
-
* Delivery
|
|
4130
|
-
* @type {number}
|
|
4131
|
-
* @memberof OrderTotalModel
|
|
4132
|
-
*/
|
|
4133
|
-
'delivery'?: number | null;
|
|
4134
3424
|
}
|
|
4135
3425
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
4136
3426
|
readonly Eur: "EUR";
|
|
@@ -4509,31 +3799,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4509
3799
|
*/
|
|
4510
3800
|
'scopes'?: Array<string>;
|
|
4511
3801
|
}
|
|
4512
|
-
/**
|
|
4513
|
-
*
|
|
4514
|
-
* @export
|
|
4515
|
-
* @interface PostGetProductForCustomerRequest
|
|
4516
|
-
*/
|
|
4517
|
-
export interface PostGetProductForCustomerRequest {
|
|
4518
|
-
/**
|
|
4519
|
-
* Quantity
|
|
4520
|
-
* @type {number}
|
|
4521
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4522
|
-
*/
|
|
4523
|
-
'quantity'?: number | null;
|
|
4524
|
-
/**
|
|
4525
|
-
* 3CX Licence Key
|
|
4526
|
-
* @type {string}
|
|
4527
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4528
|
-
*/
|
|
4529
|
-
'licenceKey'?: string | null;
|
|
4530
|
-
/**
|
|
4531
|
-
* 3CX Hosting
|
|
4532
|
-
* @type {boolean}
|
|
4533
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4534
|
-
*/
|
|
4535
|
-
'hosting'?: boolean | null;
|
|
4536
|
-
}
|
|
4537
3802
|
/**
|
|
4538
3803
|
* Price & Stock List
|
|
4539
3804
|
* @export
|
|
@@ -4665,10 +3930,10 @@ export interface ProductPriceListItemModel {
|
|
|
4665
3930
|
export interface ProductSearchResultsModel {
|
|
4666
3931
|
/**
|
|
4667
3932
|
* Results
|
|
4668
|
-
* @type {Array<
|
|
3933
|
+
* @type {Array<ProductSummaryModel>}
|
|
4669
3934
|
* @memberof ProductSearchResultsModel
|
|
4670
3935
|
*/
|
|
4671
|
-
'results'?: Array<
|
|
3936
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4672
3937
|
}
|
|
4673
3938
|
/**
|
|
4674
3939
|
* Product Serial Info
|
|
@@ -4704,57 +3969,45 @@ export interface ProductSerialInfoModel {
|
|
|
4704
3969
|
/**
|
|
4705
3970
|
* Product Summary
|
|
4706
3971
|
* @export
|
|
4707
|
-
* @interface
|
|
3972
|
+
* @interface ProductSummaryModel
|
|
4708
3973
|
*/
|
|
4709
|
-
export interface
|
|
3974
|
+
export interface ProductSummaryModel {
|
|
4710
3975
|
/**
|
|
4711
3976
|
* SKU
|
|
4712
3977
|
* @type {string}
|
|
4713
|
-
* @memberof
|
|
3978
|
+
* @memberof ProductSummaryModel
|
|
4714
3979
|
*/
|
|
4715
3980
|
'sku'?: string;
|
|
4716
3981
|
/**
|
|
4717
3982
|
* Title
|
|
4718
3983
|
* @type {string}
|
|
4719
|
-
* @memberof
|
|
3984
|
+
* @memberof ProductSummaryModel
|
|
4720
3985
|
*/
|
|
4721
3986
|
'title'?: string;
|
|
4722
3987
|
/**
|
|
4723
3988
|
* Stock Quantity
|
|
4724
3989
|
* @type {number}
|
|
4725
|
-
* @memberof
|
|
3990
|
+
* @memberof ProductSummaryModel
|
|
4726
3991
|
*/
|
|
4727
3992
|
'quantity'?: number | null;
|
|
4728
3993
|
/**
|
|
4729
3994
|
* Stock Product
|
|
4730
3995
|
* @type {boolean}
|
|
4731
|
-
* @memberof
|
|
3996
|
+
* @memberof ProductSummaryModel
|
|
4732
3997
|
*/
|
|
4733
3998
|
'stockProduct'?: boolean;
|
|
4734
3999
|
/**
|
|
4735
4000
|
* Price
|
|
4736
4001
|
* @type {number}
|
|
4737
|
-
* @memberof
|
|
4002
|
+
* @memberof ProductSummaryModel
|
|
4738
4003
|
*/
|
|
4739
4004
|
'price'?: number | null;
|
|
4740
4005
|
/**
|
|
4741
4006
|
* Carton Size
|
|
4742
4007
|
* @type {number}
|
|
4743
|
-
* @memberof
|
|
4008
|
+
* @memberof ProductSummaryModel
|
|
4744
4009
|
*/
|
|
4745
4010
|
'cartonSize'?: number | null;
|
|
4746
|
-
/**
|
|
4747
|
-
* RRP Price
|
|
4748
|
-
* @type {number}
|
|
4749
|
-
* @memberof ProductSummaryDTO
|
|
4750
|
-
*/
|
|
4751
|
-
'rrp'?: number | null;
|
|
4752
|
-
/**
|
|
4753
|
-
*
|
|
4754
|
-
* @type {TcxLicenceDetailsModel}
|
|
4755
|
-
* @memberof ProductSummaryDTO
|
|
4756
|
-
*/
|
|
4757
|
-
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4758
4011
|
}
|
|
4759
4012
|
/**
|
|
4760
4013
|
* PromoCodesEntity
|
|
@@ -4893,37 +4146,37 @@ export interface PromoItemsEntity {
|
|
|
4893
4146
|
/**
|
|
4894
4147
|
* Provisioning Group
|
|
4895
4148
|
* @export
|
|
4896
|
-
* @interface
|
|
4149
|
+
* @interface ProvisioningEntity
|
|
4897
4150
|
*/
|
|
4898
|
-
export interface
|
|
4151
|
+
export interface ProvisioningEntity {
|
|
4899
4152
|
/**
|
|
4900
4153
|
* Provisioning Group Name
|
|
4901
4154
|
* @type {string}
|
|
4902
|
-
* @memberof
|
|
4155
|
+
* @memberof ProvisioningEntity
|
|
4903
4156
|
*/
|
|
4904
4157
|
'groupName'?: string;
|
|
4905
4158
|
/**
|
|
4906
4159
|
* Provisioning URL (Static Provisioning Server)
|
|
4907
4160
|
* @type {string}
|
|
4908
|
-
* @memberof
|
|
4161
|
+
* @memberof ProvisioningEntity
|
|
4909
4162
|
*/
|
|
4910
4163
|
'provisioningUrl'?: string;
|
|
4911
4164
|
/**
|
|
4912
4165
|
* Additional Authentication Secret
|
|
4913
4166
|
* @type {string}
|
|
4914
|
-
* @memberof
|
|
4167
|
+
* @memberof ProvisioningEntity
|
|
4915
4168
|
*/
|
|
4916
4169
|
'auth'?: string;
|
|
4917
4170
|
/**
|
|
4918
4171
|
* Provisioning Group ID
|
|
4919
4172
|
* @type {number}
|
|
4920
|
-
* @memberof
|
|
4173
|
+
* @memberof ProvisioningEntity
|
|
4921
4174
|
*/
|
|
4922
4175
|
'id'?: number;
|
|
4923
4176
|
/**
|
|
4924
4177
|
* Owner ID
|
|
4925
4178
|
* @type {number}
|
|
4926
|
-
* @memberof
|
|
4179
|
+
* @memberof ProvisioningEntity
|
|
4927
4180
|
*/
|
|
4928
4181
|
'customerId'?: number;
|
|
4929
4182
|
}
|
|
@@ -5277,7 +4530,7 @@ export interface ShipmentEntity {
|
|
|
5277
4530
|
* @type {string}
|
|
5278
4531
|
* @memberof ShipmentEntity
|
|
5279
4532
|
*/
|
|
5280
|
-
'
|
|
4533
|
+
'date'?: string;
|
|
5281
4534
|
/**
|
|
5282
4535
|
* requestDate
|
|
5283
4536
|
* @type {string}
|
|
@@ -5328,149 +4581,6 @@ export interface ShipmentItemEntity {
|
|
|
5328
4581
|
*/
|
|
5329
4582
|
'itemId'?: string;
|
|
5330
4583
|
}
|
|
5331
|
-
/**
|
|
5332
|
-
*
|
|
5333
|
-
* @export
|
|
5334
|
-
* @interface ShippingConsignmentModel
|
|
5335
|
-
*/
|
|
5336
|
-
export interface ShippingConsignmentModel {
|
|
5337
|
-
/**
|
|
5338
|
-
*
|
|
5339
|
-
* @type {ShippingServiceModel}
|
|
5340
|
-
* @memberof ShippingConsignmentModel
|
|
5341
|
-
*/
|
|
5342
|
-
'service'?: ShippingServiceModel;
|
|
5343
|
-
/**
|
|
5344
|
-
* ID/Number
|
|
5345
|
-
* @type {string}
|
|
5346
|
-
* @memberof ShippingConsignmentModel
|
|
5347
|
-
*/
|
|
5348
|
-
'id'?: string;
|
|
5349
|
-
/**
|
|
5350
|
-
* Tracking Number
|
|
5351
|
-
* @type {string}
|
|
5352
|
-
* @memberof ShippingConsignmentModel
|
|
5353
|
-
*/
|
|
5354
|
-
'trackingNumber'?: string;
|
|
5355
|
-
/**
|
|
5356
|
-
* Parcels
|
|
5357
|
-
* @type {Array<string>}
|
|
5358
|
-
* @memberof ShippingConsignmentModel
|
|
5359
|
-
*/
|
|
5360
|
-
'parcelIds'?: Array<string>;
|
|
5361
|
-
}
|
|
5362
|
-
/**
|
|
5363
|
-
* Shipping Information
|
|
5364
|
-
* @export
|
|
5365
|
-
* @interface ShippingInformationDTO
|
|
5366
|
-
*/
|
|
5367
|
-
export interface ShippingInformationDTO {
|
|
5368
|
-
/**
|
|
5369
|
-
* Items
|
|
5370
|
-
* @type {Array<BasicItemDTO>}
|
|
5371
|
-
* @memberof ShippingInformationDTO
|
|
5372
|
-
*/
|
|
5373
|
-
'items'?: Array<BasicItemDTO>;
|
|
5374
|
-
/**
|
|
5375
|
-
* Destination Post Code
|
|
5376
|
-
* @type {string}
|
|
5377
|
-
* @memberof ShippingInformationDTO
|
|
5378
|
-
*/
|
|
5379
|
-
'postalCode'?: string;
|
|
5380
|
-
/**
|
|
5381
|
-
* Destination ISO
|
|
5382
|
-
* @type {string}
|
|
5383
|
-
* @memberof ShippingInformationDTO
|
|
5384
|
-
*/
|
|
5385
|
-
'iso'?: string;
|
|
5386
|
-
}
|
|
5387
|
-
/**
|
|
5388
|
-
* Shipping Service
|
|
5389
|
-
* @export
|
|
5390
|
-
* @interface ShippingServiceDTO
|
|
5391
|
-
*/
|
|
5392
|
-
export interface ShippingServiceDTO {
|
|
5393
|
-
/**
|
|
5394
|
-
* Courier
|
|
5395
|
-
* @type {string}
|
|
5396
|
-
* @memberof ShippingServiceDTO
|
|
5397
|
-
*/
|
|
5398
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5399
|
-
/**
|
|
5400
|
-
* Service Name
|
|
5401
|
-
* @type {string}
|
|
5402
|
-
* @memberof ShippingServiceDTO
|
|
5403
|
-
*/
|
|
5404
|
-
'serviceName'?: string;
|
|
5405
|
-
}
|
|
5406
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5407
|
-
readonly Dpd: "DPD";
|
|
5408
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5409
|
-
readonly Pops: "POPS";
|
|
5410
|
-
};
|
|
5411
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5412
|
-
/**
|
|
5413
|
-
* Shipping Service
|
|
5414
|
-
* @export
|
|
5415
|
-
* @interface ShippingServiceModel
|
|
5416
|
-
*/
|
|
5417
|
-
export interface ShippingServiceModel {
|
|
5418
|
-
/**
|
|
5419
|
-
* Courier
|
|
5420
|
-
* @type {string}
|
|
5421
|
-
* @memberof ShippingServiceModel
|
|
5422
|
-
*/
|
|
5423
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5424
|
-
/**
|
|
5425
|
-
* Code
|
|
5426
|
-
* @type {string}
|
|
5427
|
-
* @memberof ShippingServiceModel
|
|
5428
|
-
*/
|
|
5429
|
-
'code'?: string;
|
|
5430
|
-
/**
|
|
5431
|
-
* Name
|
|
5432
|
-
* @type {string}
|
|
5433
|
-
* @memberof ShippingServiceModel
|
|
5434
|
-
*/
|
|
5435
|
-
'name'?: string;
|
|
5436
|
-
/**
|
|
5437
|
-
* Description
|
|
5438
|
-
* @type {string}
|
|
5439
|
-
* @memberof ShippingServiceModel
|
|
5440
|
-
*/
|
|
5441
|
-
'description'?: string;
|
|
5442
|
-
/**
|
|
5443
|
-
* Label
|
|
5444
|
-
* @type {string}
|
|
5445
|
-
* @memberof ShippingServiceModel
|
|
5446
|
-
*/
|
|
5447
|
-
'label'?: string | null;
|
|
5448
|
-
/**
|
|
5449
|
-
* Price
|
|
5450
|
-
* @type {number}
|
|
5451
|
-
* @memberof ShippingServiceModel
|
|
5452
|
-
*/
|
|
5453
|
-
'price'?: number | null;
|
|
5454
|
-
}
|
|
5455
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5456
|
-
readonly Dpd: "DPD";
|
|
5457
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5458
|
-
readonly Pops: "POPS";
|
|
5459
|
-
};
|
|
5460
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5461
|
-
/**
|
|
5462
|
-
*
|
|
5463
|
-
* @export
|
|
5464
|
-
* @interface ShippingServicesModel
|
|
5465
|
-
*/
|
|
5466
|
-
export interface ShippingServicesModel {
|
|
5467
|
-
/**
|
|
5468
|
-
* Services
|
|
5469
|
-
* @type {Array<ShippingServiceModel>}
|
|
5470
|
-
* @memberof ShippingServicesModel
|
|
5471
|
-
*/
|
|
5472
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5473
|
-
}
|
|
5474
4584
|
/**
|
|
5475
4585
|
* Change Response
|
|
5476
4586
|
* @export
|
|
@@ -8290,49 +7400,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8290
7400
|
*/
|
|
8291
7401
|
'secretAccessKey'?: string;
|
|
8292
7402
|
}
|
|
8293
|
-
/**
|
|
8294
|
-
* SBC Data
|
|
8295
|
-
* @export
|
|
8296
|
-
* @interface TcxSbcDTO
|
|
8297
|
-
*/
|
|
8298
|
-
export interface TcxSbcDTO {
|
|
8299
|
-
/**
|
|
8300
|
-
* LAN IP Address
|
|
8301
|
-
* @type {string}
|
|
8302
|
-
* @memberof TcxSbcDTO
|
|
8303
|
-
*/
|
|
8304
|
-
'ipAddress'?: string;
|
|
8305
|
-
/**
|
|
8306
|
-
* LAN Default Gateway
|
|
8307
|
-
* @type {string}
|
|
8308
|
-
* @memberof TcxSbcDTO
|
|
8309
|
-
*/
|
|
8310
|
-
'defaultGateway'?: string;
|
|
8311
|
-
/**
|
|
8312
|
-
* LAN Subnet Mask
|
|
8313
|
-
* @type {string}
|
|
8314
|
-
* @memberof TcxSbcDTO
|
|
8315
|
-
*/
|
|
8316
|
-
'netmask'?: string;
|
|
8317
|
-
/**
|
|
8318
|
-
* DNS
|
|
8319
|
-
* @type {string}
|
|
8320
|
-
* @memberof TcxSbcDTO
|
|
8321
|
-
*/
|
|
8322
|
-
'dns'?: string;
|
|
8323
|
-
/**
|
|
8324
|
-
* 3CX URL
|
|
8325
|
-
* @type {string}
|
|
8326
|
-
* @memberof TcxSbcDTO
|
|
8327
|
-
*/
|
|
8328
|
-
'tcxUrl'?: string;
|
|
8329
|
-
/**
|
|
8330
|
-
* 3CX SBC Key
|
|
8331
|
-
* @type {string}
|
|
8332
|
-
* @memberof TcxSbcDTO
|
|
8333
|
-
*/
|
|
8334
|
-
'tcxKey'?: string;
|
|
8335
|
-
}
|
|
8336
7403
|
/**
|
|
8337
7404
|
* 3CX Wizard SBC
|
|
8338
7405
|
* @export
|
|
@@ -8437,7 +7504,7 @@ export interface TcxSbcEntity {
|
|
|
8437
7504
|
'technicalContact'?: string;
|
|
8438
7505
|
}
|
|
8439
7506
|
/**
|
|
8440
|
-
* 3CX
|
|
7507
|
+
* 3CX SBC Model
|
|
8441
7508
|
* @export
|
|
8442
7509
|
* @interface TcxSbcModel
|
|
8443
7510
|
*/
|
|
@@ -9515,14 +8582,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9515
8582
|
* @throws {RequiredError}
|
|
9516
8583
|
*/
|
|
9517
8584
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9518
|
-
/**
|
|
9519
|
-
* Get Account Detailed Summary
|
|
9520
|
-
* @summary Get Account Detailed Summary
|
|
9521
|
-
* @param {number} id Customer ID
|
|
9522
|
-
* @param {*} [options] Override http request option.
|
|
9523
|
-
* @throws {RequiredError}
|
|
9524
|
-
*/
|
|
9525
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9526
8585
|
/**
|
|
9527
8586
|
* Get Accounts
|
|
9528
8587
|
* @summary Get Accounts
|
|
@@ -9588,13 +8647,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9588
8647
|
* @throws {RequiredError}
|
|
9589
8648
|
*/
|
|
9590
8649
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9591
|
-
/**
|
|
9592
|
-
* Get Admin Account
|
|
9593
|
-
* @summary Get Admin Account
|
|
9594
|
-
* @param {*} [options] Override http request option.
|
|
9595
|
-
* @throws {RequiredError}
|
|
9596
|
-
*/
|
|
9597
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9598
8650
|
/**
|
|
9599
8651
|
* Create client credentials
|
|
9600
8652
|
* @summary Create client credentials
|
|
@@ -9675,14 +8727,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9675
8727
|
* @throws {RequiredError}
|
|
9676
8728
|
*/
|
|
9677
8729
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9678
|
-
/**
|
|
9679
|
-
* Get Account Detailed Summary
|
|
9680
|
-
* @summary Get Account Detailed Summary
|
|
9681
|
-
* @param {number} id Customer ID
|
|
9682
|
-
* @param {*} [options] Override http request option.
|
|
9683
|
-
* @throws {RequiredError}
|
|
9684
|
-
*/
|
|
9685
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9686
8730
|
/**
|
|
9687
8731
|
* Get Accounts
|
|
9688
8732
|
* @summary Get Accounts
|
|
@@ -9748,13 +8792,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9748
8792
|
* @throws {RequiredError}
|
|
9749
8793
|
*/
|
|
9750
8794
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9751
|
-
/**
|
|
9752
|
-
* Get Admin Account
|
|
9753
|
-
* @summary Get Admin Account
|
|
9754
|
-
* @param {*} [options] Override http request option.
|
|
9755
|
-
* @throws {RequiredError}
|
|
9756
|
-
*/
|
|
9757
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9758
8795
|
/**
|
|
9759
8796
|
* Create client credentials
|
|
9760
8797
|
* @summary Create client credentials
|
|
@@ -9835,14 +8872,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9835
8872
|
* @throws {RequiredError}
|
|
9836
8873
|
*/
|
|
9837
8874
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9838
|
-
/**
|
|
9839
|
-
* Get Account Detailed Summary
|
|
9840
|
-
* @summary Get Account Detailed Summary
|
|
9841
|
-
* @param {number} id Customer ID
|
|
9842
|
-
* @param {*} [options] Override http request option.
|
|
9843
|
-
* @throws {RequiredError}
|
|
9844
|
-
*/
|
|
9845
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9846
8875
|
/**
|
|
9847
8876
|
* Get Accounts
|
|
9848
8877
|
* @summary Get Accounts
|
|
@@ -9908,13 +8937,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9908
8937
|
* @throws {RequiredError}
|
|
9909
8938
|
*/
|
|
9910
8939
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9911
|
-
/**
|
|
9912
|
-
* Get Admin Account
|
|
9913
|
-
* @summary Get Admin Account
|
|
9914
|
-
* @param {*} [options] Override http request option.
|
|
9915
|
-
* @throws {RequiredError}
|
|
9916
|
-
*/
|
|
9917
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9918
8940
|
/**
|
|
9919
8941
|
* Create client credentials
|
|
9920
8942
|
* @summary Create client credentials
|
|
@@ -10001,15 +9023,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
10001
9023
|
* @memberof AccountsApi
|
|
10002
9024
|
*/
|
|
10003
9025
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
10004
|
-
/**
|
|
10005
|
-
* Get Account Detailed Summary
|
|
10006
|
-
* @summary Get Account Detailed Summary
|
|
10007
|
-
* @param {number} id Customer ID
|
|
10008
|
-
* @param {*} [options] Override http request option.
|
|
10009
|
-
* @throws {RequiredError}
|
|
10010
|
-
* @memberof AccountsApi
|
|
10011
|
-
*/
|
|
10012
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
10013
9026
|
/**
|
|
10014
9027
|
* Get Accounts
|
|
10015
9028
|
* @summary Get Accounts
|
|
@@ -10083,14 +9096,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
10083
9096
|
* @memberof AccountsApi
|
|
10084
9097
|
*/
|
|
10085
9098
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
10086
|
-
/**
|
|
10087
|
-
* Get Admin Account
|
|
10088
|
-
* @summary Get Admin Account
|
|
10089
|
-
* @param {*} [options] Override http request option.
|
|
10090
|
-
* @throws {RequiredError}
|
|
10091
|
-
* @memberof AccountsApi
|
|
10092
|
-
*/
|
|
10093
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
10094
9099
|
/**
|
|
10095
9100
|
* Create client credentials
|
|
10096
9101
|
* @summary Create client credentials
|
|
@@ -10204,6 +9209,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10204
9209
|
* @throws {RequiredError}
|
|
10205
9210
|
*/
|
|
10206
9211
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9212
|
+
/**
|
|
9213
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9214
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9215
|
+
* @param {string} password Desired 3CX web access password
|
|
9216
|
+
* @param {*} [options] Override http request option.
|
|
9217
|
+
* @throws {RequiredError}
|
|
9218
|
+
*/
|
|
9219
|
+
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10207
9220
|
/**
|
|
10208
9221
|
* Get Bulk 3CX Licence Details
|
|
10209
9222
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10226,6 +9239,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
10226
9239
|
* @throws {RequiredError}
|
|
10227
9240
|
*/
|
|
10228
9241
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9242
|
+
/**
|
|
9243
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9244
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9245
|
+
* @param {string} password Desired 3CX web access password
|
|
9246
|
+
* @param {*} [options] Override http request option.
|
|
9247
|
+
* @throws {RequiredError}
|
|
9248
|
+
*/
|
|
9249
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
10229
9250
|
/**
|
|
10230
9251
|
* Get Bulk 3CX Licence Details
|
|
10231
9252
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10248,6 +9269,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
10248
9269
|
* @throws {RequiredError}
|
|
10249
9270
|
*/
|
|
10250
9271
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9272
|
+
/**
|
|
9273
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9274
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9275
|
+
* @param {string} password Desired 3CX web access password
|
|
9276
|
+
* @param {*} [options] Override http request option.
|
|
9277
|
+
* @throws {RequiredError}
|
|
9278
|
+
*/
|
|
9279
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
10251
9280
|
/**
|
|
10252
9281
|
* Get Bulk 3CX Licence Details
|
|
10253
9282
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10273,6 +9302,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10273
9302
|
* @memberof Class3CXApi
|
|
10274
9303
|
*/
|
|
10275
9304
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9305
|
+
/**
|
|
9306
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9307
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9308
|
+
* @param {string} password Desired 3CX web access password
|
|
9309
|
+
* @param {*} [options] Override http request option.
|
|
9310
|
+
* @throws {RequiredError}
|
|
9311
|
+
* @memberof Class3CXApi
|
|
9312
|
+
*/
|
|
9313
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
10276
9314
|
/**
|
|
10277
9315
|
* Get Bulk 3CX Licence Details
|
|
10278
9316
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12816,28 +11854,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12816
11854
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12817
11855
|
/**
|
|
12818
11856
|
* Delete Orders
|
|
12819
|
-
* @summary Delete Orders
|
|
12820
|
-
* @param {number} id Order ID
|
|
12821
|
-
* @param {*} [options] Override http request option.
|
|
12822
|
-
* @throws {RequiredError}
|
|
12823
|
-
*/
|
|
12824
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12825
|
-
/**
|
|
12826
|
-
* Get Editable Order (Admin)
|
|
12827
|
-
* @summary Get Editable Order (Admin)
|
|
12828
|
-
* @param {number} id Order ID
|
|
12829
|
-
* @param {*} [options] Override http request option.
|
|
12830
|
-
* @throws {RequiredError}
|
|
12831
|
-
*/
|
|
12832
|
-
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12833
|
-
/**
|
|
12834
|
-
* Get Editable Order
|
|
12835
|
-
* @summary Get Editable Order
|
|
12836
11857
|
* @param {number} id Order ID
|
|
12837
11858
|
* @param {*} [options] Override http request option.
|
|
12838
11859
|
* @throws {RequiredError}
|
|
12839
11860
|
*/
|
|
12840
|
-
|
|
11861
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12841
11862
|
/**
|
|
12842
11863
|
* Get Orders
|
|
12843
11864
|
* @summary Get Orders
|
|
@@ -12852,44 +11873,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12852
11873
|
* @throws {RequiredError}
|
|
12853
11874
|
*/
|
|
12854
11875
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12855
|
-
/**
|
|
12856
|
-
* Create An Order (Admin)
|
|
12857
|
-
* @summary Create An Order (Admin)
|
|
12858
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12859
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12860
|
-
* @param {*} [options] Override http request option.
|
|
12861
|
-
* @throws {RequiredError}
|
|
12862
|
-
*/
|
|
12863
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12864
|
-
/**
|
|
12865
|
-
* Create An Order
|
|
12866
|
-
* @summary Create An Order
|
|
12867
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12868
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12869
|
-
* @param {*} [options] Override http request option.
|
|
12870
|
-
* @throws {RequiredError}
|
|
12871
|
-
*/
|
|
12872
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12873
|
-
/**
|
|
12874
|
-
* Update An Order (Admin)
|
|
12875
|
-
* @summary Update An Order (Admin)
|
|
12876
|
-
* @param {number} id Order ID
|
|
12877
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12878
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12879
|
-
* @param {*} [options] Override http request option.
|
|
12880
|
-
* @throws {RequiredError}
|
|
12881
|
-
*/
|
|
12882
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12883
|
-
/**
|
|
12884
|
-
* Update An Order
|
|
12885
|
-
* @summary Update An Order
|
|
12886
|
-
* @param {number} id Order ID
|
|
12887
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12888
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12889
|
-
* @param {*} [options] Override http request option.
|
|
12890
|
-
* @throws {RequiredError}
|
|
12891
|
-
*/
|
|
12892
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12893
11876
|
};
|
|
12894
11877
|
/**
|
|
12895
11878
|
* OrdersApi - functional programming interface
|
|
@@ -12898,28 +11881,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12898
11881
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12899
11882
|
/**
|
|
12900
11883
|
* Delete Orders
|
|
12901
|
-
* @summary Delete Orders
|
|
12902
|
-
* @param {number} id Order ID
|
|
12903
|
-
* @param {*} [options] Override http request option.
|
|
12904
|
-
* @throws {RequiredError}
|
|
12905
|
-
*/
|
|
12906
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12907
|
-
/**
|
|
12908
|
-
* Get Editable Order (Admin)
|
|
12909
|
-
* @summary Get Editable Order (Admin)
|
|
12910
|
-
* @param {number} id Order ID
|
|
12911
|
-
* @param {*} [options] Override http request option.
|
|
12912
|
-
* @throws {RequiredError}
|
|
12913
|
-
*/
|
|
12914
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12915
|
-
/**
|
|
12916
|
-
* Get Editable Order
|
|
12917
|
-
* @summary Get Editable Order
|
|
12918
11884
|
* @param {number} id Order ID
|
|
12919
11885
|
* @param {*} [options] Override http request option.
|
|
12920
11886
|
* @throws {RequiredError}
|
|
12921
11887
|
*/
|
|
12922
|
-
|
|
11888
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12923
11889
|
/**
|
|
12924
11890
|
* Get Orders
|
|
12925
11891
|
* @summary Get Orders
|
|
@@ -12934,44 +11900,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12934
11900
|
* @throws {RequiredError}
|
|
12935
11901
|
*/
|
|
12936
11902
|
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>>;
|
|
12937
|
-
/**
|
|
12938
|
-
* Create An Order (Admin)
|
|
12939
|
-
* @summary Create An Order (Admin)
|
|
12940
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12941
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12942
|
-
* @param {*} [options] Override http request option.
|
|
12943
|
-
* @throws {RequiredError}
|
|
12944
|
-
*/
|
|
12945
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12946
|
-
/**
|
|
12947
|
-
* Create An Order
|
|
12948
|
-
* @summary Create An Order
|
|
12949
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12950
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12951
|
-
* @param {*} [options] Override http request option.
|
|
12952
|
-
* @throws {RequiredError}
|
|
12953
|
-
*/
|
|
12954
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12955
|
-
/**
|
|
12956
|
-
* Update An Order (Admin)
|
|
12957
|
-
* @summary Update An Order (Admin)
|
|
12958
|
-
* @param {number} id Order ID
|
|
12959
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12960
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12961
|
-
* @param {*} [options] Override http request option.
|
|
12962
|
-
* @throws {RequiredError}
|
|
12963
|
-
*/
|
|
12964
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12965
|
-
/**
|
|
12966
|
-
* Update An Order
|
|
12967
|
-
* @summary Update An Order
|
|
12968
|
-
* @param {number} id Order ID
|
|
12969
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12970
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12971
|
-
* @param {*} [options] Override http request option.
|
|
12972
|
-
* @throws {RequiredError}
|
|
12973
|
-
*/
|
|
12974
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12975
11903
|
};
|
|
12976
11904
|
/**
|
|
12977
11905
|
* OrdersApi - factory interface
|
|
@@ -12980,28 +11908,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12980
11908
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12981
11909
|
/**
|
|
12982
11910
|
* Delete Orders
|
|
12983
|
-
* @summary Delete Orders
|
|
12984
|
-
* @param {number} id Order ID
|
|
12985
|
-
* @param {*} [options] Override http request option.
|
|
12986
|
-
* @throws {RequiredError}
|
|
12987
|
-
*/
|
|
12988
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12989
|
-
/**
|
|
12990
|
-
* Get Editable Order (Admin)
|
|
12991
|
-
* @summary Get Editable Order (Admin)
|
|
12992
|
-
* @param {number} id Order ID
|
|
12993
|
-
* @param {*} [options] Override http request option.
|
|
12994
|
-
* @throws {RequiredError}
|
|
12995
|
-
*/
|
|
12996
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
12997
|
-
/**
|
|
12998
|
-
* Get Editable Order
|
|
12999
|
-
* @summary Get Editable Order
|
|
13000
11911
|
* @param {number} id Order ID
|
|
13001
11912
|
* @param {*} [options] Override http request option.
|
|
13002
11913
|
* @throws {RequiredError}
|
|
13003
11914
|
*/
|
|
13004
|
-
|
|
11915
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13005
11916
|
/**
|
|
13006
11917
|
* Get Orders
|
|
13007
11918
|
* @summary Get Orders
|
|
@@ -13016,44 +11927,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13016
11927
|
* @throws {RequiredError}
|
|
13017
11928
|
*/
|
|
13018
11929
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
13019
|
-
/**
|
|
13020
|
-
* Create An Order (Admin)
|
|
13021
|
-
* @summary Create An Order (Admin)
|
|
13022
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13023
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13024
|
-
* @param {*} [options] Override http request option.
|
|
13025
|
-
* @throws {RequiredError}
|
|
13026
|
-
*/
|
|
13027
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13028
|
-
/**
|
|
13029
|
-
* Create An Order
|
|
13030
|
-
* @summary Create An Order
|
|
13031
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13032
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13033
|
-
* @param {*} [options] Override http request option.
|
|
13034
|
-
* @throws {RequiredError}
|
|
13035
|
-
*/
|
|
13036
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13037
|
-
/**
|
|
13038
|
-
* Update An Order (Admin)
|
|
13039
|
-
* @summary Update An Order (Admin)
|
|
13040
|
-
* @param {number} id Order ID
|
|
13041
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13042
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13043
|
-
* @param {*} [options] Override http request option.
|
|
13044
|
-
* @throws {RequiredError}
|
|
13045
|
-
*/
|
|
13046
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13047
|
-
/**
|
|
13048
|
-
* Update An Order
|
|
13049
|
-
* @summary Update An Order
|
|
13050
|
-
* @param {number} id Order ID
|
|
13051
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13052
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13053
|
-
* @param {*} [options] Override http request option.
|
|
13054
|
-
* @throws {RequiredError}
|
|
13055
|
-
*/
|
|
13056
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13057
11930
|
};
|
|
13058
11931
|
/**
|
|
13059
11932
|
* OrdersApi - object-oriented interface
|
|
@@ -13064,31 +11937,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13064
11937
|
export declare class OrdersApi extends BaseAPI {
|
|
13065
11938
|
/**
|
|
13066
11939
|
* Delete Orders
|
|
13067
|
-
* @summary Delete Orders
|
|
13068
|
-
* @param {number} id Order ID
|
|
13069
|
-
* @param {*} [options] Override http request option.
|
|
13070
|
-
* @throws {RequiredError}
|
|
13071
|
-
* @memberof OrdersApi
|
|
13072
|
-
*/
|
|
13073
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13074
|
-
/**
|
|
13075
|
-
* Get Editable Order (Admin)
|
|
13076
|
-
* @summary Get Editable Order (Admin)
|
|
13077
|
-
* @param {number} id Order ID
|
|
13078
|
-
* @param {*} [options] Override http request option.
|
|
13079
|
-
* @throws {RequiredError}
|
|
13080
|
-
* @memberof OrdersApi
|
|
13081
|
-
*/
|
|
13082
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
13083
|
-
/**
|
|
13084
|
-
* Get Editable Order
|
|
13085
|
-
* @summary Get Editable Order
|
|
13086
11940
|
* @param {number} id Order ID
|
|
13087
11941
|
* @param {*} [options] Override http request option.
|
|
13088
11942
|
* @throws {RequiredError}
|
|
13089
11943
|
* @memberof OrdersApi
|
|
13090
11944
|
*/
|
|
13091
|
-
|
|
11945
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13092
11946
|
/**
|
|
13093
11947
|
* Get Orders
|
|
13094
11948
|
* @summary Get Orders
|
|
@@ -13104,48 +11958,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13104
11958
|
* @memberof OrdersApi
|
|
13105
11959
|
*/
|
|
13106
11960
|
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, {}>>;
|
|
13107
|
-
/**
|
|
13108
|
-
* Create An Order (Admin)
|
|
13109
|
-
* @summary Create An Order (Admin)
|
|
13110
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13111
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13112
|
-
* @param {*} [options] Override http request option.
|
|
13113
|
-
* @throws {RequiredError}
|
|
13114
|
-
* @memberof OrdersApi
|
|
13115
|
-
*/
|
|
13116
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13117
|
-
/**
|
|
13118
|
-
* Create An Order
|
|
13119
|
-
* @summary Create An Order
|
|
13120
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13121
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13122
|
-
* @param {*} [options] Override http request option.
|
|
13123
|
-
* @throws {RequiredError}
|
|
13124
|
-
* @memberof OrdersApi
|
|
13125
|
-
*/
|
|
13126
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13127
|
-
/**
|
|
13128
|
-
* Update An Order (Admin)
|
|
13129
|
-
* @summary Update An Order (Admin)
|
|
13130
|
-
* @param {number} id Order ID
|
|
13131
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13132
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13133
|
-
* @param {*} [options] Override http request option.
|
|
13134
|
-
* @throws {RequiredError}
|
|
13135
|
-
* @memberof OrdersApi
|
|
13136
|
-
*/
|
|
13137
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13138
|
-
/**
|
|
13139
|
-
* Update An Order
|
|
13140
|
-
* @summary Update An Order
|
|
13141
|
-
* @param {number} id Order ID
|
|
13142
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13143
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13144
|
-
* @param {*} [options] Override http request option.
|
|
13145
|
-
* @throws {RequiredError}
|
|
13146
|
-
* @memberof OrdersApi
|
|
13147
|
-
*/
|
|
13148
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13149
11961
|
}
|
|
13150
11962
|
/**
|
|
13151
11963
|
* @export
|
|
@@ -13401,6 +12213,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13401
12213
|
* @throws {RequiredError}
|
|
13402
12214
|
*/
|
|
13403
12215
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12216
|
+
/**
|
|
12217
|
+
* Get Customer Price Lists
|
|
12218
|
+
* @summary Get Customer Price Lists
|
|
12219
|
+
* @param {*} [options] Override http request option.
|
|
12220
|
+
* @throws {RequiredError}
|
|
12221
|
+
*/
|
|
12222
|
+
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13404
12223
|
/**
|
|
13405
12224
|
* Get Current Stock & Pricing
|
|
13406
12225
|
* @summary Get Current Stock & Pricing
|
|
@@ -13413,10 +12232,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13413
12232
|
/**
|
|
13414
12233
|
* Get Products
|
|
13415
12234
|
* @summary Get Products
|
|
12235
|
+
* @param {number} [pageSize] Number Of Results
|
|
12236
|
+
* @param {number} [page] Page Number
|
|
12237
|
+
* @param {string} [search] Search
|
|
13416
12238
|
* @param {*} [options] Override http request option.
|
|
13417
12239
|
* @throws {RequiredError}
|
|
13418
12240
|
*/
|
|
13419
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12241
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13420
12242
|
/**
|
|
13421
12243
|
* Get Current Stock & Pricing
|
|
13422
12244
|
* @summary Get Current Stock & Pricing
|
|
@@ -13431,35 +12253,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13431
12253
|
* @throws {RequiredError}
|
|
13432
12254
|
*/
|
|
13433
12255
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13434
|
-
/**
|
|
13435
|
-
* Search Products
|
|
13436
|
-
* @summary Search Products
|
|
13437
|
-
* @param {number} [pageSize] Number Of Results
|
|
13438
|
-
* @param {number} [page] Page Number
|
|
13439
|
-
* @param {string} [search] Search
|
|
13440
|
-
* @param {*} [options] Override http request option.
|
|
13441
|
-
* @throws {RequiredError}
|
|
13442
|
-
*/
|
|
13443
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13444
|
-
/**
|
|
13445
|
-
* Get Product
|
|
13446
|
-
* @summary Get Product
|
|
13447
|
-
* @param {string} sku Product SKU
|
|
13448
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13449
|
-
* @param {*} [options] Override http request option.
|
|
13450
|
-
* @throws {RequiredError}
|
|
13451
|
-
*/
|
|
13452
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13453
|
-
/**
|
|
13454
|
-
* Get Product For Customer
|
|
13455
|
-
* @summary Get Product For Customer
|
|
13456
|
-
* @param {number} customerId Customer ID
|
|
13457
|
-
* @param {string} sku Product SKU
|
|
13458
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13459
|
-
* @param {*} [options] Override http request option.
|
|
13460
|
-
* @throws {RequiredError}
|
|
13461
|
-
*/
|
|
13462
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13463
12256
|
};
|
|
13464
12257
|
/**
|
|
13465
12258
|
* ProductsApi - functional programming interface
|
|
@@ -13473,6 +12266,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13473
12266
|
* @throws {RequiredError}
|
|
13474
12267
|
*/
|
|
13475
12268
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12269
|
+
/**
|
|
12270
|
+
* Get Customer Price Lists
|
|
12271
|
+
* @summary Get Customer Price Lists
|
|
12272
|
+
* @param {*} [options] Override http request option.
|
|
12273
|
+
* @throws {RequiredError}
|
|
12274
|
+
*/
|
|
12275
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
13476
12276
|
/**
|
|
13477
12277
|
* Get Current Stock & Pricing
|
|
13478
12278
|
* @summary Get Current Stock & Pricing
|
|
@@ -13485,10 +12285,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13485
12285
|
/**
|
|
13486
12286
|
* Get Products
|
|
13487
12287
|
* @summary Get Products
|
|
12288
|
+
* @param {number} [pageSize] Number Of Results
|
|
12289
|
+
* @param {number} [page] Page Number
|
|
12290
|
+
* @param {string} [search] Search
|
|
13488
12291
|
* @param {*} [options] Override http request option.
|
|
13489
12292
|
* @throws {RequiredError}
|
|
13490
12293
|
*/
|
|
13491
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12294
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13492
12295
|
/**
|
|
13493
12296
|
* Get Current Stock & Pricing
|
|
13494
12297
|
* @summary Get Current Stock & Pricing
|
|
@@ -13503,35 +12306,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13503
12306
|
* @throws {RequiredError}
|
|
13504
12307
|
*/
|
|
13505
12308
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13506
|
-
/**
|
|
13507
|
-
* Search Products
|
|
13508
|
-
* @summary Search Products
|
|
13509
|
-
* @param {number} [pageSize] Number Of Results
|
|
13510
|
-
* @param {number} [page] Page Number
|
|
13511
|
-
* @param {string} [search] Search
|
|
13512
|
-
* @param {*} [options] Override http request option.
|
|
13513
|
-
* @throws {RequiredError}
|
|
13514
|
-
*/
|
|
13515
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13516
|
-
/**
|
|
13517
|
-
* Get Product
|
|
13518
|
-
* @summary Get Product
|
|
13519
|
-
* @param {string} sku Product SKU
|
|
13520
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13521
|
-
* @param {*} [options] Override http request option.
|
|
13522
|
-
* @throws {RequiredError}
|
|
13523
|
-
*/
|
|
13524
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13525
|
-
/**
|
|
13526
|
-
* Get Product For Customer
|
|
13527
|
-
* @summary Get Product For Customer
|
|
13528
|
-
* @param {number} customerId Customer ID
|
|
13529
|
-
* @param {string} sku Product SKU
|
|
13530
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13531
|
-
* @param {*} [options] Override http request option.
|
|
13532
|
-
* @throws {RequiredError}
|
|
13533
|
-
*/
|
|
13534
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13535
12309
|
};
|
|
13536
12310
|
/**
|
|
13537
12311
|
* ProductsApi - factory interface
|
|
@@ -13545,6 +12319,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13545
12319
|
* @throws {RequiredError}
|
|
13546
12320
|
*/
|
|
13547
12321
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12322
|
+
/**
|
|
12323
|
+
* Get Customer Price Lists
|
|
12324
|
+
* @summary Get Customer Price Lists
|
|
12325
|
+
* @param {*} [options] Override http request option.
|
|
12326
|
+
* @throws {RequiredError}
|
|
12327
|
+
*/
|
|
12328
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
13548
12329
|
/**
|
|
13549
12330
|
* Get Current Stock & Pricing
|
|
13550
12331
|
* @summary Get Current Stock & Pricing
|
|
@@ -13557,10 +12338,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13557
12338
|
/**
|
|
13558
12339
|
* Get Products
|
|
13559
12340
|
* @summary Get Products
|
|
12341
|
+
* @param {number} [pageSize] Number Of Results
|
|
12342
|
+
* @param {number} [page] Page Number
|
|
12343
|
+
* @param {string} [search] Search
|
|
13560
12344
|
* @param {*} [options] Override http request option.
|
|
13561
12345
|
* @throws {RequiredError}
|
|
13562
12346
|
*/
|
|
13563
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12347
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13564
12348
|
/**
|
|
13565
12349
|
* Get Current Stock & Pricing
|
|
13566
12350
|
* @summary Get Current Stock & Pricing
|
|
@@ -13575,35 +12359,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13575
12359
|
* @throws {RequiredError}
|
|
13576
12360
|
*/
|
|
13577
12361
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13578
|
-
/**
|
|
13579
|
-
* Search Products
|
|
13580
|
-
* @summary Search Products
|
|
13581
|
-
* @param {number} [pageSize] Number Of Results
|
|
13582
|
-
* @param {number} [page] Page Number
|
|
13583
|
-
* @param {string} [search] Search
|
|
13584
|
-
* @param {*} [options] Override http request option.
|
|
13585
|
-
* @throws {RequiredError}
|
|
13586
|
-
*/
|
|
13587
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13588
|
-
/**
|
|
13589
|
-
* Get Product
|
|
13590
|
-
* @summary Get Product
|
|
13591
|
-
* @param {string} sku Product SKU
|
|
13592
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13593
|
-
* @param {*} [options] Override http request option.
|
|
13594
|
-
* @throws {RequiredError}
|
|
13595
|
-
*/
|
|
13596
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13597
|
-
/**
|
|
13598
|
-
* Get Product For Customer
|
|
13599
|
-
* @summary Get Product For Customer
|
|
13600
|
-
* @param {number} customerId Customer ID
|
|
13601
|
-
* @param {string} sku Product SKU
|
|
13602
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13603
|
-
* @param {*} [options] Override http request option.
|
|
13604
|
-
* @throws {RequiredError}
|
|
13605
|
-
*/
|
|
13606
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13607
12362
|
};
|
|
13608
12363
|
/**
|
|
13609
12364
|
* ProductsApi - object-oriented interface
|
|
@@ -13620,6 +12375,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13620
12375
|
* @memberof ProductsApi
|
|
13621
12376
|
*/
|
|
13622
12377
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12378
|
+
/**
|
|
12379
|
+
* Get Customer Price Lists
|
|
12380
|
+
* @summary Get Customer Price Lists
|
|
12381
|
+
* @param {*} [options] Override http request option.
|
|
12382
|
+
* @throws {RequiredError}
|
|
12383
|
+
* @memberof ProductsApi
|
|
12384
|
+
*/
|
|
12385
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
13623
12386
|
/**
|
|
13624
12387
|
* Get Current Stock & Pricing
|
|
13625
12388
|
* @summary Get Current Stock & Pricing
|
|
@@ -13633,11 +12396,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13633
12396
|
/**
|
|
13634
12397
|
* Get Products
|
|
13635
12398
|
* @summary Get Products
|
|
12399
|
+
* @param {number} [pageSize] Number Of Results
|
|
12400
|
+
* @param {number} [page] Page Number
|
|
12401
|
+
* @param {string} [search] Search
|
|
13636
12402
|
* @param {*} [options] Override http request option.
|
|
13637
12403
|
* @throws {RequiredError}
|
|
13638
12404
|
* @memberof ProductsApi
|
|
13639
12405
|
*/
|
|
13640
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12406
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13641
12407
|
/**
|
|
13642
12408
|
* Get Current Stock & Pricing
|
|
13643
12409
|
* @summary Get Current Stock & Pricing
|
|
@@ -13654,38 +12420,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13654
12420
|
* @memberof ProductsApi
|
|
13655
12421
|
*/
|
|
13656
12422
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13657
|
-
/**
|
|
13658
|
-
* Search Products
|
|
13659
|
-
* @summary Search Products
|
|
13660
|
-
* @param {number} [pageSize] Number Of Results
|
|
13661
|
-
* @param {number} [page] Page Number
|
|
13662
|
-
* @param {string} [search] Search
|
|
13663
|
-
* @param {*} [options] Override http request option.
|
|
13664
|
-
* @throws {RequiredError}
|
|
13665
|
-
* @memberof ProductsApi
|
|
13666
|
-
*/
|
|
13667
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13668
|
-
/**
|
|
13669
|
-
* Get Product
|
|
13670
|
-
* @summary Get Product
|
|
13671
|
-
* @param {string} sku Product SKU
|
|
13672
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13673
|
-
* @param {*} [options] Override http request option.
|
|
13674
|
-
* @throws {RequiredError}
|
|
13675
|
-
* @memberof ProductsApi
|
|
13676
|
-
*/
|
|
13677
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13678
|
-
/**
|
|
13679
|
-
* Get Product For Customer
|
|
13680
|
-
* @summary Get Product For Customer
|
|
13681
|
-
* @param {number} customerId Customer ID
|
|
13682
|
-
* @param {string} sku Product SKU
|
|
13683
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13684
|
-
* @param {*} [options] Override http request option.
|
|
13685
|
-
* @throws {RequiredError}
|
|
13686
|
-
* @memberof ProductsApi
|
|
13687
|
-
*/
|
|
13688
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13689
12423
|
}
|
|
13690
12424
|
/**
|
|
13691
12425
|
* @export
|
|
@@ -13806,7 +12540,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13806
12540
|
* @param {*} [options] Override http request option.
|
|
13807
12541
|
* @throws {RequiredError}
|
|
13808
12542
|
*/
|
|
13809
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12543
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13810
12544
|
/**
|
|
13811
12545
|
* Create a Fanvil provisioning group
|
|
13812
12546
|
* @summary Add group to DB and FDPS
|
|
@@ -13814,7 +12548,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13814
12548
|
* @param {*} [options] Override http request option.
|
|
13815
12549
|
* @throws {RequiredError}
|
|
13816
12550
|
*/
|
|
13817
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12551
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13818
12552
|
/**
|
|
13819
12553
|
* Add MAC address to DB and FDPS group
|
|
13820
12554
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13871,7 +12605,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13871
12605
|
* @param {*} [options] Override http request option.
|
|
13872
12606
|
* @throws {RequiredError}
|
|
13873
12607
|
*/
|
|
13874
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12608
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13875
12609
|
/**
|
|
13876
12610
|
* Create a Fanvil provisioning group
|
|
13877
12611
|
* @summary Add group to DB and FDPS
|
|
@@ -13879,7 +12613,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13879
12613
|
* @param {*} [options] Override http request option.
|
|
13880
12614
|
* @throws {RequiredError}
|
|
13881
12615
|
*/
|
|
13882
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12616
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13883
12617
|
/**
|
|
13884
12618
|
* Add MAC address to DB and FDPS group
|
|
13885
12619
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13943,7 +12677,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13943
12677
|
* @throws {RequiredError}
|
|
13944
12678
|
* @memberof ProvisioningApi
|
|
13945
12679
|
*/
|
|
13946
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12680
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13947
12681
|
/**
|
|
13948
12682
|
* Create a Fanvil provisioning group
|
|
13949
12683
|
* @summary Add group to DB and FDPS
|
|
@@ -13952,7 +12686,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13952
12686
|
* @throws {RequiredError}
|
|
13953
12687
|
* @memberof ProvisioningApi
|
|
13954
12688
|
*/
|
|
13955
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12689
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13956
12690
|
/**
|
|
13957
12691
|
* Add MAC address to DB and FDPS group
|
|
13958
12692
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14827,65 +13561,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14827
13561
|
*/
|
|
14828
13562
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14829
13563
|
}
|
|
14830
|
-
/**
|
|
14831
|
-
* ShippingApi - axios parameter creator
|
|
14832
|
-
* @export
|
|
14833
|
-
*/
|
|
14834
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14835
|
-
/**
|
|
14836
|
-
* Get Shipping Services
|
|
14837
|
-
* @summary Get Shipping Services
|
|
14838
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14839
|
-
* @param {*} [options] Override http request option.
|
|
14840
|
-
* @throws {RequiredError}
|
|
14841
|
-
*/
|
|
14842
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14843
|
-
};
|
|
14844
|
-
/**
|
|
14845
|
-
* ShippingApi - functional programming interface
|
|
14846
|
-
* @export
|
|
14847
|
-
*/
|
|
14848
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14849
|
-
/**
|
|
14850
|
-
* Get Shipping Services
|
|
14851
|
-
* @summary Get Shipping Services
|
|
14852
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14853
|
-
* @param {*} [options] Override http request option.
|
|
14854
|
-
* @throws {RequiredError}
|
|
14855
|
-
*/
|
|
14856
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14857
|
-
};
|
|
14858
|
-
/**
|
|
14859
|
-
* ShippingApi - factory interface
|
|
14860
|
-
* @export
|
|
14861
|
-
*/
|
|
14862
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14863
|
-
/**
|
|
14864
|
-
* Get Shipping Services
|
|
14865
|
-
* @summary Get Shipping Services
|
|
14866
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14867
|
-
* @param {*} [options] Override http request option.
|
|
14868
|
-
* @throws {RequiredError}
|
|
14869
|
-
*/
|
|
14870
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14871
|
-
};
|
|
14872
|
-
/**
|
|
14873
|
-
* ShippingApi - object-oriented interface
|
|
14874
|
-
* @export
|
|
14875
|
-
* @class ShippingApi
|
|
14876
|
-
* @extends {BaseAPI}
|
|
14877
|
-
*/
|
|
14878
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14879
|
-
/**
|
|
14880
|
-
* Get Shipping Services
|
|
14881
|
-
* @summary Get Shipping Services
|
|
14882
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14883
|
-
* @param {*} [options] Override http request option.
|
|
14884
|
-
* @throws {RequiredError}
|
|
14885
|
-
* @memberof ShippingApi
|
|
14886
|
-
*/
|
|
14887
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14888
|
-
}
|
|
14889
13564
|
/**
|
|
14890
13565
|
* StockManagementApi - axios parameter creator
|
|
14891
13566
|
* @export
|
|
@@ -15215,7 +13890,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
15215
13890
|
* @param {*} [options] Override http request option.
|
|
15216
13891
|
* @throws {RequiredError}
|
|
15217
13892
|
*/
|
|
15218
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13893
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
15219
13894
|
/**
|
|
15220
13895
|
* Get Stock Order Supplier Invoice
|
|
15221
13896
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15430,7 +14105,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15430
14105
|
* @param {*} [options] Override http request option.
|
|
15431
14106
|
* @throws {RequiredError}
|
|
15432
14107
|
*/
|
|
15433
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14108
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15434
14109
|
/**
|
|
15435
14110
|
* Get Stock Order Supplier Invoice
|
|
15436
14111
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15660,7 +14335,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15660
14335
|
* @throws {RequiredError}
|
|
15661
14336
|
* @memberof StockManagementApi
|
|
15662
14337
|
*/
|
|
15663
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14338
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15664
14339
|
/**
|
|
15665
14340
|
* Get Stock Order Supplier Invoice
|
|
15666
14341
|
* @summary Get Stock Order Supplier Invoice
|