yellowgrid-api-ts 3.2.160-dev.0 → 3.2.162-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +6 -0
  4. package/api.ts +581 -246
  5. package/configuration.ts +2 -2
  6. package/dist/api.d.ts +209 -9
  7. package/dist/api.js +542 -237
  8. package/dist/configuration.js +2 -2
  9. package/docs/AbstractOrderRequestDTO.md +1 -1
  10. package/docs/AccountsApi.md +96 -0
  11. package/docs/AdminOrderRequestDTO.md +1 -1
  12. package/docs/CRMApi.md +2 -2
  13. package/docs/Class3CXApi.md +48 -0
  14. package/docs/Class3CXInstallationsApi.md +55 -0
  15. package/docs/{CrmActivityDto.md → CrmActivityDTO.md} +1 -1
  16. package/docs/CrmDateActivitiesDTO.md +1 -1
  17. package/docs/CustomerListAccountDTO.md +27 -0
  18. package/docs/CustomerOrderRequestDTO.md +1 -1
  19. package/docs/DetailedOrderRequestDTO.md +1 -1
  20. package/docs/ProductSummaryDTO.md +2 -2
  21. package/docs/ProspectDTO.md +2 -2
  22. package/docs/RecordingBackupAzureModel.md +2 -0
  23. package/docs/RecordingsBackupInfoDTO.md +2 -2
  24. package/docs/ShipmentRequestDTO.md +2 -2
  25. package/docs/TableHistoryEntity.md +35 -0
  26. package/docs/TcxKeySummaryDTO.md +1 -1
  27. package/openapitools.json +1 -1
  28. package/package.json +2 -2
  29. package/docs/AccountPageDetailsDTO.md +0 -41
  30. package/docs/PatchSendWelcomeEmailRequest.md +0 -20
  31. package/docs/PatchSetTcxWizardCnameRequest.md +0 -20
  32. package/docs/PostAddAdminNoteRequest.md +0 -20
  33. package/docs/PostCreateCrmNoteRequest.md +0 -20
  34. package/docs/PostGetProductRequest.md +0 -24
  35. package/docs/TcxInstallationDetailsModel.md +0 -45
  36. /package/docs/{CrmActivitiesResponseDto.md → CrmActivitiesResponseDTO.md} +0 -0
@@ -49,8 +49,8 @@ var Configuration = /** @class */ (function () {
49
49
  * @return True if the given MIME is JSON, false otherwise.
50
50
  */
51
51
  Configuration.prototype.isJsonMime = function (mime) {
52
- var jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
53
- return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
52
+ var jsonMime = /^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$/i;
53
+ return mime !== null && jsonMime.test(mime);
54
54
  };
55
55
  return Configuration;
56
56
  }());
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  **items** | [**Array<CustomerItemRequestDTO>**](CustomerItemRequestDTO.md) | Items | [optional] [default to undefined]
11
11
  **shippingService** | [**ShippingServiceDTO**](ShippingServiceDTO.md) | | [optional] [default to undefined]
12
12
  **provisioningUrl** | **string** | Provisioning URL | [optional] [default to undefined]
13
- **shippingAddress** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
13
+ **shippingAddress** | [**AddressModel**](AddressModel.md) | Shipping Address | [optional] [default to undefined]
14
14
  **partShip** | **boolean** | Part Ship Order | [optional] [default to undefined]
15
15
  **quote** | **boolean** | Quote | [optional] [default to undefined]
16
16
 
@@ -15,8 +15,10 @@ All URIs are relative to *https://localhost*
15
15
  |[**getGetAccountDetailedSummary**](#getgetaccountdetailedsummary) | **GET** /accounts/{id}/summary | Get Account Detailed Summary|
16
16
  |[**getGetAccounts**](#getgetaccounts) | **GET** /accounts | Get Accounts|
17
17
  |[**getGetClientCredentials**](#getgetclientcredentials) | **GET** /accounts/me/contacts/credentials | Get user\'s client credentials|
18
+ |[**getGetCustomerAccountsList**](#getgetcustomeraccountslist) | **GET** /admin/accounts/customers/list | |
18
19
  |[**getGetCustomerKeys**](#getgetcustomerkeys) | **GET** /accounts/me/tcx/keys | Get 3CX Keys|
19
20
  |[**getGetFinanceSettings**](#getgetfinancesettings) | **GET** /admin/accounts/{id}/finance | |
21
+ |[**getGetLastAccount**](#getgetlastaccount) | **GET** /admin/accounts/last | Get Last Account|
20
22
  |[**getGetTcxPartnerDetails**](#getgettcxpartnerdetails) | **GET** /admin/accounts/{id}/tcx/partner | |
21
23
  |[**getVerifyEmailAddress**](#getverifyemailaddress) | **GET** /accounts/contacts/verify | Verify account email address|
22
24
  |[**patchSetPortalAccess**](#patchsetportalaccess) | **PATCH** /admin/accounts/{id}/portal/access/{state} | |
@@ -638,6 +640,53 @@ No authorization required
638
640
 
639
641
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
640
642
 
643
+ # **getGetCustomerAccountsList**
644
+ > Array<CustomerListAccountDTO> getGetCustomerAccountsList()
645
+
646
+ Get Customer Accounts List
647
+
648
+ ### Example
649
+
650
+ ```typescript
651
+ import {
652
+ AccountsApi,
653
+ Configuration
654
+ } from 'yellowgrid-api-ts';
655
+
656
+ const configuration = new Configuration();
657
+ const apiInstance = new AccountsApi(configuration);
658
+
659
+ const { status, data } = await apiInstance.getGetCustomerAccountsList();
660
+ ```
661
+
662
+ ### Parameters
663
+ This endpoint does not have any parameters.
664
+
665
+
666
+ ### Return type
667
+
668
+ **Array<CustomerListAccountDTO>**
669
+
670
+ ### Authorization
671
+
672
+ No authorization required
673
+
674
+ ### HTTP request headers
675
+
676
+ - **Content-Type**: Not defined
677
+ - **Accept**: application/json
678
+
679
+
680
+ ### HTTP response details
681
+ | Status code | Description | Response headers |
682
+ |-------------|-------------|------------------|
683
+ |**200** | Account Addresses | - |
684
+ |**400** | Bad Request | - |
685
+ |**401** | Unauthorised | - |
686
+ |**403** | Access Denied | - |
687
+
688
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
689
+
641
690
  # **getGetCustomerKeys**
642
691
  > Array<TcxKeySummaryDTO> getGetCustomerKeys()
643
692
 
@@ -739,6 +788,53 @@ No authorization required
739
788
 
740
789
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
741
790
 
791
+ # **getGetLastAccount**
792
+ > AccountSummaryDTO getGetLastAccount()
793
+
794
+ Get Last Account
795
+
796
+ ### Example
797
+
798
+ ```typescript
799
+ import {
800
+ AccountsApi,
801
+ Configuration
802
+ } from 'yellowgrid-api-ts';
803
+
804
+ const configuration = new Configuration();
805
+ const apiInstance = new AccountsApi(configuration);
806
+
807
+ const { status, data } = await apiInstance.getGetLastAccount();
808
+ ```
809
+
810
+ ### Parameters
811
+ This endpoint does not have any parameters.
812
+
813
+
814
+ ### Return type
815
+
816
+ **AccountSummaryDTO**
817
+
818
+ ### Authorization
819
+
820
+ No authorization required
821
+
822
+ ### HTTP request headers
823
+
824
+ - **Content-Type**: Not defined
825
+ - **Accept**: application/json
826
+
827
+
828
+ ### HTTP response details
829
+ | Status code | Description | Response headers |
830
+ |-------------|-------------|------------------|
831
+ |**200** | Account Summary | - |
832
+ |**400** | Bad Request | - |
833
+ |**401** | Unauthorised | - |
834
+ |**403** | Access Denied | - |
835
+
836
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
837
+
742
838
  # **getGetTcxPartnerDetails**
743
839
  > PartnerDTO getGetTcxPartnerDetails()
744
840
 
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  **items** | [**Array&lt;DetailedItemRequestDTO&gt;**](DetailedItemRequestDTO.md) | Items | [optional] [default to undefined]
11
11
  **shippingService** | [**ShippingServiceDTO**](ShippingServiceDTO.md) | | [optional] [default to undefined]
12
12
  **provisioningUrl** | **string** | Provisioning URL | [optional] [default to undefined]
13
- **shippingAddress** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
13
+ **shippingAddress** | [**AddressModel**](AddressModel.md) | Shipping Address | [optional] [default to undefined]
14
14
  **partShip** | **boolean** | Part Ship Order | [optional] [default to undefined]
15
15
  **quote** | **boolean** | Quote | [optional] [default to undefined]
16
16
  **customerId** | **number** | Customer ID | [optional] [default to undefined]
package/docs/CRMApi.md CHANGED
@@ -25,7 +25,7 @@ const configuration = new Configuration();
25
25
  const apiInstance = new CRMApi(configuration);
26
26
 
27
27
  let id: number; //Account ID (default to undefined)
28
- let type: 'alert' | 'call' | 'note' | 'order' | 'quote' | 'tcx_order'; //Activity Type (optional) (default to undefined)
28
+ let type: 'alert' | 'call' | 'email' | 'note' | 'order' | 'quote' | 'tcx_order'; //Activity Type (optional) (default to undefined)
29
29
  let userId: number; //Activity Created By (optional) (default to undefined)
30
30
 
31
31
  const { status, data } = await apiInstance.getGetCrmActivities(
@@ -40,7 +40,7 @@ const { status, data } = await apiInstance.getGetCrmActivities(
40
40
  |Name | Type | Description | Notes|
41
41
  |------------- | ------------- | ------------- | -------------|
42
42
  | **id** | [**number**] | Account ID | defaults to undefined|
43
- | **type** | [**&#39;alert&#39; | &#39;call&#39; | &#39;note&#39; | &#39;order&#39; | &#39;quote&#39; | &#39;tcx_order&#39;**]**Array<&#39;alert&#39; &#124; &#39;call&#39; &#124; &#39;note&#39; &#124; &#39;order&#39; &#124; &#39;quote&#39; &#124; &#39;tcx_order&#39;>** | Activity Type | (optional) defaults to undefined|
43
+ | **type** | [**&#39;alert&#39; | &#39;call&#39; | &#39;email&#39; | &#39;note&#39; | &#39;order&#39; | &#39;quote&#39; | &#39;tcx_order&#39;**]**Array<&#39;alert&#39; &#124; &#39;call&#39; &#124; &#39;email&#39; &#124; &#39;note&#39; &#124; &#39;order&#39; &#124; &#39;quote&#39; &#124; &#39;tcx_order&#39;>** | Activity Type | (optional) defaults to undefined|
44
44
  | **userId** | [**number**] | Activity Created By | (optional) defaults to undefined|
45
45
 
46
46
 
@@ -5,6 +5,7 @@ All URIs are relative to *https://localhost*
5
5
  |Method | HTTP request | Description|
6
6
  |------------- | ------------- | -------------|
7
7
  |[**getGetLicenceDetails**](#getgetlicencedetails) | **GET** /tcx/licences/details | Get 3CX Licence Details|
8
+ |[**getGetTcxExpiringKeys**](#getgettcxexpiringkeys) | **GET** /tcx/admin/keys/expiring/csv | Get 3CX Expiring Keys|
8
9
  |[**postGetBulkLicenceDetails**](#postgetbulklicencedetails) | **POST** /tcx/licences/bulk/details | Get bulk 3CX Licence Details|
9
10
 
10
11
  # **getGetLicenceDetails**
@@ -61,6 +62,53 @@ No authorization required
61
62
 
62
63
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
63
64
 
65
+ # **getGetTcxExpiringKeys**
66
+ > string getGetTcxExpiringKeys()
67
+
68
+ Get 3CX Expiring Keys
69
+
70
+ ### Example
71
+
72
+ ```typescript
73
+ import {
74
+ Class3CXApi,
75
+ Configuration
76
+ } from 'yellowgrid-api-ts';
77
+
78
+ const configuration = new Configuration();
79
+ const apiInstance = new Class3CXApi(configuration);
80
+
81
+ const { status, data } = await apiInstance.getGetTcxExpiringKeys();
82
+ ```
83
+
84
+ ### Parameters
85
+ This endpoint does not have any parameters.
86
+
87
+
88
+ ### Return type
89
+
90
+ **string**
91
+
92
+ ### Authorization
93
+
94
+ No authorization required
95
+
96
+ ### HTTP request headers
97
+
98
+ - **Content-Type**: Not defined
99
+ - **Accept**: text/csv
100
+
101
+
102
+ ### HTTP response details
103
+ | Status code | Description | Response headers |
104
+ |-------------|-------------|------------------|
105
+ |**200** | 3CX Expiring Key CSV | - |
106
+ |**400** | Bad Request | - |
107
+ |**401** | Unauthorised | - |
108
+ |**403** | Access Denied | - |
109
+
110
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
111
+
64
112
  # **postGetBulkLicenceDetails**
65
113
  > TcxBulkLicenceDetailsModel postGetBulkLicenceDetails()
66
114
 
@@ -6,6 +6,7 @@ All URIs are relative to *https://localhost*
6
6
  |------------- | ------------- | -------------|
7
7
  |[**getGetDetails**](#getgetdetails) | **GET** /tcx/installations/{wizard_id}/details | Get 3CX Installation Details|
8
8
  |[**getGetInstallations**](#getgetinstallations) | **GET** /tcx/installations | Get 3CX Installations|
9
+ |[**getGetRecordingBackupStorage**](#getgetrecordingbackupstorage) | **GET** /tcx/installations/{instance_id}/recordings/backup | Get Recording Backup Storage|
9
10
  |[**patchChangeInstanceOwner**](#patchchangeinstanceowner) | **PATCH** /tcx/installations/{instance_id}/owner | Change instance owner|
10
11
  |[**patchUpdateAutoFailover**](#patchupdateautofailover) | **PATCH** /tcx/installations/{instance_id}/failover/auto | Update 3CX Instance Auto Failover|
11
12
  |[**postAddDisk**](#postadddisk) | **POST** /tcx/installations/{instance_id}/disk | Add additional disk on 3CX Instance|
@@ -150,6 +151,60 @@ No authorization required
150
151
 
151
152
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
152
153
 
154
+ # **getGetRecordingBackupStorage**
155
+ > RecordingBackupAzureModel getGetRecordingBackupStorage()
156
+
157
+ Get Recording Backup Storage
158
+
159
+ ### Example
160
+
161
+ ```typescript
162
+ import {
163
+ Class3CXInstallationsApi,
164
+ Configuration
165
+ } from 'yellowgrid-api-ts';
166
+
167
+ const configuration = new Configuration();
168
+ const apiInstance = new Class3CXInstallationsApi(configuration);
169
+
170
+ let instanceId: string; //Instance ID (default to undefined)
171
+
172
+ const { status, data } = await apiInstance.getGetRecordingBackupStorage(
173
+ instanceId
174
+ );
175
+ ```
176
+
177
+ ### Parameters
178
+
179
+ |Name | Type | Description | Notes|
180
+ |------------- | ------------- | ------------- | -------------|
181
+ | **instanceId** | [**string**] | Instance ID | defaults to undefined|
182
+
183
+
184
+ ### Return type
185
+
186
+ **RecordingBackupAzureModel**
187
+
188
+ ### Authorization
189
+
190
+ No authorization required
191
+
192
+ ### HTTP request headers
193
+
194
+ - **Content-Type**: Not defined
195
+ - **Accept**: application/json
196
+
197
+
198
+ ### HTTP response details
199
+ | Status code | Description | Response headers |
200
+ |-------------|-------------|------------------|
201
+ |**200** | Recordings Backup Storage | - |
202
+ |**400** | Bad Request | - |
203
+ |**401** | Unauthorised | - |
204
+ |**403** | Access Denied | - |
205
+
206
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
207
+
153
208
  # **patchChangeInstanceOwner**
154
209
  > patchChangeInstanceOwner()
155
210
 
@@ -7,7 +7,7 @@ CRM Activity
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **type** | **string** | Activity Type | [optional] [default to undefined]
10
- **timestamp** | **string** | Date Time | [optional] [default to undefined]
10
+ **timestamp** | **string** | Activity Timestamp | [optional] [default to undefined]
11
11
  **title** | **string** | Activity Title | [optional] [default to undefined]
12
12
  **description** | **string** | Activity Description | [optional] [default to undefined]
13
13
  **url** | **string** | Activity URL | [optional] [default to undefined]
@@ -6,7 +6,7 @@ CRM Date Activities
6
6
 
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
- **date** | **string** | Date Time | [optional] [default to undefined]
9
+ **date** | **string** | Date | [optional] [default to undefined]
10
10
  **activities** | [**Array&lt;CrmActivityDTO&gt;**](CrmActivityDTO.md) | Activities | [optional] [default to undefined]
11
11
 
12
12
  ## Example
@@ -0,0 +1,27 @@
1
+ # CustomerListAccountDTO
2
+
3
+ Customer List Account
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **number** | ID | [optional] [default to undefined]
10
+ **xeroId** | **string** | Xero ID | [optional] [default to undefined]
11
+ **company** | **string** | Xero ID | [optional] [default to undefined]
12
+ **domains** | **Array&lt;string&gt;** | Xero ID | [optional] [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { CustomerListAccountDTO } from 'yellowgrid-api-ts';
18
+
19
+ const instance: CustomerListAccountDTO = {
20
+ id,
21
+ xeroId,
22
+ company,
23
+ domains,
24
+ };
25
+ ```
26
+
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  **items** | [**Array&lt;CustomerItemRequestDTO&gt;**](CustomerItemRequestDTO.md) | Items | [optional] [default to undefined]
11
11
  **shippingService** | [**ShippingServiceDTO**](ShippingServiceDTO.md) | | [optional] [default to undefined]
12
12
  **provisioningUrl** | **string** | Provisioning URL | [optional] [default to undefined]
13
- **shippingAddress** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
13
+ **shippingAddress** | [**AddressModel**](AddressModel.md) | Shipping Address | [optional] [default to undefined]
14
14
  **partShip** | **boolean** | Part Ship Order | [optional] [default to undefined]
15
15
  **quote** | **boolean** | Quote | [optional] [default to undefined]
16
16
 
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  **items** | [**Array&lt;DetailedItemRequestDTO&gt;**](DetailedItemRequestDTO.md) | Items | [optional] [default to undefined]
11
11
  **shippingService** | [**ShippingServiceDTO**](ShippingServiceDTO.md) | | [optional] [default to undefined]
12
12
  **provisioningUrl** | **string** | Provisioning URL | [optional] [default to undefined]
13
- **shippingAddress** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
13
+ **shippingAddress** | [**AddressModel**](AddressModel.md) | Shipping Address | [optional] [default to undefined]
14
14
  **partShip** | **boolean** | Part Ship Order | [optional] [default to undefined]
15
15
  **quote** | **boolean** | Quote | [optional] [default to undefined]
16
16
 
@@ -10,11 +10,11 @@ Name | Type | Description | Notes
10
10
  **title** | **string** | Title | [optional] [default to undefined]
11
11
  **quantity** | **number** | Stock Quantity | [optional] [default to undefined]
12
12
  **stockProduct** | **boolean** | Stock Product | [optional] [default to undefined]
13
- **dueDate** | **string** | Date Time | [optional] [default to undefined]
13
+ **dueDate** | **string** | Due Date | [optional] [default to undefined]
14
14
  **price** | **number** | Price | [optional] [default to undefined]
15
15
  **cartonSize** | **number** | Carton Size | [optional] [default to undefined]
16
16
  **rrp** | **number** | RRP Price | [optional] [default to undefined]
17
- **licenceDetails** | [**TcxLicenceDetailsModel**](TcxLicenceDetailsModel.md) | | [optional] [default to undefined]
17
+ **licenceDetails** | [**TcxLicenceDetailsModel**](TcxLicenceDetailsModel.md) | 3CX Licence Details | [optional] [default to undefined]
18
18
  **hosting** | **boolean** | 3CX Hosting | [optional] [default to undefined]
19
19
 
20
20
  ## Example
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **companyName** | **string** | Company Name | [optional] [default to undefined]
10
10
  **telephone** | **string** | Telephone | [optional] [default to undefined]
11
- **lastOrderDate** | **string** | Date Time | [optional] [default to undefined]
12
- **callbackDate** | **string** | Date Time | [optional] [default to undefined]
11
+ **lastOrderDate** | **string** | Last Order Date | [optional] [default to undefined]
12
+ **callbackDate** | **string** | Call Back Date | [optional] [default to undefined]
13
13
  **xeroId** | **string** | Xero ID | [optional] [default to undefined]
14
14
  **removed** | **boolean** | Removed From Prospects | [optional] [default to undefined]
15
15
  **status** | **string** | Status | [optional] [default to undefined]
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **name** | **string** | Storage Account Name | [optional] [default to undefined]
10
10
  **key** | **string** | Storage Account Key | [optional] [default to undefined]
11
11
  **connection_string** | **string** | Storage Account Connection String | [optional] [default to undefined]
12
+ **sasUrl** | **string** | SAS Url | [optional] [default to undefined]
12
13
  **recordings_path** | **string** | Recordings Path | [optional] [default to undefined]
13
14
 
14
15
  ## Example
@@ -20,6 +21,7 @@ const instance: RecordingBackupAzureModel = {
20
21
  name,
21
22
  key,
22
23
  connection_string,
24
+ sasUrl,
23
25
  recordings_path,
24
26
  };
25
27
  ```
@@ -6,8 +6,8 @@ Recordings Backup Info
6
6
 
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
- **backup** | [**RecordingBackupAzureModel**](RecordingBackupAzureModel.md) | | [optional] [default to undefined]
10
- **storage** | [**TcxRemoteStorageModel**](TcxRemoteStorageModel.md) | | [optional] [default to undefined]
9
+ **backup** | [**RecordingBackupAzureModel**](RecordingBackupAzureModel.md) | Azure Backup Storage | [optional] [default to undefined]
10
+ **storage** | [**TcxRemoteStorageModel**](TcxRemoteStorageModel.md) | 3CX Remote Storage | [optional] [default to undefined]
11
11
 
12
12
  ## Example
13
13
 
@@ -7,10 +7,10 @@ Shipment Request
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **courier** | **string** | Courier | [optional] [default to undefined]
10
- **address** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
10
+ **address** | [**AddressModel**](AddressModel.md) | Address | [optional] [default to undefined]
11
11
  **scannedLines** | **Array&lt;string&gt;** | Scanned Lines | [optional] [default to undefined]
12
12
  **service** | **string** | Service | [optional] [default to undefined]
13
- **shipDate** | **string** | Date Time | [optional] [default to undefined]
13
+ **shipDate** | **string** | Ship Date | [optional] [default to undefined]
14
14
  **items** | [**Array&lt;ShipmentItemDTO&gt;**](ShipmentItemDTO.md) | Items | [optional] [default to undefined]
15
15
 
16
16
  ## Example
@@ -0,0 +1,35 @@
1
+ # TableHistoryEntity
2
+
3
+ TableAttribsEntity
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **ownerId** | **string** | ownerId | [optional] [default to undefined]
10
+ **dbTable** | **string** | table | [optional] [default to undefined]
11
+ **orderingField** | **string** | orderingField | [optional] [default to undefined]
12
+ **asc** | **number** | asc | [optional] [default to undefined]
13
+ **perPage** | **number** | perPage | [optional] [default to undefined]
14
+ **currPage** | **number** | currPage | [optional] [default to undefined]
15
+ **filter** | **string** | filter | [optional] [default to undefined]
16
+ **page** | **number** | page | [optional] [default to undefined]
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import { TableHistoryEntity } from 'yellowgrid-api-ts';
22
+
23
+ const instance: TableHistoryEntity = {
24
+ ownerId,
25
+ dbTable,
26
+ orderingField,
27
+ asc,
28
+ perPage,
29
+ currPage,
30
+ filter,
31
+ page,
32
+ };
33
+ ```
34
+
35
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  **endUser** | **string** | End User | [optional] [default to undefined]
11
11
  **sc** | **number** | Simultaneous Calls | [optional] [default to undefined]
12
12
  **edition** | **string** | Edition | [optional] [default to undefined]
13
- **expiry** | **string** | Date Time | [optional] [default to undefined]
13
+ **expiry** | **string** | Expiry Date | [optional] [default to undefined]
14
14
 
15
15
  ## Example
16
16
 
package/openapitools.json CHANGED
@@ -2,6 +2,6 @@
2
2
  "$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
3
3
  "spaces": 2,
4
4
  "generator-cli": {
5
- "version": "7.20.0"
5
+ "version": "7.22.0"
6
6
  }
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.160-dev.0",
3
+ "version": "3.2.162-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -22,7 +22,7 @@
22
22
  "prepare": "npm run build"
23
23
  },
24
24
  "dependencies": {
25
- "axios": "^1.13.5"
25
+ "axios": "^1.15.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "12.11.5 - 12.20.42",
@@ -1,41 +0,0 @@
1
- # AccountPageDetailsDTO
2
-
3
- Account Page Details
4
-
5
- ## Properties
6
-
7
- Name | Type | Description | Notes
8
- ------------ | ------------- | ------------- | -------------
9
- **xeroId** | **string** | Xero ID | [optional] [default to undefined]
10
- **companyName** | **string** | Company | [optional] [default to undefined]
11
- **billingAddress** | [**AddressDTO**](AddressDTO.md) | | [optional] [default to undefined]
12
- **shippingAddress** | [**AddressDTO**](AddressDTO.md) | | [optional] [default to undefined]
13
- **previousShippingAddreses** | [**Array&lt;AddressDTO&gt;**](AddressDTO.md) | Addresses | [optional] [default to undefined]
14
- **portalAccess** | **boolean** | Portal Access | [optional] [default to undefined]
15
- **phone** | **string** | Phone | [optional] [default to undefined]
16
- **vatNumber** | **string** | VAT Number | [optional] [default to undefined]
17
- **companyNumber** | **string** | Company Number | [optional] [default to undefined]
18
- **cname** | **string** | CNAME | [optional] [default to undefined]
19
- **prizesEnabled** | **boolean** | Prizes Enabled | [optional] [default to undefined]
20
-
21
- ## Example
22
-
23
- ```typescript
24
- import { AccountPageDetailsDTO } from 'yellowgrid-api-ts';
25
-
26
- const instance: AccountPageDetailsDTO = {
27
- xeroId,
28
- companyName,
29
- billingAddress,
30
- shippingAddress,
31
- previousShippingAddreses,
32
- portalAccess,
33
- phone,
34
- vatNumber,
35
- companyNumber,
36
- cname,
37
- prizesEnabled,
38
- };
39
- ```
40
-
41
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,20 +0,0 @@
1
- # PatchSendWelcomeEmailRequest
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **email** | **string** | email | [optional] [default to undefined]
9
-
10
- ## Example
11
-
12
- ```typescript
13
- import { PatchSendWelcomeEmailRequest } from 'yellowgrid-api-ts';
14
-
15
- const instance: PatchSendWelcomeEmailRequest = {
16
- email,
17
- };
18
- ```
19
-
20
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,20 +0,0 @@
1
- # PatchSetTcxWizardCnameRequest
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **cname** | **string** | CNAME | [optional] [default to undefined]
9
-
10
- ## Example
11
-
12
- ```typescript
13
- import { PatchSetTcxWizardCnameRequest } from 'yellowgrid-api-ts';
14
-
15
- const instance: PatchSetTcxWizardCnameRequest = {
16
- cname,
17
- };
18
- ```
19
-
20
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,20 +0,0 @@
1
- # PostAddAdminNoteRequest
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **note** | **string** | Note | [optional] [default to undefined]
9
-
10
- ## Example
11
-
12
- ```typescript
13
- import { PostAddAdminNoteRequest } from 'yellowgrid-api-ts';
14
-
15
- const instance: PostAddAdminNoteRequest = {
16
- note,
17
- };
18
- ```
19
-
20
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,20 +0,0 @@
1
- # PostCreateCrmNoteRequest
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **note** | **string** | Note | [optional] [default to undefined]
9
-
10
- ## Example
11
-
12
- ```typescript
13
- import { PostCreateCrmNoteRequest } from 'yellowgrid-api-ts';
14
-
15
- const instance: PostCreateCrmNoteRequest = {
16
- note,
17
- };
18
- ```
19
-
20
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)