yellowgrid-api-ts 3.1.14-dev.0 → 3.1.14
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 +236 -1972
- 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 +160 -1479
- 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 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/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/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
|
-
*/
|
|
3127
|
-
'
|
|
3128
|
-
}
|
|
3129
|
-
/**
|
|
3130
|
-
* ItemDiscountsEntity
|
|
3131
|
-
* @export
|
|
3132
|
-
* @interface ItemDiscountEntity
|
|
3133
|
-
*/
|
|
3134
|
-
export interface ItemDiscountEntity {
|
|
2484
|
+
*/
|
|
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,51 +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
4011
|
}
|
|
4753
4012
|
/**
|
|
4754
4013
|
* PromoCodesEntity
|
|
@@ -4887,37 +4146,37 @@ export interface PromoItemsEntity {
|
|
|
4887
4146
|
/**
|
|
4888
4147
|
* Provisioning Group
|
|
4889
4148
|
* @export
|
|
4890
|
-
* @interface
|
|
4149
|
+
* @interface ProvisioningEntity
|
|
4891
4150
|
*/
|
|
4892
|
-
export interface
|
|
4151
|
+
export interface ProvisioningEntity {
|
|
4893
4152
|
/**
|
|
4894
4153
|
* Provisioning Group Name
|
|
4895
4154
|
* @type {string}
|
|
4896
|
-
* @memberof
|
|
4155
|
+
* @memberof ProvisioningEntity
|
|
4897
4156
|
*/
|
|
4898
4157
|
'groupName'?: string;
|
|
4899
4158
|
/**
|
|
4900
4159
|
* Provisioning URL (Static Provisioning Server)
|
|
4901
4160
|
* @type {string}
|
|
4902
|
-
* @memberof
|
|
4161
|
+
* @memberof ProvisioningEntity
|
|
4903
4162
|
*/
|
|
4904
4163
|
'provisioningUrl'?: string;
|
|
4905
4164
|
/**
|
|
4906
4165
|
* Additional Authentication Secret
|
|
4907
4166
|
* @type {string}
|
|
4908
|
-
* @memberof
|
|
4167
|
+
* @memberof ProvisioningEntity
|
|
4909
4168
|
*/
|
|
4910
4169
|
'auth'?: string;
|
|
4911
4170
|
/**
|
|
4912
4171
|
* Provisioning Group ID
|
|
4913
4172
|
* @type {number}
|
|
4914
|
-
* @memberof
|
|
4173
|
+
* @memberof ProvisioningEntity
|
|
4915
4174
|
*/
|
|
4916
4175
|
'id'?: number;
|
|
4917
4176
|
/**
|
|
4918
4177
|
* Owner ID
|
|
4919
4178
|
* @type {number}
|
|
4920
|
-
* @memberof
|
|
4179
|
+
* @memberof ProvisioningEntity
|
|
4921
4180
|
*/
|
|
4922
4181
|
'customerId'?: number;
|
|
4923
4182
|
}
|
|
@@ -5271,7 +4530,7 @@ export interface ShipmentEntity {
|
|
|
5271
4530
|
* @type {string}
|
|
5272
4531
|
* @memberof ShipmentEntity
|
|
5273
4532
|
*/
|
|
5274
|
-
'
|
|
4533
|
+
'date'?: string;
|
|
5275
4534
|
/**
|
|
5276
4535
|
* requestDate
|
|
5277
4536
|
* @type {string}
|
|
@@ -5322,149 +4581,6 @@ export interface ShipmentItemEntity {
|
|
|
5322
4581
|
*/
|
|
5323
4582
|
'itemId'?: string;
|
|
5324
4583
|
}
|
|
5325
|
-
/**
|
|
5326
|
-
*
|
|
5327
|
-
* @export
|
|
5328
|
-
* @interface ShippingConsignmentModel
|
|
5329
|
-
*/
|
|
5330
|
-
export interface ShippingConsignmentModel {
|
|
5331
|
-
/**
|
|
5332
|
-
*
|
|
5333
|
-
* @type {ShippingServiceModel}
|
|
5334
|
-
* @memberof ShippingConsignmentModel
|
|
5335
|
-
*/
|
|
5336
|
-
'service'?: ShippingServiceModel;
|
|
5337
|
-
/**
|
|
5338
|
-
* ID/Number
|
|
5339
|
-
* @type {string}
|
|
5340
|
-
* @memberof ShippingConsignmentModel
|
|
5341
|
-
*/
|
|
5342
|
-
'id'?: string;
|
|
5343
|
-
/**
|
|
5344
|
-
* Tracking Number
|
|
5345
|
-
* @type {string}
|
|
5346
|
-
* @memberof ShippingConsignmentModel
|
|
5347
|
-
*/
|
|
5348
|
-
'trackingNumber'?: string;
|
|
5349
|
-
/**
|
|
5350
|
-
* Parcels
|
|
5351
|
-
* @type {Array<string>}
|
|
5352
|
-
* @memberof ShippingConsignmentModel
|
|
5353
|
-
*/
|
|
5354
|
-
'parcelIds'?: Array<string>;
|
|
5355
|
-
}
|
|
5356
|
-
/**
|
|
5357
|
-
* Shipping Information
|
|
5358
|
-
* @export
|
|
5359
|
-
* @interface ShippingInformationDTO
|
|
5360
|
-
*/
|
|
5361
|
-
export interface ShippingInformationDTO {
|
|
5362
|
-
/**
|
|
5363
|
-
* Items
|
|
5364
|
-
* @type {Array<BasicItemDTO>}
|
|
5365
|
-
* @memberof ShippingInformationDTO
|
|
5366
|
-
*/
|
|
5367
|
-
'items'?: Array<BasicItemDTO>;
|
|
5368
|
-
/**
|
|
5369
|
-
* Destination Post Code
|
|
5370
|
-
* @type {string}
|
|
5371
|
-
* @memberof ShippingInformationDTO
|
|
5372
|
-
*/
|
|
5373
|
-
'postalCode'?: string;
|
|
5374
|
-
/**
|
|
5375
|
-
* Destination ISO
|
|
5376
|
-
* @type {string}
|
|
5377
|
-
* @memberof ShippingInformationDTO
|
|
5378
|
-
*/
|
|
5379
|
-
'iso'?: string;
|
|
5380
|
-
}
|
|
5381
|
-
/**
|
|
5382
|
-
* Shipping Service
|
|
5383
|
-
* @export
|
|
5384
|
-
* @interface ShippingServiceDTO
|
|
5385
|
-
*/
|
|
5386
|
-
export interface ShippingServiceDTO {
|
|
5387
|
-
/**
|
|
5388
|
-
* Courier
|
|
5389
|
-
* @type {string}
|
|
5390
|
-
* @memberof ShippingServiceDTO
|
|
5391
|
-
*/
|
|
5392
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5393
|
-
/**
|
|
5394
|
-
* Service Name
|
|
5395
|
-
* @type {string}
|
|
5396
|
-
* @memberof ShippingServiceDTO
|
|
5397
|
-
*/
|
|
5398
|
-
'serviceName'?: string;
|
|
5399
|
-
}
|
|
5400
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5401
|
-
readonly Dpd: "DPD";
|
|
5402
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5403
|
-
readonly Pops: "POPS";
|
|
5404
|
-
};
|
|
5405
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5406
|
-
/**
|
|
5407
|
-
* Shipping Service
|
|
5408
|
-
* @export
|
|
5409
|
-
* @interface ShippingServiceModel
|
|
5410
|
-
*/
|
|
5411
|
-
export interface ShippingServiceModel {
|
|
5412
|
-
/**
|
|
5413
|
-
* Courier
|
|
5414
|
-
* @type {string}
|
|
5415
|
-
* @memberof ShippingServiceModel
|
|
5416
|
-
*/
|
|
5417
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5418
|
-
/**
|
|
5419
|
-
* Code
|
|
5420
|
-
* @type {string}
|
|
5421
|
-
* @memberof ShippingServiceModel
|
|
5422
|
-
*/
|
|
5423
|
-
'code'?: string;
|
|
5424
|
-
/**
|
|
5425
|
-
* Name
|
|
5426
|
-
* @type {string}
|
|
5427
|
-
* @memberof ShippingServiceModel
|
|
5428
|
-
*/
|
|
5429
|
-
'name'?: string;
|
|
5430
|
-
/**
|
|
5431
|
-
* Description
|
|
5432
|
-
* @type {string}
|
|
5433
|
-
* @memberof ShippingServiceModel
|
|
5434
|
-
*/
|
|
5435
|
-
'description'?: string;
|
|
5436
|
-
/**
|
|
5437
|
-
* Label
|
|
5438
|
-
* @type {string}
|
|
5439
|
-
* @memberof ShippingServiceModel
|
|
5440
|
-
*/
|
|
5441
|
-
'label'?: string | null;
|
|
5442
|
-
/**
|
|
5443
|
-
* Price
|
|
5444
|
-
* @type {number}
|
|
5445
|
-
* @memberof ShippingServiceModel
|
|
5446
|
-
*/
|
|
5447
|
-
'price'?: number | null;
|
|
5448
|
-
}
|
|
5449
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5450
|
-
readonly Dpd: "DPD";
|
|
5451
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5452
|
-
readonly Pops: "POPS";
|
|
5453
|
-
};
|
|
5454
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5455
|
-
/**
|
|
5456
|
-
*
|
|
5457
|
-
* @export
|
|
5458
|
-
* @interface ShippingServicesModel
|
|
5459
|
-
*/
|
|
5460
|
-
export interface ShippingServicesModel {
|
|
5461
|
-
/**
|
|
5462
|
-
* Services
|
|
5463
|
-
* @type {Array<ShippingServiceModel>}
|
|
5464
|
-
* @memberof ShippingServicesModel
|
|
5465
|
-
*/
|
|
5466
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5467
|
-
}
|
|
5468
4584
|
/**
|
|
5469
4585
|
* Change Response
|
|
5470
4586
|
* @export
|
|
@@ -8284,49 +7400,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8284
7400
|
*/
|
|
8285
7401
|
'secretAccessKey'?: string;
|
|
8286
7402
|
}
|
|
8287
|
-
/**
|
|
8288
|
-
* SBC Data
|
|
8289
|
-
* @export
|
|
8290
|
-
* @interface TcxSbcDTO
|
|
8291
|
-
*/
|
|
8292
|
-
export interface TcxSbcDTO {
|
|
8293
|
-
/**
|
|
8294
|
-
* LAN IP Address
|
|
8295
|
-
* @type {string}
|
|
8296
|
-
* @memberof TcxSbcDTO
|
|
8297
|
-
*/
|
|
8298
|
-
'ipAddress'?: string;
|
|
8299
|
-
/**
|
|
8300
|
-
* LAN Default Gateway
|
|
8301
|
-
* @type {string}
|
|
8302
|
-
* @memberof TcxSbcDTO
|
|
8303
|
-
*/
|
|
8304
|
-
'defaultGateway'?: string;
|
|
8305
|
-
/**
|
|
8306
|
-
* LAN Subnet Mask
|
|
8307
|
-
* @type {string}
|
|
8308
|
-
* @memberof TcxSbcDTO
|
|
8309
|
-
*/
|
|
8310
|
-
'netmask'?: string;
|
|
8311
|
-
/**
|
|
8312
|
-
* DNS
|
|
8313
|
-
* @type {string}
|
|
8314
|
-
* @memberof TcxSbcDTO
|
|
8315
|
-
*/
|
|
8316
|
-
'dns'?: string;
|
|
8317
|
-
/**
|
|
8318
|
-
* 3CX URL
|
|
8319
|
-
* @type {string}
|
|
8320
|
-
* @memberof TcxSbcDTO
|
|
8321
|
-
*/
|
|
8322
|
-
'tcxUrl'?: string;
|
|
8323
|
-
/**
|
|
8324
|
-
* 3CX SBC Key
|
|
8325
|
-
* @type {string}
|
|
8326
|
-
* @memberof TcxSbcDTO
|
|
8327
|
-
*/
|
|
8328
|
-
'tcxKey'?: string;
|
|
8329
|
-
}
|
|
8330
7403
|
/**
|
|
8331
7404
|
* 3CX Wizard SBC
|
|
8332
7405
|
* @export
|
|
@@ -8431,7 +7504,7 @@ export interface TcxSbcEntity {
|
|
|
8431
7504
|
'technicalContact'?: string;
|
|
8432
7505
|
}
|
|
8433
7506
|
/**
|
|
8434
|
-
* 3CX
|
|
7507
|
+
* 3CX SBC Model
|
|
8435
7508
|
* @export
|
|
8436
7509
|
* @interface TcxSbcModel
|
|
8437
7510
|
*/
|
|
@@ -9509,14 +8582,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9509
8582
|
* @throws {RequiredError}
|
|
9510
8583
|
*/
|
|
9511
8584
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9512
|
-
/**
|
|
9513
|
-
* Get Account Detailed Summary
|
|
9514
|
-
* @summary Get Account Detailed Summary
|
|
9515
|
-
* @param {number} id Customer ID
|
|
9516
|
-
* @param {*} [options] Override http request option.
|
|
9517
|
-
* @throws {RequiredError}
|
|
9518
|
-
*/
|
|
9519
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9520
8585
|
/**
|
|
9521
8586
|
* Get Accounts
|
|
9522
8587
|
* @summary Get Accounts
|
|
@@ -9582,13 +8647,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9582
8647
|
* @throws {RequiredError}
|
|
9583
8648
|
*/
|
|
9584
8649
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9585
|
-
/**
|
|
9586
|
-
* Get Admin Account
|
|
9587
|
-
* @summary Get Admin Account
|
|
9588
|
-
* @param {*} [options] Override http request option.
|
|
9589
|
-
* @throws {RequiredError}
|
|
9590
|
-
*/
|
|
9591
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9592
8650
|
/**
|
|
9593
8651
|
* Create client credentials
|
|
9594
8652
|
* @summary Create client credentials
|
|
@@ -9669,14 +8727,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9669
8727
|
* @throws {RequiredError}
|
|
9670
8728
|
*/
|
|
9671
8729
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9672
|
-
/**
|
|
9673
|
-
* Get Account Detailed Summary
|
|
9674
|
-
* @summary Get Account Detailed Summary
|
|
9675
|
-
* @param {number} id Customer ID
|
|
9676
|
-
* @param {*} [options] Override http request option.
|
|
9677
|
-
* @throws {RequiredError}
|
|
9678
|
-
*/
|
|
9679
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9680
8730
|
/**
|
|
9681
8731
|
* Get Accounts
|
|
9682
8732
|
* @summary Get Accounts
|
|
@@ -9742,13 +8792,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9742
8792
|
* @throws {RequiredError}
|
|
9743
8793
|
*/
|
|
9744
8794
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9745
|
-
/**
|
|
9746
|
-
* Get Admin Account
|
|
9747
|
-
* @summary Get Admin Account
|
|
9748
|
-
* @param {*} [options] Override http request option.
|
|
9749
|
-
* @throws {RequiredError}
|
|
9750
|
-
*/
|
|
9751
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9752
8795
|
/**
|
|
9753
8796
|
* Create client credentials
|
|
9754
8797
|
* @summary Create client credentials
|
|
@@ -9829,14 +8872,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9829
8872
|
* @throws {RequiredError}
|
|
9830
8873
|
*/
|
|
9831
8874
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9832
|
-
/**
|
|
9833
|
-
* Get Account Detailed Summary
|
|
9834
|
-
* @summary Get Account Detailed Summary
|
|
9835
|
-
* @param {number} id Customer ID
|
|
9836
|
-
* @param {*} [options] Override http request option.
|
|
9837
|
-
* @throws {RequiredError}
|
|
9838
|
-
*/
|
|
9839
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9840
8875
|
/**
|
|
9841
8876
|
* Get Accounts
|
|
9842
8877
|
* @summary Get Accounts
|
|
@@ -9902,13 +8937,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9902
8937
|
* @throws {RequiredError}
|
|
9903
8938
|
*/
|
|
9904
8939
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9905
|
-
/**
|
|
9906
|
-
* Get Admin Account
|
|
9907
|
-
* @summary Get Admin Account
|
|
9908
|
-
* @param {*} [options] Override http request option.
|
|
9909
|
-
* @throws {RequiredError}
|
|
9910
|
-
*/
|
|
9911
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9912
8940
|
/**
|
|
9913
8941
|
* Create client credentials
|
|
9914
8942
|
* @summary Create client credentials
|
|
@@ -9995,15 +9023,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9995
9023
|
* @memberof AccountsApi
|
|
9996
9024
|
*/
|
|
9997
9025
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9998
|
-
/**
|
|
9999
|
-
* Get Account Detailed Summary
|
|
10000
|
-
* @summary Get Account Detailed Summary
|
|
10001
|
-
* @param {number} id Customer ID
|
|
10002
|
-
* @param {*} [options] Override http request option.
|
|
10003
|
-
* @throws {RequiredError}
|
|
10004
|
-
* @memberof AccountsApi
|
|
10005
|
-
*/
|
|
10006
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
10007
9026
|
/**
|
|
10008
9027
|
* Get Accounts
|
|
10009
9028
|
* @summary Get Accounts
|
|
@@ -10077,14 +9096,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
10077
9096
|
* @memberof AccountsApi
|
|
10078
9097
|
*/
|
|
10079
9098
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
10080
|
-
/**
|
|
10081
|
-
* Get Admin Account
|
|
10082
|
-
* @summary Get Admin Account
|
|
10083
|
-
* @param {*} [options] Override http request option.
|
|
10084
|
-
* @throws {RequiredError}
|
|
10085
|
-
* @memberof AccountsApi
|
|
10086
|
-
*/
|
|
10087
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
10088
9099
|
/**
|
|
10089
9100
|
* Create client credentials
|
|
10090
9101
|
* @summary Create client credentials
|
|
@@ -10198,6 +9209,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10198
9209
|
* @throws {RequiredError}
|
|
10199
9210
|
*/
|
|
10200
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>;
|
|
10201
9220
|
/**
|
|
10202
9221
|
* Get Bulk 3CX Licence Details
|
|
10203
9222
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10220,6 +9239,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
10220
9239
|
* @throws {RequiredError}
|
|
10221
9240
|
*/
|
|
10222
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>>;
|
|
10223
9250
|
/**
|
|
10224
9251
|
* Get Bulk 3CX Licence Details
|
|
10225
9252
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10242,6 +9269,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
10242
9269
|
* @throws {RequiredError}
|
|
10243
9270
|
*/
|
|
10244
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>;
|
|
10245
9280
|
/**
|
|
10246
9281
|
* Get Bulk 3CX Licence Details
|
|
10247
9282
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10267,6 +9302,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10267
9302
|
* @memberof Class3CXApi
|
|
10268
9303
|
*/
|
|
10269
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, {}>>;
|
|
10270
9314
|
/**
|
|
10271
9315
|
* Get Bulk 3CX Licence Details
|
|
10272
9316
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12810,28 +11854,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12810
11854
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12811
11855
|
/**
|
|
12812
11856
|
* Delete Orders
|
|
12813
|
-
* @summary Delete Orders
|
|
12814
|
-
* @param {number} id Order ID
|
|
12815
|
-
* @param {*} [options] Override http request option.
|
|
12816
|
-
* @throws {RequiredError}
|
|
12817
|
-
*/
|
|
12818
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12819
|
-
/**
|
|
12820
|
-
* Get Editable Order (Admin)
|
|
12821
|
-
* @summary Get Editable Order (Admin)
|
|
12822
|
-
* @param {number} id Order ID
|
|
12823
|
-
* @param {*} [options] Override http request option.
|
|
12824
|
-
* @throws {RequiredError}
|
|
12825
|
-
*/
|
|
12826
|
-
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12827
|
-
/**
|
|
12828
|
-
* Get Editable Order
|
|
12829
|
-
* @summary Get Editable Order
|
|
12830
11857
|
* @param {number} id Order ID
|
|
12831
11858
|
* @param {*} [options] Override http request option.
|
|
12832
11859
|
* @throws {RequiredError}
|
|
12833
11860
|
*/
|
|
12834
|
-
|
|
11861
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12835
11862
|
/**
|
|
12836
11863
|
* Get Orders
|
|
12837
11864
|
* @summary Get Orders
|
|
@@ -12846,44 +11873,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12846
11873
|
* @throws {RequiredError}
|
|
12847
11874
|
*/
|
|
12848
11875
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12849
|
-
/**
|
|
12850
|
-
* Create An Order (Admin)
|
|
12851
|
-
* @summary Create An Order (Admin)
|
|
12852
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12853
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12854
|
-
* @param {*} [options] Override http request option.
|
|
12855
|
-
* @throws {RequiredError}
|
|
12856
|
-
*/
|
|
12857
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12858
|
-
/**
|
|
12859
|
-
* Create An Order
|
|
12860
|
-
* @summary Create An Order
|
|
12861
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12862
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12863
|
-
* @param {*} [options] Override http request option.
|
|
12864
|
-
* @throws {RequiredError}
|
|
12865
|
-
*/
|
|
12866
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12867
|
-
/**
|
|
12868
|
-
* Update An Order (Admin)
|
|
12869
|
-
* @summary Update An Order (Admin)
|
|
12870
|
-
* @param {number} id Order ID
|
|
12871
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12872
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12873
|
-
* @param {*} [options] Override http request option.
|
|
12874
|
-
* @throws {RequiredError}
|
|
12875
|
-
*/
|
|
12876
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12877
|
-
/**
|
|
12878
|
-
* Update An Order
|
|
12879
|
-
* @summary Update An Order
|
|
12880
|
-
* @param {number} id Order ID
|
|
12881
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12882
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12883
|
-
* @param {*} [options] Override http request option.
|
|
12884
|
-
* @throws {RequiredError}
|
|
12885
|
-
*/
|
|
12886
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12887
11876
|
};
|
|
12888
11877
|
/**
|
|
12889
11878
|
* OrdersApi - functional programming interface
|
|
@@ -12892,28 +11881,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12892
11881
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12893
11882
|
/**
|
|
12894
11883
|
* Delete Orders
|
|
12895
|
-
* @summary Delete Orders
|
|
12896
|
-
* @param {number} id Order ID
|
|
12897
|
-
* @param {*} [options] Override http request option.
|
|
12898
|
-
* @throws {RequiredError}
|
|
12899
|
-
*/
|
|
12900
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12901
|
-
/**
|
|
12902
|
-
* Get Editable Order (Admin)
|
|
12903
|
-
* @summary Get Editable Order (Admin)
|
|
12904
|
-
* @param {number} id Order ID
|
|
12905
|
-
* @param {*} [options] Override http request option.
|
|
12906
|
-
* @throws {RequiredError}
|
|
12907
|
-
*/
|
|
12908
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12909
|
-
/**
|
|
12910
|
-
* Get Editable Order
|
|
12911
|
-
* @summary Get Editable Order
|
|
12912
11884
|
* @param {number} id Order ID
|
|
12913
11885
|
* @param {*} [options] Override http request option.
|
|
12914
11886
|
* @throws {RequiredError}
|
|
12915
11887
|
*/
|
|
12916
|
-
|
|
11888
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12917
11889
|
/**
|
|
12918
11890
|
* Get Orders
|
|
12919
11891
|
* @summary Get Orders
|
|
@@ -12928,44 +11900,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12928
11900
|
* @throws {RequiredError}
|
|
12929
11901
|
*/
|
|
12930
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>>;
|
|
12931
|
-
/**
|
|
12932
|
-
* Create An Order (Admin)
|
|
12933
|
-
* @summary Create An Order (Admin)
|
|
12934
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12935
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12936
|
-
* @param {*} [options] Override http request option.
|
|
12937
|
-
* @throws {RequiredError}
|
|
12938
|
-
*/
|
|
12939
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12940
|
-
/**
|
|
12941
|
-
* Create An Order
|
|
12942
|
-
* @summary Create An Order
|
|
12943
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12944
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12945
|
-
* @param {*} [options] Override http request option.
|
|
12946
|
-
* @throws {RequiredError}
|
|
12947
|
-
*/
|
|
12948
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12949
|
-
/**
|
|
12950
|
-
* Update An Order (Admin)
|
|
12951
|
-
* @summary Update An Order (Admin)
|
|
12952
|
-
* @param {number} id Order ID
|
|
12953
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12954
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12955
|
-
* @param {*} [options] Override http request option.
|
|
12956
|
-
* @throws {RequiredError}
|
|
12957
|
-
*/
|
|
12958
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12959
|
-
/**
|
|
12960
|
-
* Update An Order
|
|
12961
|
-
* @summary Update An Order
|
|
12962
|
-
* @param {number} id Order ID
|
|
12963
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12964
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12965
|
-
* @param {*} [options] Override http request option.
|
|
12966
|
-
* @throws {RequiredError}
|
|
12967
|
-
*/
|
|
12968
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12969
11903
|
};
|
|
12970
11904
|
/**
|
|
12971
11905
|
* OrdersApi - factory interface
|
|
@@ -12974,28 +11908,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12974
11908
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12975
11909
|
/**
|
|
12976
11910
|
* Delete Orders
|
|
12977
|
-
* @summary Delete Orders
|
|
12978
|
-
* @param {number} id Order ID
|
|
12979
|
-
* @param {*} [options] Override http request option.
|
|
12980
|
-
* @throws {RequiredError}
|
|
12981
|
-
*/
|
|
12982
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12983
|
-
/**
|
|
12984
|
-
* Get Editable Order (Admin)
|
|
12985
|
-
* @summary Get Editable Order (Admin)
|
|
12986
|
-
* @param {number} id Order ID
|
|
12987
|
-
* @param {*} [options] Override http request option.
|
|
12988
|
-
* @throws {RequiredError}
|
|
12989
|
-
*/
|
|
12990
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
12991
|
-
/**
|
|
12992
|
-
* Get Editable Order
|
|
12993
|
-
* @summary Get Editable Order
|
|
12994
11911
|
* @param {number} id Order ID
|
|
12995
11912
|
* @param {*} [options] Override http request option.
|
|
12996
11913
|
* @throws {RequiredError}
|
|
12997
11914
|
*/
|
|
12998
|
-
|
|
11915
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12999
11916
|
/**
|
|
13000
11917
|
* Get Orders
|
|
13001
11918
|
* @summary Get Orders
|
|
@@ -13010,44 +11927,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13010
11927
|
* @throws {RequiredError}
|
|
13011
11928
|
*/
|
|
13012
11929
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
13013
|
-
/**
|
|
13014
|
-
* Create An Order (Admin)
|
|
13015
|
-
* @summary Create An Order (Admin)
|
|
13016
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13017
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13018
|
-
* @param {*} [options] Override http request option.
|
|
13019
|
-
* @throws {RequiredError}
|
|
13020
|
-
*/
|
|
13021
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13022
|
-
/**
|
|
13023
|
-
* Create An Order
|
|
13024
|
-
* @summary Create An Order
|
|
13025
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13026
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13027
|
-
* @param {*} [options] Override http request option.
|
|
13028
|
-
* @throws {RequiredError}
|
|
13029
|
-
*/
|
|
13030
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13031
|
-
/**
|
|
13032
|
-
* Update An Order (Admin)
|
|
13033
|
-
* @summary Update An Order (Admin)
|
|
13034
|
-
* @param {number} id Order ID
|
|
13035
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13036
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13037
|
-
* @param {*} [options] Override http request option.
|
|
13038
|
-
* @throws {RequiredError}
|
|
13039
|
-
*/
|
|
13040
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13041
|
-
/**
|
|
13042
|
-
* Update An Order
|
|
13043
|
-
* @summary Update An Order
|
|
13044
|
-
* @param {number} id Order ID
|
|
13045
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13046
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13047
|
-
* @param {*} [options] Override http request option.
|
|
13048
|
-
* @throws {RequiredError}
|
|
13049
|
-
*/
|
|
13050
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
13051
11930
|
};
|
|
13052
11931
|
/**
|
|
13053
11932
|
* OrdersApi - object-oriented interface
|
|
@@ -13058,31 +11937,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13058
11937
|
export declare class OrdersApi extends BaseAPI {
|
|
13059
11938
|
/**
|
|
13060
11939
|
* Delete Orders
|
|
13061
|
-
* @summary Delete Orders
|
|
13062
|
-
* @param {number} id Order ID
|
|
13063
|
-
* @param {*} [options] Override http request option.
|
|
13064
|
-
* @throws {RequiredError}
|
|
13065
|
-
* @memberof OrdersApi
|
|
13066
|
-
*/
|
|
13067
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13068
|
-
/**
|
|
13069
|
-
* Get Editable Order (Admin)
|
|
13070
|
-
* @summary Get Editable Order (Admin)
|
|
13071
|
-
* @param {number} id Order ID
|
|
13072
|
-
* @param {*} [options] Override http request option.
|
|
13073
|
-
* @throws {RequiredError}
|
|
13074
|
-
* @memberof OrdersApi
|
|
13075
|
-
*/
|
|
13076
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
13077
|
-
/**
|
|
13078
|
-
* Get Editable Order
|
|
13079
|
-
* @summary Get Editable Order
|
|
13080
11940
|
* @param {number} id Order ID
|
|
13081
11941
|
* @param {*} [options] Override http request option.
|
|
13082
11942
|
* @throws {RequiredError}
|
|
13083
11943
|
* @memberof OrdersApi
|
|
13084
11944
|
*/
|
|
13085
|
-
|
|
11945
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13086
11946
|
/**
|
|
13087
11947
|
* Get Orders
|
|
13088
11948
|
* @summary Get Orders
|
|
@@ -13098,48 +11958,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13098
11958
|
* @memberof OrdersApi
|
|
13099
11959
|
*/
|
|
13100
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, {}>>;
|
|
13101
|
-
/**
|
|
13102
|
-
* Create An Order (Admin)
|
|
13103
|
-
* @summary Create An Order (Admin)
|
|
13104
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13105
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
13106
|
-
* @param {*} [options] Override http request option.
|
|
13107
|
-
* @throws {RequiredError}
|
|
13108
|
-
* @memberof OrdersApi
|
|
13109
|
-
*/
|
|
13110
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13111
|
-
/**
|
|
13112
|
-
* Create An Order
|
|
13113
|
-
* @summary Create An Order
|
|
13114
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13115
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13116
|
-
* @param {*} [options] Override http request option.
|
|
13117
|
-
* @throws {RequiredError}
|
|
13118
|
-
* @memberof OrdersApi
|
|
13119
|
-
*/
|
|
13120
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13121
|
-
/**
|
|
13122
|
-
* Update An Order (Admin)
|
|
13123
|
-
* @summary Update An Order (Admin)
|
|
13124
|
-
* @param {number} id Order ID
|
|
13125
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13126
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
13127
|
-
* @param {*} [options] Override http request option.
|
|
13128
|
-
* @throws {RequiredError}
|
|
13129
|
-
* @memberof OrdersApi
|
|
13130
|
-
*/
|
|
13131
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13132
|
-
/**
|
|
13133
|
-
* Update An Order
|
|
13134
|
-
* @summary Update An Order
|
|
13135
|
-
* @param {number} id Order ID
|
|
13136
|
-
* @param {boolean} [readonly] Readonly Order
|
|
13137
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
13138
|
-
* @param {*} [options] Override http request option.
|
|
13139
|
-
* @throws {RequiredError}
|
|
13140
|
-
* @memberof OrdersApi
|
|
13141
|
-
*/
|
|
13142
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
13143
11961
|
}
|
|
13144
11962
|
/**
|
|
13145
11963
|
* @export
|
|
@@ -13395,6 +12213,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13395
12213
|
* @throws {RequiredError}
|
|
13396
12214
|
*/
|
|
13397
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>;
|
|
13398
12223
|
/**
|
|
13399
12224
|
* Get Current Stock & Pricing
|
|
13400
12225
|
* @summary Get Current Stock & Pricing
|
|
@@ -13407,10 +12232,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13407
12232
|
/**
|
|
13408
12233
|
* Get Products
|
|
13409
12234
|
* @summary Get Products
|
|
12235
|
+
* @param {number} [pageSize] Number Of Results
|
|
12236
|
+
* @param {number} [page] Page Number
|
|
12237
|
+
* @param {string} [search] Search
|
|
13410
12238
|
* @param {*} [options] Override http request option.
|
|
13411
12239
|
* @throws {RequiredError}
|
|
13412
12240
|
*/
|
|
13413
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12241
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13414
12242
|
/**
|
|
13415
12243
|
* Get Current Stock & Pricing
|
|
13416
12244
|
* @summary Get Current Stock & Pricing
|
|
@@ -13425,35 +12253,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13425
12253
|
* @throws {RequiredError}
|
|
13426
12254
|
*/
|
|
13427
12255
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13428
|
-
/**
|
|
13429
|
-
* Search Products
|
|
13430
|
-
* @summary Search Products
|
|
13431
|
-
* @param {number} [pageSize] Number Of Results
|
|
13432
|
-
* @param {number} [page] Page Number
|
|
13433
|
-
* @param {string} [search] Search
|
|
13434
|
-
* @param {*} [options] Override http request option.
|
|
13435
|
-
* @throws {RequiredError}
|
|
13436
|
-
*/
|
|
13437
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13438
|
-
/**
|
|
13439
|
-
* Get Product
|
|
13440
|
-
* @summary Get Product
|
|
13441
|
-
* @param {string} sku Product SKU
|
|
13442
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13443
|
-
* @param {*} [options] Override http request option.
|
|
13444
|
-
* @throws {RequiredError}
|
|
13445
|
-
*/
|
|
13446
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13447
|
-
/**
|
|
13448
|
-
* Get Product For Customer
|
|
13449
|
-
* @summary Get Product For Customer
|
|
13450
|
-
* @param {number} customerId Customer ID
|
|
13451
|
-
* @param {string} sku Product SKU
|
|
13452
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13453
|
-
* @param {*} [options] Override http request option.
|
|
13454
|
-
* @throws {RequiredError}
|
|
13455
|
-
*/
|
|
13456
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13457
12256
|
};
|
|
13458
12257
|
/**
|
|
13459
12258
|
* ProductsApi - functional programming interface
|
|
@@ -13467,6 +12266,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13467
12266
|
* @throws {RequiredError}
|
|
13468
12267
|
*/
|
|
13469
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>>>;
|
|
13470
12276
|
/**
|
|
13471
12277
|
* Get Current Stock & Pricing
|
|
13472
12278
|
* @summary Get Current Stock & Pricing
|
|
@@ -13479,10 +12285,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13479
12285
|
/**
|
|
13480
12286
|
* Get Products
|
|
13481
12287
|
* @summary Get Products
|
|
12288
|
+
* @param {number} [pageSize] Number Of Results
|
|
12289
|
+
* @param {number} [page] Page Number
|
|
12290
|
+
* @param {string} [search] Search
|
|
13482
12291
|
* @param {*} [options] Override http request option.
|
|
13483
12292
|
* @throws {RequiredError}
|
|
13484
12293
|
*/
|
|
13485
|
-
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>>;
|
|
13486
12295
|
/**
|
|
13487
12296
|
* Get Current Stock & Pricing
|
|
13488
12297
|
* @summary Get Current Stock & Pricing
|
|
@@ -13497,35 +12306,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13497
12306
|
* @throws {RequiredError}
|
|
13498
12307
|
*/
|
|
13499
12308
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13500
|
-
/**
|
|
13501
|
-
* Search Products
|
|
13502
|
-
* @summary Search Products
|
|
13503
|
-
* @param {number} [pageSize] Number Of Results
|
|
13504
|
-
* @param {number} [page] Page Number
|
|
13505
|
-
* @param {string} [search] Search
|
|
13506
|
-
* @param {*} [options] Override http request option.
|
|
13507
|
-
* @throws {RequiredError}
|
|
13508
|
-
*/
|
|
13509
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13510
|
-
/**
|
|
13511
|
-
* Get Product
|
|
13512
|
-
* @summary Get Product
|
|
13513
|
-
* @param {string} sku Product SKU
|
|
13514
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13515
|
-
* @param {*} [options] Override http request option.
|
|
13516
|
-
* @throws {RequiredError}
|
|
13517
|
-
*/
|
|
13518
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13519
|
-
/**
|
|
13520
|
-
* Get Product For Customer
|
|
13521
|
-
* @summary Get Product For Customer
|
|
13522
|
-
* @param {number} customerId Customer ID
|
|
13523
|
-
* @param {string} sku Product SKU
|
|
13524
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13525
|
-
* @param {*} [options] Override http request option.
|
|
13526
|
-
* @throws {RequiredError}
|
|
13527
|
-
*/
|
|
13528
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13529
12309
|
};
|
|
13530
12310
|
/**
|
|
13531
12311
|
* ProductsApi - factory interface
|
|
@@ -13539,6 +12319,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13539
12319
|
* @throws {RequiredError}
|
|
13540
12320
|
*/
|
|
13541
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>>;
|
|
13542
12329
|
/**
|
|
13543
12330
|
* Get Current Stock & Pricing
|
|
13544
12331
|
* @summary Get Current Stock & Pricing
|
|
@@ -13551,10 +12338,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13551
12338
|
/**
|
|
13552
12339
|
* Get Products
|
|
13553
12340
|
* @summary Get Products
|
|
12341
|
+
* @param {number} [pageSize] Number Of Results
|
|
12342
|
+
* @param {number} [page] Page Number
|
|
12343
|
+
* @param {string} [search] Search
|
|
13554
12344
|
* @param {*} [options] Override http request option.
|
|
13555
12345
|
* @throws {RequiredError}
|
|
13556
12346
|
*/
|
|
13557
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12347
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13558
12348
|
/**
|
|
13559
12349
|
* Get Current Stock & Pricing
|
|
13560
12350
|
* @summary Get Current Stock & Pricing
|
|
@@ -13569,35 +12359,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13569
12359
|
* @throws {RequiredError}
|
|
13570
12360
|
*/
|
|
13571
12361
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13572
|
-
/**
|
|
13573
|
-
* Search Products
|
|
13574
|
-
* @summary Search Products
|
|
13575
|
-
* @param {number} [pageSize] Number Of Results
|
|
13576
|
-
* @param {number} [page] Page Number
|
|
13577
|
-
* @param {string} [search] Search
|
|
13578
|
-
* @param {*} [options] Override http request option.
|
|
13579
|
-
* @throws {RequiredError}
|
|
13580
|
-
*/
|
|
13581
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13582
|
-
/**
|
|
13583
|
-
* Get Product
|
|
13584
|
-
* @summary Get Product
|
|
13585
|
-
* @param {string} sku Product SKU
|
|
13586
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13587
|
-
* @param {*} [options] Override http request option.
|
|
13588
|
-
* @throws {RequiredError}
|
|
13589
|
-
*/
|
|
13590
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13591
|
-
/**
|
|
13592
|
-
* Get Product For Customer
|
|
13593
|
-
* @summary Get Product For Customer
|
|
13594
|
-
* @param {number} customerId Customer ID
|
|
13595
|
-
* @param {string} sku Product SKU
|
|
13596
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13597
|
-
* @param {*} [options] Override http request option.
|
|
13598
|
-
* @throws {RequiredError}
|
|
13599
|
-
*/
|
|
13600
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13601
12362
|
};
|
|
13602
12363
|
/**
|
|
13603
12364
|
* ProductsApi - object-oriented interface
|
|
@@ -13614,6 +12375,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13614
12375
|
* @memberof ProductsApi
|
|
13615
12376
|
*/
|
|
13616
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, {}>>;
|
|
13617
12386
|
/**
|
|
13618
12387
|
* Get Current Stock & Pricing
|
|
13619
12388
|
* @summary Get Current Stock & Pricing
|
|
@@ -13627,11 +12396,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13627
12396
|
/**
|
|
13628
12397
|
* Get Products
|
|
13629
12398
|
* @summary Get Products
|
|
12399
|
+
* @param {number} [pageSize] Number Of Results
|
|
12400
|
+
* @param {number} [page] Page Number
|
|
12401
|
+
* @param {string} [search] Search
|
|
13630
12402
|
* @param {*} [options] Override http request option.
|
|
13631
12403
|
* @throws {RequiredError}
|
|
13632
12404
|
* @memberof ProductsApi
|
|
13633
12405
|
*/
|
|
13634
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12406
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13635
12407
|
/**
|
|
13636
12408
|
* Get Current Stock & Pricing
|
|
13637
12409
|
* @summary Get Current Stock & Pricing
|
|
@@ -13648,38 +12420,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13648
12420
|
* @memberof ProductsApi
|
|
13649
12421
|
*/
|
|
13650
12422
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13651
|
-
/**
|
|
13652
|
-
* Search Products
|
|
13653
|
-
* @summary Search Products
|
|
13654
|
-
* @param {number} [pageSize] Number Of Results
|
|
13655
|
-
* @param {number} [page] Page Number
|
|
13656
|
-
* @param {string} [search] Search
|
|
13657
|
-
* @param {*} [options] Override http request option.
|
|
13658
|
-
* @throws {RequiredError}
|
|
13659
|
-
* @memberof ProductsApi
|
|
13660
|
-
*/
|
|
13661
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13662
|
-
/**
|
|
13663
|
-
* Get Product
|
|
13664
|
-
* @summary Get Product
|
|
13665
|
-
* @param {string} sku Product SKU
|
|
13666
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13667
|
-
* @param {*} [options] Override http request option.
|
|
13668
|
-
* @throws {RequiredError}
|
|
13669
|
-
* @memberof ProductsApi
|
|
13670
|
-
*/
|
|
13671
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13672
|
-
/**
|
|
13673
|
-
* Get Product For Customer
|
|
13674
|
-
* @summary Get Product For Customer
|
|
13675
|
-
* @param {number} customerId Customer ID
|
|
13676
|
-
* @param {string} sku Product SKU
|
|
13677
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13678
|
-
* @param {*} [options] Override http request option.
|
|
13679
|
-
* @throws {RequiredError}
|
|
13680
|
-
* @memberof ProductsApi
|
|
13681
|
-
*/
|
|
13682
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13683
12423
|
}
|
|
13684
12424
|
/**
|
|
13685
12425
|
* @export
|
|
@@ -13800,7 +12540,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13800
12540
|
* @param {*} [options] Override http request option.
|
|
13801
12541
|
* @throws {RequiredError}
|
|
13802
12542
|
*/
|
|
13803
|
-
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>>>;
|
|
13804
12544
|
/**
|
|
13805
12545
|
* Create a Fanvil provisioning group
|
|
13806
12546
|
* @summary Add group to DB and FDPS
|
|
@@ -13808,7 +12548,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13808
12548
|
* @param {*} [options] Override http request option.
|
|
13809
12549
|
* @throws {RequiredError}
|
|
13810
12550
|
*/
|
|
13811
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12551
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13812
12552
|
/**
|
|
13813
12553
|
* Add MAC address to DB and FDPS group
|
|
13814
12554
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13865,7 +12605,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13865
12605
|
* @param {*} [options] Override http request option.
|
|
13866
12606
|
* @throws {RequiredError}
|
|
13867
12607
|
*/
|
|
13868
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12608
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13869
12609
|
/**
|
|
13870
12610
|
* Create a Fanvil provisioning group
|
|
13871
12611
|
* @summary Add group to DB and FDPS
|
|
@@ -13873,7 +12613,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13873
12613
|
* @param {*} [options] Override http request option.
|
|
13874
12614
|
* @throws {RequiredError}
|
|
13875
12615
|
*/
|
|
13876
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12616
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13877
12617
|
/**
|
|
13878
12618
|
* Add MAC address to DB and FDPS group
|
|
13879
12619
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13937,7 +12677,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13937
12677
|
* @throws {RequiredError}
|
|
13938
12678
|
* @memberof ProvisioningApi
|
|
13939
12679
|
*/
|
|
13940
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12680
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13941
12681
|
/**
|
|
13942
12682
|
* Create a Fanvil provisioning group
|
|
13943
12683
|
* @summary Add group to DB and FDPS
|
|
@@ -13946,7 +12686,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13946
12686
|
* @throws {RequiredError}
|
|
13947
12687
|
* @memberof ProvisioningApi
|
|
13948
12688
|
*/
|
|
13949
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12689
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13950
12690
|
/**
|
|
13951
12691
|
* Add MAC address to DB and FDPS group
|
|
13952
12692
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14821,65 +13561,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14821
13561
|
*/
|
|
14822
13562
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14823
13563
|
}
|
|
14824
|
-
/**
|
|
14825
|
-
* ShippingApi - axios parameter creator
|
|
14826
|
-
* @export
|
|
14827
|
-
*/
|
|
14828
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14829
|
-
/**
|
|
14830
|
-
* Get Shipping Services
|
|
14831
|
-
* @summary Get Shipping Services
|
|
14832
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14833
|
-
* @param {*} [options] Override http request option.
|
|
14834
|
-
* @throws {RequiredError}
|
|
14835
|
-
*/
|
|
14836
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14837
|
-
};
|
|
14838
|
-
/**
|
|
14839
|
-
* ShippingApi - functional programming interface
|
|
14840
|
-
* @export
|
|
14841
|
-
*/
|
|
14842
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14843
|
-
/**
|
|
14844
|
-
* Get Shipping Services
|
|
14845
|
-
* @summary Get Shipping Services
|
|
14846
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14847
|
-
* @param {*} [options] Override http request option.
|
|
14848
|
-
* @throws {RequiredError}
|
|
14849
|
-
*/
|
|
14850
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14851
|
-
};
|
|
14852
|
-
/**
|
|
14853
|
-
* ShippingApi - factory interface
|
|
14854
|
-
* @export
|
|
14855
|
-
*/
|
|
14856
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14857
|
-
/**
|
|
14858
|
-
* Get Shipping Services
|
|
14859
|
-
* @summary Get Shipping Services
|
|
14860
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14861
|
-
* @param {*} [options] Override http request option.
|
|
14862
|
-
* @throws {RequiredError}
|
|
14863
|
-
*/
|
|
14864
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14865
|
-
};
|
|
14866
|
-
/**
|
|
14867
|
-
* ShippingApi - object-oriented interface
|
|
14868
|
-
* @export
|
|
14869
|
-
* @class ShippingApi
|
|
14870
|
-
* @extends {BaseAPI}
|
|
14871
|
-
*/
|
|
14872
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14873
|
-
/**
|
|
14874
|
-
* Get Shipping Services
|
|
14875
|
-
* @summary Get Shipping Services
|
|
14876
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14877
|
-
* @param {*} [options] Override http request option.
|
|
14878
|
-
* @throws {RequiredError}
|
|
14879
|
-
* @memberof ShippingApi
|
|
14880
|
-
*/
|
|
14881
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14882
|
-
}
|
|
14883
13564
|
/**
|
|
14884
13565
|
* StockManagementApi - axios parameter creator
|
|
14885
13566
|
* @export
|
|
@@ -15209,7 +13890,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
15209
13890
|
* @param {*} [options] Override http request option.
|
|
15210
13891
|
* @throws {RequiredError}
|
|
15211
13892
|
*/
|
|
15212
|
-
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>>>;
|
|
15213
13894
|
/**
|
|
15214
13895
|
* Get Stock Order Supplier Invoice
|
|
15215
13896
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15424,7 +14105,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15424
14105
|
* @param {*} [options] Override http request option.
|
|
15425
14106
|
* @throws {RequiredError}
|
|
15426
14107
|
*/
|
|
15427
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14108
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15428
14109
|
/**
|
|
15429
14110
|
* Get Stock Order Supplier Invoice
|
|
15430
14111
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15654,7 +14335,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15654
14335
|
* @throws {RequiredError}
|
|
15655
14336
|
* @memberof StockManagementApi
|
|
15656
14337
|
*/
|
|
15657
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14338
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15658
14339
|
/**
|
|
15659
14340
|
* Get Stock Order Supplier Invoice
|
|
15660
14341
|
* @summary Get Stock Order Supplier Invoice
|