@awarevue/api-types 1.0.113 → 1.0.114
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 +36 -0
- package/dist/layout.js +2 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/layout.d.ts
CHANGED
|
@@ -5,18 +5,24 @@ export declare const sLayoutDeviceDto: z.ZodObject<{
|
|
|
5
5
|
y: z.ZodNumber;
|
|
6
6
|
scale: z.ZodNumber;
|
|
7
7
|
rotation: z.ZodNumber;
|
|
8
|
+
fov: z.ZodNumber;
|
|
9
|
+
far: z.ZodNumber;
|
|
8
10
|
}, "strip", z.ZodTypeAny, {
|
|
9
11
|
scale: number;
|
|
10
12
|
x: number;
|
|
11
13
|
y: number;
|
|
12
14
|
deviceId: string;
|
|
13
15
|
rotation: number;
|
|
16
|
+
fov: number;
|
|
17
|
+
far: number;
|
|
14
18
|
}, {
|
|
15
19
|
scale: number;
|
|
16
20
|
x: number;
|
|
17
21
|
y: number;
|
|
18
22
|
deviceId: string;
|
|
19
23
|
rotation: number;
|
|
24
|
+
fov: number;
|
|
25
|
+
far: number;
|
|
20
26
|
}>;
|
|
21
27
|
export type LayoutDeviceDto = z.infer<typeof sLayoutDeviceDto>;
|
|
22
28
|
export declare const sAddLayoutRequest: z.ZodObject<{
|
|
@@ -30,18 +36,24 @@ export declare const sAddLayoutRequest: z.ZodObject<{
|
|
|
30
36
|
y: z.ZodNumber;
|
|
31
37
|
scale: z.ZodNumber;
|
|
32
38
|
rotation: z.ZodNumber;
|
|
39
|
+
fov: z.ZodNumber;
|
|
40
|
+
far: z.ZodNumber;
|
|
33
41
|
}, "strip", z.ZodTypeAny, {
|
|
34
42
|
scale: number;
|
|
35
43
|
x: number;
|
|
36
44
|
y: number;
|
|
37
45
|
deviceId: string;
|
|
38
46
|
rotation: number;
|
|
47
|
+
fov: number;
|
|
48
|
+
far: number;
|
|
39
49
|
}, {
|
|
40
50
|
scale: number;
|
|
41
51
|
x: number;
|
|
42
52
|
y: number;
|
|
43
53
|
deviceId: string;
|
|
44
54
|
rotation: number;
|
|
55
|
+
fov: number;
|
|
56
|
+
far: number;
|
|
45
57
|
}>, "many">;
|
|
46
58
|
colorize: z.ZodBoolean;
|
|
47
59
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52,6 +64,8 @@ export declare const sAddLayoutRequest: z.ZodObject<{
|
|
|
52
64
|
y: number;
|
|
53
65
|
deviceId: string;
|
|
54
66
|
rotation: number;
|
|
67
|
+
fov: number;
|
|
68
|
+
far: number;
|
|
55
69
|
}[];
|
|
56
70
|
thumbnailId: string;
|
|
57
71
|
imageId: string;
|
|
@@ -65,6 +79,8 @@ export declare const sAddLayoutRequest: z.ZodObject<{
|
|
|
65
79
|
y: number;
|
|
66
80
|
deviceId: string;
|
|
67
81
|
rotation: number;
|
|
82
|
+
fov: number;
|
|
83
|
+
far: number;
|
|
68
84
|
}[];
|
|
69
85
|
thumbnailId: string;
|
|
70
86
|
imageId: string;
|
|
@@ -84,18 +100,24 @@ export declare const sUpdateLayoutRequest: z.ZodObject<{
|
|
|
84
100
|
y: z.ZodNumber;
|
|
85
101
|
scale: z.ZodNumber;
|
|
86
102
|
rotation: z.ZodNumber;
|
|
103
|
+
fov: z.ZodNumber;
|
|
104
|
+
far: z.ZodNumber;
|
|
87
105
|
}, "strip", z.ZodTypeAny, {
|
|
88
106
|
scale: number;
|
|
89
107
|
x: number;
|
|
90
108
|
y: number;
|
|
91
109
|
deviceId: string;
|
|
92
110
|
rotation: number;
|
|
111
|
+
fov: number;
|
|
112
|
+
far: number;
|
|
93
113
|
}, {
|
|
94
114
|
scale: number;
|
|
95
115
|
x: number;
|
|
96
116
|
y: number;
|
|
97
117
|
deviceId: string;
|
|
98
118
|
rotation: number;
|
|
119
|
+
fov: number;
|
|
120
|
+
far: number;
|
|
99
121
|
}>, "many">>;
|
|
100
122
|
colorize: z.ZodOptional<z.ZodBoolean>;
|
|
101
123
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -108,6 +130,8 @@ export declare const sUpdateLayoutRequest: z.ZodObject<{
|
|
|
108
130
|
y: number;
|
|
109
131
|
deviceId: string;
|
|
110
132
|
rotation: number;
|
|
133
|
+
fov: number;
|
|
134
|
+
far: number;
|
|
111
135
|
}[] | undefined;
|
|
112
136
|
thumbnailId?: string | undefined;
|
|
113
137
|
imageId?: string | undefined;
|
|
@@ -122,6 +146,8 @@ export declare const sUpdateLayoutRequest: z.ZodObject<{
|
|
|
122
146
|
y: number;
|
|
123
147
|
deviceId: string;
|
|
124
148
|
rotation: number;
|
|
149
|
+
fov: number;
|
|
150
|
+
far: number;
|
|
125
151
|
}[] | undefined;
|
|
126
152
|
thumbnailId?: string | undefined;
|
|
127
153
|
imageId?: string | undefined;
|
|
@@ -143,18 +169,24 @@ export declare const sLayoutDto: z.ZodObject<{
|
|
|
143
169
|
y: z.ZodNumber;
|
|
144
170
|
scale: z.ZodNumber;
|
|
145
171
|
rotation: z.ZodNumber;
|
|
172
|
+
fov: z.ZodNumber;
|
|
173
|
+
far: z.ZodNumber;
|
|
146
174
|
}, "strip", z.ZodTypeAny, {
|
|
147
175
|
scale: number;
|
|
148
176
|
x: number;
|
|
149
177
|
y: number;
|
|
150
178
|
deviceId: string;
|
|
151
179
|
rotation: number;
|
|
180
|
+
fov: number;
|
|
181
|
+
far: number;
|
|
152
182
|
}, {
|
|
153
183
|
scale: number;
|
|
154
184
|
x: number;
|
|
155
185
|
y: number;
|
|
156
186
|
deviceId: string;
|
|
157
187
|
rotation: number;
|
|
188
|
+
fov: number;
|
|
189
|
+
far: number;
|
|
158
190
|
}>, "many">;
|
|
159
191
|
colorize: z.ZodBoolean;
|
|
160
192
|
createdOn: z.ZodString;
|
|
@@ -172,6 +204,8 @@ export declare const sLayoutDto: z.ZodObject<{
|
|
|
172
204
|
y: number;
|
|
173
205
|
deviceId: string;
|
|
174
206
|
rotation: number;
|
|
207
|
+
fov: number;
|
|
208
|
+
far: number;
|
|
175
209
|
}[];
|
|
176
210
|
colorize: boolean;
|
|
177
211
|
thumbnailUrl: string;
|
|
@@ -189,6 +223,8 @@ export declare const sLayoutDto: z.ZodObject<{
|
|
|
189
223
|
y: number;
|
|
190
224
|
deviceId: string;
|
|
191
225
|
rotation: number;
|
|
226
|
+
fov: number;
|
|
227
|
+
far: number;
|
|
192
228
|
}[];
|
|
193
229
|
colorize: boolean;
|
|
194
230
|
thumbnailUrl: string;
|
package/dist/layout.js
CHANGED
|
@@ -11,6 +11,8 @@ exports.sLayoutDeviceDto = zod_1.default.object({
|
|
|
11
11
|
y: zod_1.default.number(),
|
|
12
12
|
scale: zod_1.default.number(),
|
|
13
13
|
rotation: zod_1.default.number(),
|
|
14
|
+
fov: zod_1.default.number(),
|
|
15
|
+
far: zod_1.default.number(),
|
|
14
16
|
});
|
|
15
17
|
exports.sAddLayoutRequest = zod_1.default.object({
|
|
16
18
|
name: zod_1.default.string().nonempty(),
|
package/dist/package.json
CHANGED