skedyul 0.2.46 → 0.2.48
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/config.d.ts +2 -0
- package/dist/schemas.d.ts +3 -0
- package/dist/schemas.js +2 -0
- package/package.json +1 -1
package/dist/.build-stamp
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1769397040118
|
package/dist/config.d.ts
CHANGED
|
@@ -538,6 +538,8 @@ export interface PageDefinition {
|
|
|
538
538
|
title: string;
|
|
539
539
|
/** URL path for this page (e.g., '/phone-numbers' or '/phone-numbers/[id]' for dynamic segments) */
|
|
540
540
|
path: string;
|
|
541
|
+
/** When true, this page is the default landing page for the app installation */
|
|
542
|
+
default?: boolean;
|
|
541
543
|
/**
|
|
542
544
|
* Navigation configuration:
|
|
543
545
|
* - true/false: show/hide in auto-generated navigation
|
package/dist/schemas.d.ts
CHANGED
|
@@ -2190,6 +2190,7 @@ export declare const PageDefinitionSchema: z.ZodObject<{
|
|
|
2190
2190
|
}>;
|
|
2191
2191
|
title: z.ZodString;
|
|
2192
2192
|
path: z.ZodString;
|
|
2193
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
2193
2194
|
navigation: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodObject<{
|
|
2194
2195
|
sidebar: z.ZodOptional<z.ZodObject<{
|
|
2195
2196
|
sections: z.ZodArray<z.ZodObject<{
|
|
@@ -2806,6 +2807,7 @@ export declare const ProvisionConfigSchema: z.ZodObject<{
|
|
|
2806
2807
|
}>;
|
|
2807
2808
|
title: z.ZodString;
|
|
2808
2809
|
path: z.ZodString;
|
|
2810
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
2809
2811
|
navigation: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodObject<{
|
|
2810
2812
|
sidebar: z.ZodOptional<z.ZodObject<{
|
|
2811
2813
|
sections: z.ZodArray<z.ZodObject<{
|
|
@@ -3405,6 +3407,7 @@ export declare const SkedyulConfigSchema: z.ZodObject<{
|
|
|
3405
3407
|
}>;
|
|
3406
3408
|
title: z.ZodString;
|
|
3407
3409
|
path: z.ZodString;
|
|
3410
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
3408
3411
|
navigation: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodObject<{
|
|
3409
3412
|
sidebar: z.ZodOptional<z.ZodObject<{
|
|
3410
3413
|
sections: z.ZodArray<z.ZodObject<{
|
package/dist/schemas.js
CHANGED
|
@@ -577,6 +577,8 @@ exports.PageDefinitionSchema = zod_1.z.object({
|
|
|
577
577
|
title: zod_1.z.string(),
|
|
578
578
|
/** URL path for this page (e.g., '/phone-numbers' or '/phone-numbers/[id]' for dynamic segments) */
|
|
579
579
|
path: zod_1.z.string(),
|
|
580
|
+
/** When true, this page is the default landing page for the app installation */
|
|
581
|
+
default: zod_1.z.boolean().optional(),
|
|
580
582
|
/**
|
|
581
583
|
* Navigation configuration:
|
|
582
584
|
* - true/false: show/hide in auto-generated navigation
|