@continuous-excellence/ze-great-dashboard-aws 0.22.2 → 0.22.3
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/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/lambda.mjs +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -322,7 +322,7 @@ var pipelineActivitySchema = z4.object({
|
|
|
322
322
|
});
|
|
323
323
|
var pipelineStatusSchema = z4.object({
|
|
324
324
|
type: z4.literal("pipeline-status"),
|
|
325
|
-
status: z4.enum(["passed", "failed", "running", "cancelled", "unknown"]),
|
|
325
|
+
status: z4.enum(["passed", "failed", "warning", "running", "cancelled", "unknown"]),
|
|
326
326
|
/** The source's unmodified status/result vocabulary, for an honest display. */
|
|
327
327
|
rawStatus: z4.string(),
|
|
328
328
|
name: z4.string().min(1),
|
package/dist/index.js
CHANGED
|
@@ -1003,7 +1003,7 @@ var pipelineActivitySchema = z4.object({
|
|
|
1003
1003
|
});
|
|
1004
1004
|
var pipelineStatusSchema = z4.object({
|
|
1005
1005
|
type: z4.literal("pipeline-status"),
|
|
1006
|
-
status: z4.enum(["passed", "failed", "running", "cancelled", "unknown"]),
|
|
1006
|
+
status: z4.enum(["passed", "failed", "warning", "running", "cancelled", "unknown"]),
|
|
1007
1007
|
/** The source's unmodified status/result vocabulary, for an honest display. */
|
|
1008
1008
|
rawStatus: z4.string(),
|
|
1009
1009
|
name: z4.string().min(1),
|
package/dist/lambda.mjs
CHANGED
|
@@ -64217,7 +64217,7 @@ var pipelineActivitySchema = external_exports.object({
|
|
|
64217
64217
|
});
|
|
64218
64218
|
var pipelineStatusSchema = external_exports.object({
|
|
64219
64219
|
type: external_exports.literal("pipeline-status"),
|
|
64220
|
-
status: external_exports.enum(["passed", "failed", "running", "cancelled", "unknown"]),
|
|
64220
|
+
status: external_exports.enum(["passed", "failed", "warning", "running", "cancelled", "unknown"]),
|
|
64221
64221
|
/** The source's unmodified status/result vocabulary, for an honest display. */
|
|
64222
64222
|
rawStatus: external_exports.string(),
|
|
64223
64223
|
name: external_exports.string().min(1),
|
|
@@ -64626,6 +64626,7 @@ function normalizeStatus(status, result) {
|
|
|
64626
64626
|
if (status !== "completed") return "unknown";
|
|
64627
64627
|
if (result === "succeeded") return "passed";
|
|
64628
64628
|
if (result === "failed") return "failed";
|
|
64629
|
+
if (result === "partiallySucceeded") return "warning";
|
|
64629
64630
|
if (result === "canceled") return "cancelled";
|
|
64630
64631
|
return "unknown";
|
|
64631
64632
|
}
|
package/package.json
CHANGED