@exclusive-website/types 2.3.5 → 2.3.6
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 +11 -0
- package/package.json +1 -1
- package/src/types.ts +14 -0
package/dist/types.d.ts
CHANGED
|
@@ -279,3 +279,14 @@ export interface TransactionReadItemDto {
|
|
|
279
279
|
amount: number;
|
|
280
280
|
currency: Currency;
|
|
281
281
|
}
|
|
282
|
+
export interface ListingRejectionDto {
|
|
283
|
+
id: number;
|
|
284
|
+
reason: string;
|
|
285
|
+
}
|
|
286
|
+
export interface ListingCorrectioDto {
|
|
287
|
+
id: number;
|
|
288
|
+
correction: string;
|
|
289
|
+
}
|
|
290
|
+
export interface SuccessResponseReadDto {
|
|
291
|
+
content: string;
|
|
292
|
+
}
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -328,4 +328,18 @@ export interface TransactionReadItemDto {
|
|
|
328
328
|
durationDays: number;
|
|
329
329
|
amount: number;
|
|
330
330
|
currency: Currency;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export interface ListingRejectionDto {
|
|
334
|
+
id: number;
|
|
335
|
+
reason: string;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
export interface ListingCorrectioDto {
|
|
339
|
+
id: number;
|
|
340
|
+
correction: string;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
export interface SuccessResponseReadDto {
|
|
344
|
+
content: string;
|
|
331
345
|
}
|