yellowgrid-api-ts 3.1.12 → 3.1.14-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +217 -198
- package/README.md +36 -7
- package/api.ts +1978 -242
- 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 +1478 -159
- package/dist/api.js +1139 -196
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AbstractOrderRequestDTO.md +33 -0
- package/docs/AccountDetailedSummaryDTO.md +39 -0
- package/docs/AccountsApi.md +103 -0
- package/docs/AddressModel.md +2 -0
- package/docs/AdminItemRequestDTO.md +43 -0
- package/docs/AdminOrderRequestDTO.md +45 -0
- package/docs/AdminUserModel.md +29 -0
- package/docs/BasicItemDTO.md +23 -0
- package/docs/BasicProductDTO.md +23 -0
- package/docs/Class3CXApi.md +0 -55
- package/docs/ClientDetailsModel.md +0 -2
- package/docs/CourierPriceEntity.md +39 -0
- package/docs/CustomerItemRequestDTO.md +37 -0
- package/docs/CustomerOrderRequestDTO.md +33 -0
- package/docs/DetailedItemRequestDTO.md +43 -0
- package/docs/DetailedOrderRequestDTO.md +33 -0
- package/docs/ItemDTO.md +12 -4
- package/docs/ItemDiscountEntity.md +33 -0
- package/docs/ItemEntity.md +4 -2
- package/docs/LinkedOrderEntity.md +23 -0
- package/docs/OrderSummaryDTO.md +8 -0
- package/docs/OrderTotalModel.md +2 -0
- package/docs/OrdersApi.md +356 -4
- package/docs/PostGetProductForCustomerRequest.md +24 -0
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryModel.md → ProductSummaryDTO.md} +5 -3
- package/docs/ProductsApi.md +164 -43
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningEntity.md → ProvisioningModel.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/ShippingApi.md +63 -0
- package/docs/ShippingConsignmentModel.md +26 -0
- package/docs/ShippingInformationDTO.md +25 -0
- package/docs/ShippingServiceDTO.md +23 -0
- package/docs/ShippingServiceModel.md +31 -0
- package/docs/{GetGetPasswordHash200Response.md → ShippingServicesModel.md} +5 -5
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcDTO.md +31 -0
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,6 +13,55 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
* Order Request
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AbstractOrderRequestDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface AbstractOrderRequestDTO {
|
|
22
|
+
/**
|
|
23
|
+
* Order Reference
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AbstractOrderRequestDTO
|
|
26
|
+
*/
|
|
27
|
+
'orderReference'?: string | 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
|
+
}
|
|
16
65
|
/**
|
|
17
66
|
* AccountContactsEntity
|
|
18
67
|
* @export
|
|
@@ -244,6 +293,73 @@ export interface AccountContactRequestModel {
|
|
|
244
293
|
*/
|
|
245
294
|
'despatchEmails'?: boolean;
|
|
246
295
|
}
|
|
296
|
+
/**
|
|
297
|
+
* Account Details
|
|
298
|
+
* @export
|
|
299
|
+
* @interface AccountDetailedSummaryDTO
|
|
300
|
+
*/
|
|
301
|
+
export interface AccountDetailedSummaryDTO {
|
|
302
|
+
/**
|
|
303
|
+
* ID
|
|
304
|
+
* @type {number}
|
|
305
|
+
* @memberof AccountDetailedSummaryDTO
|
|
306
|
+
*/
|
|
307
|
+
'id'?: number;
|
|
308
|
+
/**
|
|
309
|
+
* Xero ID
|
|
310
|
+
* @type {string}
|
|
311
|
+
* @memberof AccountDetailedSummaryDTO
|
|
312
|
+
*/
|
|
313
|
+
'xeroId'?: string;
|
|
314
|
+
/**
|
|
315
|
+
* Company
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof AccountDetailedSummaryDTO
|
|
318
|
+
*/
|
|
319
|
+
'company'?: string;
|
|
320
|
+
/**
|
|
321
|
+
* Credit Limit
|
|
322
|
+
* @type {number}
|
|
323
|
+
* @memberof AccountDetailedSummaryDTO
|
|
324
|
+
*/
|
|
325
|
+
'creditLimit'?: number;
|
|
326
|
+
/**
|
|
327
|
+
* Contacts
|
|
328
|
+
* @type {Array<AccountContactModel>}
|
|
329
|
+
* @memberof AccountDetailedSummaryDTO
|
|
330
|
+
*/
|
|
331
|
+
'contacts'?: Array<AccountContactModel>;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @type {AddressModel}
|
|
335
|
+
* @memberof AccountDetailedSummaryDTO
|
|
336
|
+
*/
|
|
337
|
+
'billingAddress'?: AddressModel;
|
|
338
|
+
/**
|
|
339
|
+
* Addresses
|
|
340
|
+
* @type {Array<AddressModel>}
|
|
341
|
+
* @memberof AccountDetailedSummaryDTO
|
|
342
|
+
*/
|
|
343
|
+
'addresses'?: Array<AddressModel>;
|
|
344
|
+
/**
|
|
345
|
+
* Provisioning URLs
|
|
346
|
+
* @type {Array<ProvisioningModel>}
|
|
347
|
+
* @memberof AccountDetailedSummaryDTO
|
|
348
|
+
*/
|
|
349
|
+
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
+
/**
|
|
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
|
+
}
|
|
247
363
|
/**
|
|
248
364
|
* New Account Request
|
|
249
365
|
* @export
|
|
@@ -493,6 +609,12 @@ export interface AddressModel {
|
|
|
493
609
|
* @memberof AddressModel
|
|
494
610
|
*/
|
|
495
611
|
'company'?: string;
|
|
612
|
+
/**
|
|
613
|
+
* Default
|
|
614
|
+
* @type {boolean}
|
|
615
|
+
* @memberof AddressModel
|
|
616
|
+
*/
|
|
617
|
+
'default'?: boolean;
|
|
496
618
|
}
|
|
497
619
|
/**
|
|
498
620
|
* Address Request
|
|
@@ -525,6 +647,136 @@ export interface AddressRequestModel {
|
|
|
525
647
|
*/
|
|
526
648
|
'addressPostcode'?: string;
|
|
527
649
|
}
|
|
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];
|
|
528
780
|
/**
|
|
529
781
|
* Agent Hours Graph
|
|
530
782
|
* @export
|
|
@@ -754,6 +1006,44 @@ export interface AuthCodeResponseModel {
|
|
|
754
1006
|
*/
|
|
755
1007
|
'redirect_uri'?: string | null;
|
|
756
1008
|
}
|
|
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
|
+
}
|
|
757
1047
|
/**
|
|
758
1048
|
* BatchesEntity
|
|
759
1049
|
* @export
|
|
@@ -948,12 +1238,6 @@ export interface ClientDetailsModel {
|
|
|
948
1238
|
* @memberof ClientDetailsModel
|
|
949
1239
|
*/
|
|
950
1240
|
'lastName'?: string;
|
|
951
|
-
/**
|
|
952
|
-
* User Profile Picture
|
|
953
|
-
* @type {string}
|
|
954
|
-
* @memberof ClientDetailsModel
|
|
955
|
-
*/
|
|
956
|
-
'image'?: string | null;
|
|
957
1241
|
}
|
|
958
1242
|
/**
|
|
959
1243
|
* OAuth client details
|
|
@@ -1115,6 +1399,73 @@ export interface ConversationModel {
|
|
|
1115
1399
|
*/
|
|
1116
1400
|
'attachments'?: Array<AttachmentModel>;
|
|
1117
1401
|
}
|
|
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
|
+
}
|
|
1118
1469
|
/**
|
|
1119
1470
|
* Credit Account
|
|
1120
1471
|
* @export
|
|
@@ -1346,6 +1697,116 @@ export interface CustomerInformationModel {
|
|
|
1346
1697
|
*/
|
|
1347
1698
|
'contactLastName'?: string;
|
|
1348
1699
|
}
|
|
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
|
+
}
|
|
1349
1810
|
/**
|
|
1350
1811
|
* Customer Price List
|
|
1351
1812
|
* @export
|
|
@@ -1446,6 +1907,134 @@ export interface DdiRangesRequestModel {
|
|
|
1446
1907
|
*/
|
|
1447
1908
|
'ranges'?: Array<DdiRangeRequestModel>;
|
|
1448
1909
|
}
|
|
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
|
+
}
|
|
1449
2038
|
/**
|
|
1450
2039
|
* Divert Request
|
|
1451
2040
|
* @export
|
|
@@ -1852,19 +2441,6 @@ export interface GenericFileModel {
|
|
|
1852
2441
|
*/
|
|
1853
2442
|
'type'?: string;
|
|
1854
2443
|
}
|
|
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
|
-
}
|
|
1868
2444
|
/**
|
|
1869
2445
|
*
|
|
1870
2446
|
* @export
|
|
@@ -2459,18 +3035,30 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2459
3035
|
* @interface ItemDTO
|
|
2460
3036
|
*/
|
|
2461
3037
|
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;
|
|
2462
3050
|
/**
|
|
2463
3051
|
* ID
|
|
2464
3052
|
* @type {number}
|
|
2465
3053
|
* @memberof ItemDTO
|
|
2466
3054
|
*/
|
|
2467
|
-
'id'?: number;
|
|
3055
|
+
'id'?: number | null;
|
|
2468
3056
|
/**
|
|
2469
3057
|
* Order ID
|
|
2470
3058
|
* @type {number}
|
|
2471
3059
|
* @memberof ItemDTO
|
|
2472
3060
|
*/
|
|
2473
|
-
'orderId'?: number;
|
|
3061
|
+
'orderId'?: number | null;
|
|
2474
3062
|
/**
|
|
2475
3063
|
* Title
|
|
2476
3064
|
* @type {string}
|
|
@@ -2478,54 +3066,121 @@ export interface ItemDTO {
|
|
|
2478
3066
|
*/
|
|
2479
3067
|
'title'?: string;
|
|
2480
3068
|
/**
|
|
2481
|
-
*
|
|
3069
|
+
* Price
|
|
3070
|
+
* @type {number}
|
|
3071
|
+
* @memberof ItemDTO
|
|
3072
|
+
*/
|
|
3073
|
+
'price'?: number;
|
|
3074
|
+
/**
|
|
3075
|
+
* 3CX Licence Key
|
|
2482
3076
|
* @type {string}
|
|
2483
3077
|
* @memberof ItemDTO
|
|
2484
3078
|
*/
|
|
2485
|
-
'
|
|
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
|
|
3124
|
+
* @type {string}
|
|
3125
|
+
* @memberof ItemDTO
|
|
3126
|
+
*/
|
|
3127
|
+
'tcxSalesCode'?: string | null;
|
|
3128
|
+
}
|
|
3129
|
+
/**
|
|
3130
|
+
* ItemDiscountsEntity
|
|
3131
|
+
* @export
|
|
3132
|
+
* @interface ItemDiscountEntity
|
|
3133
|
+
*/
|
|
3134
|
+
export interface ItemDiscountEntity {
|
|
2486
3135
|
/**
|
|
2487
|
-
*
|
|
3136
|
+
* id
|
|
2488
3137
|
* @type {number}
|
|
2489
|
-
* @memberof
|
|
3138
|
+
* @memberof ItemDiscountEntity
|
|
2490
3139
|
*/
|
|
2491
|
-
'
|
|
3140
|
+
'id'?: number;
|
|
2492
3141
|
/**
|
|
2493
|
-
*
|
|
3142
|
+
* itemId
|
|
2494
3143
|
* @type {number}
|
|
2495
|
-
* @memberof
|
|
3144
|
+
* @memberof ItemDiscountEntity
|
|
2496
3145
|
*/
|
|
2497
|
-
'
|
|
3146
|
+
'itemId'?: number;
|
|
2498
3147
|
/**
|
|
2499
|
-
*
|
|
3148
|
+
* priceList
|
|
2500
3149
|
* @type {string}
|
|
2501
|
-
* @memberof
|
|
3150
|
+
* @memberof ItemDiscountEntity
|
|
2502
3151
|
*/
|
|
2503
|
-
'
|
|
3152
|
+
'priceList'?: string;
|
|
2504
3153
|
/**
|
|
2505
|
-
*
|
|
2506
|
-
* @type {
|
|
2507
|
-
* @memberof
|
|
3154
|
+
* discount
|
|
3155
|
+
* @type {number}
|
|
3156
|
+
* @memberof ItemDiscountEntity
|
|
2508
3157
|
*/
|
|
2509
|
-
'
|
|
3158
|
+
'discount'?: number;
|
|
2510
3159
|
/**
|
|
2511
|
-
*
|
|
3160
|
+
* type
|
|
2512
3161
|
* @type {string}
|
|
2513
|
-
* @memberof
|
|
3162
|
+
* @memberof ItemDiscountEntity
|
|
2514
3163
|
*/
|
|
2515
|
-
'
|
|
3164
|
+
'type'?: ItemDiscountEntityTypeEnum | null;
|
|
2516
3165
|
/**
|
|
2517
|
-
*
|
|
2518
|
-
* @type {
|
|
2519
|
-
* @memberof
|
|
3166
|
+
* description
|
|
3167
|
+
* @type {string}
|
|
3168
|
+
* @memberof ItemDiscountEntity
|
|
2520
3169
|
*/
|
|
2521
|
-
'
|
|
3170
|
+
'description'?: string;
|
|
2522
3171
|
/**
|
|
2523
|
-
*
|
|
3172
|
+
* priority
|
|
2524
3173
|
* @type {number}
|
|
2525
|
-
* @memberof
|
|
3174
|
+
* @memberof ItemDiscountEntity
|
|
2526
3175
|
*/
|
|
2527
|
-
'
|
|
3176
|
+
'priority'?: number;
|
|
2528
3177
|
}
|
|
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];
|
|
2529
3184
|
/**
|
|
2530
3185
|
* ItemsEntity
|
|
2531
3186
|
* @export
|
|
@@ -2633,7 +3288,7 @@ export interface ItemEntity {
|
|
|
2633
3288
|
* @type {string}
|
|
2634
3289
|
* @memberof ItemEntity
|
|
2635
3290
|
*/
|
|
2636
|
-
'
|
|
3291
|
+
'licenceKey'?: string;
|
|
2637
3292
|
/**
|
|
2638
3293
|
* addHosting
|
|
2639
3294
|
* @type {number}
|
|
@@ -2658,6 +3313,31 @@ export interface ItemEntity {
|
|
|
2658
3313
|
* @memberof ItemEntity
|
|
2659
3314
|
*/
|
|
2660
3315
|
'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;
|
|
2661
3341
|
}
|
|
2662
3342
|
/**
|
|
2663
3343
|
* MFA Required
|
|
@@ -3311,13 +3991,19 @@ export interface OrderSummaryDTO {
|
|
|
3311
3991
|
* @type {string}
|
|
3312
3992
|
* @memberof OrderSummaryDTO
|
|
3313
3993
|
*/
|
|
3314
|
-
'reference'?: string;
|
|
3994
|
+
'reference'?: string | null;
|
|
3315
3995
|
/**
|
|
3316
3996
|
* Invoice Number
|
|
3317
3997
|
* @type {string}
|
|
3318
3998
|
* @memberof OrderSummaryDTO
|
|
3319
3999
|
*/
|
|
3320
4000
|
'invoiceNumber'?: string;
|
|
4001
|
+
/**
|
|
4002
|
+
* Invoice ID
|
|
4003
|
+
* @type {string}
|
|
4004
|
+
* @memberof OrderSummaryDTO
|
|
4005
|
+
*/
|
|
4006
|
+
'invoiceId'?: string | null;
|
|
3321
4007
|
/**
|
|
3322
4008
|
* Date Time
|
|
3323
4009
|
* @type {string}
|
|
@@ -3372,6 +4058,24 @@ export interface OrderSummaryDTO {
|
|
|
3372
4058
|
* @memberof OrderSummaryDTO
|
|
3373
4059
|
*/
|
|
3374
4060
|
'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;
|
|
3375
4079
|
}
|
|
3376
4080
|
/**
|
|
3377
4081
|
* Order Totals
|
|
@@ -3421,6 +4125,12 @@ export interface OrderTotalModel {
|
|
|
3421
4125
|
* @memberof OrderTotalModel
|
|
3422
4126
|
*/
|
|
3423
4127
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
4128
|
+
/**
|
|
4129
|
+
* Delivery
|
|
4130
|
+
* @type {number}
|
|
4131
|
+
* @memberof OrderTotalModel
|
|
4132
|
+
*/
|
|
4133
|
+
'delivery'?: number | null;
|
|
3424
4134
|
}
|
|
3425
4135
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3426
4136
|
readonly Eur: "EUR";
|
|
@@ -3799,6 +4509,31 @@ export interface PostGetClientCredentialsRequest {
|
|
|
3799
4509
|
*/
|
|
3800
4510
|
'scopes'?: Array<string>;
|
|
3801
4511
|
}
|
|
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
|
+
}
|
|
3802
4537
|
/**
|
|
3803
4538
|
* Price & Stock List
|
|
3804
4539
|
* @export
|
|
@@ -3930,10 +4665,10 @@ export interface ProductPriceListItemModel {
|
|
|
3930
4665
|
export interface ProductSearchResultsModel {
|
|
3931
4666
|
/**
|
|
3932
4667
|
* Results
|
|
3933
|
-
* @type {Array<
|
|
4668
|
+
* @type {Array<ProductSummaryDTO>}
|
|
3934
4669
|
* @memberof ProductSearchResultsModel
|
|
3935
4670
|
*/
|
|
3936
|
-
'results'?: Array<
|
|
4671
|
+
'results'?: Array<ProductSummaryDTO>;
|
|
3937
4672
|
}
|
|
3938
4673
|
/**
|
|
3939
4674
|
* Product Serial Info
|
|
@@ -3969,45 +4704,51 @@ export interface ProductSerialInfoModel {
|
|
|
3969
4704
|
/**
|
|
3970
4705
|
* Product Summary
|
|
3971
4706
|
* @export
|
|
3972
|
-
* @interface
|
|
4707
|
+
* @interface ProductSummaryDTO
|
|
3973
4708
|
*/
|
|
3974
|
-
export interface
|
|
4709
|
+
export interface ProductSummaryDTO {
|
|
3975
4710
|
/**
|
|
3976
4711
|
* SKU
|
|
3977
4712
|
* @type {string}
|
|
3978
|
-
* @memberof
|
|
4713
|
+
* @memberof ProductSummaryDTO
|
|
3979
4714
|
*/
|
|
3980
4715
|
'sku'?: string;
|
|
3981
4716
|
/**
|
|
3982
4717
|
* Title
|
|
3983
4718
|
* @type {string}
|
|
3984
|
-
* @memberof
|
|
4719
|
+
* @memberof ProductSummaryDTO
|
|
3985
4720
|
*/
|
|
3986
4721
|
'title'?: string;
|
|
3987
4722
|
/**
|
|
3988
4723
|
* Stock Quantity
|
|
3989
4724
|
* @type {number}
|
|
3990
|
-
* @memberof
|
|
4725
|
+
* @memberof ProductSummaryDTO
|
|
3991
4726
|
*/
|
|
3992
4727
|
'quantity'?: number | null;
|
|
3993
4728
|
/**
|
|
3994
4729
|
* Stock Product
|
|
3995
4730
|
* @type {boolean}
|
|
3996
|
-
* @memberof
|
|
4731
|
+
* @memberof ProductSummaryDTO
|
|
3997
4732
|
*/
|
|
3998
4733
|
'stockProduct'?: boolean;
|
|
3999
4734
|
/**
|
|
4000
4735
|
* Price
|
|
4001
4736
|
* @type {number}
|
|
4002
|
-
* @memberof
|
|
4737
|
+
* @memberof ProductSummaryDTO
|
|
4003
4738
|
*/
|
|
4004
4739
|
'price'?: number | null;
|
|
4005
4740
|
/**
|
|
4006
4741
|
* Carton Size
|
|
4007
4742
|
* @type {number}
|
|
4008
|
-
* @memberof
|
|
4743
|
+
* @memberof ProductSummaryDTO
|
|
4009
4744
|
*/
|
|
4010
4745
|
'cartonSize'?: number | null;
|
|
4746
|
+
/**
|
|
4747
|
+
* RRP Price
|
|
4748
|
+
* @type {number}
|
|
4749
|
+
* @memberof ProductSummaryDTO
|
|
4750
|
+
*/
|
|
4751
|
+
'rrp'?: number | null;
|
|
4011
4752
|
}
|
|
4012
4753
|
/**
|
|
4013
4754
|
* PromoCodesEntity
|
|
@@ -4146,37 +4887,37 @@ export interface PromoItemsEntity {
|
|
|
4146
4887
|
/**
|
|
4147
4888
|
* Provisioning Group
|
|
4148
4889
|
* @export
|
|
4149
|
-
* @interface
|
|
4890
|
+
* @interface ProvisioningModel
|
|
4150
4891
|
*/
|
|
4151
|
-
export interface
|
|
4892
|
+
export interface ProvisioningModel {
|
|
4152
4893
|
/**
|
|
4153
4894
|
* Provisioning Group Name
|
|
4154
4895
|
* @type {string}
|
|
4155
|
-
* @memberof
|
|
4896
|
+
* @memberof ProvisioningModel
|
|
4156
4897
|
*/
|
|
4157
4898
|
'groupName'?: string;
|
|
4158
4899
|
/**
|
|
4159
4900
|
* Provisioning URL (Static Provisioning Server)
|
|
4160
4901
|
* @type {string}
|
|
4161
|
-
* @memberof
|
|
4902
|
+
* @memberof ProvisioningModel
|
|
4162
4903
|
*/
|
|
4163
4904
|
'provisioningUrl'?: string;
|
|
4164
4905
|
/**
|
|
4165
4906
|
* Additional Authentication Secret
|
|
4166
4907
|
* @type {string}
|
|
4167
|
-
* @memberof
|
|
4908
|
+
* @memberof ProvisioningModel
|
|
4168
4909
|
*/
|
|
4169
4910
|
'auth'?: string;
|
|
4170
4911
|
/**
|
|
4171
4912
|
* Provisioning Group ID
|
|
4172
4913
|
* @type {number}
|
|
4173
|
-
* @memberof
|
|
4914
|
+
* @memberof ProvisioningModel
|
|
4174
4915
|
*/
|
|
4175
4916
|
'id'?: number;
|
|
4176
4917
|
/**
|
|
4177
4918
|
* Owner ID
|
|
4178
4919
|
* @type {number}
|
|
4179
|
-
* @memberof
|
|
4920
|
+
* @memberof ProvisioningModel
|
|
4180
4921
|
*/
|
|
4181
4922
|
'customerId'?: number;
|
|
4182
4923
|
}
|
|
@@ -4530,7 +5271,7 @@ export interface ShipmentEntity {
|
|
|
4530
5271
|
* @type {string}
|
|
4531
5272
|
* @memberof ShipmentEntity
|
|
4532
5273
|
*/
|
|
4533
|
-
'
|
|
5274
|
+
'dateShipped'?: string;
|
|
4534
5275
|
/**
|
|
4535
5276
|
* requestDate
|
|
4536
5277
|
* @type {string}
|
|
@@ -4581,6 +5322,149 @@ export interface ShipmentItemEntity {
|
|
|
4581
5322
|
*/
|
|
4582
5323
|
'itemId'?: string;
|
|
4583
5324
|
}
|
|
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
|
+
}
|
|
4584
5468
|
/**
|
|
4585
5469
|
* Change Response
|
|
4586
5470
|
* @export
|
|
@@ -7400,6 +8284,49 @@ export interface TcxRemoteStorageModel {
|
|
|
7400
8284
|
*/
|
|
7401
8285
|
'secretAccessKey'?: string;
|
|
7402
8286
|
}
|
|
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
|
+
}
|
|
7403
8330
|
/**
|
|
7404
8331
|
* 3CX Wizard SBC
|
|
7405
8332
|
* @export
|
|
@@ -7504,7 +8431,7 @@ export interface TcxSbcEntity {
|
|
|
7504
8431
|
'technicalContact'?: string;
|
|
7505
8432
|
}
|
|
7506
8433
|
/**
|
|
7507
|
-
* 3CX SBC
|
|
8434
|
+
* 3CX Wizard SBC
|
|
7508
8435
|
* @export
|
|
7509
8436
|
* @interface TcxSbcModel
|
|
7510
8437
|
*/
|
|
@@ -8582,6 +9509,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8582
9509
|
* @throws {RequiredError}
|
|
8583
9510
|
*/
|
|
8584
9511
|
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>;
|
|
8585
9520
|
/**
|
|
8586
9521
|
* Get Accounts
|
|
8587
9522
|
* @summary Get Accounts
|
|
@@ -8647,6 +9582,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8647
9582
|
* @throws {RequiredError}
|
|
8648
9583
|
*/
|
|
8649
9584
|
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>;
|
|
8650
9592
|
/**
|
|
8651
9593
|
* Create client credentials
|
|
8652
9594
|
* @summary Create client credentials
|
|
@@ -8727,6 +9669,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8727
9669
|
* @throws {RequiredError}
|
|
8728
9670
|
*/
|
|
8729
9671
|
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>>;
|
|
8730
9680
|
/**
|
|
8731
9681
|
* Get Accounts
|
|
8732
9682
|
* @summary Get Accounts
|
|
@@ -8792,6 +9742,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8792
9742
|
* @throws {RequiredError}
|
|
8793
9743
|
*/
|
|
8794
9744
|
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>>;
|
|
8795
9752
|
/**
|
|
8796
9753
|
* Create client credentials
|
|
8797
9754
|
* @summary Create client credentials
|
|
@@ -8872,6 +9829,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8872
9829
|
* @throws {RequiredError}
|
|
8873
9830
|
*/
|
|
8874
9831
|
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>;
|
|
8875
9840
|
/**
|
|
8876
9841
|
* Get Accounts
|
|
8877
9842
|
* @summary Get Accounts
|
|
@@ -8937,6 +9902,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
8937
9902
|
* @throws {RequiredError}
|
|
8938
9903
|
*/
|
|
8939
9904
|
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>;
|
|
8940
9912
|
/**
|
|
8941
9913
|
* Create client credentials
|
|
8942
9914
|
* @summary Create client credentials
|
|
@@ -9023,6 +9995,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9023
9995
|
* @memberof AccountsApi
|
|
9024
9996
|
*/
|
|
9025
9997
|
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, {}>>;
|
|
9026
10007
|
/**
|
|
9027
10008
|
* Get Accounts
|
|
9028
10009
|
* @summary Get Accounts
|
|
@@ -9096,6 +10077,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9096
10077
|
* @memberof AccountsApi
|
|
9097
10078
|
*/
|
|
9098
10079
|
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, {}>>;
|
|
9099
10088
|
/**
|
|
9100
10089
|
* Create client credentials
|
|
9101
10090
|
* @summary Create client credentials
|
|
@@ -9209,14 +10198,6 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9209
10198
|
* @throws {RequiredError}
|
|
9210
10199
|
*/
|
|
9211
10200
|
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>;
|
|
9220
10201
|
/**
|
|
9221
10202
|
* Get Bulk 3CX Licence Details
|
|
9222
10203
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9239,14 +10220,6 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9239
10220
|
* @throws {RequiredError}
|
|
9240
10221
|
*/
|
|
9241
10222
|
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>>;
|
|
9250
10223
|
/**
|
|
9251
10224
|
* Get Bulk 3CX Licence Details
|
|
9252
10225
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9269,14 +10242,6 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9269
10242
|
* @throws {RequiredError}
|
|
9270
10243
|
*/
|
|
9271
10244
|
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>;
|
|
9280
10245
|
/**
|
|
9281
10246
|
* Get Bulk 3CX Licence Details
|
|
9282
10247
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9302,15 +10267,6 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9302
10267
|
* @memberof Class3CXApi
|
|
9303
10268
|
*/
|
|
9304
10269
|
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, {}>>;
|
|
9314
10270
|
/**
|
|
9315
10271
|
* Get Bulk 3CX Licence Details
|
|
9316
10272
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11854,11 +12810,28 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
11854
12810
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11855
12811
|
/**
|
|
11856
12812
|
* 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
|
|
11857
12830
|
* @param {number} id Order ID
|
|
11858
12831
|
* @param {*} [options] Override http request option.
|
|
11859
12832
|
* @throws {RequiredError}
|
|
11860
12833
|
*/
|
|
11861
|
-
|
|
12834
|
+
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11862
12835
|
/**
|
|
11863
12836
|
* Get Orders
|
|
11864
12837
|
* @summary Get Orders
|
|
@@ -11873,6 +12846,44 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11873
12846
|
* @throws {RequiredError}
|
|
11874
12847
|
*/
|
|
11875
12848
|
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>;
|
|
11876
12887
|
};
|
|
11877
12888
|
/**
|
|
11878
12889
|
* OrdersApi - functional programming interface
|
|
@@ -11881,11 +12892,28 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11881
12892
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
11882
12893
|
/**
|
|
11883
12894
|
* 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
|
|
11884
12912
|
* @param {number} id Order ID
|
|
11885
12913
|
* @param {*} [options] Override http request option.
|
|
11886
12914
|
* @throws {RequiredError}
|
|
11887
12915
|
*/
|
|
11888
|
-
|
|
12916
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
11889
12917
|
/**
|
|
11890
12918
|
* Get Orders
|
|
11891
12919
|
* @summary Get Orders
|
|
@@ -11900,6 +12928,44 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11900
12928
|
* @throws {RequiredError}
|
|
11901
12929
|
*/
|
|
11902
12930
|
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>>>;
|
|
11903
12969
|
};
|
|
11904
12970
|
/**
|
|
11905
12971
|
* OrdersApi - factory interface
|
|
@@ -11908,11 +12974,28 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
11908
12974
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11909
12975
|
/**
|
|
11910
12976
|
* 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
|
|
11911
12994
|
* @param {number} id Order ID
|
|
11912
12995
|
* @param {*} [options] Override http request option.
|
|
11913
12996
|
* @throws {RequiredError}
|
|
11914
12997
|
*/
|
|
11915
|
-
|
|
12998
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
11916
12999
|
/**
|
|
11917
13000
|
* Get Orders
|
|
11918
13001
|
* @summary Get Orders
|
|
@@ -11927,6 +13010,44 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11927
13010
|
* @throws {RequiredError}
|
|
11928
13011
|
*/
|
|
11929
13012
|
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>>;
|
|
11930
13051
|
};
|
|
11931
13052
|
/**
|
|
11932
13053
|
* OrdersApi - object-oriented interface
|
|
@@ -11937,12 +13058,31 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
11937
13058
|
export declare class OrdersApi extends BaseAPI {
|
|
11938
13059
|
/**
|
|
11939
13060
|
* 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
|
|
11940
13080
|
* @param {number} id Order ID
|
|
11941
13081
|
* @param {*} [options] Override http request option.
|
|
11942
13082
|
* @throws {RequiredError}
|
|
11943
13083
|
* @memberof OrdersApi
|
|
11944
13084
|
*/
|
|
11945
|
-
|
|
13085
|
+
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
11946
13086
|
/**
|
|
11947
13087
|
* Get Orders
|
|
11948
13088
|
* @summary Get Orders
|
|
@@ -11958,6 +13098,48 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
11958
13098
|
* @memberof OrdersApi
|
|
11959
13099
|
*/
|
|
11960
13100
|
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, {}>>;
|
|
11961
13143
|
}
|
|
11962
13144
|
/**
|
|
11963
13145
|
* @export
|
|
@@ -12213,13 +13395,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12213
13395
|
* @throws {RequiredError}
|
|
12214
13396
|
*/
|
|
12215
13397
|
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>;
|
|
12223
13398
|
/**
|
|
12224
13399
|
* Get Current Stock & Pricing
|
|
12225
13400
|
* @summary Get Current Stock & Pricing
|
|
@@ -12232,13 +13407,10 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12232
13407
|
/**
|
|
12233
13408
|
* Get Products
|
|
12234
13409
|
* @summary Get Products
|
|
12235
|
-
* @param {number} [pageSize] Number Of Results
|
|
12236
|
-
* @param {number} [page] Page Number
|
|
12237
|
-
* @param {string} [search] Search
|
|
12238
13410
|
* @param {*} [options] Override http request option.
|
|
12239
13411
|
* @throws {RequiredError}
|
|
12240
13412
|
*/
|
|
12241
|
-
getGetProducts: (
|
|
13413
|
+
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12242
13414
|
/**
|
|
12243
13415
|
* Get Current Stock & Pricing
|
|
12244
13416
|
* @summary Get Current Stock & Pricing
|
|
@@ -12253,6 +13425,35 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12253
13425
|
* @throws {RequiredError}
|
|
12254
13426
|
*/
|
|
12255
13427
|
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>;
|
|
12256
13457
|
};
|
|
12257
13458
|
/**
|
|
12258
13459
|
* ProductsApi - functional programming interface
|
|
@@ -12266,13 +13467,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12266
13467
|
* @throws {RequiredError}
|
|
12267
13468
|
*/
|
|
12268
13469
|
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>>>;
|
|
12276
13470
|
/**
|
|
12277
13471
|
* Get Current Stock & Pricing
|
|
12278
13472
|
* @summary Get Current Stock & Pricing
|
|
@@ -12285,13 +13479,10 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12285
13479
|
/**
|
|
12286
13480
|
* Get Products
|
|
12287
13481
|
* @summary Get Products
|
|
12288
|
-
* @param {number} [pageSize] Number Of Results
|
|
12289
|
-
* @param {number} [page] Page Number
|
|
12290
|
-
* @param {string} [search] Search
|
|
12291
13482
|
* @param {*} [options] Override http request option.
|
|
12292
13483
|
* @throws {RequiredError}
|
|
12293
13484
|
*/
|
|
12294
|
-
getGetProducts(
|
|
13485
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BasicProductDTO>>>;
|
|
12295
13486
|
/**
|
|
12296
13487
|
* Get Current Stock & Pricing
|
|
12297
13488
|
* @summary Get Current Stock & Pricing
|
|
@@ -12306,6 +13497,35 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
12306
13497
|
* @throws {RequiredError}
|
|
12307
13498
|
*/
|
|
12308
13499
|
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>>;
|
|
12309
13529
|
};
|
|
12310
13530
|
/**
|
|
12311
13531
|
* ProductsApi - factory interface
|
|
@@ -12319,13 +13539,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12319
13539
|
* @throws {RequiredError}
|
|
12320
13540
|
*/
|
|
12321
13541
|
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>>;
|
|
12329
13542
|
/**
|
|
12330
13543
|
* Get Current Stock & Pricing
|
|
12331
13544
|
* @summary Get Current Stock & Pricing
|
|
@@ -12338,13 +13551,10 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12338
13551
|
/**
|
|
12339
13552
|
* Get Products
|
|
12340
13553
|
* @summary Get Products
|
|
12341
|
-
* @param {number} [pageSize] Number Of Results
|
|
12342
|
-
* @param {number} [page] Page Number
|
|
12343
|
-
* @param {string} [search] Search
|
|
12344
13554
|
* @param {*} [options] Override http request option.
|
|
12345
13555
|
* @throws {RequiredError}
|
|
12346
13556
|
*/
|
|
12347
|
-
getGetProducts(
|
|
13557
|
+
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<Array<BasicProductDTO>>;
|
|
12348
13558
|
/**
|
|
12349
13559
|
* Get Current Stock & Pricing
|
|
12350
13560
|
* @summary Get Current Stock & Pricing
|
|
@@ -12359,6 +13569,35 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
12359
13569
|
* @throws {RequiredError}
|
|
12360
13570
|
*/
|
|
12361
13571
|
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>;
|
|
12362
13601
|
};
|
|
12363
13602
|
/**
|
|
12364
13603
|
* ProductsApi - object-oriented interface
|
|
@@ -12375,14 +13614,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12375
13614
|
* @memberof ProductsApi
|
|
12376
13615
|
*/
|
|
12377
13616
|
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, {}>>;
|
|
12386
13617
|
/**
|
|
12387
13618
|
* Get Current Stock & Pricing
|
|
12388
13619
|
* @summary Get Current Stock & Pricing
|
|
@@ -12396,14 +13627,11 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12396
13627
|
/**
|
|
12397
13628
|
* Get Products
|
|
12398
13629
|
* @summary Get Products
|
|
12399
|
-
* @param {number} [pageSize] Number Of Results
|
|
12400
|
-
* @param {number} [page] Page Number
|
|
12401
|
-
* @param {string} [search] Search
|
|
12402
13630
|
* @param {*} [options] Override http request option.
|
|
12403
13631
|
* @throws {RequiredError}
|
|
12404
13632
|
* @memberof ProductsApi
|
|
12405
13633
|
*/
|
|
12406
|
-
getGetProducts(
|
|
13634
|
+
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BasicProductDTO[], any, {}>>;
|
|
12407
13635
|
/**
|
|
12408
13636
|
* Get Current Stock & Pricing
|
|
12409
13637
|
* @summary Get Current Stock & Pricing
|
|
@@ -12420,6 +13648,38 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
12420
13648
|
* @memberof ProductsApi
|
|
12421
13649
|
*/
|
|
12422
13650
|
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, {}>>;
|
|
12423
13683
|
}
|
|
12424
13684
|
/**
|
|
12425
13685
|
* @export
|
|
@@ -12540,7 +13800,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12540
13800
|
* @param {*} [options] Override http request option.
|
|
12541
13801
|
* @throws {RequiredError}
|
|
12542
13802
|
*/
|
|
12543
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13803
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
|
|
12544
13804
|
/**
|
|
12545
13805
|
* Create a Fanvil provisioning group
|
|
12546
13806
|
* @summary Add group to DB and FDPS
|
|
@@ -12548,7 +13808,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
12548
13808
|
* @param {*} [options] Override http request option.
|
|
12549
13809
|
* @throws {RequiredError}
|
|
12550
13810
|
*/
|
|
12551
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13811
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
|
|
12552
13812
|
/**
|
|
12553
13813
|
* Add MAC address to DB and FDPS group
|
|
12554
13814
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12605,7 +13865,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12605
13865
|
* @param {*} [options] Override http request option.
|
|
12606
13866
|
* @throws {RequiredError}
|
|
12607
13867
|
*/
|
|
12608
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
13868
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
|
|
12609
13869
|
/**
|
|
12610
13870
|
* Create a Fanvil provisioning group
|
|
12611
13871
|
* @summary Add group to DB and FDPS
|
|
@@ -12613,7 +13873,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
12613
13873
|
* @param {*} [options] Override http request option.
|
|
12614
13874
|
* @throws {RequiredError}
|
|
12615
13875
|
*/
|
|
12616
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13876
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
|
|
12617
13877
|
/**
|
|
12618
13878
|
* Add MAC address to DB and FDPS group
|
|
12619
13879
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -12677,7 +13937,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12677
13937
|
* @throws {RequiredError}
|
|
12678
13938
|
* @memberof ProvisioningApi
|
|
12679
13939
|
*/
|
|
12680
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13940
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
|
|
12681
13941
|
/**
|
|
12682
13942
|
* Create a Fanvil provisioning group
|
|
12683
13943
|
* @summary Add group to DB and FDPS
|
|
@@ -12686,7 +13946,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
12686
13946
|
* @throws {RequiredError}
|
|
12687
13947
|
* @memberof ProvisioningApi
|
|
12688
13948
|
*/
|
|
12689
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13949
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
|
|
12690
13950
|
/**
|
|
12691
13951
|
* Add MAC address to DB and FDPS group
|
|
12692
13952
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13561,6 +14821,65 @@ export declare class SMSApi extends BaseAPI {
|
|
|
13561
14821
|
*/
|
|
13562
14822
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
13563
14823
|
}
|
|
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
|
+
}
|
|
13564
14883
|
/**
|
|
13565
14884
|
* StockManagementApi - axios parameter creator
|
|
13566
14885
|
* @export
|
|
@@ -13890,7 +15209,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
13890
15209
|
* @param {*} [options] Override http request option.
|
|
13891
15210
|
* @throws {RequiredError}
|
|
13892
15211
|
*/
|
|
13893
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15212
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryDTO>>>;
|
|
13894
15213
|
/**
|
|
13895
15214
|
* Get Stock Order Supplier Invoice
|
|
13896
15215
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14105,7 +15424,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
14105
15424
|
* @param {*} [options] Override http request option.
|
|
14106
15425
|
* @throws {RequiredError}
|
|
14107
15426
|
*/
|
|
14108
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
15427
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryDTO>>;
|
|
14109
15428
|
/**
|
|
14110
15429
|
* Get Stock Order Supplier Invoice
|
|
14111
15430
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -14335,7 +15654,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
14335
15654
|
* @throws {RequiredError}
|
|
14336
15655
|
* @memberof StockManagementApi
|
|
14337
15656
|
*/
|
|
14338
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15657
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO[], any, {}>>;
|
|
14339
15658
|
/**
|
|
14340
15659
|
* Get Stock Order Supplier Invoice
|
|
14341
15660
|
* @summary Get Stock Order Supplier Invoice
|