yellowgrid-api-ts 3.1.5-dev.0 → 3.1.6
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 +197 -213
- package/README.md +9 -34
- package/api.ts +406 -1877
- 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 +243 -1346
- package/dist/api.js +306 -1129
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AccountsApi.md +0 -103
- package/docs/AddressModel.md +0 -2
- package/docs/CRMApi.md +55 -0
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/CrmContactDTO.md +31 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -12
- package/docs/ItemEntity.md +0 -2
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -356
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +43 -164
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -39
- package/docs/AdminItemRequestDTO.md +0 -39
- package/docs/AdminOrderRequestDTO.md +0 -45
- package/docs/AdminUserModel.md +0 -29
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -35
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/PostGetProductForCustomerRequest.md +0 -24
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/TcxSbcDTO.md +0 -31
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -13,55 +13,6 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
* Order Request
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AbstractOrderRequestDTO
|
|
20
|
-
*/
|
|
21
|
-
export interface AbstractOrderRequestDTO {
|
|
22
|
-
/**
|
|
23
|
-
* Order Reference
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AbstractOrderRequestDTO
|
|
26
|
-
*/
|
|
27
|
-
'orderReference'?: string | null;
|
|
28
|
-
/**
|
|
29
|
-
* Items
|
|
30
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
31
|
-
* @memberof AbstractOrderRequestDTO
|
|
32
|
-
*/
|
|
33
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {ShippingServiceDTO}
|
|
37
|
-
* @memberof AbstractOrderRequestDTO
|
|
38
|
-
*/
|
|
39
|
-
'shippingService'?: ShippingServiceDTO;
|
|
40
|
-
/**
|
|
41
|
-
* Provisioning URL
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AbstractOrderRequestDTO
|
|
44
|
-
*/
|
|
45
|
-
'provisioningUrl'?: string | null;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {AddressModel}
|
|
49
|
-
* @memberof AbstractOrderRequestDTO
|
|
50
|
-
*/
|
|
51
|
-
'shippingAddress'?: AddressModel | null;
|
|
52
|
-
/**
|
|
53
|
-
* Part Ship Order
|
|
54
|
-
* @type {boolean}
|
|
55
|
-
* @memberof AbstractOrderRequestDTO
|
|
56
|
-
*/
|
|
57
|
-
'partShip'?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Quote
|
|
60
|
-
* @type {boolean}
|
|
61
|
-
* @memberof AbstractOrderRequestDTO
|
|
62
|
-
*/
|
|
63
|
-
'quote'?: boolean;
|
|
64
|
-
}
|
|
65
16
|
/**
|
|
66
17
|
* AccountContactsEntity
|
|
67
18
|
* @export
|
|
@@ -293,73 +244,6 @@ export interface AccountContactRequestModel {
|
|
|
293
244
|
*/
|
|
294
245
|
'despatchEmails'?: boolean;
|
|
295
246
|
}
|
|
296
|
-
/**
|
|
297
|
-
* Account Details
|
|
298
|
-
* @export
|
|
299
|
-
* @interface AccountDetailedSummaryDTO
|
|
300
|
-
*/
|
|
301
|
-
export interface AccountDetailedSummaryDTO {
|
|
302
|
-
/**
|
|
303
|
-
* ID
|
|
304
|
-
* @type {number}
|
|
305
|
-
* @memberof AccountDetailedSummaryDTO
|
|
306
|
-
*/
|
|
307
|
-
'id'?: number;
|
|
308
|
-
/**
|
|
309
|
-
* Xero ID
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof AccountDetailedSummaryDTO
|
|
312
|
-
*/
|
|
313
|
-
'xeroId'?: string;
|
|
314
|
-
/**
|
|
315
|
-
* Company
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof AccountDetailedSummaryDTO
|
|
318
|
-
*/
|
|
319
|
-
'company'?: string;
|
|
320
|
-
/**
|
|
321
|
-
* Credit Limit
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof AccountDetailedSummaryDTO
|
|
324
|
-
*/
|
|
325
|
-
'creditLimit'?: number;
|
|
326
|
-
/**
|
|
327
|
-
* Contacts
|
|
328
|
-
* @type {Array<AccountContactModel>}
|
|
329
|
-
* @memberof AccountDetailedSummaryDTO
|
|
330
|
-
*/
|
|
331
|
-
'contacts'?: Array<AccountContactModel>;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {AddressModel}
|
|
335
|
-
* @memberof AccountDetailedSummaryDTO
|
|
336
|
-
*/
|
|
337
|
-
'billingAddress'?: AddressModel;
|
|
338
|
-
/**
|
|
339
|
-
* Addresses
|
|
340
|
-
* @type {Array<AddressModel>}
|
|
341
|
-
* @memberof AccountDetailedSummaryDTO
|
|
342
|
-
*/
|
|
343
|
-
'addresses'?: Array<AddressModel>;
|
|
344
|
-
/**
|
|
345
|
-
* Provisioning URLs
|
|
346
|
-
* @type {Array<ProvisioningModel>}
|
|
347
|
-
* @memberof AccountDetailedSummaryDTO
|
|
348
|
-
*/
|
|
349
|
-
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
-
/**
|
|
351
|
-
* On Hold
|
|
352
|
-
* @type {boolean}
|
|
353
|
-
* @memberof AccountDetailedSummaryDTO
|
|
354
|
-
*/
|
|
355
|
-
'onHold'?: boolean;
|
|
356
|
-
/**
|
|
357
|
-
* Balance (£)
|
|
358
|
-
* @type {number}
|
|
359
|
-
* @memberof AccountDetailedSummaryDTO
|
|
360
|
-
*/
|
|
361
|
-
'balance'?: number | null;
|
|
362
|
-
}
|
|
363
247
|
/**
|
|
364
248
|
* New Account Request
|
|
365
249
|
* @export
|
|
@@ -609,12 +493,6 @@ export interface AddressModel {
|
|
|
609
493
|
* @memberof AddressModel
|
|
610
494
|
*/
|
|
611
495
|
'company'?: string;
|
|
612
|
-
/**
|
|
613
|
-
* Default
|
|
614
|
-
* @type {boolean}
|
|
615
|
-
* @memberof AddressModel
|
|
616
|
-
*/
|
|
617
|
-
'default'?: boolean;
|
|
618
496
|
}
|
|
619
497
|
/**
|
|
620
498
|
* Address Request
|
|
@@ -647,203 +525,6 @@ export interface AddressRequestModel {
|
|
|
647
525
|
*/
|
|
648
526
|
'addressPostcode'?: string;
|
|
649
527
|
}
|
|
650
|
-
/**
|
|
651
|
-
* Admin Order Item Request
|
|
652
|
-
* @export
|
|
653
|
-
* @interface AdminItemRequestDTO
|
|
654
|
-
*/
|
|
655
|
-
export interface AdminItemRequestDTO {
|
|
656
|
-
/**
|
|
657
|
-
* SKU
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof AdminItemRequestDTO
|
|
660
|
-
*/
|
|
661
|
-
'sku'?: string;
|
|
662
|
-
/**
|
|
663
|
-
* Quantity
|
|
664
|
-
* @type {number}
|
|
665
|
-
* @memberof AdminItemRequestDTO
|
|
666
|
-
*/
|
|
667
|
-
'quantity'?: number;
|
|
668
|
-
/**
|
|
669
|
-
* ID
|
|
670
|
-
* @type {number}
|
|
671
|
-
* @memberof AdminItemRequestDTO
|
|
672
|
-
*/
|
|
673
|
-
'id'?: number | null;
|
|
674
|
-
/**
|
|
675
|
-
* 3CX Licence Key
|
|
676
|
-
* @type {string}
|
|
677
|
-
* @memberof AdminItemRequestDTO
|
|
678
|
-
*/
|
|
679
|
-
'licenceKey'?: string | null;
|
|
680
|
-
/**
|
|
681
|
-
* 3CX Hosting
|
|
682
|
-
* @type {boolean}
|
|
683
|
-
* @memberof AdminItemRequestDTO
|
|
684
|
-
*/
|
|
685
|
-
'hosting'?: boolean | null;
|
|
686
|
-
/**
|
|
687
|
-
* Date Time
|
|
688
|
-
* @type {string}
|
|
689
|
-
* @memberof AdminItemRequestDTO
|
|
690
|
-
*/
|
|
691
|
-
'processDate'?: string;
|
|
692
|
-
/**
|
|
693
|
-
* 3CX Sales Code
|
|
694
|
-
* @type {string}
|
|
695
|
-
* @memberof AdminItemRequestDTO
|
|
696
|
-
*/
|
|
697
|
-
'tcxSalesCode'?: string | null;
|
|
698
|
-
/**
|
|
699
|
-
* SBCS
|
|
700
|
-
* @type {Array<TcxSbcDTO>}
|
|
701
|
-
* @memberof AdminItemRequestDTO
|
|
702
|
-
*/
|
|
703
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
704
|
-
/**
|
|
705
|
-
* Title
|
|
706
|
-
* @type {string}
|
|
707
|
-
* @memberof AdminItemRequestDTO
|
|
708
|
-
*/
|
|
709
|
-
'title'?: string | null;
|
|
710
|
-
/**
|
|
711
|
-
* Price (£)
|
|
712
|
-
* @type {number}
|
|
713
|
-
* @memberof AdminItemRequestDTO
|
|
714
|
-
*/
|
|
715
|
-
'itemPrice'?: number | null;
|
|
716
|
-
}
|
|
717
|
-
/**
|
|
718
|
-
* Admin Order Request
|
|
719
|
-
* @export
|
|
720
|
-
* @interface AdminOrderRequestDTO
|
|
721
|
-
*/
|
|
722
|
-
export interface AdminOrderRequestDTO {
|
|
723
|
-
/**
|
|
724
|
-
* Order Reference
|
|
725
|
-
* @type {string}
|
|
726
|
-
* @memberof AdminOrderRequestDTO
|
|
727
|
-
*/
|
|
728
|
-
'orderReference'?: string | null;
|
|
729
|
-
/**
|
|
730
|
-
* Items
|
|
731
|
-
* @type {Array<AdminItemRequestDTO>}
|
|
732
|
-
* @memberof AdminOrderRequestDTO
|
|
733
|
-
*/
|
|
734
|
-
'items'?: Array<AdminItemRequestDTO>;
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {ShippingServiceDTO}
|
|
738
|
-
* @memberof AdminOrderRequestDTO
|
|
739
|
-
*/
|
|
740
|
-
'shippingService'?: ShippingServiceDTO;
|
|
741
|
-
/**
|
|
742
|
-
* Provisioning URL
|
|
743
|
-
* @type {string}
|
|
744
|
-
* @memberof AdminOrderRequestDTO
|
|
745
|
-
*/
|
|
746
|
-
'provisioningUrl'?: string | null;
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {AddressModel}
|
|
750
|
-
* @memberof AdminOrderRequestDTO
|
|
751
|
-
*/
|
|
752
|
-
'shippingAddress'?: AddressModel;
|
|
753
|
-
/**
|
|
754
|
-
* Part Ship Order
|
|
755
|
-
* @type {boolean}
|
|
756
|
-
* @memberof AdminOrderRequestDTO
|
|
757
|
-
*/
|
|
758
|
-
'partShip'?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* Quote
|
|
761
|
-
* @type {boolean}
|
|
762
|
-
* @memberof AdminOrderRequestDTO
|
|
763
|
-
*/
|
|
764
|
-
'quote'?: boolean;
|
|
765
|
-
/**
|
|
766
|
-
* Customer ID
|
|
767
|
-
* @type {number}
|
|
768
|
-
* @memberof AdminOrderRequestDTO
|
|
769
|
-
*/
|
|
770
|
-
'customerId'?: number;
|
|
771
|
-
/**
|
|
772
|
-
* Contact
|
|
773
|
-
* @type {string}
|
|
774
|
-
* @memberof AdminOrderRequestDTO
|
|
775
|
-
*/
|
|
776
|
-
'contact'?: string;
|
|
777
|
-
/**
|
|
778
|
-
* Ignore Customer On Hold
|
|
779
|
-
* @type {boolean}
|
|
780
|
-
* @memberof AdminOrderRequestDTO
|
|
781
|
-
*/
|
|
782
|
-
'ignoreOnHold'?: boolean;
|
|
783
|
-
/**
|
|
784
|
-
* Ignore Customer Credit Limit
|
|
785
|
-
* @type {boolean}
|
|
786
|
-
* @memberof AdminOrderRequestDTO
|
|
787
|
-
*/
|
|
788
|
-
'ignoreCreditLimit'?: boolean;
|
|
789
|
-
/**
|
|
790
|
-
* Include NFR Promos
|
|
791
|
-
* @type {boolean}
|
|
792
|
-
* @memberof AdminOrderRequestDTO
|
|
793
|
-
*/
|
|
794
|
-
'includeNfrPromos'?: boolean;
|
|
795
|
-
/**
|
|
796
|
-
* Carriage Charge
|
|
797
|
-
* @type {number}
|
|
798
|
-
* @memberof AdminOrderRequestDTO
|
|
799
|
-
*/
|
|
800
|
-
'carriageCharge'?: number;
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
* Admin User
|
|
804
|
-
* @export
|
|
805
|
-
* @interface AdminUserModel
|
|
806
|
-
*/
|
|
807
|
-
export interface AdminUserModel {
|
|
808
|
-
/**
|
|
809
|
-
* First Name
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof AdminUserModel
|
|
812
|
-
*/
|
|
813
|
-
'firstName'?: string;
|
|
814
|
-
/**
|
|
815
|
-
* Last Name
|
|
816
|
-
* @type {string}
|
|
817
|
-
* @memberof AdminUserModel
|
|
818
|
-
*/
|
|
819
|
-
'lastName'?: string;
|
|
820
|
-
/**
|
|
821
|
-
* Avatar
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof AdminUserModel
|
|
824
|
-
*/
|
|
825
|
-
'avatar'?: string | null;
|
|
826
|
-
/**
|
|
827
|
-
* Role
|
|
828
|
-
* @type {number}
|
|
829
|
-
* @memberof AdminUserModel
|
|
830
|
-
*/
|
|
831
|
-
'role'?: AdminUserModelRoleEnum;
|
|
832
|
-
/**
|
|
833
|
-
* Email
|
|
834
|
-
* @type {string}
|
|
835
|
-
* @memberof AdminUserModel
|
|
836
|
-
*/
|
|
837
|
-
'email'?: string | null;
|
|
838
|
-
}
|
|
839
|
-
export declare const AdminUserModelRoleEnum: {
|
|
840
|
-
readonly NUMBER_0: 0;
|
|
841
|
-
readonly NUMBER_1: 1;
|
|
842
|
-
readonly NUMBER_2: 2;
|
|
843
|
-
readonly NUMBER_3: 3;
|
|
844
|
-
readonly NUMBER_4: 4;
|
|
845
|
-
};
|
|
846
|
-
export type AdminUserModelRoleEnum = typeof AdminUserModelRoleEnum[keyof typeof AdminUserModelRoleEnum];
|
|
847
528
|
/**
|
|
848
529
|
* Agent Hours Graph
|
|
849
530
|
* @export
|
|
@@ -1073,44 +754,6 @@ export interface AuthCodeResponseModel {
|
|
|
1073
754
|
*/
|
|
1074
755
|
'redirect_uri'?: string | null;
|
|
1075
756
|
}
|
|
1076
|
-
/**
|
|
1077
|
-
* Basic Order Item
|
|
1078
|
-
* @export
|
|
1079
|
-
* @interface BasicItemDTO
|
|
1080
|
-
*/
|
|
1081
|
-
export interface BasicItemDTO {
|
|
1082
|
-
/**
|
|
1083
|
-
* SKU
|
|
1084
|
-
* @type {string}
|
|
1085
|
-
* @memberof BasicItemDTO
|
|
1086
|
-
*/
|
|
1087
|
-
'sku'?: string;
|
|
1088
|
-
/**
|
|
1089
|
-
* Quantity
|
|
1090
|
-
* @type {number}
|
|
1091
|
-
* @memberof BasicItemDTO
|
|
1092
|
-
*/
|
|
1093
|
-
'quantity'?: number;
|
|
1094
|
-
}
|
|
1095
|
-
/**
|
|
1096
|
-
* Basic Product
|
|
1097
|
-
* @export
|
|
1098
|
-
* @interface BasicProductDTO
|
|
1099
|
-
*/
|
|
1100
|
-
export interface BasicProductDTO {
|
|
1101
|
-
/**
|
|
1102
|
-
* SKU
|
|
1103
|
-
* @type {string}
|
|
1104
|
-
* @memberof BasicProductDTO
|
|
1105
|
-
*/
|
|
1106
|
-
'sku'?: string;
|
|
1107
|
-
/**
|
|
1108
|
-
* Title
|
|
1109
|
-
* @type {string}
|
|
1110
|
-
* @memberof BasicProductDTO
|
|
1111
|
-
*/
|
|
1112
|
-
'title'?: string;
|
|
1113
|
-
}
|
|
1114
757
|
/**
|
|
1115
758
|
* BatchesEntity
|
|
1116
759
|
* @export
|
|
@@ -1305,6 +948,12 @@ export interface ClientDetailsModel {
|
|
|
1305
948
|
* @memberof ClientDetailsModel
|
|
1306
949
|
*/
|
|
1307
950
|
'lastName'?: string;
|
|
951
|
+
/**
|
|
952
|
+
* User Profile Picture
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof ClientDetailsModel
|
|
955
|
+
*/
|
|
956
|
+
'image'?: string | null;
|
|
1308
957
|
}
|
|
1309
958
|
/**
|
|
1310
959
|
* OAuth client details
|
|
@@ -1466,73 +1115,6 @@ export interface ConversationModel {
|
|
|
1466
1115
|
*/
|
|
1467
1116
|
'attachments'?: Array<AttachmentModel>;
|
|
1468
1117
|
}
|
|
1469
|
-
/**
|
|
1470
|
-
* CourierPricesEntity
|
|
1471
|
-
* @export
|
|
1472
|
-
* @interface CourierPriceEntity
|
|
1473
|
-
*/
|
|
1474
|
-
export interface CourierPriceEntity {
|
|
1475
|
-
/**
|
|
1476
|
-
* id
|
|
1477
|
-
* @type {number}
|
|
1478
|
-
* @memberof CourierPriceEntity
|
|
1479
|
-
*/
|
|
1480
|
-
'id'?: number;
|
|
1481
|
-
/**
|
|
1482
|
-
* courier
|
|
1483
|
-
* @type {string}
|
|
1484
|
-
* @memberof CourierPriceEntity
|
|
1485
|
-
*/
|
|
1486
|
-
'courier'?: string;
|
|
1487
|
-
/**
|
|
1488
|
-
* destinationIso
|
|
1489
|
-
* @type {string}
|
|
1490
|
-
* @memberof CourierPriceEntity
|
|
1491
|
-
*/
|
|
1492
|
-
'destinationIso'?: string;
|
|
1493
|
-
/**
|
|
1494
|
-
* serviceDescription
|
|
1495
|
-
* @type {string}
|
|
1496
|
-
* @memberof CourierPriceEntity
|
|
1497
|
-
*/
|
|
1498
|
-
'serviceDescription'?: string;
|
|
1499
|
-
/**
|
|
1500
|
-
* flatRate
|
|
1501
|
-
* @type {number}
|
|
1502
|
-
* @memberof CourierPriceEntity
|
|
1503
|
-
*/
|
|
1504
|
-
'flatRate'?: number;
|
|
1505
|
-
/**
|
|
1506
|
-
* initialBox
|
|
1507
|
-
* @type {number}
|
|
1508
|
-
* @memberof CourierPriceEntity
|
|
1509
|
-
*/
|
|
1510
|
-
'initialBox'?: number;
|
|
1511
|
-
/**
|
|
1512
|
-
* initialKg
|
|
1513
|
-
* @type {number}
|
|
1514
|
-
* @memberof CourierPriceEntity
|
|
1515
|
-
*/
|
|
1516
|
-
'initialKg'?: number;
|
|
1517
|
-
/**
|
|
1518
|
-
* perBox
|
|
1519
|
-
* @type {number}
|
|
1520
|
-
* @memberof CourierPriceEntity
|
|
1521
|
-
*/
|
|
1522
|
-
'perBox'?: number;
|
|
1523
|
-
/**
|
|
1524
|
-
* perKg
|
|
1525
|
-
* @type {number}
|
|
1526
|
-
* @memberof CourierPriceEntity
|
|
1527
|
-
*/
|
|
1528
|
-
'perKg'?: number;
|
|
1529
|
-
/**
|
|
1530
|
-
* maxKg
|
|
1531
|
-
* @type {number}
|
|
1532
|
-
* @memberof CourierPriceEntity
|
|
1533
|
-
*/
|
|
1534
|
-
'maxKg'?: number;
|
|
1535
|
-
}
|
|
1536
1118
|
/**
|
|
1537
1119
|
* Credit Account
|
|
1538
1120
|
* @export
|
|
@@ -1666,6 +1248,49 @@ export interface CreditAccountEntity {
|
|
|
1666
1248
|
*/
|
|
1667
1249
|
'prizePromo'?: boolean;
|
|
1668
1250
|
}
|
|
1251
|
+
/**
|
|
1252
|
+
* CRM Contact
|
|
1253
|
+
* @export
|
|
1254
|
+
* @interface CrmContactDTO
|
|
1255
|
+
*/
|
|
1256
|
+
export interface CrmContactDTO {
|
|
1257
|
+
/**
|
|
1258
|
+
* Contact ID
|
|
1259
|
+
* @type {string}
|
|
1260
|
+
* @memberof CrmContactDTO
|
|
1261
|
+
*/
|
|
1262
|
+
'id'?: string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Contact Name
|
|
1265
|
+
* @type {string}
|
|
1266
|
+
* @memberof CrmContactDTO
|
|
1267
|
+
*/
|
|
1268
|
+
'name'?: string;
|
|
1269
|
+
/**
|
|
1270
|
+
* Phone Number
|
|
1271
|
+
* @type {string}
|
|
1272
|
+
* @memberof CrmContactDTO
|
|
1273
|
+
*/
|
|
1274
|
+
'phone'?: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* Company Name
|
|
1277
|
+
* @type {string}
|
|
1278
|
+
* @memberof CrmContactDTO
|
|
1279
|
+
*/
|
|
1280
|
+
'company'?: string;
|
|
1281
|
+
/**
|
|
1282
|
+
* Email Address
|
|
1283
|
+
* @type {string}
|
|
1284
|
+
* @memberof CrmContactDTO
|
|
1285
|
+
*/
|
|
1286
|
+
'email'?: string;
|
|
1287
|
+
/**
|
|
1288
|
+
* URL
|
|
1289
|
+
* @type {string}
|
|
1290
|
+
* @memberof CrmContactDTO
|
|
1291
|
+
*/
|
|
1292
|
+
'url'?: string;
|
|
1293
|
+
}
|
|
1669
1294
|
/**
|
|
1670
1295
|
* SIP Trunk Customer
|
|
1671
1296
|
* @export
|
|
@@ -1715,110 +1340,6 @@ export interface CustomerInformationModel {
|
|
|
1715
1340
|
*/
|
|
1716
1341
|
'contactLastName'?: string;
|
|
1717
1342
|
}
|
|
1718
|
-
/**
|
|
1719
|
-
* Order Item Request
|
|
1720
|
-
* @export
|
|
1721
|
-
* @interface CustomerItemRequestDTO
|
|
1722
|
-
*/
|
|
1723
|
-
export interface CustomerItemRequestDTO {
|
|
1724
|
-
/**
|
|
1725
|
-
* SKU
|
|
1726
|
-
* @type {string}
|
|
1727
|
-
* @memberof CustomerItemRequestDTO
|
|
1728
|
-
*/
|
|
1729
|
-
'sku'?: string;
|
|
1730
|
-
/**
|
|
1731
|
-
* Quantity
|
|
1732
|
-
* @type {number}
|
|
1733
|
-
* @memberof CustomerItemRequestDTO
|
|
1734
|
-
*/
|
|
1735
|
-
'quantity'?: number;
|
|
1736
|
-
/**
|
|
1737
|
-
* ID
|
|
1738
|
-
* @type {number}
|
|
1739
|
-
* @memberof CustomerItemRequestDTO
|
|
1740
|
-
*/
|
|
1741
|
-
'id'?: number | null;
|
|
1742
|
-
/**
|
|
1743
|
-
* 3CX Licence Key
|
|
1744
|
-
* @type {string}
|
|
1745
|
-
* @memberof CustomerItemRequestDTO
|
|
1746
|
-
*/
|
|
1747
|
-
'licenceKey'?: string | null;
|
|
1748
|
-
/**
|
|
1749
|
-
* 3CX Hosting
|
|
1750
|
-
* @type {boolean}
|
|
1751
|
-
* @memberof CustomerItemRequestDTO
|
|
1752
|
-
*/
|
|
1753
|
-
'hosting'?: boolean | null;
|
|
1754
|
-
/**
|
|
1755
|
-
* Date Time
|
|
1756
|
-
* @type {string}
|
|
1757
|
-
* @memberof CustomerItemRequestDTO
|
|
1758
|
-
*/
|
|
1759
|
-
'processDate'?: string;
|
|
1760
|
-
/**
|
|
1761
|
-
* 3CX Sales Code
|
|
1762
|
-
* @type {string}
|
|
1763
|
-
* @memberof CustomerItemRequestDTO
|
|
1764
|
-
*/
|
|
1765
|
-
'tcxSalesCode'?: string | null;
|
|
1766
|
-
/**
|
|
1767
|
-
* SBCS
|
|
1768
|
-
* @type {Array<TcxSbcDTO>}
|
|
1769
|
-
* @memberof CustomerItemRequestDTO
|
|
1770
|
-
*/
|
|
1771
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
1772
|
-
}
|
|
1773
|
-
/**
|
|
1774
|
-
* Order Request
|
|
1775
|
-
* @export
|
|
1776
|
-
* @interface CustomerOrderRequestDTO
|
|
1777
|
-
*/
|
|
1778
|
-
export interface CustomerOrderRequestDTO {
|
|
1779
|
-
/**
|
|
1780
|
-
* Order Reference
|
|
1781
|
-
* @type {string}
|
|
1782
|
-
* @memberof CustomerOrderRequestDTO
|
|
1783
|
-
*/
|
|
1784
|
-
'orderReference'?: string | null;
|
|
1785
|
-
/**
|
|
1786
|
-
* Items
|
|
1787
|
-
* @type {Array<CustomerItemRequestDTO>}
|
|
1788
|
-
* @memberof CustomerOrderRequestDTO
|
|
1789
|
-
*/
|
|
1790
|
-
'items'?: Array<CustomerItemRequestDTO>;
|
|
1791
|
-
/**
|
|
1792
|
-
*
|
|
1793
|
-
* @type {ShippingServiceDTO}
|
|
1794
|
-
* @memberof CustomerOrderRequestDTO
|
|
1795
|
-
*/
|
|
1796
|
-
'shippingService'?: ShippingServiceDTO;
|
|
1797
|
-
/**
|
|
1798
|
-
* Provisioning URL
|
|
1799
|
-
* @type {string}
|
|
1800
|
-
* @memberof CustomerOrderRequestDTO
|
|
1801
|
-
*/
|
|
1802
|
-
'provisioningUrl'?: string | null;
|
|
1803
|
-
/**
|
|
1804
|
-
*
|
|
1805
|
-
* @type {AddressModel}
|
|
1806
|
-
* @memberof CustomerOrderRequestDTO
|
|
1807
|
-
*/
|
|
1808
|
-
'shippingAddress'?: AddressModel;
|
|
1809
|
-
/**
|
|
1810
|
-
* Part Ship Order
|
|
1811
|
-
* @type {boolean}
|
|
1812
|
-
* @memberof CustomerOrderRequestDTO
|
|
1813
|
-
*/
|
|
1814
|
-
'partShip'?: boolean;
|
|
1815
|
-
/**
|
|
1816
|
-
* Quote
|
|
1817
|
-
* @type {boolean}
|
|
1818
|
-
* @memberof CustomerOrderRequestDTO
|
|
1819
|
-
*/
|
|
1820
|
-
'quote'?: boolean;
|
|
1821
|
-
}
|
|
1822
1343
|
/**
|
|
1823
1344
|
* Customer Price List
|
|
1824
1345
|
* @export
|
|
@@ -2325,6 +1846,19 @@ export interface GenericFileModel {
|
|
|
2325
1846
|
*/
|
|
2326
1847
|
'type'?: string;
|
|
2327
1848
|
}
|
|
1849
|
+
/**
|
|
1850
|
+
*
|
|
1851
|
+
* @export
|
|
1852
|
+
* @interface GetGetPasswordHash200Response
|
|
1853
|
+
*/
|
|
1854
|
+
export interface GetGetPasswordHash200Response {
|
|
1855
|
+
/**
|
|
1856
|
+
*
|
|
1857
|
+
* @type {string}
|
|
1858
|
+
* @memberof GetGetPasswordHash200Response
|
|
1859
|
+
*/
|
|
1860
|
+
'hash'?: string;
|
|
1861
|
+
}
|
|
2328
1862
|
/**
|
|
2329
1863
|
*
|
|
2330
1864
|
* @export
|
|
@@ -2919,36 +2453,36 @@ export interface InstanceUserCredentialsEntity {
|
|
|
2919
2453
|
* @interface ItemDTO
|
|
2920
2454
|
*/
|
|
2921
2455
|
export interface ItemDTO {
|
|
2922
|
-
/**
|
|
2923
|
-
* SKU
|
|
2924
|
-
* @type {string}
|
|
2925
|
-
* @memberof ItemDTO
|
|
2926
|
-
*/
|
|
2927
|
-
'sku'?: string;
|
|
2928
|
-
/**
|
|
2929
|
-
* Quantity
|
|
2930
|
-
* @type {number}
|
|
2931
|
-
* @memberof ItemDTO
|
|
2932
|
-
*/
|
|
2933
|
-
'quantity'?: number;
|
|
2934
2456
|
/**
|
|
2935
2457
|
* ID
|
|
2936
2458
|
* @type {number}
|
|
2937
2459
|
* @memberof ItemDTO
|
|
2938
2460
|
*/
|
|
2939
|
-
'id'?: number
|
|
2461
|
+
'id'?: number;
|
|
2940
2462
|
/**
|
|
2941
2463
|
* Order ID
|
|
2942
2464
|
* @type {number}
|
|
2943
2465
|
* @memberof ItemDTO
|
|
2944
2466
|
*/
|
|
2945
|
-
'orderId'?: number
|
|
2467
|
+
'orderId'?: number;
|
|
2946
2468
|
/**
|
|
2947
2469
|
* Title
|
|
2948
2470
|
* @type {string}
|
|
2949
2471
|
* @memberof ItemDTO
|
|
2950
2472
|
*/
|
|
2951
2473
|
'title'?: string;
|
|
2474
|
+
/**
|
|
2475
|
+
* SKU
|
|
2476
|
+
* @type {string}
|
|
2477
|
+
* @memberof ItemDTO
|
|
2478
|
+
*/
|
|
2479
|
+
'sku'?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* Quantity
|
|
2482
|
+
* @type {number}
|
|
2483
|
+
* @memberof ItemDTO
|
|
2484
|
+
*/
|
|
2485
|
+
'quantity'?: number;
|
|
2952
2486
|
/**
|
|
2953
2487
|
* Price
|
|
2954
2488
|
* @type {number}
|
|
@@ -2973,42 +2507,18 @@ export interface ItemDTO {
|
|
|
2973
2507
|
* @memberof ItemDTO
|
|
2974
2508
|
*/
|
|
2975
2509
|
'processDate'?: string;
|
|
2976
|
-
/**
|
|
2977
|
-
* 3CX Hosting
|
|
2978
|
-
* @type {boolean}
|
|
2979
|
-
* @memberof ItemDTO
|
|
2980
|
-
*/
|
|
2981
|
-
'hosting'?: boolean | null;
|
|
2982
2510
|
/**
|
|
2983
2511
|
* Promo Item
|
|
2984
2512
|
* @type {boolean}
|
|
2985
2513
|
* @memberof ItemDTO
|
|
2986
2514
|
*/
|
|
2987
|
-
'promoItem'?: boolean;
|
|
2988
|
-
/**
|
|
2989
|
-
* Refunded
|
|
2990
|
-
* @type {number}
|
|
2991
|
-
* @memberof ItemDTO
|
|
2992
|
-
*/
|
|
2993
|
-
'refunded'?: number | null;
|
|
2994
|
-
/**
|
|
2995
|
-
* SBCs
|
|
2996
|
-
* @type {Array<TcxSbcDTO>}
|
|
2997
|
-
* @memberof ItemDTO
|
|
2998
|
-
*/
|
|
2999
|
-
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3000
|
-
/**
|
|
3001
|
-
* Readonly
|
|
3002
|
-
* @type {boolean}
|
|
3003
|
-
* @memberof ItemDTO
|
|
3004
|
-
*/
|
|
3005
|
-
'readonly'?: boolean;
|
|
2515
|
+
'promoItem'?: boolean;
|
|
3006
2516
|
/**
|
|
3007
|
-
*
|
|
3008
|
-
* @type {
|
|
2517
|
+
* Refunded
|
|
2518
|
+
* @type {number}
|
|
3009
2519
|
* @memberof ItemDTO
|
|
3010
2520
|
*/
|
|
3011
|
-
'
|
|
2521
|
+
'refunded'?: number;
|
|
3012
2522
|
}
|
|
3013
2523
|
/**
|
|
3014
2524
|
* ItemsEntity
|
|
@@ -3142,31 +2652,6 @@ export interface ItemEntity {
|
|
|
3142
2652
|
* @memberof ItemEntity
|
|
3143
2653
|
*/
|
|
3144
2654
|
'promoItem'?: number;
|
|
3145
|
-
/**
|
|
3146
|
-
* 3CX Sales Code
|
|
3147
|
-
* @type {string}
|
|
3148
|
-
* @memberof ItemEntity
|
|
3149
|
-
*/
|
|
3150
|
-
'tcxSalesCode'?: string | null;
|
|
3151
|
-
}
|
|
3152
|
-
/**
|
|
3153
|
-
* LinkedOrdersEntity
|
|
3154
|
-
* @export
|
|
3155
|
-
* @interface LinkedOrderEntity
|
|
3156
|
-
*/
|
|
3157
|
-
export interface LinkedOrderEntity {
|
|
3158
|
-
/**
|
|
3159
|
-
* orderId
|
|
3160
|
-
* @type {number}
|
|
3161
|
-
* @memberof LinkedOrderEntity
|
|
3162
|
-
*/
|
|
3163
|
-
'orderId'?: number;
|
|
3164
|
-
/**
|
|
3165
|
-
* linkedOrderId
|
|
3166
|
-
* @type {number}
|
|
3167
|
-
* @memberof LinkedOrderEntity
|
|
3168
|
-
*/
|
|
3169
|
-
'linkedOrderId'?: number;
|
|
3170
2655
|
}
|
|
3171
2656
|
/**
|
|
3172
2657
|
* MFA Required
|
|
@@ -3820,19 +3305,13 @@ export interface OrderSummaryDTO {
|
|
|
3820
3305
|
* @type {string}
|
|
3821
3306
|
* @memberof OrderSummaryDTO
|
|
3822
3307
|
*/
|
|
3823
|
-
'reference'?: string
|
|
3308
|
+
'reference'?: string;
|
|
3824
3309
|
/**
|
|
3825
3310
|
* Invoice Number
|
|
3826
3311
|
* @type {string}
|
|
3827
3312
|
* @memberof OrderSummaryDTO
|
|
3828
3313
|
*/
|
|
3829
3314
|
'invoiceNumber'?: string;
|
|
3830
|
-
/**
|
|
3831
|
-
* Invoice ID
|
|
3832
|
-
* @type {string}
|
|
3833
|
-
* @memberof OrderSummaryDTO
|
|
3834
|
-
*/
|
|
3835
|
-
'invoiceId'?: string | null;
|
|
3836
3315
|
/**
|
|
3837
3316
|
* Date Time
|
|
3838
3317
|
* @type {string}
|
|
@@ -3887,24 +3366,6 @@ export interface OrderSummaryDTO {
|
|
|
3887
3366
|
* @memberof OrderSummaryDTO
|
|
3888
3367
|
*/
|
|
3889
3368
|
'fulfillable'?: boolean | null;
|
|
3890
|
-
/**
|
|
3891
|
-
* Provisioning URL
|
|
3892
|
-
* @type {string}
|
|
3893
|
-
* @memberof OrderSummaryDTO
|
|
3894
|
-
*/
|
|
3895
|
-
'provisioningUrl'?: string | null;
|
|
3896
|
-
/**
|
|
3897
|
-
*
|
|
3898
|
-
* @type {ShippingServiceDTO}
|
|
3899
|
-
* @memberof OrderSummaryDTO
|
|
3900
|
-
*/
|
|
3901
|
-
'shippingService'?: ShippingServiceDTO | null;
|
|
3902
|
-
/**
|
|
3903
|
-
* Readonly
|
|
3904
|
-
* @type {boolean}
|
|
3905
|
-
* @memberof OrderSummaryDTO
|
|
3906
|
-
*/
|
|
3907
|
-
'readonly'?: boolean;
|
|
3908
3369
|
}
|
|
3909
3370
|
/**
|
|
3910
3371
|
* Order Totals
|
|
@@ -3954,12 +3415,6 @@ export interface OrderTotalModel {
|
|
|
3954
3415
|
* @memberof OrderTotalModel
|
|
3955
3416
|
*/
|
|
3956
3417
|
'currency'?: OrderTotalModelCurrencyEnum;
|
|
3957
|
-
/**
|
|
3958
|
-
* Delivery
|
|
3959
|
-
* @type {number}
|
|
3960
|
-
* @memberof OrderTotalModel
|
|
3961
|
-
*/
|
|
3962
|
-
'delivery'?: number | null;
|
|
3963
3418
|
}
|
|
3964
3419
|
export declare const OrderTotalModelCurrencyEnum: {
|
|
3965
3420
|
readonly Eur: "EUR";
|
|
@@ -4338,31 +3793,6 @@ export interface PostGetClientCredentialsRequest {
|
|
|
4338
3793
|
*/
|
|
4339
3794
|
'scopes'?: Array<string>;
|
|
4340
3795
|
}
|
|
4341
|
-
/**
|
|
4342
|
-
*
|
|
4343
|
-
* @export
|
|
4344
|
-
* @interface PostGetProductForCustomerRequest
|
|
4345
|
-
*/
|
|
4346
|
-
export interface PostGetProductForCustomerRequest {
|
|
4347
|
-
/**
|
|
4348
|
-
* Quantity
|
|
4349
|
-
* @type {number}
|
|
4350
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4351
|
-
*/
|
|
4352
|
-
'quantity'?: number | null;
|
|
4353
|
-
/**
|
|
4354
|
-
* 3CX Licence Key
|
|
4355
|
-
* @type {string}
|
|
4356
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4357
|
-
*/
|
|
4358
|
-
'licenceKey'?: string | null;
|
|
4359
|
-
/**
|
|
4360
|
-
* 3CX Hosting
|
|
4361
|
-
* @type {boolean}
|
|
4362
|
-
* @memberof PostGetProductForCustomerRequest
|
|
4363
|
-
*/
|
|
4364
|
-
'hosting'?: boolean | null;
|
|
4365
|
-
}
|
|
4366
3796
|
/**
|
|
4367
3797
|
* Price & Stock List
|
|
4368
3798
|
* @export
|
|
@@ -4451,10 +3881,10 @@ export interface PrizesEntity {
|
|
|
4451
3881
|
export interface ProductSearchResultsModel {
|
|
4452
3882
|
/**
|
|
4453
3883
|
* Results
|
|
4454
|
-
* @type {Array<
|
|
3884
|
+
* @type {Array<ProductSummaryModel>}
|
|
4455
3885
|
* @memberof ProductSearchResultsModel
|
|
4456
3886
|
*/
|
|
4457
|
-
'results'?: Array<
|
|
3887
|
+
'results'?: Array<ProductSummaryModel>;
|
|
4458
3888
|
}
|
|
4459
3889
|
/**
|
|
4460
3890
|
* Product Serial Info
|
|
@@ -4490,51 +3920,45 @@ export interface ProductSerialInfoModel {
|
|
|
4490
3920
|
/**
|
|
4491
3921
|
* Product Summary
|
|
4492
3922
|
* @export
|
|
4493
|
-
* @interface
|
|
3923
|
+
* @interface ProductSummaryModel
|
|
4494
3924
|
*/
|
|
4495
|
-
export interface
|
|
3925
|
+
export interface ProductSummaryModel {
|
|
4496
3926
|
/**
|
|
4497
3927
|
* SKU
|
|
4498
3928
|
* @type {string}
|
|
4499
|
-
* @memberof
|
|
3929
|
+
* @memberof ProductSummaryModel
|
|
4500
3930
|
*/
|
|
4501
3931
|
'sku'?: string;
|
|
4502
3932
|
/**
|
|
4503
3933
|
* Title
|
|
4504
3934
|
* @type {string}
|
|
4505
|
-
* @memberof
|
|
3935
|
+
* @memberof ProductSummaryModel
|
|
4506
3936
|
*/
|
|
4507
3937
|
'title'?: string;
|
|
4508
3938
|
/**
|
|
4509
3939
|
* Stock Quantity
|
|
4510
3940
|
* @type {number}
|
|
4511
|
-
* @memberof
|
|
3941
|
+
* @memberof ProductSummaryModel
|
|
4512
3942
|
*/
|
|
4513
3943
|
'quantity'?: number | null;
|
|
4514
3944
|
/**
|
|
4515
3945
|
* Stock Product
|
|
4516
3946
|
* @type {boolean}
|
|
4517
|
-
* @memberof
|
|
3947
|
+
* @memberof ProductSummaryModel
|
|
4518
3948
|
*/
|
|
4519
3949
|
'stockProduct'?: boolean;
|
|
4520
3950
|
/**
|
|
4521
3951
|
* Price
|
|
4522
3952
|
* @type {number}
|
|
4523
|
-
* @memberof
|
|
3953
|
+
* @memberof ProductSummaryModel
|
|
4524
3954
|
*/
|
|
4525
3955
|
'price'?: number | null;
|
|
4526
3956
|
/**
|
|
4527
3957
|
* Carton Size
|
|
4528
3958
|
* @type {number}
|
|
4529
|
-
* @memberof
|
|
3959
|
+
* @memberof ProductSummaryModel
|
|
4530
3960
|
*/
|
|
4531
3961
|
'cartonSize'?: number | null;
|
|
4532
|
-
/**
|
|
4533
|
-
* RRP Price
|
|
4534
|
-
* @type {number}
|
|
4535
|
-
* @memberof ProductSummaryDTO
|
|
4536
|
-
*/
|
|
4537
|
-
'rrp'?: number | null;
|
|
4538
3962
|
}
|
|
4539
3963
|
/**
|
|
4540
3964
|
* PromoCodesEntity
|
|
@@ -4673,37 +4097,37 @@ export interface PromoItemsEntity {
|
|
|
4673
4097
|
/**
|
|
4674
4098
|
* Provisioning Group
|
|
4675
4099
|
* @export
|
|
4676
|
-
* @interface
|
|
4100
|
+
* @interface ProvisioningEntity
|
|
4677
4101
|
*/
|
|
4678
|
-
export interface
|
|
4102
|
+
export interface ProvisioningEntity {
|
|
4679
4103
|
/**
|
|
4680
4104
|
* Provisioning Group Name
|
|
4681
4105
|
* @type {string}
|
|
4682
|
-
* @memberof
|
|
4106
|
+
* @memberof ProvisioningEntity
|
|
4683
4107
|
*/
|
|
4684
4108
|
'groupName'?: string;
|
|
4685
4109
|
/**
|
|
4686
4110
|
* Provisioning URL (Static Provisioning Server)
|
|
4687
4111
|
* @type {string}
|
|
4688
|
-
* @memberof
|
|
4112
|
+
* @memberof ProvisioningEntity
|
|
4689
4113
|
*/
|
|
4690
4114
|
'provisioningUrl'?: string;
|
|
4691
4115
|
/**
|
|
4692
4116
|
* Additional Authentication Secret
|
|
4693
4117
|
* @type {string}
|
|
4694
|
-
* @memberof
|
|
4118
|
+
* @memberof ProvisioningEntity
|
|
4695
4119
|
*/
|
|
4696
4120
|
'auth'?: string;
|
|
4697
4121
|
/**
|
|
4698
4122
|
* Provisioning Group ID
|
|
4699
4123
|
* @type {number}
|
|
4700
|
-
* @memberof
|
|
4124
|
+
* @memberof ProvisioningEntity
|
|
4701
4125
|
*/
|
|
4702
4126
|
'id'?: number;
|
|
4703
4127
|
/**
|
|
4704
4128
|
* Owner ID
|
|
4705
4129
|
* @type {number}
|
|
4706
|
-
* @memberof
|
|
4130
|
+
* @memberof ProvisioningEntity
|
|
4707
4131
|
*/
|
|
4708
4132
|
'customerId'?: number;
|
|
4709
4133
|
}
|
|
@@ -5057,7 +4481,7 @@ export interface ShipmentEntity {
|
|
|
5057
4481
|
* @type {string}
|
|
5058
4482
|
* @memberof ShipmentEntity
|
|
5059
4483
|
*/
|
|
5060
|
-
'
|
|
4484
|
+
'date'?: string;
|
|
5061
4485
|
/**
|
|
5062
4486
|
* requestDate
|
|
5063
4487
|
* @type {string}
|
|
@@ -5108,149 +4532,6 @@ export interface ShipmentItemEntity {
|
|
|
5108
4532
|
*/
|
|
5109
4533
|
'itemId'?: string;
|
|
5110
4534
|
}
|
|
5111
|
-
/**
|
|
5112
|
-
*
|
|
5113
|
-
* @export
|
|
5114
|
-
* @interface ShippingConsignmentModel
|
|
5115
|
-
*/
|
|
5116
|
-
export interface ShippingConsignmentModel {
|
|
5117
|
-
/**
|
|
5118
|
-
*
|
|
5119
|
-
* @type {ShippingServiceModel}
|
|
5120
|
-
* @memberof ShippingConsignmentModel
|
|
5121
|
-
*/
|
|
5122
|
-
'service'?: ShippingServiceModel;
|
|
5123
|
-
/**
|
|
5124
|
-
* ID/Number
|
|
5125
|
-
* @type {string}
|
|
5126
|
-
* @memberof ShippingConsignmentModel
|
|
5127
|
-
*/
|
|
5128
|
-
'id'?: string;
|
|
5129
|
-
/**
|
|
5130
|
-
* Tracking Number
|
|
5131
|
-
* @type {string}
|
|
5132
|
-
* @memberof ShippingConsignmentModel
|
|
5133
|
-
*/
|
|
5134
|
-
'trackingNumber'?: string;
|
|
5135
|
-
/**
|
|
5136
|
-
* Parcels
|
|
5137
|
-
* @type {Array<string>}
|
|
5138
|
-
* @memberof ShippingConsignmentModel
|
|
5139
|
-
*/
|
|
5140
|
-
'parcelIds'?: Array<string>;
|
|
5141
|
-
}
|
|
5142
|
-
/**
|
|
5143
|
-
* Shipping Information
|
|
5144
|
-
* @export
|
|
5145
|
-
* @interface ShippingInformationDTO
|
|
5146
|
-
*/
|
|
5147
|
-
export interface ShippingInformationDTO {
|
|
5148
|
-
/**
|
|
5149
|
-
* Items
|
|
5150
|
-
* @type {Array<BasicItemDTO>}
|
|
5151
|
-
* @memberof ShippingInformationDTO
|
|
5152
|
-
*/
|
|
5153
|
-
'items'?: Array<BasicItemDTO>;
|
|
5154
|
-
/**
|
|
5155
|
-
* Destination Post Code
|
|
5156
|
-
* @type {string}
|
|
5157
|
-
* @memberof ShippingInformationDTO
|
|
5158
|
-
*/
|
|
5159
|
-
'postalCode'?: string;
|
|
5160
|
-
/**
|
|
5161
|
-
* Destination ISO
|
|
5162
|
-
* @type {string}
|
|
5163
|
-
* @memberof ShippingInformationDTO
|
|
5164
|
-
*/
|
|
5165
|
-
'iso'?: string;
|
|
5166
|
-
}
|
|
5167
|
-
/**
|
|
5168
|
-
* Shipping Service
|
|
5169
|
-
* @export
|
|
5170
|
-
* @interface ShippingServiceDTO
|
|
5171
|
-
*/
|
|
5172
|
-
export interface ShippingServiceDTO {
|
|
5173
|
-
/**
|
|
5174
|
-
* Courier
|
|
5175
|
-
* @type {string}
|
|
5176
|
-
* @memberof ShippingServiceDTO
|
|
5177
|
-
*/
|
|
5178
|
-
'courier'?: ShippingServiceDTOCourierEnum;
|
|
5179
|
-
/**
|
|
5180
|
-
* Service Name
|
|
5181
|
-
* @type {string}
|
|
5182
|
-
* @memberof ShippingServiceDTO
|
|
5183
|
-
*/
|
|
5184
|
-
'serviceName'?: string;
|
|
5185
|
-
}
|
|
5186
|
-
export declare const ShippingServiceDTOCourierEnum: {
|
|
5187
|
-
readonly Dpd: "DPD";
|
|
5188
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5189
|
-
readonly Pops: "POPS";
|
|
5190
|
-
};
|
|
5191
|
-
export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
|
|
5192
|
-
/**
|
|
5193
|
-
* Shipping Service
|
|
5194
|
-
* @export
|
|
5195
|
-
* @interface ShippingServiceModel
|
|
5196
|
-
*/
|
|
5197
|
-
export interface ShippingServiceModel {
|
|
5198
|
-
/**
|
|
5199
|
-
* Courier
|
|
5200
|
-
* @type {string}
|
|
5201
|
-
* @memberof ShippingServiceModel
|
|
5202
|
-
*/
|
|
5203
|
-
'courier'?: ShippingServiceModelCourierEnum;
|
|
5204
|
-
/**
|
|
5205
|
-
* Code
|
|
5206
|
-
* @type {string}
|
|
5207
|
-
* @memberof ShippingServiceModel
|
|
5208
|
-
*/
|
|
5209
|
-
'code'?: string;
|
|
5210
|
-
/**
|
|
5211
|
-
* Name
|
|
5212
|
-
* @type {string}
|
|
5213
|
-
* @memberof ShippingServiceModel
|
|
5214
|
-
*/
|
|
5215
|
-
'name'?: string;
|
|
5216
|
-
/**
|
|
5217
|
-
* Description
|
|
5218
|
-
* @type {string}
|
|
5219
|
-
* @memberof ShippingServiceModel
|
|
5220
|
-
*/
|
|
5221
|
-
'description'?: string;
|
|
5222
|
-
/**
|
|
5223
|
-
* Label
|
|
5224
|
-
* @type {string}
|
|
5225
|
-
* @memberof ShippingServiceModel
|
|
5226
|
-
*/
|
|
5227
|
-
'label'?: string | null;
|
|
5228
|
-
/**
|
|
5229
|
-
* Price
|
|
5230
|
-
* @type {number}
|
|
5231
|
-
* @memberof ShippingServiceModel
|
|
5232
|
-
*/
|
|
5233
|
-
'price'?: number | null;
|
|
5234
|
-
}
|
|
5235
|
-
export declare const ShippingServiceModelCourierEnum: {
|
|
5236
|
-
readonly Dpd: "DPD";
|
|
5237
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
5238
|
-
readonly Pops: "POPS";
|
|
5239
|
-
};
|
|
5240
|
-
export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
|
|
5241
|
-
/**
|
|
5242
|
-
*
|
|
5243
|
-
* @export
|
|
5244
|
-
* @interface ShippingServicesModel
|
|
5245
|
-
*/
|
|
5246
|
-
export interface ShippingServicesModel {
|
|
5247
|
-
/**
|
|
5248
|
-
* Services
|
|
5249
|
-
* @type {Array<ShippingServiceModel>}
|
|
5250
|
-
* @memberof ShippingServicesModel
|
|
5251
|
-
*/
|
|
5252
|
-
'services'?: Array<ShippingServiceModel>;
|
|
5253
|
-
}
|
|
5254
4535
|
/**
|
|
5255
4536
|
* Change Response
|
|
5256
4537
|
* @export
|
|
@@ -8070,49 +7351,6 @@ export interface TcxRemoteStorageModel {
|
|
|
8070
7351
|
*/
|
|
8071
7352
|
'secretAccessKey'?: string;
|
|
8072
7353
|
}
|
|
8073
|
-
/**
|
|
8074
|
-
* SBC Data
|
|
8075
|
-
* @export
|
|
8076
|
-
* @interface TcxSbcDTO
|
|
8077
|
-
*/
|
|
8078
|
-
export interface TcxSbcDTO {
|
|
8079
|
-
/**
|
|
8080
|
-
* LAN IP Address
|
|
8081
|
-
* @type {string}
|
|
8082
|
-
* @memberof TcxSbcDTO
|
|
8083
|
-
*/
|
|
8084
|
-
'ipAddress'?: string;
|
|
8085
|
-
/**
|
|
8086
|
-
* LAN Default Gateway
|
|
8087
|
-
* @type {string}
|
|
8088
|
-
* @memberof TcxSbcDTO
|
|
8089
|
-
*/
|
|
8090
|
-
'defaultGateway'?: string;
|
|
8091
|
-
/**
|
|
8092
|
-
* LAN Subnet Mask
|
|
8093
|
-
* @type {string}
|
|
8094
|
-
* @memberof TcxSbcDTO
|
|
8095
|
-
*/
|
|
8096
|
-
'netmask'?: string;
|
|
8097
|
-
/**
|
|
8098
|
-
* DNS
|
|
8099
|
-
* @type {string}
|
|
8100
|
-
* @memberof TcxSbcDTO
|
|
8101
|
-
*/
|
|
8102
|
-
'dns'?: string;
|
|
8103
|
-
/**
|
|
8104
|
-
* 3CX URL
|
|
8105
|
-
* @type {string}
|
|
8106
|
-
* @memberof TcxSbcDTO
|
|
8107
|
-
*/
|
|
8108
|
-
'tcxUrl'?: string;
|
|
8109
|
-
/**
|
|
8110
|
-
* 3CX SBC Key
|
|
8111
|
-
* @type {string}
|
|
8112
|
-
* @memberof TcxSbcDTO
|
|
8113
|
-
*/
|
|
8114
|
-
'tcxKey'?: string;
|
|
8115
|
-
}
|
|
8116
7354
|
/**
|
|
8117
7355
|
* 3CX Wizard SBC
|
|
8118
7356
|
* @export
|
|
@@ -8217,7 +7455,7 @@ export interface TcxSbcEntity {
|
|
|
8217
7455
|
'technicalContact'?: string;
|
|
8218
7456
|
}
|
|
8219
7457
|
/**
|
|
8220
|
-
* 3CX
|
|
7458
|
+
* 3CX SBC Model
|
|
8221
7459
|
* @export
|
|
8222
7460
|
* @interface TcxSbcModel
|
|
8223
7461
|
*/
|
|
@@ -9295,14 +8533,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9295
8533
|
* @throws {RequiredError}
|
|
9296
8534
|
*/
|
|
9297
8535
|
getGetAccountContacts: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9298
|
-
/**
|
|
9299
|
-
* Get Account Detailed Summary
|
|
9300
|
-
* @summary Get Account Detailed Summary
|
|
9301
|
-
* @param {number} id Customer ID
|
|
9302
|
-
* @param {*} [options] Override http request option.
|
|
9303
|
-
* @throws {RequiredError}
|
|
9304
|
-
*/
|
|
9305
|
-
getGetAccountDetailedSummary: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9306
8536
|
/**
|
|
9307
8537
|
* Get Accounts
|
|
9308
8538
|
* @summary Get Accounts
|
|
@@ -9368,13 +8598,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9368
8598
|
* @throws {RequiredError}
|
|
9369
8599
|
*/
|
|
9370
8600
|
postGetAccounts: (accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9371
|
-
/**
|
|
9372
|
-
* Get Admin Account
|
|
9373
|
-
* @summary Get Admin Account
|
|
9374
|
-
* @param {*} [options] Override http request option.
|
|
9375
|
-
* @throws {RequiredError}
|
|
9376
|
-
*/
|
|
9377
|
-
postGetAdminAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9378
8601
|
/**
|
|
9379
8602
|
* Create client credentials
|
|
9380
8603
|
* @summary Create client credentials
|
|
@@ -9455,14 +8678,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9455
8678
|
* @throws {RequiredError}
|
|
9456
8679
|
*/
|
|
9457
8680
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
9458
|
-
/**
|
|
9459
|
-
* Get Account Detailed Summary
|
|
9460
|
-
* @summary Get Account Detailed Summary
|
|
9461
|
-
* @param {number} id Customer ID
|
|
9462
|
-
* @param {*} [options] Override http request option.
|
|
9463
|
-
* @throws {RequiredError}
|
|
9464
|
-
*/
|
|
9465
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDetailedSummaryDTO>>;
|
|
9466
8681
|
/**
|
|
9467
8682
|
* Get Accounts
|
|
9468
8683
|
* @summary Get Accounts
|
|
@@ -9528,13 +8743,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9528
8743
|
* @throws {RequiredError}
|
|
9529
8744
|
*/
|
|
9530
8745
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
9531
|
-
/**
|
|
9532
|
-
* Get Admin Account
|
|
9533
|
-
* @summary Get Admin Account
|
|
9534
|
-
* @param {*} [options] Override http request option.
|
|
9535
|
-
* @throws {RequiredError}
|
|
9536
|
-
*/
|
|
9537
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminUserModel>>;
|
|
9538
8746
|
/**
|
|
9539
8747
|
* Create client credentials
|
|
9540
8748
|
* @summary Create client credentials
|
|
@@ -9615,14 +8823,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9615
8823
|
* @throws {RequiredError}
|
|
9616
8824
|
*/
|
|
9617
8825
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
9618
|
-
/**
|
|
9619
|
-
* Get Account Detailed Summary
|
|
9620
|
-
* @summary Get Account Detailed Summary
|
|
9621
|
-
* @param {number} id Customer ID
|
|
9622
|
-
* @param {*} [options] Override http request option.
|
|
9623
|
-
* @throws {RequiredError}
|
|
9624
|
-
*/
|
|
9625
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AccountDetailedSummaryDTO>;
|
|
9626
8826
|
/**
|
|
9627
8827
|
* Get Accounts
|
|
9628
8828
|
* @summary Get Accounts
|
|
@@ -9688,13 +8888,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9688
8888
|
* @throws {RequiredError}
|
|
9689
8889
|
*/
|
|
9690
8890
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
9691
|
-
/**
|
|
9692
|
-
* Get Admin Account
|
|
9693
|
-
* @summary Get Admin Account
|
|
9694
|
-
* @param {*} [options] Override http request option.
|
|
9695
|
-
* @throws {RequiredError}
|
|
9696
|
-
*/
|
|
9697
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): AxiosPromise<AdminUserModel>;
|
|
9698
8891
|
/**
|
|
9699
8892
|
* Create client credentials
|
|
9700
8893
|
* @summary Create client credentials
|
|
@@ -9781,15 +8974,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9781
8974
|
* @memberof AccountsApi
|
|
9782
8975
|
*/
|
|
9783
8976
|
getGetAccountContacts(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
9784
|
-
/**
|
|
9785
|
-
* Get Account Detailed Summary
|
|
9786
|
-
* @summary Get Account Detailed Summary
|
|
9787
|
-
* @param {number} id Customer ID
|
|
9788
|
-
* @param {*} [options] Override http request option.
|
|
9789
|
-
* @throws {RequiredError}
|
|
9790
|
-
* @memberof AccountsApi
|
|
9791
|
-
*/
|
|
9792
|
-
getGetAccountDetailedSummary(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDetailedSummaryDTO, any, {}>>;
|
|
9793
8977
|
/**
|
|
9794
8978
|
* Get Accounts
|
|
9795
8979
|
* @summary Get Accounts
|
|
@@ -9863,14 +9047,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9863
9047
|
* @memberof AccountsApi
|
|
9864
9048
|
*/
|
|
9865
9049
|
postGetAccounts(accountRequestModel?: AccountRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
9866
|
-
/**
|
|
9867
|
-
* Get Admin Account
|
|
9868
|
-
* @summary Get Admin Account
|
|
9869
|
-
* @param {*} [options] Override http request option.
|
|
9870
|
-
* @throws {RequiredError}
|
|
9871
|
-
* @memberof AccountsApi
|
|
9872
|
-
*/
|
|
9873
|
-
postGetAdminAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminUserModel, any, {}>>;
|
|
9874
9050
|
/**
|
|
9875
9051
|
* Create client credentials
|
|
9876
9052
|
* @summary Create client credentials
|
|
@@ -9920,6 +9096,57 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9920
9096
|
*/
|
|
9921
9097
|
putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9922
9098
|
}
|
|
9099
|
+
/**
|
|
9100
|
+
* CRMApi - axios parameter creator
|
|
9101
|
+
* @export
|
|
9102
|
+
*/
|
|
9103
|
+
export declare const CRMApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9104
|
+
/**
|
|
9105
|
+
* Search for contacts by phone number
|
|
9106
|
+
* @param {*} [options] Override http request option.
|
|
9107
|
+
* @throws {RequiredError}
|
|
9108
|
+
*/
|
|
9109
|
+
getSearchByPhone: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9110
|
+
};
|
|
9111
|
+
/**
|
|
9112
|
+
* CRMApi - functional programming interface
|
|
9113
|
+
* @export
|
|
9114
|
+
*/
|
|
9115
|
+
export declare const CRMApiFp: (configuration?: Configuration) => {
|
|
9116
|
+
/**
|
|
9117
|
+
* Search for contacts by phone number
|
|
9118
|
+
* @param {*} [options] Override http request option.
|
|
9119
|
+
* @throws {RequiredError}
|
|
9120
|
+
*/
|
|
9121
|
+
getSearchByPhone(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmContactDTO>>;
|
|
9122
|
+
};
|
|
9123
|
+
/**
|
|
9124
|
+
* CRMApi - factory interface
|
|
9125
|
+
* @export
|
|
9126
|
+
*/
|
|
9127
|
+
export declare const CRMApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9128
|
+
/**
|
|
9129
|
+
* Search for contacts by phone number
|
|
9130
|
+
* @param {*} [options] Override http request option.
|
|
9131
|
+
* @throws {RequiredError}
|
|
9132
|
+
*/
|
|
9133
|
+
getSearchByPhone(options?: RawAxiosRequestConfig): AxiosPromise<CrmContactDTO>;
|
|
9134
|
+
};
|
|
9135
|
+
/**
|
|
9136
|
+
* CRMApi - object-oriented interface
|
|
9137
|
+
* @export
|
|
9138
|
+
* @class CRMApi
|
|
9139
|
+
* @extends {BaseAPI}
|
|
9140
|
+
*/
|
|
9141
|
+
export declare class CRMApi extends BaseAPI {
|
|
9142
|
+
/**
|
|
9143
|
+
* Search for contacts by phone number
|
|
9144
|
+
* @param {*} [options] Override http request option.
|
|
9145
|
+
* @throws {RequiredError}
|
|
9146
|
+
* @memberof CRMApi
|
|
9147
|
+
*/
|
|
9148
|
+
getSearchByPhone(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmContactDTO, any, {}>>;
|
|
9149
|
+
}
|
|
9923
9150
|
/**
|
|
9924
9151
|
* Class3CXApi - axios parameter creator
|
|
9925
9152
|
* @export
|
|
@@ -9933,6 +9160,14 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9933
9160
|
* @throws {RequiredError}
|
|
9934
9161
|
*/
|
|
9935
9162
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9163
|
+
/**
|
|
9164
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9165
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9166
|
+
* @param {string} password Desired 3CX web access password
|
|
9167
|
+
* @param {*} [options] Override http request option.
|
|
9168
|
+
* @throws {RequiredError}
|
|
9169
|
+
*/
|
|
9170
|
+
getGetPasswordHash: (password: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9936
9171
|
/**
|
|
9937
9172
|
* Get Bulk 3CX Licence Details
|
|
9938
9173
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9955,6 +9190,14 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9955
9190
|
* @throws {RequiredError}
|
|
9956
9191
|
*/
|
|
9957
9192
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
9193
|
+
/**
|
|
9194
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9195
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9196
|
+
* @param {string} password Desired 3CX web access password
|
|
9197
|
+
* @param {*} [options] Override http request option.
|
|
9198
|
+
* @throws {RequiredError}
|
|
9199
|
+
*/
|
|
9200
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetPasswordHash200Response>>;
|
|
9958
9201
|
/**
|
|
9959
9202
|
* Get Bulk 3CX Licence Details
|
|
9960
9203
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9977,6 +9220,14 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9977
9220
|
* @throws {RequiredError}
|
|
9978
9221
|
*/
|
|
9979
9222
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
9223
|
+
/**
|
|
9224
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9225
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9226
|
+
* @param {string} password Desired 3CX web access password
|
|
9227
|
+
* @param {*} [options] Override http request option.
|
|
9228
|
+
* @throws {RequiredError}
|
|
9229
|
+
*/
|
|
9230
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetPasswordHash200Response>;
|
|
9980
9231
|
/**
|
|
9981
9232
|
* Get Bulk 3CX Licence Details
|
|
9982
9233
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -10002,6 +9253,15 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
10002
9253
|
* @memberof Class3CXApi
|
|
10003
9254
|
*/
|
|
10004
9255
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
9256
|
+
/**
|
|
9257
|
+
* Generate a 3CX hashed password for 3CX installation
|
|
9258
|
+
* @summary Convert a password to a hashed 3CX password
|
|
9259
|
+
* @param {string} password Desired 3CX web access password
|
|
9260
|
+
* @param {*} [options] Override http request option.
|
|
9261
|
+
* @throws {RequiredError}
|
|
9262
|
+
* @memberof Class3CXApi
|
|
9263
|
+
*/
|
|
9264
|
+
getGetPasswordHash(password: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetPasswordHash200Response, any, {}>>;
|
|
10005
9265
|
/**
|
|
10006
9266
|
* Get Bulk 3CX Licence Details
|
|
10007
9267
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12531,28 +11791,11 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
12531
11791
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12532
11792
|
/**
|
|
12533
11793
|
* Delete Orders
|
|
12534
|
-
* @summary Delete Orders
|
|
12535
|
-
* @param {number} id Order ID
|
|
12536
|
-
* @param {*} [options] Override http request option.
|
|
12537
|
-
* @throws {RequiredError}
|
|
12538
|
-
*/
|
|
12539
|
-
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12540
|
-
/**
|
|
12541
|
-
* Get Editable Order (Admin)
|
|
12542
|
-
* @summary Get Editable Order (Admin)
|
|
12543
|
-
* @param {number} id Order ID
|
|
12544
|
-
* @param {*} [options] Override http request option.
|
|
12545
|
-
* @throws {RequiredError}
|
|
12546
|
-
*/
|
|
12547
|
-
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12548
|
-
/**
|
|
12549
|
-
* Get Editable Order
|
|
12550
|
-
* @summary Get Editable Order
|
|
12551
11794
|
* @param {number} id Order ID
|
|
12552
11795
|
* @param {*} [options] Override http request option.
|
|
12553
11796
|
* @throws {RequiredError}
|
|
12554
11797
|
*/
|
|
12555
|
-
|
|
11798
|
+
deleteDeleteOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12556
11799
|
/**
|
|
12557
11800
|
* Get Orders
|
|
12558
11801
|
* @summary Get Orders
|
|
@@ -12567,44 +11810,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12567
11810
|
* @throws {RequiredError}
|
|
12568
11811
|
*/
|
|
12569
11812
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12570
|
-
/**
|
|
12571
|
-
* Create An Order (Admin)
|
|
12572
|
-
* @summary Create An Order (Admin)
|
|
12573
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12574
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12575
|
-
* @param {*} [options] Override http request option.
|
|
12576
|
-
* @throws {RequiredError}
|
|
12577
|
-
*/
|
|
12578
|
-
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12579
|
-
/**
|
|
12580
|
-
* Create An Order
|
|
12581
|
-
* @summary Create An Order
|
|
12582
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12583
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12584
|
-
* @param {*} [options] Override http request option.
|
|
12585
|
-
* @throws {RequiredError}
|
|
12586
|
-
*/
|
|
12587
|
-
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12588
|
-
/**
|
|
12589
|
-
* Update An Order (Admin)
|
|
12590
|
-
* @summary Update An Order (Admin)
|
|
12591
|
-
* @param {number} id Order ID
|
|
12592
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12593
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12594
|
-
* @param {*} [options] Override http request option.
|
|
12595
|
-
* @throws {RequiredError}
|
|
12596
|
-
*/
|
|
12597
|
-
putUpdateAdminOrder: (id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12598
|
-
/**
|
|
12599
|
-
* Update An Order
|
|
12600
|
-
* @summary Update An Order
|
|
12601
|
-
* @param {number} id Order ID
|
|
12602
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12603
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12604
|
-
* @param {*} [options] Override http request option.
|
|
12605
|
-
* @throws {RequiredError}
|
|
12606
|
-
*/
|
|
12607
|
-
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12608
11813
|
};
|
|
12609
11814
|
/**
|
|
12610
11815
|
* OrdersApi - functional programming interface
|
|
@@ -12613,28 +11818,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12613
11818
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
12614
11819
|
/**
|
|
12615
11820
|
* Delete Orders
|
|
12616
|
-
* @summary Delete Orders
|
|
12617
|
-
* @param {number} id Order ID
|
|
12618
|
-
* @param {*} [options] Override http request option.
|
|
12619
|
-
* @throws {RequiredError}
|
|
12620
|
-
*/
|
|
12621
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12622
|
-
/**
|
|
12623
|
-
* Get Editable Order (Admin)
|
|
12624
|
-
* @summary Get Editable Order (Admin)
|
|
12625
|
-
* @param {number} id Order ID
|
|
12626
|
-
* @param {*} [options] Override http request option.
|
|
12627
|
-
* @throws {RequiredError}
|
|
12628
|
-
*/
|
|
12629
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
12630
|
-
/**
|
|
12631
|
-
* Get Editable Order
|
|
12632
|
-
* @summary Get Editable Order
|
|
12633
11821
|
* @param {number} id Order ID
|
|
12634
11822
|
* @param {*} [options] Override http request option.
|
|
12635
11823
|
* @throws {RequiredError}
|
|
12636
11824
|
*/
|
|
12637
|
-
|
|
11825
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12638
11826
|
/**
|
|
12639
11827
|
* Get Orders
|
|
12640
11828
|
* @summary Get Orders
|
|
@@ -12649,44 +11837,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12649
11837
|
* @throws {RequiredError}
|
|
12650
11838
|
*/
|
|
12651
11839
|
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>>;
|
|
12652
|
-
/**
|
|
12653
|
-
* Create An Order (Admin)
|
|
12654
|
-
* @summary Create An Order (Admin)
|
|
12655
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12656
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12657
|
-
* @param {*} [options] Override http request option.
|
|
12658
|
-
* @throws {RequiredError}
|
|
12659
|
-
*/
|
|
12660
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12661
|
-
/**
|
|
12662
|
-
* Create An Order
|
|
12663
|
-
* @summary Create An Order
|
|
12664
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12665
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12666
|
-
* @param {*} [options] Override http request option.
|
|
12667
|
-
* @throws {RequiredError}
|
|
12668
|
-
*/
|
|
12669
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12670
|
-
/**
|
|
12671
|
-
* Update An Order (Admin)
|
|
12672
|
-
* @summary Update An Order (Admin)
|
|
12673
|
-
* @param {number} id Order ID
|
|
12674
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12675
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12676
|
-
* @param {*} [options] Override http request option.
|
|
12677
|
-
* @throws {RequiredError}
|
|
12678
|
-
*/
|
|
12679
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12680
|
-
/**
|
|
12681
|
-
* Update An Order
|
|
12682
|
-
* @summary Update An Order
|
|
12683
|
-
* @param {number} id Order ID
|
|
12684
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12685
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12686
|
-
* @param {*} [options] Override http request option.
|
|
12687
|
-
* @throws {RequiredError}
|
|
12688
|
-
*/
|
|
12689
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
12690
11840
|
};
|
|
12691
11841
|
/**
|
|
12692
11842
|
* OrdersApi - factory interface
|
|
@@ -12695,28 +11845,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
12695
11845
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12696
11846
|
/**
|
|
12697
11847
|
* Delete Orders
|
|
12698
|
-
* @summary Delete Orders
|
|
12699
|
-
* @param {number} id Order ID
|
|
12700
|
-
* @param {*} [options] Override http request option.
|
|
12701
|
-
* @throws {RequiredError}
|
|
12702
|
-
*/
|
|
12703
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12704
|
-
/**
|
|
12705
|
-
* Get Editable Order (Admin)
|
|
12706
|
-
* @summary Get Editable Order (Admin)
|
|
12707
|
-
* @param {number} id Order ID
|
|
12708
|
-
* @param {*} [options] Override http request option.
|
|
12709
|
-
* @throws {RequiredError}
|
|
12710
|
-
*/
|
|
12711
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
12712
|
-
/**
|
|
12713
|
-
* Get Editable Order
|
|
12714
|
-
* @summary Get Editable Order
|
|
12715
11848
|
* @param {number} id Order ID
|
|
12716
11849
|
* @param {*} [options] Override http request option.
|
|
12717
11850
|
* @throws {RequiredError}
|
|
12718
11851
|
*/
|
|
12719
|
-
|
|
11852
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12720
11853
|
/**
|
|
12721
11854
|
* Get Orders
|
|
12722
11855
|
* @summary Get Orders
|
|
@@ -12731,44 +11864,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12731
11864
|
* @throws {RequiredError}
|
|
12732
11865
|
*/
|
|
12733
11866
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
12734
|
-
/**
|
|
12735
|
-
* Create An Order (Admin)
|
|
12736
|
-
* @summary Create An Order (Admin)
|
|
12737
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12738
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12739
|
-
* @param {*} [options] Override http request option.
|
|
12740
|
-
* @throws {RequiredError}
|
|
12741
|
-
*/
|
|
12742
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12743
|
-
/**
|
|
12744
|
-
* Create An Order
|
|
12745
|
-
* @summary Create An Order
|
|
12746
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12747
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12748
|
-
* @param {*} [options] Override http request option.
|
|
12749
|
-
* @throws {RequiredError}
|
|
12750
|
-
*/
|
|
12751
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12752
|
-
/**
|
|
12753
|
-
* Update An Order (Admin)
|
|
12754
|
-
* @summary Update An Order (Admin)
|
|
12755
|
-
* @param {number} id Order ID
|
|
12756
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12757
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12758
|
-
* @param {*} [options] Override http request option.
|
|
12759
|
-
* @throws {RequiredError}
|
|
12760
|
-
*/
|
|
12761
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12762
|
-
/**
|
|
12763
|
-
* Update An Order
|
|
12764
|
-
* @summary Update An Order
|
|
12765
|
-
* @param {number} id Order ID
|
|
12766
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12767
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12768
|
-
* @param {*} [options] Override http request option.
|
|
12769
|
-
* @throws {RequiredError}
|
|
12770
|
-
*/
|
|
12771
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
12772
11867
|
};
|
|
12773
11868
|
/**
|
|
12774
11869
|
* OrdersApi - object-oriented interface
|
|
@@ -12779,31 +11874,12 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
12779
11874
|
export declare class OrdersApi extends BaseAPI {
|
|
12780
11875
|
/**
|
|
12781
11876
|
* Delete Orders
|
|
12782
|
-
* @summary Delete Orders
|
|
12783
|
-
* @param {number} id Order ID
|
|
12784
|
-
* @param {*} [options] Override http request option.
|
|
12785
|
-
* @throws {RequiredError}
|
|
12786
|
-
* @memberof OrdersApi
|
|
12787
|
-
*/
|
|
12788
|
-
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12789
|
-
/**
|
|
12790
|
-
* Get Editable Order (Admin)
|
|
12791
|
-
* @summary Get Editable Order (Admin)
|
|
12792
|
-
* @param {number} id Order ID
|
|
12793
|
-
* @param {*} [options] Override http request option.
|
|
12794
|
-
* @throws {RequiredError}
|
|
12795
|
-
* @memberof OrdersApi
|
|
12796
|
-
*/
|
|
12797
|
-
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
12798
|
-
/**
|
|
12799
|
-
* Get Editable Order
|
|
12800
|
-
* @summary Get Editable Order
|
|
12801
11877
|
* @param {number} id Order ID
|
|
12802
11878
|
* @param {*} [options] Override http request option.
|
|
12803
11879
|
* @throws {RequiredError}
|
|
12804
11880
|
* @memberof OrdersApi
|
|
12805
11881
|
*/
|
|
12806
|
-
|
|
11882
|
+
deleteDeleteOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12807
11883
|
/**
|
|
12808
11884
|
* Get Orders
|
|
12809
11885
|
* @summary Get Orders
|
|
@@ -12819,48 +11895,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
12819
11895
|
* @memberof OrdersApi
|
|
12820
11896
|
*/
|
|
12821
11897
|
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, {}>>;
|
|
12822
|
-
/**
|
|
12823
|
-
* Create An Order (Admin)
|
|
12824
|
-
* @summary Create An Order (Admin)
|
|
12825
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12826
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Admin Order Request
|
|
12827
|
-
* @param {*} [options] Override http request option.
|
|
12828
|
-
* @throws {RequiredError}
|
|
12829
|
-
* @memberof OrdersApi
|
|
12830
|
-
*/
|
|
12831
|
-
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12832
|
-
/**
|
|
12833
|
-
* Create An Order
|
|
12834
|
-
* @summary Create An Order
|
|
12835
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12836
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12837
|
-
* @param {*} [options] Override http request option.
|
|
12838
|
-
* @throws {RequiredError}
|
|
12839
|
-
* @memberof OrdersApi
|
|
12840
|
-
*/
|
|
12841
|
-
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12842
|
-
/**
|
|
12843
|
-
* Update An Order (Admin)
|
|
12844
|
-
* @summary Update An Order (Admin)
|
|
12845
|
-
* @param {number} id Order ID
|
|
12846
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12847
|
-
* @param {AdminOrderRequestDTO} [adminOrderRequestDTO] Order Request
|
|
12848
|
-
* @param {*} [options] Override http request option.
|
|
12849
|
-
* @throws {RequiredError}
|
|
12850
|
-
* @memberof OrdersApi
|
|
12851
|
-
*/
|
|
12852
|
-
putUpdateAdminOrder(id: number, readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12853
|
-
/**
|
|
12854
|
-
* Update An Order
|
|
12855
|
-
* @summary Update An Order
|
|
12856
|
-
* @param {number} id Order ID
|
|
12857
|
-
* @param {boolean} [readonly] Readonly Order
|
|
12858
|
-
* @param {CustomerOrderRequestDTO} [customerOrderRequestDTO] Order Request
|
|
12859
|
-
* @param {*} [options] Override http request option.
|
|
12860
|
-
* @throws {RequiredError}
|
|
12861
|
-
* @memberof OrdersApi
|
|
12862
|
-
*/
|
|
12863
|
-
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
12864
11898
|
}
|
|
12865
11899
|
/**
|
|
12866
11900
|
* @export
|
|
@@ -13116,6 +12150,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13116
12150
|
* @throws {RequiredError}
|
|
13117
12151
|
*/
|
|
13118
12152
|
getGetAttributeSets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12153
|
+
/**
|
|
12154
|
+
* Get Customer Price Lists
|
|
12155
|
+
* @summary Get Customer Price Lists
|
|
12156
|
+
* @param {*} [options] Override http request option.
|
|
12157
|
+
* @throws {RequiredError}
|
|
12158
|
+
*/
|
|
12159
|
+
getGetCustomerPriceLists: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13119
12160
|
/**
|
|
13120
12161
|
* Get Current Stock & Pricing
|
|
13121
12162
|
* @summary Get Current Stock & Pricing
|
|
@@ -13128,10 +12169,13 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13128
12169
|
/**
|
|
13129
12170
|
* Get Products
|
|
13130
12171
|
* @summary Get Products
|
|
12172
|
+
* @param {number} [pageSize] Number Of Results
|
|
12173
|
+
* @param {number} [page] Page Number
|
|
12174
|
+
* @param {string} [search] Search
|
|
13131
12175
|
* @param {*} [options] Override http request option.
|
|
13132
12176
|
* @throws {RequiredError}
|
|
13133
12177
|
*/
|
|
13134
|
-
getGetProducts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12178
|
+
getGetProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13135
12179
|
/**
|
|
13136
12180
|
* Get Current Stock & Pricing
|
|
13137
12181
|
* @summary Get Current Stock & Pricing
|
|
@@ -13146,35 +12190,6 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13146
12190
|
* @throws {RequiredError}
|
|
13147
12191
|
*/
|
|
13148
12192
|
getGetTcxTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13149
|
-
/**
|
|
13150
|
-
* Search Products
|
|
13151
|
-
* @summary Search Products
|
|
13152
|
-
* @param {number} [pageSize] Number Of Results
|
|
13153
|
-
* @param {number} [page] Page Number
|
|
13154
|
-
* @param {string} [search] Search
|
|
13155
|
-
* @param {*} [options] Override http request option.
|
|
13156
|
-
* @throws {RequiredError}
|
|
13157
|
-
*/
|
|
13158
|
-
getSearchProducts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13159
|
-
/**
|
|
13160
|
-
* Get Product
|
|
13161
|
-
* @summary Get Product
|
|
13162
|
-
* @param {string} sku Product SKU
|
|
13163
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13164
|
-
* @param {*} [options] Override http request option.
|
|
13165
|
-
* @throws {RequiredError}
|
|
13166
|
-
*/
|
|
13167
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13168
|
-
/**
|
|
13169
|
-
* Get Product For Customer
|
|
13170
|
-
* @summary Get Product For Customer
|
|
13171
|
-
* @param {number} customerId Customer ID
|
|
13172
|
-
* @param {string} sku Product SKU
|
|
13173
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13174
|
-
* @param {*} [options] Override http request option.
|
|
13175
|
-
* @throws {RequiredError}
|
|
13176
|
-
*/
|
|
13177
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13178
12193
|
};
|
|
13179
12194
|
/**
|
|
13180
12195
|
* ProductsApi - functional programming interface
|
|
@@ -13188,6 +12203,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13188
12203
|
* @throws {RequiredError}
|
|
13189
12204
|
*/
|
|
13190
12205
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeSetEnum>>>;
|
|
12206
|
+
/**
|
|
12207
|
+
* Get Customer Price Lists
|
|
12208
|
+
* @summary Get Customer Price Lists
|
|
12209
|
+
* @param {*} [options] Override http request option.
|
|
12210
|
+
* @throws {RequiredError}
|
|
12211
|
+
*/
|
|
12212
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerPriceListEnum>>>;
|
|
13191
12213
|
/**
|
|
13192
12214
|
* Get Current Stock & Pricing
|
|
13193
12215
|
* @summary Get Current Stock & Pricing
|
|
@@ -13200,10 +12222,13 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13200
12222
|
/**
|
|
13201
12223
|
* Get Products
|
|
13202
12224
|
* @summary Get Products
|
|
12225
|
+
* @param {number} [pageSize] Number Of Results
|
|
12226
|
+
* @param {number} [page] Page Number
|
|
12227
|
+
* @param {string} [search] Search
|
|
13203
12228
|
* @param {*} [options] Override http request option.
|
|
13204
12229
|
* @throws {RequiredError}
|
|
13205
12230
|
*/
|
|
13206
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12231
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13207
12232
|
/**
|
|
13208
12233
|
* Get Current Stock & Pricing
|
|
13209
12234
|
* @summary Get Current Stock & Pricing
|
|
@@ -13218,35 +12243,6 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
13218
12243
|
* @throws {RequiredError}
|
|
13219
12244
|
*/
|
|
13220
12245
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxTemplateXmlEnum>>>;
|
|
13221
|
-
/**
|
|
13222
|
-
* Search Products
|
|
13223
|
-
* @summary Search Products
|
|
13224
|
-
* @param {number} [pageSize] Number Of Results
|
|
13225
|
-
* @param {number} [page] Page Number
|
|
13226
|
-
* @param {string} [search] Search
|
|
13227
|
-
* @param {*} [options] Override http request option.
|
|
13228
|
-
* @throws {RequiredError}
|
|
13229
|
-
*/
|
|
13230
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSearchResultsModel>>;
|
|
13231
|
-
/**
|
|
13232
|
-
* Get Product
|
|
13233
|
-
* @summary Get Product
|
|
13234
|
-
* @param {string} sku Product SKU
|
|
13235
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13236
|
-
* @param {*} [options] Override http request option.
|
|
13237
|
-
* @throws {RequiredError}
|
|
13238
|
-
*/
|
|
13239
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13240
|
-
/**
|
|
13241
|
-
* Get Product For Customer
|
|
13242
|
-
* @summary Get Product For Customer
|
|
13243
|
-
* @param {number} customerId Customer ID
|
|
13244
|
-
* @param {string} sku Product SKU
|
|
13245
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13246
|
-
* @param {*} [options] Override http request option.
|
|
13247
|
-
* @throws {RequiredError}
|
|
13248
|
-
*/
|
|
13249
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
13250
12246
|
};
|
|
13251
12247
|
/**
|
|
13252
12248
|
* ProductsApi - factory interface
|
|
@@ -13260,6 +12256,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13260
12256
|
* @throws {RequiredError}
|
|
13261
12257
|
*/
|
|
13262
12258
|
getGetAttributeSets(options?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeSetEnum>>;
|
|
12259
|
+
/**
|
|
12260
|
+
* Get Customer Price Lists
|
|
12261
|
+
* @summary Get Customer Price Lists
|
|
12262
|
+
* @param {*} [options] Override http request option.
|
|
12263
|
+
* @throws {RequiredError}
|
|
12264
|
+
*/
|
|
12265
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerPriceListEnum>>;
|
|
13263
12266
|
/**
|
|
13264
12267
|
* Get Current Stock & Pricing
|
|
13265
12268
|
* @summary Get Current Stock & Pricing
|
|
@@ -13272,10 +12275,13 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13272
12275
|
/**
|
|
13273
12276
|
* Get Products
|
|
13274
12277
|
* @summary Get Products
|
|
12278
|
+
* @param {number} [pageSize] Number Of Results
|
|
12279
|
+
* @param {number} [page] Page Number
|
|
12280
|
+
* @param {string} [search] Search
|
|
13275
12281
|
* @param {*} [options] Override http request option.
|
|
13276
12282
|
* @throws {RequiredError}
|
|
13277
12283
|
*/
|
|
13278
|
-
getGetProducts(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12284
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13279
12285
|
/**
|
|
13280
12286
|
* Get Current Stock & Pricing
|
|
13281
12287
|
* @summary Get Current Stock & Pricing
|
|
@@ -13290,35 +12296,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
13290
12296
|
* @throws {RequiredError}
|
|
13291
12297
|
*/
|
|
13292
12298
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxTemplateXmlEnum>>;
|
|
13293
|
-
/**
|
|
13294
|
-
* Search Products
|
|
13295
|
-
* @summary Search Products
|
|
13296
|
-
* @param {number} [pageSize] Number Of Results
|
|
13297
|
-
* @param {number} [page] Page Number
|
|
13298
|
-
* @param {string} [search] Search
|
|
13299
|
-
* @param {*} [options] Override http request option.
|
|
13300
|
-
* @throws {RequiredError}
|
|
13301
|
-
*/
|
|
13302
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProductSearchResultsModel>;
|
|
13303
|
-
/**
|
|
13304
|
-
* Get Product
|
|
13305
|
-
* @summary Get Product
|
|
13306
|
-
* @param {string} sku Product SKU
|
|
13307
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13308
|
-
* @param {*} [options] Override http request option.
|
|
13309
|
-
* @throws {RequiredError}
|
|
13310
|
-
*/
|
|
13311
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13312
|
-
/**
|
|
13313
|
-
* Get Product For Customer
|
|
13314
|
-
* @summary Get Product For Customer
|
|
13315
|
-
* @param {number} customerId Customer ID
|
|
13316
|
-
* @param {string} sku Product SKU
|
|
13317
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13318
|
-
* @param {*} [options] Override http request option.
|
|
13319
|
-
* @throws {RequiredError}
|
|
13320
|
-
*/
|
|
13321
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
13322
12299
|
};
|
|
13323
12300
|
/**
|
|
13324
12301
|
* ProductsApi - object-oriented interface
|
|
@@ -13335,6 +12312,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13335
12312
|
* @memberof ProductsApi
|
|
13336
12313
|
*/
|
|
13337
12314
|
getGetAttributeSets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeSetEnum[], any, {}>>;
|
|
12315
|
+
/**
|
|
12316
|
+
* Get Customer Price Lists
|
|
12317
|
+
* @summary Get Customer Price Lists
|
|
12318
|
+
* @param {*} [options] Override http request option.
|
|
12319
|
+
* @throws {RequiredError}
|
|
12320
|
+
* @memberof ProductsApi
|
|
12321
|
+
*/
|
|
12322
|
+
getGetCustomerPriceLists(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerPriceListEnum[], any, {}>>;
|
|
13338
12323
|
/**
|
|
13339
12324
|
* Get Current Stock & Pricing
|
|
13340
12325
|
* @summary Get Current Stock & Pricing
|
|
@@ -13348,11 +12333,14 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13348
12333
|
/**
|
|
13349
12334
|
* Get Products
|
|
13350
12335
|
* @summary Get Products
|
|
12336
|
+
* @param {number} [pageSize] Number Of Results
|
|
12337
|
+
* @param {number} [page] Page Number
|
|
12338
|
+
* @param {string} [search] Search
|
|
13351
12339
|
* @param {*} [options] Override http request option.
|
|
13352
12340
|
* @throws {RequiredError}
|
|
13353
12341
|
* @memberof ProductsApi
|
|
13354
12342
|
*/
|
|
13355
|
-
getGetProducts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12343
|
+
getGetProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13356
12344
|
/**
|
|
13357
12345
|
* Get Current Stock & Pricing
|
|
13358
12346
|
* @summary Get Current Stock & Pricing
|
|
@@ -13369,38 +12357,6 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
13369
12357
|
* @memberof ProductsApi
|
|
13370
12358
|
*/
|
|
13371
12359
|
getGetTcxTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxTemplateXmlEnum[], any, {}>>;
|
|
13372
|
-
/**
|
|
13373
|
-
* Search Products
|
|
13374
|
-
* @summary Search Products
|
|
13375
|
-
* @param {number} [pageSize] Number Of Results
|
|
13376
|
-
* @param {number} [page] Page Number
|
|
13377
|
-
* @param {string} [search] Search
|
|
13378
|
-
* @param {*} [options] Override http request option.
|
|
13379
|
-
* @throws {RequiredError}
|
|
13380
|
-
* @memberof ProductsApi
|
|
13381
|
-
*/
|
|
13382
|
-
getSearchProducts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSearchResultsModel, any, {}>>;
|
|
13383
|
-
/**
|
|
13384
|
-
* Get Product
|
|
13385
|
-
* @summary Get Product
|
|
13386
|
-
* @param {string} sku Product SKU
|
|
13387
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13388
|
-
* @param {*} [options] Override http request option.
|
|
13389
|
-
* @throws {RequiredError}
|
|
13390
|
-
* @memberof ProductsApi
|
|
13391
|
-
*/
|
|
13392
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13393
|
-
/**
|
|
13394
|
-
* Get Product For Customer
|
|
13395
|
-
* @summary Get Product For Customer
|
|
13396
|
-
* @param {number} customerId Customer ID
|
|
13397
|
-
* @param {string} sku Product SKU
|
|
13398
|
-
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
13399
|
-
* @param {*} [options] Override http request option.
|
|
13400
|
-
* @throws {RequiredError}
|
|
13401
|
-
* @memberof ProductsApi
|
|
13402
|
-
*/
|
|
13403
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
13404
12360
|
}
|
|
13405
12361
|
/**
|
|
13406
12362
|
* @export
|
|
@@ -13521,7 +12477,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13521
12477
|
* @param {*} [options] Override http request option.
|
|
13522
12478
|
* @throws {RequiredError}
|
|
13523
12479
|
*/
|
|
13524
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
12480
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningEntity>>>;
|
|
13525
12481
|
/**
|
|
13526
12482
|
* Create a Fanvil provisioning group
|
|
13527
12483
|
* @summary Add group to DB and FDPS
|
|
@@ -13529,7 +12485,7 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
13529
12485
|
* @param {*} [options] Override http request option.
|
|
13530
12486
|
* @throws {RequiredError}
|
|
13531
12487
|
*/
|
|
13532
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12488
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningEntity>>;
|
|
13533
12489
|
/**
|
|
13534
12490
|
* Add MAC address to DB and FDPS group
|
|
13535
12491
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13586,7 +12542,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13586
12542
|
* @param {*} [options] Override http request option.
|
|
13587
12543
|
* @throws {RequiredError}
|
|
13588
12544
|
*/
|
|
13589
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12545
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningEntity>>;
|
|
13590
12546
|
/**
|
|
13591
12547
|
* Create a Fanvil provisioning group
|
|
13592
12548
|
* @summary Add group to DB and FDPS
|
|
@@ -13594,7 +12550,7 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
13594
12550
|
* @param {*} [options] Override http request option.
|
|
13595
12551
|
* @throws {RequiredError}
|
|
13596
12552
|
*/
|
|
13597
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12553
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningEntity>;
|
|
13598
12554
|
/**
|
|
13599
12555
|
* Add MAC address to DB and FDPS group
|
|
13600
12556
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -13658,7 +12614,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13658
12614
|
* @throws {RequiredError}
|
|
13659
12615
|
* @memberof ProvisioningApi
|
|
13660
12616
|
*/
|
|
13661
|
-
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12617
|
+
getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity[], any, {}>>;
|
|
13662
12618
|
/**
|
|
13663
12619
|
* Create a Fanvil provisioning group
|
|
13664
12620
|
* @summary Add group to DB and FDPS
|
|
@@ -13667,7 +12623,7 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
13667
12623
|
* @throws {RequiredError}
|
|
13668
12624
|
* @memberof ProvisioningApi
|
|
13669
12625
|
*/
|
|
13670
|
-
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12626
|
+
postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningEntity, any, {}>>;
|
|
13671
12627
|
/**
|
|
13672
12628
|
* Add MAC address to DB and FDPS group
|
|
13673
12629
|
* @summary Add MAC address to DB and FDPS group
|
|
@@ -14542,65 +13498,6 @@ export declare class SMSApi extends BaseAPI {
|
|
|
14542
13498
|
*/
|
|
14543
13499
|
postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
|
|
14544
13500
|
}
|
|
14545
|
-
/**
|
|
14546
|
-
* ShippingApi - axios parameter creator
|
|
14547
|
-
* @export
|
|
14548
|
-
*/
|
|
14549
|
-
export declare const ShippingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14550
|
-
/**
|
|
14551
|
-
* Get Shipping Services
|
|
14552
|
-
* @summary Get Shipping Services
|
|
14553
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14554
|
-
* @param {*} [options] Override http request option.
|
|
14555
|
-
* @throws {RequiredError}
|
|
14556
|
-
*/
|
|
14557
|
-
postGetShippingServices: (shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14558
|
-
};
|
|
14559
|
-
/**
|
|
14560
|
-
* ShippingApi - functional programming interface
|
|
14561
|
-
* @export
|
|
14562
|
-
*/
|
|
14563
|
-
export declare const ShippingApiFp: (configuration?: Configuration) => {
|
|
14564
|
-
/**
|
|
14565
|
-
* Get Shipping Services
|
|
14566
|
-
* @summary Get Shipping Services
|
|
14567
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14568
|
-
* @param {*} [options] Override http request option.
|
|
14569
|
-
* @throws {RequiredError}
|
|
14570
|
-
*/
|
|
14571
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShippingServicesModel>>;
|
|
14572
|
-
};
|
|
14573
|
-
/**
|
|
14574
|
-
* ShippingApi - factory interface
|
|
14575
|
-
* @export
|
|
14576
|
-
*/
|
|
14577
|
-
export declare const ShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14578
|
-
/**
|
|
14579
|
-
* Get Shipping Services
|
|
14580
|
-
* @summary Get Shipping Services
|
|
14581
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14582
|
-
* @param {*} [options] Override http request option.
|
|
14583
|
-
* @throws {RequiredError}
|
|
14584
|
-
*/
|
|
14585
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShippingServicesModel>;
|
|
14586
|
-
};
|
|
14587
|
-
/**
|
|
14588
|
-
* ShippingApi - object-oriented interface
|
|
14589
|
-
* @export
|
|
14590
|
-
* @class ShippingApi
|
|
14591
|
-
* @extends {BaseAPI}
|
|
14592
|
-
*/
|
|
14593
|
-
export declare class ShippingApi extends BaseAPI {
|
|
14594
|
-
/**
|
|
14595
|
-
* Get Shipping Services
|
|
14596
|
-
* @summary Get Shipping Services
|
|
14597
|
-
* @param {ShippingInformationDTO} [shippingInformationDTO] Shipping Information
|
|
14598
|
-
* @param {*} [options] Override http request option.
|
|
14599
|
-
* @throws {RequiredError}
|
|
14600
|
-
* @memberof ShippingApi
|
|
14601
|
-
*/
|
|
14602
|
-
postGetShippingServices(shippingInformationDTO?: ShippingInformationDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShippingServicesModel, any, {}>>;
|
|
14603
|
-
}
|
|
14604
13501
|
/**
|
|
14605
13502
|
* StockManagementApi - axios parameter creator
|
|
14606
13503
|
* @export
|
|
@@ -14930,7 +13827,7 @@ export declare const StockManagementApiFp: (configuration?: Configuration) => {
|
|
|
14930
13827
|
* @param {*} [options] Override http request option.
|
|
14931
13828
|
* @throws {RequiredError}
|
|
14932
13829
|
*/
|
|
14933
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13830
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductSummaryModel>>>;
|
|
14934
13831
|
/**
|
|
14935
13832
|
* Get Stock Order Supplier Invoice
|
|
14936
13833
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15145,7 +14042,7 @@ export declare const StockManagementApiFactory: (configuration?: Configuration,
|
|
|
15145
14042
|
* @param {*} [options] Override http request option.
|
|
15146
14043
|
* @throws {RequiredError}
|
|
15147
14044
|
*/
|
|
15148
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
14045
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProductSummaryModel>>;
|
|
15149
14046
|
/**
|
|
15150
14047
|
* Get Stock Order Supplier Invoice
|
|
15151
14048
|
* @summary Get Stock Order Supplier Invoice
|
|
@@ -15375,7 +14272,7 @@ export declare class StockManagementApi extends BaseAPI {
|
|
|
15375
14272
|
* @throws {RequiredError}
|
|
15376
14273
|
* @memberof StockManagementApi
|
|
15377
14274
|
*/
|
|
15378
|
-
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
14275
|
+
getGetStockSupplierProducts(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryModel[], any, {}>>;
|
|
15379
14276
|
/**
|
|
15380
14277
|
* Get Stock Order Supplier Invoice
|
|
15381
14278
|
* @summary Get Stock Order Supplier Invoice
|