@exclusive-website/types 2.2.3 → 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,7 +186,7 @@ export interface ResetPasswordDto {
186
186
  email: string;
187
187
  code: string;
188
188
  }
189
- export interface PricingListingReadDto {
189
+ export interface ListingPricingReadDto {
190
190
  id: number;
191
191
  durationDays: number;
192
192
  category: PricingCategory;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.2.3",
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,7 +239,7 @@ export interface ResetPasswordDto {
239
239
  code: string;
240
240
  }
241
241
 
242
- export interface PricingListingReadDto {
242
+ export interface ListingPricingReadDto {
243
243
  id: number;
244
244
  durationDays: number;
245
245
  category: PricingCategory;