@trigger.dev/core 4.5.10 → 4.5.11
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/commonjs/v3/apiClient/index.d.ts +15 -3
- package/dist/commonjs/v3/apiClient/index.js +3 -4
- package/dist/commonjs/v3/apiClient/index.js.map +1 -1
- package/dist/commonjs/v3/apiClient/runStream.d.ts +6 -0
- package/dist/commonjs/v3/apiClient/runStream.js +7 -0
- package/dist/commonjs/v3/apiClient/runStream.js.map +1 -1
- package/dist/commonjs/v3/schemas/api.d.ts +45 -0
- package/dist/commonjs/v3/schemas/api.js +10 -0
- package/dist/commonjs/v3/schemas/api.js.map +1 -1
- package/dist/commonjs/v3/schemas/build.d.ts +18 -0
- package/dist/commonjs/v3/schemas/index.d.ts +1 -0
- package/dist/commonjs/v3/schemas/index.js +1 -0
- package/dist/commonjs/v3/schemas/index.js.map +1 -1
- package/dist/commonjs/v3/schemas/messages.d.ts +9 -0
- package/dist/commonjs/v3/schemas/reports.d.ts +833 -0
- package/dist/commonjs/v3/schemas/reports.js +134 -0
- package/dist/commonjs/v3/schemas/reports.js.map +1 -0
- package/dist/commonjs/v3/schemas/resources.d.ts +12 -0
- package/dist/commonjs/v3/schemas/schemas.d.ts +20 -0
- package/dist/commonjs/v3/schemas/schemas.js +8 -1
- package/dist/commonjs/v3/schemas/schemas.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/v3/apiClient/index.d.ts +15 -3
- package/dist/esm/v3/apiClient/index.js +4 -5
- package/dist/esm/v3/apiClient/index.js.map +1 -1
- package/dist/esm/v3/apiClient/runStream.d.ts +6 -0
- package/dist/esm/v3/apiClient/runStream.js +7 -0
- package/dist/esm/v3/apiClient/runStream.js.map +1 -1
- package/dist/esm/v3/runEngineWorker/workload/schemas.d.ts +54 -54
- package/dist/esm/v3/schemas/api.d.ts +45 -0
- package/dist/esm/v3/schemas/api.js +10 -0
- package/dist/esm/v3/schemas/api.js.map +1 -1
- package/dist/esm/v3/schemas/build.d.ts +18 -0
- package/dist/esm/v3/schemas/index.d.ts +1 -0
- package/dist/esm/v3/schemas/index.js +1 -0
- package/dist/esm/v3/schemas/index.js.map +1 -1
- package/dist/esm/v3/schemas/messages.d.ts +9 -0
- package/dist/esm/v3/schemas/reports.d.ts +833 -0
- package/dist/esm/v3/schemas/reports.js +131 -0
- package/dist/esm/v3/schemas/reports.js.map +1 -0
- package/dist/esm/v3/schemas/resources.d.ts +12 -0
- package/dist/esm/v3/schemas/schemas.d.ts +20 -0
- package/dist/esm/v3/schemas/schemas.js +7 -0
- package/dist/esm/v3/schemas/schemas.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
// Shared contract for `GET /api/v1/reports/:key`: the period grammar and the `format=json` body.
|
|
3
|
+
// The view model is semantic, not a UI tree: reasons are codes the renderer resolves to prose.
|
|
4
|
+
const PERIOD_UNIT_MS = { m: 6e4, h: 36e5, d: 864e5, w: 6048e5 };
|
|
5
|
+
const MAX_PERIOD_MS = 90 * 864e5; // 90d
|
|
6
|
+
/** A positive integer plus `m`, `h`, `d` or `w`, capped at 90d. Reports bucket by whole minutes. */
|
|
7
|
+
export const ReportPeriodSchema = z
|
|
8
|
+
.string()
|
|
9
|
+
.regex(/^[1-9]\d*[mhdw]$/, "period must be a shorthand like '30m', '1h' or '7d' — minutes (m), hours (h), days (d) or weeks (w); seconds are not supported")
|
|
10
|
+
.refine(
|
|
11
|
+
// The regex guarantees the last char is a known unit; `?? 0` just satisfies the type checker.
|
|
12
|
+
(p) => Number(p.slice(0, -1)) * (PERIOD_UNIT_MS[p.slice(-1)] ?? 0) <= MAX_PERIOD_MS, "period is too large (max 90d)");
|
|
13
|
+
/** The response encodings the endpoint can render. `json` returns a `ReportViewModel`. */
|
|
14
|
+
export const ReportFormatSchema = z.enum(["markdown", "json", "ansi"]);
|
|
15
|
+
export const ReportSeveritySchema = z.enum(["ok", "warn", "crit"]);
|
|
16
|
+
export const ReportUnitSchema = z.enum(["ms", "count", "ratio", "perMin"]);
|
|
17
|
+
/** A code resolved to a human string by the renderer's message table. */
|
|
18
|
+
export const ReportReasonCodeSchema = z.string();
|
|
19
|
+
/** A key into `ReportViewModel.links`, so a recommendation can point at a URL. */
|
|
20
|
+
export const ReportLinkKeySchema = z.string();
|
|
21
|
+
export const ReportDeltaSchema = z.object({
|
|
22
|
+
dir: z.enum(["up", "down", "flat"]),
|
|
23
|
+
/** rounded value/normal multiplier; renderer decides whether to print "6×". */
|
|
24
|
+
mult: z.number().optional(),
|
|
25
|
+
});
|
|
26
|
+
export const ReportMetricSeriesSchema = z.object({
|
|
27
|
+
points: z.array(z.number()),
|
|
28
|
+
/** "estimated" = a proxy (e.g. pending backlog), shown informational-only. */
|
|
29
|
+
kind: z.enum(["measured", "estimated"]),
|
|
30
|
+
});
|
|
31
|
+
export const ReportMetricSchema = z.object({
|
|
32
|
+
/** A code, e.g. "start_latency_p95"; the messages map turns it into the label. */
|
|
33
|
+
id: z.string(),
|
|
34
|
+
value: z.number(),
|
|
35
|
+
unit: ReportUnitSchema,
|
|
36
|
+
aggregation: z.enum(["p95", "rate", "ratio", "count"]).optional(),
|
|
37
|
+
/** baseline; renderer formats "(normal ~7s)". */
|
|
38
|
+
normal: z.number().optional(),
|
|
39
|
+
delta: ReportDeltaSchema.optional(),
|
|
40
|
+
series: ReportMetricSeriesSchema.optional(),
|
|
41
|
+
/** named sub-values for composite metrics (e.g. throughput { done, triggered }). */
|
|
42
|
+
breakdown: z.record(z.number()).optional(),
|
|
43
|
+
/** shown on a cause line INSTEAD of "(normal ~x)", e.g. "pinned 40 of last 60 min". */
|
|
44
|
+
annotation: z.object({ code: ReportReasonCodeSchema, value: z.number().optional() }).optional(),
|
|
45
|
+
/** "unknown" means `value` is a placeholder a consumer must not read as real. Absent = measured. */
|
|
46
|
+
availability: z.enum(["measured", "unknown"]).optional(),
|
|
47
|
+
severity: ReportSeveritySchema,
|
|
48
|
+
});
|
|
49
|
+
export const ReportRecommendationSchema = z.object({
|
|
50
|
+
code: ReportReasonCodeSchema,
|
|
51
|
+
link: ReportLinkKeySchema.optional(),
|
|
52
|
+
});
|
|
53
|
+
/** A footer line: an action, or the "do nothing" option (carries value). */
|
|
54
|
+
export const ReportFooterEntrySchema = z.object({
|
|
55
|
+
code: ReportReasonCodeSchema,
|
|
56
|
+
link: ReportLinkKeySchema.optional(),
|
|
57
|
+
/** a computed fact (e.g. drainMinutes), never invented. */
|
|
58
|
+
value: z.number().optional(),
|
|
59
|
+
});
|
|
60
|
+
/** A ruled-out cause + its evidence, e.g. "not your code" (never emitted without evidence). */
|
|
61
|
+
export const ReportExclusionSchema = z.object({
|
|
62
|
+
code: ReportReasonCodeSchema,
|
|
63
|
+
evidence: z.record(z.number()).optional(),
|
|
64
|
+
});
|
|
65
|
+
/** A measured fact backing the verdict. `ReportExclusion` states what the problem isn't. */
|
|
66
|
+
export const ReportObservationSchema = z.object({
|
|
67
|
+
code: ReportReasonCodeSchema,
|
|
68
|
+
evidence: z.record(z.number()).optional(),
|
|
69
|
+
});
|
|
70
|
+
export const ReportFindingSchema = z.object({
|
|
71
|
+
/** "flow" | "execution" | "liveness" | future "infrastructure" | "billing" */
|
|
72
|
+
type: z.string(),
|
|
73
|
+
severity: ReportSeveritySchema,
|
|
74
|
+
/** Code for the state or cause, e.g. "env_limit_saturation" | "healthy". */
|
|
75
|
+
reason: ReportReasonCodeSchema,
|
|
76
|
+
/** Code for the "read:" line. Built last, may span findings. */
|
|
77
|
+
read: ReportReasonCodeSchema.optional(),
|
|
78
|
+
/** metric ids this finding covers, in causal order when degraded. */
|
|
79
|
+
metricIds: z.array(z.string()),
|
|
80
|
+
/** A single primary action. */
|
|
81
|
+
recommendation: ReportRecommendationSchema.optional(),
|
|
82
|
+
/** optional parenthetical — same shape as recommendation. */
|
|
83
|
+
hedge: ReportRecommendationSchema.optional(),
|
|
84
|
+
/** contiguous breach window of the driving metric -> "(last 40 min)". */
|
|
85
|
+
anomalyWindow: z.object({ minutes: z.number(), touchesEnd: z.boolean() }).optional(),
|
|
86
|
+
/** Which dimension and key own the problem. `of` is the denominator label the renderer prints. */
|
|
87
|
+
attribution: z
|
|
88
|
+
.object({ dim: z.string(), key: z.string(), share: z.number(), of: z.string() })
|
|
89
|
+
.optional(),
|
|
90
|
+
/** Ruled-out causes and evidence, rendered under the `read:` line. */
|
|
91
|
+
exclusions: z.array(ReportExclusionSchema).optional(),
|
|
92
|
+
/** Supporting facts, rendered under the `read:` line after the exclusions. */
|
|
93
|
+
observations: z.array(ReportObservationSchema).optional(),
|
|
94
|
+
});
|
|
95
|
+
export const ReportSummaryStatementSchema = z.object({
|
|
96
|
+
findingType: z.string(),
|
|
97
|
+
severity: ReportSeveritySchema,
|
|
98
|
+
/** Renders from (findingType, severity) unless a reason is present. */
|
|
99
|
+
reason: ReportReasonCodeSchema.optional(),
|
|
100
|
+
});
|
|
101
|
+
export const ReportLinkSchema = z.object({
|
|
102
|
+
key: ReportLinkKeySchema,
|
|
103
|
+
label: z.string(),
|
|
104
|
+
url: z.string(),
|
|
105
|
+
});
|
|
106
|
+
export const ReportViewModelSchema = z.object({
|
|
107
|
+
/** "health" | "cost" | … */
|
|
108
|
+
title: z.string(),
|
|
109
|
+
/** "prod" */
|
|
110
|
+
scope: z.string(),
|
|
111
|
+
/** "last 1h" */
|
|
112
|
+
period: z.string(),
|
|
113
|
+
/** "vs your 7d normal" */
|
|
114
|
+
baselineLabel: z.string().optional(),
|
|
115
|
+
/** ISO string. Passed in, never read from the clock inside interpret. */
|
|
116
|
+
generatedAt: z.string(),
|
|
117
|
+
/** live window length in minutes — lets the renderer say "of last 60 min". */
|
|
118
|
+
windowMinutes: z.number(),
|
|
119
|
+
summary: z.object({
|
|
120
|
+
severity: ReportSeveritySchema,
|
|
121
|
+
statements: z.array(ReportSummaryStatementSchema),
|
|
122
|
+
}),
|
|
123
|
+
findings: z.array(ReportFindingSchema),
|
|
124
|
+
metrics: z.array(ReportMetricSchema),
|
|
125
|
+
/** dense structured payload for agents. */
|
|
126
|
+
facts: z.record(z.unknown()),
|
|
127
|
+
links: z.array(ReportLinkSchema),
|
|
128
|
+
/** dominant finding's action + optional "do nothing" option. Max two entries. */
|
|
129
|
+
footer: z.array(ReportFooterEntrySchema),
|
|
130
|
+
});
|
|
131
|
+
//# sourceMappingURL=reports.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reports.js","sourceRoot":"","sources":["../../../../src/v3/schemas/reports.ts"],"names":[],"mappings":"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"}
|
|
@@ -80,14 +80,17 @@ export declare const TaskResource: z.ZodObject<{
|
|
|
80
80
|
cron: z.ZodString;
|
|
81
81
|
timezone: z.ZodString;
|
|
82
82
|
environments: z.ZodOptional<z.ZodArray<z.ZodEnum<["PRODUCTION", "STAGING", "DEVELOPMENT", "PREVIEW"]>, "many">>;
|
|
83
|
+
window: z.ZodOptional<z.ZodString>;
|
|
83
84
|
}, "strip", z.ZodTypeAny, {
|
|
84
85
|
cron: string;
|
|
85
86
|
timezone: string;
|
|
86
87
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
88
|
+
window?: string | undefined;
|
|
87
89
|
}, {
|
|
88
90
|
cron: string;
|
|
89
91
|
timezone: string;
|
|
90
92
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
93
|
+
window?: string | undefined;
|
|
91
94
|
}>>;
|
|
92
95
|
maxDuration: z.ZodOptional<z.ZodNumber>;
|
|
93
96
|
ttl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -124,6 +127,7 @@ export declare const TaskResource: z.ZodObject<{
|
|
|
124
127
|
cron: string;
|
|
125
128
|
timezone: string;
|
|
126
129
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
130
|
+
window?: string | undefined;
|
|
127
131
|
} | undefined;
|
|
128
132
|
maxDuration?: number | undefined;
|
|
129
133
|
ttl?: string | number | undefined;
|
|
@@ -160,6 +164,7 @@ export declare const TaskResource: z.ZodObject<{
|
|
|
160
164
|
cron: string;
|
|
161
165
|
timezone: string;
|
|
162
166
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
167
|
+
window?: string | undefined;
|
|
163
168
|
} | undefined;
|
|
164
169
|
maxDuration?: number | undefined;
|
|
165
170
|
ttl?: string | number | undefined;
|
|
@@ -293,14 +298,17 @@ export declare const BackgroundWorkerMetadata: z.ZodObject<{
|
|
|
293
298
|
cron: z.ZodString;
|
|
294
299
|
timezone: z.ZodString;
|
|
295
300
|
environments: z.ZodOptional<z.ZodArray<z.ZodEnum<["PRODUCTION", "STAGING", "DEVELOPMENT", "PREVIEW"]>, "many">>;
|
|
301
|
+
window: z.ZodOptional<z.ZodString>;
|
|
296
302
|
}, "strip", z.ZodTypeAny, {
|
|
297
303
|
cron: string;
|
|
298
304
|
timezone: string;
|
|
299
305
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
306
|
+
window?: string | undefined;
|
|
300
307
|
}, {
|
|
301
308
|
cron: string;
|
|
302
309
|
timezone: string;
|
|
303
310
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
311
|
+
window?: string | undefined;
|
|
304
312
|
}>>;
|
|
305
313
|
maxDuration: z.ZodOptional<z.ZodNumber>;
|
|
306
314
|
ttl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -337,6 +345,7 @@ export declare const BackgroundWorkerMetadata: z.ZodObject<{
|
|
|
337
345
|
cron: string;
|
|
338
346
|
timezone: string;
|
|
339
347
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
348
|
+
window?: string | undefined;
|
|
340
349
|
} | undefined;
|
|
341
350
|
maxDuration?: number | undefined;
|
|
342
351
|
ttl?: string | number | undefined;
|
|
@@ -373,6 +382,7 @@ export declare const BackgroundWorkerMetadata: z.ZodObject<{
|
|
|
373
382
|
cron: string;
|
|
374
383
|
timezone: string;
|
|
375
384
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
385
|
+
window?: string | undefined;
|
|
376
386
|
} | undefined;
|
|
377
387
|
maxDuration?: number | undefined;
|
|
378
388
|
ttl?: string | number | undefined;
|
|
@@ -474,6 +484,7 @@ export declare const BackgroundWorkerMetadata: z.ZodObject<{
|
|
|
474
484
|
cron: string;
|
|
475
485
|
timezone: string;
|
|
476
486
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
487
|
+
window?: string | undefined;
|
|
477
488
|
} | undefined;
|
|
478
489
|
maxDuration?: number | undefined;
|
|
479
490
|
ttl?: string | number | undefined;
|
|
@@ -537,6 +548,7 @@ export declare const BackgroundWorkerMetadata: z.ZodObject<{
|
|
|
537
548
|
cron: string;
|
|
538
549
|
timezone: string;
|
|
539
550
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
551
|
+
window?: string | undefined;
|
|
540
552
|
} | undefined;
|
|
541
553
|
maxDuration?: number | undefined;
|
|
542
554
|
ttl?: string | number | undefined;
|
|
@@ -2210,18 +2210,28 @@ export declare const QueueManifest: z.ZodObject<{
|
|
|
2210
2210
|
concurrencyLimit?: number | null | undefined;
|
|
2211
2211
|
}>;
|
|
2212
2212
|
export type QueueManifest = z.infer<typeof QueueManifest>;
|
|
2213
|
+
/**
|
|
2214
|
+
* A delay window after a nominal cron tick.
|
|
2215
|
+
*
|
|
2216
|
+
* The server's schedule timing domain validates and normalizes the public syntax.
|
|
2217
|
+
*/
|
|
2218
|
+
export declare const ScheduleWindow: z.ZodString;
|
|
2219
|
+
export type ScheduleWindow = z.infer<typeof ScheduleWindow>;
|
|
2213
2220
|
export declare const ScheduleMetadata: z.ZodObject<{
|
|
2214
2221
|
cron: z.ZodString;
|
|
2215
2222
|
timezone: z.ZodString;
|
|
2216
2223
|
environments: z.ZodOptional<z.ZodArray<z.ZodEnum<["PRODUCTION", "STAGING", "DEVELOPMENT", "PREVIEW"]>, "many">>;
|
|
2224
|
+
window: z.ZodOptional<z.ZodString>;
|
|
2217
2225
|
}, "strip", z.ZodTypeAny, {
|
|
2218
2226
|
cron: string;
|
|
2219
2227
|
timezone: string;
|
|
2220
2228
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2229
|
+
window?: string | undefined;
|
|
2221
2230
|
}, {
|
|
2222
2231
|
cron: string;
|
|
2223
2232
|
timezone: string;
|
|
2224
2233
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2234
|
+
window?: string | undefined;
|
|
2225
2235
|
}>;
|
|
2226
2236
|
export declare const TaskMetadata: z.ZodObject<{
|
|
2227
2237
|
id: z.ZodString;
|
|
@@ -2309,14 +2319,17 @@ export declare const TaskMetadata: z.ZodObject<{
|
|
|
2309
2319
|
cron: z.ZodString;
|
|
2310
2320
|
timezone: z.ZodString;
|
|
2311
2321
|
environments: z.ZodOptional<z.ZodArray<z.ZodEnum<["PRODUCTION", "STAGING", "DEVELOPMENT", "PREVIEW"]>, "many">>;
|
|
2322
|
+
window: z.ZodOptional<z.ZodString>;
|
|
2312
2323
|
}, "strip", z.ZodTypeAny, {
|
|
2313
2324
|
cron: string;
|
|
2314
2325
|
timezone: string;
|
|
2315
2326
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2327
|
+
window?: string | undefined;
|
|
2316
2328
|
}, {
|
|
2317
2329
|
cron: string;
|
|
2318
2330
|
timezone: string;
|
|
2319
2331
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2332
|
+
window?: string | undefined;
|
|
2320
2333
|
}>>;
|
|
2321
2334
|
maxDuration: z.ZodOptional<z.ZodNumber>;
|
|
2322
2335
|
ttl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -2351,6 +2364,7 @@ export declare const TaskMetadata: z.ZodObject<{
|
|
|
2351
2364
|
cron: string;
|
|
2352
2365
|
timezone: string;
|
|
2353
2366
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2367
|
+
window?: string | undefined;
|
|
2354
2368
|
} | undefined;
|
|
2355
2369
|
maxDuration?: number | undefined;
|
|
2356
2370
|
ttl?: string | number | undefined;
|
|
@@ -2385,6 +2399,7 @@ export declare const TaskMetadata: z.ZodObject<{
|
|
|
2385
2399
|
cron: string;
|
|
2386
2400
|
timezone: string;
|
|
2387
2401
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2402
|
+
window?: string | undefined;
|
|
2388
2403
|
} | undefined;
|
|
2389
2404
|
maxDuration?: number | undefined;
|
|
2390
2405
|
ttl?: string | number | undefined;
|
|
@@ -2502,14 +2517,17 @@ export declare const TaskManifest: z.ZodObject<{
|
|
|
2502
2517
|
cron: z.ZodString;
|
|
2503
2518
|
timezone: z.ZodString;
|
|
2504
2519
|
environments: z.ZodOptional<z.ZodArray<z.ZodEnum<["PRODUCTION", "STAGING", "DEVELOPMENT", "PREVIEW"]>, "many">>;
|
|
2520
|
+
window: z.ZodOptional<z.ZodString>;
|
|
2505
2521
|
}, "strip", z.ZodTypeAny, {
|
|
2506
2522
|
cron: string;
|
|
2507
2523
|
timezone: string;
|
|
2508
2524
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2525
|
+
window?: string | undefined;
|
|
2509
2526
|
}, {
|
|
2510
2527
|
cron: string;
|
|
2511
2528
|
timezone: string;
|
|
2512
2529
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2530
|
+
window?: string | undefined;
|
|
2513
2531
|
}>>;
|
|
2514
2532
|
maxDuration: z.ZodOptional<z.ZodNumber>;
|
|
2515
2533
|
ttl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -2547,6 +2565,7 @@ export declare const TaskManifest: z.ZodObject<{
|
|
|
2547
2565
|
cron: string;
|
|
2548
2566
|
timezone: string;
|
|
2549
2567
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2568
|
+
window?: string | undefined;
|
|
2550
2569
|
} | undefined;
|
|
2551
2570
|
maxDuration?: number | undefined;
|
|
2552
2571
|
ttl?: string | number | undefined;
|
|
@@ -2584,6 +2603,7 @@ export declare const TaskManifest: z.ZodObject<{
|
|
|
2584
2603
|
cron: string;
|
|
2585
2604
|
timezone: string;
|
|
2586
2605
|
environments?: ("DEVELOPMENT" | "PREVIEW" | "PRODUCTION" | "STAGING")[] | undefined;
|
|
2606
|
+
window?: string | undefined;
|
|
2587
2607
|
} | undefined;
|
|
2588
2608
|
maxDuration?: number | undefined;
|
|
2589
2609
|
ttl?: string | number | undefined;
|
|
@@ -136,10 +136,17 @@ export const QueueManifest = z.object({
|
|
|
136
136
|
* If this property is omitted, the task can potentially use up the full concurrency of an environment */
|
|
137
137
|
concurrencyLimit: z.number().int().min(0).max(100000).optional().nullable(),
|
|
138
138
|
});
|
|
139
|
+
/**
|
|
140
|
+
* A delay window after a nominal cron tick.
|
|
141
|
+
*
|
|
142
|
+
* The server's schedule timing domain validates and normalizes the public syntax.
|
|
143
|
+
*/
|
|
144
|
+
export const ScheduleWindow = z.string().min(1);
|
|
139
145
|
export const ScheduleMetadata = z.object({
|
|
140
146
|
cron: z.string(),
|
|
141
147
|
timezone: z.string(),
|
|
142
148
|
environments: z.array(EnvironmentType).optional(),
|
|
149
|
+
window: ScheduleWindow.optional(),
|
|
143
150
|
});
|
|
144
151
|
const AgentConfig = z.object({
|
|
145
152
|
type: z.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/v3/schemas/schemas.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/v3/schemas/schemas.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "4.5.
|
|
1
|
+
export const VERSION = "4.5.11";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|