reach-api-sdk 1.0.200 → 1.0.201
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/dist/reach-sdk.d.ts +12 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +15 -0
- package/src/models/OrderItem.ts +12 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -5671,6 +5671,18 @@ type OrderItem = {
|
|
|
5671
5671
|
* Gets or sets a value indicating whether the order item is rescheduleable.
|
|
5672
5672
|
*/
|
|
5673
5673
|
rescheduleable?: boolean | null;
|
|
5674
|
+
/**
|
|
5675
|
+
* Gets or sets the unit price before discount.
|
|
5676
|
+
*/
|
|
5677
|
+
unitPriceBeforeDiscount?: number | null;
|
|
5678
|
+
/**
|
|
5679
|
+
* Gets or sets the unit price after discount.
|
|
5680
|
+
*/
|
|
5681
|
+
unitPriceAfterDiscount?: number | null;
|
|
5682
|
+
/**
|
|
5683
|
+
* Gets or sets the effective item price.
|
|
5684
|
+
*/
|
|
5685
|
+
effectiveItemPrice?: number | null;
|
|
5674
5686
|
};
|
|
5675
5687
|
|
|
5676
5688
|
/**
|
package/package.json
CHANGED
|
@@ -140321,6 +140321,21 @@ components:
|
|
|
140321
140321
|
type: boolean
|
|
140322
140322
|
description: Gets or sets a value indicating whether the order item is rescheduleable.
|
|
140323
140323
|
nullable: true
|
|
140324
|
+
unitPriceBeforeDiscount:
|
|
140325
|
+
type: number
|
|
140326
|
+
description: Gets or sets the unit price before discount.
|
|
140327
|
+
format: double
|
|
140328
|
+
nullable: true
|
|
140329
|
+
unitPriceAfterDiscount:
|
|
140330
|
+
type: number
|
|
140331
|
+
description: Gets or sets the unit price after discount.
|
|
140332
|
+
format: double
|
|
140333
|
+
nullable: true
|
|
140334
|
+
effectiveItemPrice:
|
|
140335
|
+
type: number
|
|
140336
|
+
description: Gets or sets the effective item price.
|
|
140337
|
+
format: double
|
|
140338
|
+
nullable: true
|
|
140324
140339
|
additionalProperties: false
|
|
140325
140340
|
description: Represents an Order of a currently available bookable Reach.Models.OrderItem.Slot within the Reach application.
|
|
140326
140341
|
OrderItemDeal:
|
package/src/models/OrderItem.ts
CHANGED
|
@@ -123,4 +123,16 @@ export type OrderItem = {
|
|
|
123
123
|
* Gets or sets a value indicating whether the order item is rescheduleable.
|
|
124
124
|
*/
|
|
125
125
|
rescheduleable?: boolean | null;
|
|
126
|
+
/**
|
|
127
|
+
* Gets or sets the unit price before discount.
|
|
128
|
+
*/
|
|
129
|
+
unitPriceBeforeDiscount?: number | null;
|
|
130
|
+
/**
|
|
131
|
+
* Gets or sets the unit price after discount.
|
|
132
|
+
*/
|
|
133
|
+
unitPriceAfterDiscount?: number | null;
|
|
134
|
+
/**
|
|
135
|
+
* Gets or sets the effective item price.
|
|
136
|
+
*/
|
|
137
|
+
effectiveItemPrice?: number | null;
|
|
126
138
|
};
|