@exclusive-website/types 2.7.4 → 2.7.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 +3 -0
- package/package.json +1 -1
- package/src/types.ts +3 -0
package/dist/types.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export interface ModelShortPreviewClientReadDto {
|
|
|
121
121
|
toppedSubscription: SubscriptionReadDto;
|
|
122
122
|
toppedHomeSubscription: SubscriptionReadDto;
|
|
123
123
|
publishedSubscription: SubscriptionReadDto;
|
|
124
|
+
transactionId?: number;
|
|
124
125
|
}
|
|
125
126
|
export interface SubscriptionReadDto {
|
|
126
127
|
isActive: boolean;
|
|
@@ -293,6 +294,7 @@ export interface ModelAdminDetailReadDto {
|
|
|
293
294
|
historyTransactions: HistoryTransactionReadDto[];
|
|
294
295
|
}
|
|
295
296
|
export interface ActiveTransactionReadDto {
|
|
297
|
+
id: number;
|
|
296
298
|
status: TransactionStatus;
|
|
297
299
|
applied: ApplyStatus;
|
|
298
300
|
totalAmount: number;
|
|
@@ -301,6 +303,7 @@ export interface ActiveTransactionReadDto {
|
|
|
301
303
|
items: TransactionReadItemDto[];
|
|
302
304
|
}
|
|
303
305
|
export interface HistoryTransactionReadDto {
|
|
306
|
+
id: number;
|
|
304
307
|
status: TransactionStatus;
|
|
305
308
|
applied: ApplyStatus;
|
|
306
309
|
totalAmount: number;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -155,6 +155,7 @@ export interface ModelShortPreviewClientReadDto {
|
|
|
155
155
|
toppedSubscription: SubscriptionReadDto;
|
|
156
156
|
toppedHomeSubscription: SubscriptionReadDto;
|
|
157
157
|
publishedSubscription: SubscriptionReadDto;
|
|
158
|
+
transactionId? : number;
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
export interface SubscriptionReadDto {
|
|
@@ -350,6 +351,7 @@ export interface ModelAdminDetailReadDto {
|
|
|
350
351
|
}
|
|
351
352
|
|
|
352
353
|
export interface ActiveTransactionReadDto {
|
|
354
|
+
id: number;
|
|
353
355
|
status: TransactionStatus;
|
|
354
356
|
applied: ApplyStatus;
|
|
355
357
|
totalAmount: number;
|
|
@@ -359,6 +361,7 @@ export interface ActiveTransactionReadDto {
|
|
|
359
361
|
}
|
|
360
362
|
|
|
361
363
|
export interface HistoryTransactionReadDto {
|
|
364
|
+
id: number;
|
|
362
365
|
status: TransactionStatus;
|
|
363
366
|
applied: ApplyStatus;
|
|
364
367
|
totalAmount: number;
|