yellowgrid-api-ts 3.2.236-dev.0 → 3.2.237-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/api.ts CHANGED
@@ -2071,6 +2071,10 @@ export interface CreditNoteItemDTO {
2071
2071
  * Item ID
2072
2072
  */
2073
2073
  'itemId': number;
2074
+ /**
2075
+ * Item Title
2076
+ */
2077
+ 'title': string;
2074
2078
  /**
2075
2079
  * Quantity
2076
2080
  */
package/dist/api.d.ts CHANGED
@@ -2033,6 +2033,10 @@ export interface CreditNoteItemDTO {
2033
2033
  * Item ID
2034
2034
  */
2035
2035
  'itemId': number;
2036
+ /**
2037
+ * Item Title
2038
+ */
2039
+ 'title': string;
2036
2040
  /**
2037
2041
  * Quantity
2038
2042
  */
@@ -7,6 +7,7 @@ Credit Note Item
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **itemId** | **number** | Item ID | [default to undefined]
10
+ **title** | **string** | Item Title | [default to undefined]
10
11
  **quantity** | **number** | Quantity | [optional] [default to undefined]
11
12
  **amount** | **number** | Amount | [optional] [default to undefined]
12
13
 
@@ -17,6 +18,7 @@ import { CreditNoteItemDTO } from 'yellowgrid-api-ts';
17
18
 
18
19
  const instance: CreditNoteItemDTO = {
19
20
  itemId,
21
+ title,
20
22
  quantity,
21
23
  amount,
22
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.236-dev.0",
3
+ "version": "3.2.237-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {