yellowgrid-api-ts 3.2.171-dev.0 → 3.2.172-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 +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/DetailedItemRequestDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3145,6 +3145,12 @@ export interface DetailedItemRequestDTO {
|
|
|
3145
3145
|
* @memberof DetailedItemRequestDTO
|
|
3146
3146
|
*/
|
|
3147
3147
|
'itemPrice'?: number | null;
|
|
3148
|
+
/**
|
|
3149
|
+
* Custom Price (£)
|
|
3150
|
+
* @type {number}
|
|
3151
|
+
* @memberof DetailedItemRequestDTO
|
|
3152
|
+
*/
|
|
3153
|
+
'customPrice'?: number | null;
|
|
3148
3154
|
/**
|
|
3149
3155
|
* Additional Discount
|
|
3150
3156
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -3122,6 +3122,12 @@ export interface DetailedItemRequestDTO {
|
|
|
3122
3122
|
* @memberof DetailedItemRequestDTO
|
|
3123
3123
|
*/
|
|
3124
3124
|
'itemPrice'?: number | null;
|
|
3125
|
+
/**
|
|
3126
|
+
* Custom Price (£)
|
|
3127
|
+
* @type {number}
|
|
3128
|
+
* @memberof DetailedItemRequestDTO
|
|
3129
|
+
*/
|
|
3130
|
+
'customPrice'?: number | null;
|
|
3125
3131
|
/**
|
|
3126
3132
|
* Additional Discount
|
|
3127
3133
|
* @type {number}
|
|
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
|
|
|
18
18
|
**readOnly** | **boolean** | Read Only (Cannot be edited) | [optional] [default to undefined]
|
|
19
19
|
**title** | **string** | Title | [optional] [default to undefined]
|
|
20
20
|
**itemPrice** | **number** | Price (£) | [optional] [default to undefined]
|
|
21
|
+
**customPrice** | **number** | Custom Price (£) | [optional] [default to undefined]
|
|
21
22
|
**additionalDiscount** | **number** | Additional Discount | [optional] [default to undefined]
|
|
22
23
|
|
|
23
24
|
## Example
|
|
@@ -38,6 +39,7 @@ const instance: DetailedItemRequestDTO = {
|
|
|
38
39
|
readOnly,
|
|
39
40
|
title,
|
|
40
41
|
itemPrice,
|
|
42
|
+
customPrice,
|
|
41
43
|
additionalDiscount,
|
|
42
44
|
};
|
|
43
45
|
```
|