@exclusive-website/types 2.2.2 → 2.2.4

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
@@ -186,10 +186,7 @@ export interface ResetPasswordDto {
186
186
  email: string;
187
187
  code: string;
188
188
  }
189
- export interface PricingListingReadListDto {
190
- pricingListings: PricingListingReadDto[];
191
- }
192
- export interface PricingListingReadDto {
189
+ export interface ListingPricingReadDto {
193
190
  id: number;
194
191
  durationDays: number;
195
192
  category: PricingCategory;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
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
@@ -239,11 +239,7 @@ export interface ResetPasswordDto {
239
239
  code: string;
240
240
  }
241
241
 
242
- export interface PricingListingReadListDto {
243
- pricingListings: PricingListingReadDto[];
244
- }
245
-
246
- export interface PricingListingReadDto {
242
+ export interface ListingPricingReadDto {
247
243
  id: number;
248
244
  durationDays: number;
249
245
  category: PricingCategory;