@exclusive-website/types 2.7.1 → 2.7.2

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
@@ -216,12 +216,12 @@ export interface ResetPasswordDto {
216
216
  export interface ListingPricingReadDto {
217
217
  id: number;
218
218
  durationDays: number;
219
+ isActive: boolean;
219
220
  category: PricingCategory;
220
221
  prices: PriceReadDto[];
221
222
  }
222
223
  export interface ListingPricingWriteDto {
223
224
  id: number;
224
- isActive: boolean;
225
225
  durationDays: number;
226
226
  category: PricingCategory;
227
227
  prices: PriceReadDto[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.7.1",
3
+ "version": "2.7.2",
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
@@ -266,13 +266,13 @@ export interface ResetPasswordDto {
266
266
  export interface ListingPricingReadDto {
267
267
  id: number;
268
268
  durationDays: number;
269
+ isActive: boolean;
269
270
  category: PricingCategory;
270
271
  prices: PriceReadDto[];
271
272
  }
272
273
 
273
274
  export interface ListingPricingWriteDto {
274
275
  id: number;
275
- isActive: boolean;
276
276
  durationDays: number;
277
277
  category: PricingCategory;
278
278
  prices: PriceReadDto[];