@continuous-excellence/ze-great-dashboard-aws 0.30.2 → 0.30.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 +14 -12
- package/dist/index.js +14 -12
- package/dist/lambda.mjs +14 -12
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -61,6 +61,19 @@ var durationSchema = z.string().regex(/^[1-9][0-9]*(?:ms|s|m|h)$/, {
|
|
|
61
61
|
message: 'must be a positive duration like "30s", "5m", or "1h"'
|
|
62
62
|
}).brand();
|
|
63
63
|
|
|
64
|
+
// packages/shared/src/running-animations.ts
|
|
65
|
+
var visibleRunningAnimations = [
|
|
66
|
+
"radial",
|
|
67
|
+
"runway",
|
|
68
|
+
"orbit",
|
|
69
|
+
"signal-field",
|
|
70
|
+
"telemetry-bloom",
|
|
71
|
+
"release-transit",
|
|
72
|
+
"status-weather",
|
|
73
|
+
"falling-shapes",
|
|
74
|
+
"snowman"
|
|
75
|
+
];
|
|
76
|
+
|
|
64
77
|
// packages/shared/src/board-config.ts
|
|
65
78
|
var positionSchema = z2.union([
|
|
66
79
|
z2.object({
|
|
@@ -97,17 +110,6 @@ var httpValueScalarPanelSchema = httpValuePanelIdentitySchema.extend({
|
|
|
97
110
|
var httpValueGroupedPanelSchema = httpValuePanelIdentitySchema.extend({
|
|
98
111
|
facts: z2.array(httpValueFactSchema).min(1).max(4)
|
|
99
112
|
});
|
|
100
|
-
var visibleRunningAnimations = [
|
|
101
|
-
"radial",
|
|
102
|
-
"runway",
|
|
103
|
-
"orbit",
|
|
104
|
-
"signal-field",
|
|
105
|
-
"telemetry-bloom",
|
|
106
|
-
"release-transit",
|
|
107
|
-
"status-weather",
|
|
108
|
-
"falling-shapes",
|
|
109
|
-
"snowman"
|
|
110
|
-
];
|
|
111
113
|
var runningAnimationSchema = z2.enum([...visibleRunningAnimations, "off"]);
|
|
112
114
|
var panelSchema = z2.looseObject({
|
|
113
115
|
/** Presentation-only wall label. `id` remains the stable proxy and allowlist address. */
|
|
@@ -271,7 +273,7 @@ var gitlabCiSourceSchema = z2.looseObject({
|
|
|
271
273
|
token_env: z2.string().min(1),
|
|
272
274
|
/** The branch or tag whose newest pipeline the dashboard represents. */
|
|
273
275
|
branch: z2.string().min(1).optional(),
|
|
274
|
-
/** HTTPS GitLab
|
|
276
|
+
/** HTTPS GitLab instance, optionally below a self-managed path prefix. */
|
|
275
277
|
url: gitlabInstanceUrlSchema.optional().default("https://gitlab.com")
|
|
276
278
|
});
|
|
277
279
|
var sourceSchema = z2.looseObject({ type: z2.string().min(1), ...sourceAuthenticationSchema }).superRefine(exactlyOneGithubAuthenticationMode);
|
package/dist/index.js
CHANGED
|
@@ -742,6 +742,19 @@ var durationSchema = z.string().regex(/^[1-9][0-9]*(?:ms|s|m|h)$/, {
|
|
|
742
742
|
message: 'must be a positive duration like "30s", "5m", or "1h"'
|
|
743
743
|
}).brand();
|
|
744
744
|
|
|
745
|
+
// packages/shared/src/running-animations.ts
|
|
746
|
+
var visibleRunningAnimations = [
|
|
747
|
+
"radial",
|
|
748
|
+
"runway",
|
|
749
|
+
"orbit",
|
|
750
|
+
"signal-field",
|
|
751
|
+
"telemetry-bloom",
|
|
752
|
+
"release-transit",
|
|
753
|
+
"status-weather",
|
|
754
|
+
"falling-shapes",
|
|
755
|
+
"snowman"
|
|
756
|
+
];
|
|
757
|
+
|
|
745
758
|
// packages/shared/src/board-config.ts
|
|
746
759
|
var positionSchema = z2.union([
|
|
747
760
|
z2.object({
|
|
@@ -778,17 +791,6 @@ var httpValueScalarPanelSchema = httpValuePanelIdentitySchema.extend({
|
|
|
778
791
|
var httpValueGroupedPanelSchema = httpValuePanelIdentitySchema.extend({
|
|
779
792
|
facts: z2.array(httpValueFactSchema).min(1).max(4)
|
|
780
793
|
});
|
|
781
|
-
var visibleRunningAnimations = [
|
|
782
|
-
"radial",
|
|
783
|
-
"runway",
|
|
784
|
-
"orbit",
|
|
785
|
-
"signal-field",
|
|
786
|
-
"telemetry-bloom",
|
|
787
|
-
"release-transit",
|
|
788
|
-
"status-weather",
|
|
789
|
-
"falling-shapes",
|
|
790
|
-
"snowman"
|
|
791
|
-
];
|
|
792
794
|
var runningAnimationSchema = z2.enum([...visibleRunningAnimations, "off"]);
|
|
793
795
|
var panelSchema = z2.looseObject({
|
|
794
796
|
/** Presentation-only wall label. `id` remains the stable proxy and allowlist address. */
|
|
@@ -952,7 +954,7 @@ var gitlabCiSourceSchema = z2.looseObject({
|
|
|
952
954
|
token_env: z2.string().min(1),
|
|
953
955
|
/** The branch or tag whose newest pipeline the dashboard represents. */
|
|
954
956
|
branch: z2.string().min(1).optional(),
|
|
955
|
-
/** HTTPS GitLab
|
|
957
|
+
/** HTTPS GitLab instance, optionally below a self-managed path prefix. */
|
|
956
958
|
url: gitlabInstanceUrlSchema.optional().default("https://gitlab.com")
|
|
957
959
|
});
|
|
958
960
|
var sourceSchema = z2.looseObject({ type: z2.string().min(1), ...sourceAuthenticationSchema }).superRefine(exactlyOneGithubAuthenticationMode);
|
package/dist/lambda.mjs
CHANGED
|
@@ -69101,6 +69101,19 @@ var durationSchema = external_exports.string().regex(/^[1-9][0-9]*(?:ms|s|m|h)$/
|
|
|
69101
69101
|
message: 'must be a positive duration like "30s", "5m", or "1h"'
|
|
69102
69102
|
}).brand();
|
|
69103
69103
|
|
|
69104
|
+
// packages/shared/src/running-animations.ts
|
|
69105
|
+
var visibleRunningAnimations = [
|
|
69106
|
+
"radial",
|
|
69107
|
+
"runway",
|
|
69108
|
+
"orbit",
|
|
69109
|
+
"signal-field",
|
|
69110
|
+
"telemetry-bloom",
|
|
69111
|
+
"release-transit",
|
|
69112
|
+
"status-weather",
|
|
69113
|
+
"falling-shapes",
|
|
69114
|
+
"snowman"
|
|
69115
|
+
];
|
|
69116
|
+
|
|
69104
69117
|
// packages/shared/src/board-config.ts
|
|
69105
69118
|
var positionSchema = external_exports.union([
|
|
69106
69119
|
external_exports.object({
|
|
@@ -69137,17 +69150,6 @@ var httpValueScalarPanelSchema = httpValuePanelIdentitySchema.extend({
|
|
|
69137
69150
|
var httpValueGroupedPanelSchema = httpValuePanelIdentitySchema.extend({
|
|
69138
69151
|
facts: external_exports.array(httpValueFactSchema).min(1).max(4)
|
|
69139
69152
|
});
|
|
69140
|
-
var visibleRunningAnimations = [
|
|
69141
|
-
"radial",
|
|
69142
|
-
"runway",
|
|
69143
|
-
"orbit",
|
|
69144
|
-
"signal-field",
|
|
69145
|
-
"telemetry-bloom",
|
|
69146
|
-
"release-transit",
|
|
69147
|
-
"status-weather",
|
|
69148
|
-
"falling-shapes",
|
|
69149
|
-
"snowman"
|
|
69150
|
-
];
|
|
69151
69153
|
var runningAnimationSchema = external_exports.enum([...visibleRunningAnimations, "off"]);
|
|
69152
69154
|
var panelSchema = external_exports.looseObject({
|
|
69153
69155
|
/** Presentation-only wall label. `id` remains the stable proxy and allowlist address. */
|
|
@@ -69311,7 +69313,7 @@ var gitlabCiSourceSchema = external_exports.looseObject({
|
|
|
69311
69313
|
token_env: external_exports.string().min(1),
|
|
69312
69314
|
/** The branch or tag whose newest pipeline the dashboard represents. */
|
|
69313
69315
|
branch: external_exports.string().min(1).optional(),
|
|
69314
|
-
/** HTTPS GitLab
|
|
69316
|
+
/** HTTPS GitLab instance, optionally below a self-managed path prefix. */
|
|
69315
69317
|
url: gitlabInstanceUrlSchema.optional().default("https://gitlab.com")
|
|
69316
69318
|
});
|
|
69317
69319
|
var sourceSchema = external_exports.looseObject({ type: external_exports.string().min(1), ...sourceAuthenticationSchema }).superRefine(exactlyOneGithubAuthenticationMode);
|
package/package.json
CHANGED