skedyul 1.0.13 → 1.0.14
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/.build-stamp +1 -1
- package/dist/schemas.d.ts +3 -3
- package/dist/schemas.js +1 -1
- package/package.json +1 -1
package/dist/.build-stamp
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1772592371453
|
package/dist/schemas.d.ts
CHANGED
|
@@ -292,7 +292,7 @@ export declare const ChannelFieldDefinitionSchema: z.ZodObject<{
|
|
|
292
292
|
}, z.core.$loose>;
|
|
293
293
|
export declare const ChannelDefinitionSchema: z.ZodObject<{
|
|
294
294
|
handle: z.ZodString;
|
|
295
|
-
|
|
295
|
+
label: z.ZodString;
|
|
296
296
|
icon: z.ZodOptional<z.ZodString>;
|
|
297
297
|
fields: z.ZodArray<z.ZodObject<{
|
|
298
298
|
handle: z.ZodString;
|
|
@@ -2992,7 +2992,7 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
|
|
|
2992
2992
|
}, z.core.$strip>>>;
|
|
2993
2993
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2994
2994
|
handle: z.ZodString;
|
|
2995
|
-
|
|
2995
|
+
label: z.ZodString;
|
|
2996
2996
|
icon: z.ZodOptional<z.ZodString>;
|
|
2997
2997
|
fields: z.ZodArray<z.ZodObject<{
|
|
2998
2998
|
handle: z.ZodString;
|
|
@@ -3628,7 +3628,7 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
|
|
|
3628
3628
|
}, z.core.$strip>>>;
|
|
3629
3629
|
channels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3630
3630
|
handle: z.ZodString;
|
|
3631
|
-
|
|
3631
|
+
label: z.ZodString;
|
|
3632
3632
|
icon: z.ZodOptional<z.ZodString>;
|
|
3633
3633
|
fields: z.ZodArray<z.ZodObject<{
|
|
3634
3634
|
handle: z.ZodString;
|
package/dist/schemas.js
CHANGED
|
@@ -172,7 +172,7 @@ exports.ChannelFieldDefinitionSchema = v4_1.z.object({
|
|
|
172
172
|
}).passthrough();
|
|
173
173
|
exports.ChannelDefinitionSchema = v4_1.z.object({
|
|
174
174
|
handle: v4_1.z.string(),
|
|
175
|
-
|
|
175
|
+
label: v4_1.z.string(),
|
|
176
176
|
icon: v4_1.z.string().optional(),
|
|
177
177
|
/** Array of field definitions for this channel. One field must have identifier: true. */
|
|
178
178
|
fields: v4_1.z.array(exports.ChannelFieldDefinitionSchema),
|