@devhelm/sdk 0.2.0 → 0.3.0
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.
|
@@ -2116,13 +2116,13 @@ export declare const schemas: {
|
|
|
2116
2116
|
name: z.ZodString;
|
|
2117
2117
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2118
2118
|
displayOrder: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2119
|
-
|
|
2119
|
+
defaultOpen: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2120
2120
|
}, z.core.$strict>;
|
|
2121
2121
|
UpdateStatusPageComponentGroupRequest: z.ZodObject<{
|
|
2122
2122
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2123
2123
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2124
2124
|
displayOrder: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2125
|
-
|
|
2125
|
+
defaultOpen: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2126
2126
|
}, z.core.$strict>;
|
|
2127
2127
|
AffectedComponent: z.ZodObject<{
|
|
2128
2128
|
componentId: z.ZodString;
|
|
@@ -7226,7 +7226,7 @@ export declare const schemas: {
|
|
|
7226
7226
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7227
7227
|
displayOrder: z.ZodNumber;
|
|
7228
7228
|
pageOrder: z.ZodNumber;
|
|
7229
|
-
|
|
7229
|
+
defaultOpen: z.ZodBoolean;
|
|
7230
7230
|
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7231
7231
|
id: z.ZodString;
|
|
7232
7232
|
statusPageId: z.ZodString;
|
|
@@ -7266,7 +7266,7 @@ export declare const schemas: {
|
|
|
7266
7266
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7267
7267
|
displayOrder: z.ZodNumber;
|
|
7268
7268
|
pageOrder: z.ZodNumber;
|
|
7269
|
-
|
|
7269
|
+
defaultOpen: z.ZodBoolean;
|
|
7270
7270
|
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7271
7271
|
id: z.ZodString;
|
|
7272
7272
|
statusPageId: z.ZodString;
|
|
@@ -9185,7 +9185,7 @@ export declare const schemas: {
|
|
|
9185
9185
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9186
9186
|
displayOrder: z.ZodNumber;
|
|
9187
9187
|
pageOrder: z.ZodNumber;
|
|
9188
|
-
|
|
9188
|
+
defaultOpen: z.ZodBoolean;
|
|
9189
9189
|
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
9190
9190
|
id: z.ZodString;
|
|
9191
9191
|
statusPageId: z.ZodString;
|
|
@@ -1076,7 +1076,7 @@ const CreateStatusPageComponentGroupRequest = z
|
|
|
1076
1076
|
name: z.string().min(0).max(255),
|
|
1077
1077
|
description: z.string().min(0).max(500).nullish(),
|
|
1078
1078
|
displayOrder: z.number().int().nullish(),
|
|
1079
|
-
|
|
1079
|
+
defaultOpen: z.boolean().nullish(),
|
|
1080
1080
|
})
|
|
1081
1081
|
.strict();
|
|
1082
1082
|
const UpdateStatusPageComponentGroupRequest = z
|
|
@@ -1084,7 +1084,7 @@ const UpdateStatusPageComponentGroupRequest = z
|
|
|
1084
1084
|
name: z.string().min(0).max(255).nullable(),
|
|
1085
1085
|
description: z.string().min(0).max(500).nullable(),
|
|
1086
1086
|
displayOrder: z.number().int().nullable(),
|
|
1087
|
-
|
|
1087
|
+
defaultOpen: z.boolean().nullable(),
|
|
1088
1088
|
})
|
|
1089
1089
|
.partial()
|
|
1090
1090
|
.strict();
|
|
@@ -2652,7 +2652,7 @@ const StatusPageComponentGroupDto = z
|
|
|
2652
2652
|
description: z.string().nullish(),
|
|
2653
2653
|
displayOrder: z.number().int(),
|
|
2654
2654
|
pageOrder: z.number().int(),
|
|
2655
|
-
|
|
2655
|
+
defaultOpen: z.boolean(),
|
|
2656
2656
|
components: z.array(StatusPageComponentDto).nullish(),
|
|
2657
2657
|
createdAt: z.string().datetime({ offset: true }),
|
|
2658
2658
|
updatedAt: z.string().datetime({ offset: true }),
|