@exclusive-website/types 2.5.8 → 2.6.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/dist/types.d.ts +6 -0
- package/package.json +1 -1
- package/src/types.ts +7 -0
package/dist/types.d.ts
CHANGED
|
@@ -218,6 +218,12 @@ export interface ListingPricingReadDto {
|
|
|
218
218
|
category: PricingCategory;
|
|
219
219
|
prices: PriceReadDto[];
|
|
220
220
|
}
|
|
221
|
+
export interface ListingPricingWriteDto {
|
|
222
|
+
id: number;
|
|
223
|
+
durationDays: number;
|
|
224
|
+
category: PricingCategory;
|
|
225
|
+
prices: PriceReadDto[];
|
|
226
|
+
}
|
|
221
227
|
export interface PriceReadDto {
|
|
222
228
|
id: number;
|
|
223
229
|
amount: number;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -269,6 +269,13 @@ export interface ListingPricingReadDto {
|
|
|
269
269
|
prices: PriceReadDto[];
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
+
export interface ListingPricingWriteDto {
|
|
273
|
+
id: number;
|
|
274
|
+
durationDays: number;
|
|
275
|
+
category: PricingCategory;
|
|
276
|
+
prices: PriceReadDto[];
|
|
277
|
+
}
|
|
278
|
+
|
|
272
279
|
export interface PriceReadDto {
|
|
273
280
|
id: number;
|
|
274
281
|
amount: number;
|