@exclusive-website/types 2.6.9 → 2.7.1

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
@@ -221,6 +221,7 @@ export interface ListingPricingReadDto {
221
221
  }
222
222
  export interface ListingPricingWriteDto {
223
223
  id: number;
224
+ isActive: boolean;
224
225
  durationDays: number;
225
226
  category: PricingCategory;
226
227
  prices: PriceReadDto[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.6.9",
3
+ "version": "2.7.1",
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
@@ -272,6 +272,7 @@ export interface ListingPricingReadDto {
272
272
 
273
273
  export interface ListingPricingWriteDto {
274
274
  id: number;
275
+ isActive: boolean;
275
276
  durationDays: number;
276
277
  category: PricingCategory;
277
278
  prices: PriceReadDto[];