@merkl/api 1.0.89 → 1.0.91
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.
@@ -20,8 +20,9 @@ export declare abstract class CampaignRepository {
|
|
20
20
|
mode: "insensitive";
|
21
21
|
} | undefined;
|
22
22
|
endTimestamp: {
|
23
|
-
|
23
|
+
gt: number;
|
24
24
|
lt?: undefined;
|
25
|
+
gte?: undefined;
|
25
26
|
};
|
26
27
|
startTimestamp: {
|
27
28
|
lte: number;
|
@@ -111,6 +112,7 @@ export declare abstract class CampaignRepository {
|
|
111
112
|
} | undefined;
|
112
113
|
endTimestamp: {
|
113
114
|
lt: number;
|
115
|
+
gt?: undefined;
|
114
116
|
gte?: undefined;
|
115
117
|
};
|
116
118
|
startTimestamp?: undefined;
|
@@ -284,6 +286,7 @@ export declare abstract class CampaignRepository {
|
|
284
286
|
} | undefined;
|
285
287
|
endTimestamp: {
|
286
288
|
gte: number;
|
289
|
+
gt?: undefined;
|
287
290
|
lt?: undefined;
|
288
291
|
} | undefined;
|
289
292
|
startTimestamp: {
|