@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 +1 -4
- package/package.json +1 -1
- package/src/types.ts +1 -5
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
|
|
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
package/src/types.ts
CHANGED
|
@@ -239,11 +239,7 @@ export interface ResetPasswordDto {
|
|
|
239
239
|
code: string;
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
export interface
|
|
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;
|