yellowgrid-api-ts 3.2.115-dev.0 → 3.2.116-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.
@@ -0,0 +1,20 @@
1
+ # PatchUpdateAccountCompanyNumberRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **companyNumber** | **string** | Company Number | [optional] [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { PatchUpdateAccountCompanyNumberRequest } from 'yellowgrid-api-ts';
14
+
15
+ const instance: PatchUpdateAccountCompanyNumberRequest = {
16
+ companyNumber,
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)
@@ -0,0 +1,20 @@
1
+ # PatchUpdateAccountPhoneRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **phone** | **string** | Phone | [optional] [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { PatchUpdateAccountPhoneRequest } from 'yellowgrid-api-ts';
14
+
15
+ const instance: PatchUpdateAccountPhoneRequest = {
16
+ phone,
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)
@@ -0,0 +1,20 @@
1
+ # PatchUpdateAccountVatNumberRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **vatNumber** | **string** | VAT Number | [optional] [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { PatchUpdateAccountVatNumberRequest } from 'yellowgrid-api-ts';
14
+
15
+ const instance: PatchUpdateAccountVatNumberRequest = {
16
+ vatNumber,
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)
@@ -10,6 +10,7 @@ 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
14
  **price** | **number** | Price | [optional] [default to undefined]
14
15
  **cartonSize** | **number** | Carton Size | [optional] [default to undefined]
15
16
  **rrp** | **number** | RRP Price | [optional] [default to undefined]
@@ -26,6 +27,7 @@ const instance: ProductSummaryDTO = {
26
27
  title,
27
28
  quantity,
28
29
  stockProduct,
30
+ dueDate,
29
31
  price,
30
32
  cartonSize,
31
33
  rrp,
@@ -0,0 +1,27 @@
1
+ # RemoteStorageDTO
2
+
3
+ Remote Storage
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **string** | AWS ID | [optional] [default to undefined]
10
+ **secret** | **string** | AWS Secret | [optional] [default to undefined]
11
+ **name** | **string** | AWS Bucket Name | [optional] [default to undefined]
12
+ **region** | **string** | AWS Region | [optional] [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { RemoteStorageDTO } from 'yellowgrid-api-ts';
18
+
19
+ const instance: RemoteStorageDTO = {
20
+ id,
21
+ secret,
22
+ name,
23
+ region,
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)
package/docs/TcxSbcDTO.md CHANGED
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **dns** | **string** | DNS | [optional] [default to undefined]
14
14
  **tcxUrl** | **string** | 3CX URL | [optional] [default to undefined]
15
15
  **tcxKey** | **string** | 3CX SBC Key | [optional] [default to undefined]
16
+ **configured** | **boolean** | 3CX SBC Configured | [optional] [default to undefined]
16
17
 
17
18
  ## Example
18
19
 
@@ -27,6 +28,7 @@ const instance: TcxSbcDTO = {
27
28
  dns,
28
29
  tcxUrl,
29
30
  tcxKey,
31
+ configured,
30
32
  };
31
33
  ```
32
34
 
@@ -0,0 +1,23 @@
1
+ # TcxSbcResponseDTO
2
+
3
+ 3CX SBC Response
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **status** | **string** | Status | [optional] [default to undefined]
10
+ **message** | **string** | Message | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { TcxSbcResponseDTO } from 'yellowgrid-api-ts';
16
+
17
+ const instance: TcxSbcResponseDTO = {
18
+ status,
19
+ message,
20
+ };
21
+ ```
22
+
23
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.115-dev.0",
3
+ "version": "3.2.116-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {