yellowgrid-api-ts 3.0.109-dev.0 → 3.0.110-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +0 -1
- package/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/docs/AdminItemRequestDTO.md +2 -0
- package/docs/CustomerItemRequestDTO.md +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/api.ts
CHANGED
|
@@ -693,6 +693,12 @@ export interface AdminItemRequestDTO {
|
|
|
693
693
|
* @memberof AdminItemRequestDTO
|
|
694
694
|
*/
|
|
695
695
|
'processDate'?: string;
|
|
696
|
+
/**
|
|
697
|
+
* 3CX Sales Code
|
|
698
|
+
* @type {string}
|
|
699
|
+
* @memberof AdminItemRequestDTO
|
|
700
|
+
*/
|
|
701
|
+
'tcxSalesCode'?: string | null;
|
|
696
702
|
/**
|
|
697
703
|
* SBCS
|
|
698
704
|
* @type {Array<TcxSbcDTO>}
|
|
@@ -1758,6 +1764,12 @@ export interface CustomerItemRequestDTO {
|
|
|
1758
1764
|
* @memberof CustomerItemRequestDTO
|
|
1759
1765
|
*/
|
|
1760
1766
|
'processDate'?: string;
|
|
1767
|
+
/**
|
|
1768
|
+
* 3CX Sales Code
|
|
1769
|
+
* @type {string}
|
|
1770
|
+
* @memberof CustomerItemRequestDTO
|
|
1771
|
+
*/
|
|
1772
|
+
'tcxSalesCode'?: string | null;
|
|
1761
1773
|
/**
|
|
1762
1774
|
* SBCS
|
|
1763
1775
|
* @type {Array<TcxSbcDTO>}
|
package/dist/api.d.ts
CHANGED
|
@@ -683,6 +683,12 @@ export interface AdminItemRequestDTO {
|
|
|
683
683
|
* @memberof AdminItemRequestDTO
|
|
684
684
|
*/
|
|
685
685
|
'processDate'?: string;
|
|
686
|
+
/**
|
|
687
|
+
* 3CX Sales Code
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof AdminItemRequestDTO
|
|
690
|
+
*/
|
|
691
|
+
'tcxSalesCode'?: string | null;
|
|
686
692
|
/**
|
|
687
693
|
* SBCS
|
|
688
694
|
* @type {Array<TcxSbcDTO>}
|
|
@@ -1745,6 +1751,12 @@ export interface CustomerItemRequestDTO {
|
|
|
1745
1751
|
* @memberof CustomerItemRequestDTO
|
|
1746
1752
|
*/
|
|
1747
1753
|
'processDate'?: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* 3CX Sales Code
|
|
1756
|
+
* @type {string}
|
|
1757
|
+
* @memberof CustomerItemRequestDTO
|
|
1758
|
+
*/
|
|
1759
|
+
'tcxSalesCode'?: string | null;
|
|
1748
1760
|
/**
|
|
1749
1761
|
* SBCS
|
|
1750
1762
|
* @type {Array<TcxSbcDTO>}
|
|
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**licenceKey** | **string** | 3CX Licence Key | [optional] [default to undefined]
|
|
13
13
|
**hosting** | **boolean** | 3CX Hosting | [optional] [default to undefined]
|
|
14
14
|
**processDate** | **string** | Date Time | [optional] [default to undefined]
|
|
15
|
+
**tcxSalesCode** | **string** | 3CX Sales Code | [optional] [default to undefined]
|
|
15
16
|
**sbcs** | [**Array<TcxSbcDTO>**](TcxSbcDTO.md) | SBCS | [optional] [default to undefined]
|
|
16
17
|
**title** | **string** | Title | [optional] [default to undefined]
|
|
17
18
|
**itemPrice** | **number** | Price (£) | [optional] [default to undefined]
|
|
@@ -28,6 +29,7 @@ const instance: AdminItemRequestDTO = {
|
|
|
28
29
|
licenceKey,
|
|
29
30
|
hosting,
|
|
30
31
|
processDate,
|
|
32
|
+
tcxSalesCode,
|
|
31
33
|
sbcs,
|
|
32
34
|
title,
|
|
33
35
|
itemPrice,
|
|
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**licenceKey** | **string** | 3CX Licence Key | [optional] [default to undefined]
|
|
13
13
|
**hosting** | **boolean** | 3CX Hosting | [optional] [default to undefined]
|
|
14
14
|
**processDate** | **string** | Date Time | [optional] [default to undefined]
|
|
15
|
+
**tcxSalesCode** | **string** | 3CX Sales Code | [optional] [default to undefined]
|
|
15
16
|
**sbcs** | [**Array<TcxSbcDTO>**](TcxSbcDTO.md) | SBCS | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
@@ -26,6 +27,7 @@ const instance: CustomerItemRequestDTO = {
|
|
|
26
27
|
licenceKey,
|
|
27
28
|
hosting,
|
|
28
29
|
processDate,
|
|
30
|
+
tcxSalesCode,
|
|
29
31
|
sbcs,
|
|
30
32
|
};
|
|
31
33
|
```
|