@merkl/api 0.10.313 → 0.10.314
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.
@@ -6,9 +6,11 @@ export const CampaignUniqueDto = t.Object({
|
|
6
6
|
campaignId: t.String(),
|
7
7
|
});
|
8
8
|
export const DelayDto = t.Object({
|
9
|
-
endTimestampLowerBound: t.Optional(t.Numeric(
|
10
|
-
|
11
|
-
|
9
|
+
endTimestampLowerBound: t.Optional(t.Numeric({
|
10
|
+
description: "Lower bound of end timestamps - by default it'll take all campaigns where endTimestamp is more than now - 1 week",
|
11
|
+
})),
|
12
|
+
delayLowerBound: t.Optional(t.Numeric({ description: "To filter small delays (in seconds)" })),
|
13
|
+
chainId: t.Optional(t.Numeric({ description: "To get delays for Campaigns on a given chain only" })),
|
12
14
|
});
|
13
15
|
export const CampaignStatusResourceDto = t.Object({
|
14
16
|
campaignId: t.String(),
|