@exclusive-website/types 2.5.9 → 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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.5.9",
3
+ "version": "2.6.0",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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;