@awarevue/api-types 1.0.95 → 1.0.96
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/layout.d.ts +3 -3
- package/dist/layout.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/layout.d.ts
CHANGED
|
@@ -156,7 +156,7 @@ export declare const sLayoutDto: z.ZodObject<{
|
|
|
156
156
|
deviceId: string;
|
|
157
157
|
rotation: number;
|
|
158
158
|
}>, "many">;
|
|
159
|
-
colorize: z.
|
|
159
|
+
colorize: z.ZodBoolean;
|
|
160
160
|
createdOn: z.ZodString;
|
|
161
161
|
lastModifiedOn: z.ZodString;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -173,9 +173,9 @@ export declare const sLayoutDto: z.ZodObject<{
|
|
|
173
173
|
deviceId: string;
|
|
174
174
|
rotation: number;
|
|
175
175
|
}[];
|
|
176
|
+
colorize: boolean;
|
|
176
177
|
thumbnailUrl: string;
|
|
177
178
|
imageUrl: string;
|
|
178
|
-
colorize?: boolean | undefined;
|
|
179
179
|
}, {
|
|
180
180
|
name: string;
|
|
181
181
|
id: string;
|
|
@@ -190,8 +190,8 @@ export declare const sLayoutDto: z.ZodObject<{
|
|
|
190
190
|
deviceId: string;
|
|
191
191
|
rotation: number;
|
|
192
192
|
}[];
|
|
193
|
+
colorize: boolean;
|
|
193
194
|
thumbnailUrl: string;
|
|
194
195
|
imageUrl: string;
|
|
195
|
-
colorize?: boolean | undefined;
|
|
196
196
|
}>;
|
|
197
197
|
export type LayoutDto = z.infer<typeof sLayoutDto>;
|
package/dist/layout.js
CHANGED
|
@@ -37,7 +37,7 @@ exports.sLayoutDto = zod_1.default.object({
|
|
|
37
37
|
order: zod_1.default.number(),
|
|
38
38
|
isDefault: zod_1.default.boolean(),
|
|
39
39
|
devices: zod_1.default.array(exports.sLayoutDeviceDto),
|
|
40
|
-
colorize: zod_1.default.boolean()
|
|
40
|
+
colorize: zod_1.default.boolean(),
|
|
41
41
|
createdOn: zod_1.default.string(),
|
|
42
42
|
lastModifiedOn: zod_1.default.string(),
|
|
43
43
|
});
|
package/dist/package.json
CHANGED