File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,18 @@ export const DeviceShadow = Type.Object({
17
17
} ) ,
18
18
) ,
19
19
} ) ,
20
- state : Type . Object ( {
21
- reported : Type . Optional (
22
- Type . Record ( Type . String ( { minLength : 1 } ) , Type . Any ( ) ) ,
23
- ) ,
24
- desired : Type . Optional (
25
- Type . Record ( Type . String ( { minLength : 1 } ) , Type . Any ( ) ) ,
26
- ) ,
27
- version : Type . Number ( ) ,
28
- metadata : Type . Record ( Type . String ( { minLength : 1 } ) , Type . Any ( ) ) ,
29
- } ) ,
20
+ state : Type . Optional (
21
+ Type . Object ( {
22
+ reported : Type . Optional (
23
+ Type . Record ( Type . String ( { minLength : 1 } ) , Type . Any ( ) ) ,
24
+ ) ,
25
+ desired : Type . Optional (
26
+ Type . Record ( Type . String ( { minLength : 1 } ) , Type . Any ( ) ) ,
27
+ ) ,
28
+ version : Type . Number ( ) ,
29
+ metadata : Type . Record ( Type . String ( { minLength : 1 } ) , Type . Any ( ) ) ,
30
+ } ) ,
31
+ ) ,
30
32
} )
31
33
32
34
export type DeviceShadowType = Static < typeof DeviceShadow >
You can’t perform that action at this time.
0 commit comments