@open-tender/types 0.2.109 → 0.2.110
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateString } from '../../datetimes';
|
|
1
|
+
import { DateString, ISOString } from '../../datetimes';
|
|
2
2
|
import { DiscountType, Gender, Money } from '../../global';
|
|
3
3
|
export interface TPLSCredit {
|
|
4
4
|
balance: Money;
|
|
@@ -50,3 +50,12 @@ export interface TPLSTerms {
|
|
|
50
50
|
privacy_policy: string;
|
|
51
51
|
terms_of_use: string;
|
|
52
52
|
}
|
|
53
|
+
export interface TPLSHistoryEvent {
|
|
54
|
+
date: ISOString;
|
|
55
|
+
title: string;
|
|
56
|
+
event_value: string;
|
|
57
|
+
description: string;
|
|
58
|
+
points: number | null;
|
|
59
|
+
items: number | null;
|
|
60
|
+
}
|
|
61
|
+
export declare type TPLSHistory = TPLSHistoryEvent[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateString } from '../../datetimes';
|
|
1
|
+
import { DateString, ISOString } from '../../datetimes';
|
|
2
2
|
import { DiscountType, Gender, Money } from '../../global';
|
|
3
3
|
export interface TPLSCredit {
|
|
4
4
|
balance: Money;
|
|
@@ -50,3 +50,12 @@ export interface TPLSTerms {
|
|
|
50
50
|
privacy_policy: string;
|
|
51
51
|
terms_of_use: string;
|
|
52
52
|
}
|
|
53
|
+
export interface TPLSHistoryEvent {
|
|
54
|
+
date: ISOString;
|
|
55
|
+
title: string;
|
|
56
|
+
event_value: string;
|
|
57
|
+
description: string;
|
|
58
|
+
points: number | null;
|
|
59
|
+
items: number | null;
|
|
60
|
+
}
|
|
61
|
+
export declare type TPLSHistory = TPLSHistoryEvent[];
|
package/package.json
CHANGED