@shapediver/viewer.shared.types 3.14.4 → 3.14.6
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/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/interfaces/attribute-visualization/index.d.ts +51 -0
- package/dist/interfaces/attribute-visualization/index.d.ts.map +1 -0
- package/dist/interfaces/attribute-visualization/index.js +23 -0
- package/dist/interfaces/attribute-visualization/index.js.map +1 -0
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts +310 -310
- package/dist/interfaces/renderingEngine/cameraTypes.d.ts +59 -0
- package/dist/interfaces/renderingEngine/cameraTypes.d.ts.map +1 -0
- package/dist/interfaces/renderingEngine/cameraTypes.js +19 -0
- package/dist/interfaces/renderingEngine/cameraTypes.js.map +1 -0
- package/package.json +7 -7
|
@@ -56,33 +56,33 @@ export declare const ISelectionParameterPropsJsonSchema: z.ZodObject<z.objectUti
|
|
|
56
56
|
activeText?: string | null | undefined;
|
|
57
57
|
}>>>;
|
|
58
58
|
}>, "strip", z.ZodTypeAny, {
|
|
59
|
-
hover?: boolean | undefined;
|
|
60
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
61
|
-
prompt?: {
|
|
62
|
-
inactiveTitle?: string | null | undefined;
|
|
63
|
-
activeTitle?: string | null | undefined;
|
|
64
|
-
activeText?: string | null | undefined;
|
|
65
|
-
} | null | undefined;
|
|
66
59
|
maximumSelection?: number | null | undefined;
|
|
67
60
|
minimumSelection?: number | null | undefined;
|
|
68
61
|
nameFilter?: string[] | null | undefined;
|
|
69
62
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
70
63
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
71
64
|
deselectOnEmpty?: boolean | undefined;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
65
|
+
hover?: boolean | undefined;
|
|
66
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
75
67
|
prompt?: {
|
|
76
68
|
inactiveTitle?: string | null | undefined;
|
|
77
69
|
activeTitle?: string | null | undefined;
|
|
78
70
|
activeText?: string | null | undefined;
|
|
79
71
|
} | null | undefined;
|
|
72
|
+
}, {
|
|
80
73
|
maximumSelection?: number | null | undefined;
|
|
81
74
|
minimumSelection?: number | null | undefined;
|
|
82
75
|
nameFilter?: string[] | null | undefined;
|
|
83
76
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
84
77
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
85
78
|
deselectOnEmpty?: unknown;
|
|
79
|
+
hover?: unknown;
|
|
80
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
81
|
+
prompt?: {
|
|
82
|
+
inactiveTitle?: string | null | undefined;
|
|
83
|
+
activeTitle?: string | null | undefined;
|
|
84
|
+
activeText?: string | null | undefined;
|
|
85
|
+
} | null | undefined;
|
|
86
86
|
}>;
|
|
87
87
|
export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
88
88
|
type: z.ZodLiteral<"selection">;
|
|
@@ -110,67 +110,67 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
110
110
|
activeText?: string | null | undefined;
|
|
111
111
|
}>>>;
|
|
112
112
|
}>, "strip", z.ZodTypeAny, {
|
|
113
|
-
hover?: boolean | undefined;
|
|
114
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
115
|
-
prompt?: {
|
|
116
|
-
inactiveTitle?: string | null | undefined;
|
|
117
|
-
activeTitle?: string | null | undefined;
|
|
118
|
-
activeText?: string | null | undefined;
|
|
119
|
-
} | null | undefined;
|
|
120
113
|
maximumSelection?: number | null | undefined;
|
|
121
114
|
minimumSelection?: number | null | undefined;
|
|
122
115
|
nameFilter?: string[] | null | undefined;
|
|
123
116
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
124
117
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
125
118
|
deselectOnEmpty?: boolean | undefined;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
119
|
+
hover?: boolean | undefined;
|
|
120
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
129
121
|
prompt?: {
|
|
130
122
|
inactiveTitle?: string | null | undefined;
|
|
131
123
|
activeTitle?: string | null | undefined;
|
|
132
124
|
activeText?: string | null | undefined;
|
|
133
125
|
} | null | undefined;
|
|
126
|
+
}, {
|
|
134
127
|
maximumSelection?: number | null | undefined;
|
|
135
128
|
minimumSelection?: number | null | undefined;
|
|
136
129
|
nameFilter?: string[] | null | undefined;
|
|
137
130
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
138
131
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
139
132
|
deselectOnEmpty?: unknown;
|
|
140
|
-
|
|
141
|
-
},
|
|
142
|
-
type: "selection";
|
|
143
|
-
props: {
|
|
144
|
-
hover?: boolean | undefined;
|
|
145
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
133
|
+
hover?: unknown;
|
|
134
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
146
135
|
prompt?: {
|
|
147
136
|
inactiveTitle?: string | null | undefined;
|
|
148
137
|
activeTitle?: string | null | undefined;
|
|
149
138
|
activeText?: string | null | undefined;
|
|
150
139
|
} | null | undefined;
|
|
140
|
+
}>;
|
|
141
|
+
}, "strip", z.ZodTypeAny, {
|
|
142
|
+
type: "selection";
|
|
143
|
+
props: {
|
|
151
144
|
maximumSelection?: number | null | undefined;
|
|
152
145
|
minimumSelection?: number | null | undefined;
|
|
153
146
|
nameFilter?: string[] | null | undefined;
|
|
154
147
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
155
148
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
156
149
|
deselectOnEmpty?: boolean | undefined;
|
|
157
|
-
|
|
158
|
-
},
|
|
159
|
-
type: "selection";
|
|
160
|
-
props: {
|
|
161
|
-
hover?: unknown;
|
|
162
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
150
|
+
hover?: boolean | undefined;
|
|
151
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
163
152
|
prompt?: {
|
|
164
153
|
inactiveTitle?: string | null | undefined;
|
|
165
154
|
activeTitle?: string | null | undefined;
|
|
166
155
|
activeText?: string | null | undefined;
|
|
167
156
|
} | null | undefined;
|
|
157
|
+
};
|
|
158
|
+
}, {
|
|
159
|
+
type: "selection";
|
|
160
|
+
props: {
|
|
168
161
|
maximumSelection?: number | null | undefined;
|
|
169
162
|
minimumSelection?: number | null | undefined;
|
|
170
163
|
nameFilter?: string[] | null | undefined;
|
|
171
164
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
172
165
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
173
166
|
deselectOnEmpty?: unknown;
|
|
167
|
+
hover?: unknown;
|
|
168
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
169
|
+
prompt?: {
|
|
170
|
+
inactiveTitle?: string | null | undefined;
|
|
171
|
+
activeTitle?: string | null | undefined;
|
|
172
|
+
activeText?: string | null | undefined;
|
|
173
|
+
} | null | undefined;
|
|
174
174
|
};
|
|
175
175
|
}>;
|
|
176
176
|
export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -268,11 +268,11 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
268
268
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
269
269
|
angle: z.ZodNumber;
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
|
-
angle: number;
|
|
272
271
|
axis: number[];
|
|
273
|
-
}, {
|
|
274
272
|
angle: number;
|
|
273
|
+
}, {
|
|
275
274
|
axis: number[];
|
|
275
|
+
angle: number;
|
|
276
276
|
}>>>;
|
|
277
277
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
278
278
|
id: z.ZodString;
|
|
@@ -281,11 +281,11 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
281
281
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
282
282
|
angle: z.ZodNumber;
|
|
283
283
|
}, "strip", z.ZodTypeAny, {
|
|
284
|
-
angle: number;
|
|
285
284
|
axis: number[];
|
|
286
|
-
}, {
|
|
287
285
|
angle: number;
|
|
286
|
+
}, {
|
|
288
287
|
axis: number[];
|
|
288
|
+
angle: number;
|
|
289
289
|
}>>>;
|
|
290
290
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
291
291
|
id: z.ZodString;
|
|
@@ -294,11 +294,11 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
294
294
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
295
295
|
angle: z.ZodNumber;
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
angle: number;
|
|
298
297
|
axis: number[];
|
|
299
|
-
}, {
|
|
300
298
|
angle: number;
|
|
299
|
+
}, {
|
|
301
300
|
axis: number[];
|
|
301
|
+
angle: number;
|
|
302
302
|
}>>>;
|
|
303
303
|
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
304
304
|
}, {
|
|
@@ -318,7 +318,12 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
318
318
|
activeText?: string | null | undefined;
|
|
319
319
|
}>>>;
|
|
320
320
|
}>, "strip", z.ZodTypeAny, {
|
|
321
|
-
|
|
321
|
+
maximumSelection?: number | null | undefined;
|
|
322
|
+
minimumSelection?: number | null | undefined;
|
|
323
|
+
nameFilter?: string[] | null | undefined;
|
|
324
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
325
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
326
|
+
deselectOnEmpty?: boolean | undefined;
|
|
322
327
|
hover?: boolean | undefined;
|
|
323
328
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
324
329
|
prompt?: {
|
|
@@ -326,12 +331,6 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
326
331
|
activeTitle?: string | null | undefined;
|
|
327
332
|
activeText?: string | null | undefined;
|
|
328
333
|
} | null | undefined;
|
|
329
|
-
maximumSelection?: number | null | undefined;
|
|
330
|
-
minimumSelection?: number | null | undefined;
|
|
331
|
-
nameFilter?: string[] | null | undefined;
|
|
332
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
333
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
334
|
-
deselectOnEmpty?: boolean | undefined;
|
|
335
334
|
enableRotation?: boolean | undefined;
|
|
336
335
|
enableRotationAxes?: {
|
|
337
336
|
x?: boolean | undefined;
|
|
@@ -359,6 +358,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
359
358
|
yz?: boolean | undefined;
|
|
360
359
|
xz?: boolean | undefined;
|
|
361
360
|
} | null | undefined;
|
|
361
|
+
scale?: number | null | undefined;
|
|
362
362
|
space?: "local" | "world" | null | undefined;
|
|
363
363
|
restrictions?: z.objectOutputType<{
|
|
364
364
|
id: z.ZodString;
|
|
@@ -367,11 +367,11 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
367
367
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
368
368
|
angle: z.ZodNumber;
|
|
369
369
|
}, "strip", z.ZodTypeAny, {
|
|
370
|
-
angle: number;
|
|
371
370
|
axis: number[];
|
|
372
|
-
}, {
|
|
373
371
|
angle: number;
|
|
372
|
+
}, {
|
|
374
373
|
axis: number[];
|
|
374
|
+
angle: number;
|
|
375
375
|
}>>>;
|
|
376
376
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
377
377
|
objects?: {
|
|
@@ -379,7 +379,12 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
379
379
|
restrictions: string[];
|
|
380
380
|
}[] | null | undefined;
|
|
381
381
|
}, {
|
|
382
|
-
|
|
382
|
+
maximumSelection?: number | null | undefined;
|
|
383
|
+
minimumSelection?: number | null | undefined;
|
|
384
|
+
nameFilter?: string[] | null | undefined;
|
|
385
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
386
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
387
|
+
deselectOnEmpty?: unknown;
|
|
383
388
|
hover?: unknown;
|
|
384
389
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
385
390
|
prompt?: {
|
|
@@ -387,12 +392,6 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
387
392
|
activeTitle?: string | null | undefined;
|
|
388
393
|
activeText?: string | null | undefined;
|
|
389
394
|
} | null | undefined;
|
|
390
|
-
maximumSelection?: number | null | undefined;
|
|
391
|
-
minimumSelection?: number | null | undefined;
|
|
392
|
-
nameFilter?: string[] | null | undefined;
|
|
393
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
394
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
395
|
-
deselectOnEmpty?: unknown;
|
|
396
395
|
enableRotation?: unknown;
|
|
397
396
|
enableRotationAxes?: {
|
|
398
397
|
x?: unknown;
|
|
@@ -420,6 +419,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
420
419
|
yz?: unknown;
|
|
421
420
|
xz?: unknown;
|
|
422
421
|
} | null | undefined;
|
|
422
|
+
scale?: number | null | undefined;
|
|
423
423
|
space?: "local" | "world" | null | undefined;
|
|
424
424
|
restrictions?: z.objectInputType<{
|
|
425
425
|
id: z.ZodString;
|
|
@@ -428,11 +428,11 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
428
428
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
429
429
|
angle: z.ZodNumber;
|
|
430
430
|
}, "strip", z.ZodTypeAny, {
|
|
431
|
-
angle: number;
|
|
432
431
|
axis: number[];
|
|
433
|
-
}, {
|
|
434
432
|
angle: number;
|
|
433
|
+
}, {
|
|
435
434
|
axis: number[];
|
|
435
|
+
angle: number;
|
|
436
436
|
}>>>;
|
|
437
437
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
438
438
|
objects?: {
|
|
@@ -537,11 +537,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
537
537
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
538
538
|
angle: z.ZodNumber;
|
|
539
539
|
}, "strip", z.ZodTypeAny, {
|
|
540
|
-
angle: number;
|
|
541
540
|
axis: number[];
|
|
542
|
-
}, {
|
|
543
541
|
angle: number;
|
|
542
|
+
}, {
|
|
544
543
|
axis: number[];
|
|
544
|
+
angle: number;
|
|
545
545
|
}>>>;
|
|
546
546
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
547
547
|
id: z.ZodString;
|
|
@@ -550,11 +550,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
550
550
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
551
551
|
angle: z.ZodNumber;
|
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
|
553
|
-
angle: number;
|
|
554
553
|
axis: number[];
|
|
555
|
-
}, {
|
|
556
554
|
angle: number;
|
|
555
|
+
}, {
|
|
557
556
|
axis: number[];
|
|
557
|
+
angle: number;
|
|
558
558
|
}>>>;
|
|
559
559
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
560
560
|
id: z.ZodString;
|
|
@@ -563,11 +563,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
563
563
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
564
564
|
angle: z.ZodNumber;
|
|
565
565
|
}, "strip", z.ZodTypeAny, {
|
|
566
|
-
angle: number;
|
|
567
566
|
axis: number[];
|
|
568
|
-
}, {
|
|
569
567
|
angle: number;
|
|
568
|
+
}, {
|
|
570
569
|
axis: number[];
|
|
570
|
+
angle: number;
|
|
571
571
|
}>>>;
|
|
572
572
|
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
573
573
|
}, {
|
|
@@ -587,7 +587,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
587
587
|
activeText?: string | null | undefined;
|
|
588
588
|
}>>>;
|
|
589
589
|
}>, "strip", z.ZodTypeAny, {
|
|
590
|
-
|
|
590
|
+
maximumSelection?: number | null | undefined;
|
|
591
|
+
minimumSelection?: number | null | undefined;
|
|
592
|
+
nameFilter?: string[] | null | undefined;
|
|
593
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
594
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
595
|
+
deselectOnEmpty?: boolean | undefined;
|
|
591
596
|
hover?: boolean | undefined;
|
|
592
597
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
593
598
|
prompt?: {
|
|
@@ -595,12 +600,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
595
600
|
activeTitle?: string | null | undefined;
|
|
596
601
|
activeText?: string | null | undefined;
|
|
597
602
|
} | null | undefined;
|
|
598
|
-
maximumSelection?: number | null | undefined;
|
|
599
|
-
minimumSelection?: number | null | undefined;
|
|
600
|
-
nameFilter?: string[] | null | undefined;
|
|
601
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
602
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
603
|
-
deselectOnEmpty?: boolean | undefined;
|
|
604
603
|
enableRotation?: boolean | undefined;
|
|
605
604
|
enableRotationAxes?: {
|
|
606
605
|
x?: boolean | undefined;
|
|
@@ -628,6 +627,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
628
627
|
yz?: boolean | undefined;
|
|
629
628
|
xz?: boolean | undefined;
|
|
630
629
|
} | null | undefined;
|
|
630
|
+
scale?: number | null | undefined;
|
|
631
631
|
space?: "local" | "world" | null | undefined;
|
|
632
632
|
restrictions?: z.objectOutputType<{
|
|
633
633
|
id: z.ZodString;
|
|
@@ -636,11 +636,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
636
636
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
637
637
|
angle: z.ZodNumber;
|
|
638
638
|
}, "strip", z.ZodTypeAny, {
|
|
639
|
-
angle: number;
|
|
640
639
|
axis: number[];
|
|
641
|
-
}, {
|
|
642
640
|
angle: number;
|
|
641
|
+
}, {
|
|
643
642
|
axis: number[];
|
|
643
|
+
angle: number;
|
|
644
644
|
}>>>;
|
|
645
645
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
646
646
|
objects?: {
|
|
@@ -648,7 +648,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
648
648
|
restrictions: string[];
|
|
649
649
|
}[] | null | undefined;
|
|
650
650
|
}, {
|
|
651
|
-
|
|
651
|
+
maximumSelection?: number | null | undefined;
|
|
652
|
+
minimumSelection?: number | null | undefined;
|
|
653
|
+
nameFilter?: string[] | null | undefined;
|
|
654
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
655
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
656
|
+
deselectOnEmpty?: unknown;
|
|
652
657
|
hover?: unknown;
|
|
653
658
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
654
659
|
prompt?: {
|
|
@@ -656,12 +661,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
656
661
|
activeTitle?: string | null | undefined;
|
|
657
662
|
activeText?: string | null | undefined;
|
|
658
663
|
} | null | undefined;
|
|
659
|
-
maximumSelection?: number | null | undefined;
|
|
660
|
-
minimumSelection?: number | null | undefined;
|
|
661
|
-
nameFilter?: string[] | null | undefined;
|
|
662
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
663
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
664
|
-
deselectOnEmpty?: unknown;
|
|
665
664
|
enableRotation?: unknown;
|
|
666
665
|
enableRotationAxes?: {
|
|
667
666
|
x?: unknown;
|
|
@@ -689,6 +688,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
689
688
|
yz?: unknown;
|
|
690
689
|
xz?: unknown;
|
|
691
690
|
} | null | undefined;
|
|
691
|
+
scale?: number | null | undefined;
|
|
692
692
|
space?: "local" | "world" | null | undefined;
|
|
693
693
|
restrictions?: z.objectInputType<{
|
|
694
694
|
id: z.ZodString;
|
|
@@ -697,11 +697,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
697
697
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
698
698
|
angle: z.ZodNumber;
|
|
699
699
|
}, "strip", z.ZodTypeAny, {
|
|
700
|
-
angle: number;
|
|
701
700
|
axis: number[];
|
|
702
|
-
}, {
|
|
703
701
|
angle: number;
|
|
702
|
+
}, {
|
|
704
703
|
axis: number[];
|
|
704
|
+
angle: number;
|
|
705
705
|
}>>>;
|
|
706
706
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
707
707
|
objects?: {
|
|
@@ -712,7 +712,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
712
712
|
}, "strip", z.ZodTypeAny, {
|
|
713
713
|
type: "gumball";
|
|
714
714
|
props: {
|
|
715
|
-
|
|
715
|
+
maximumSelection?: number | null | undefined;
|
|
716
|
+
minimumSelection?: number | null | undefined;
|
|
717
|
+
nameFilter?: string[] | null | undefined;
|
|
718
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
719
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
720
|
+
deselectOnEmpty?: boolean | undefined;
|
|
716
721
|
hover?: boolean | undefined;
|
|
717
722
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
718
723
|
prompt?: {
|
|
@@ -720,12 +725,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
720
725
|
activeTitle?: string | null | undefined;
|
|
721
726
|
activeText?: string | null | undefined;
|
|
722
727
|
} | null | undefined;
|
|
723
|
-
maximumSelection?: number | null | undefined;
|
|
724
|
-
minimumSelection?: number | null | undefined;
|
|
725
|
-
nameFilter?: string[] | null | undefined;
|
|
726
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
727
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
728
|
-
deselectOnEmpty?: boolean | undefined;
|
|
729
728
|
enableRotation?: boolean | undefined;
|
|
730
729
|
enableRotationAxes?: {
|
|
731
730
|
x?: boolean | undefined;
|
|
@@ -753,6 +752,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
753
752
|
yz?: boolean | undefined;
|
|
754
753
|
xz?: boolean | undefined;
|
|
755
754
|
} | null | undefined;
|
|
755
|
+
scale?: number | null | undefined;
|
|
756
756
|
space?: "local" | "world" | null | undefined;
|
|
757
757
|
restrictions?: z.objectOutputType<{
|
|
758
758
|
id: z.ZodString;
|
|
@@ -761,11 +761,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
761
761
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
762
762
|
angle: z.ZodNumber;
|
|
763
763
|
}, "strip", z.ZodTypeAny, {
|
|
764
|
-
angle: number;
|
|
765
764
|
axis: number[];
|
|
766
|
-
}, {
|
|
767
765
|
angle: number;
|
|
766
|
+
}, {
|
|
768
767
|
axis: number[];
|
|
768
|
+
angle: number;
|
|
769
769
|
}>>>;
|
|
770
770
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
771
771
|
objects?: {
|
|
@@ -776,7 +776,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
776
776
|
}, {
|
|
777
777
|
type: "gumball";
|
|
778
778
|
props: {
|
|
779
|
-
|
|
779
|
+
maximumSelection?: number | null | undefined;
|
|
780
|
+
minimumSelection?: number | null | undefined;
|
|
781
|
+
nameFilter?: string[] | null | undefined;
|
|
782
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
783
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
784
|
+
deselectOnEmpty?: unknown;
|
|
780
785
|
hover?: unknown;
|
|
781
786
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
782
787
|
prompt?: {
|
|
@@ -784,12 +789,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
784
789
|
activeTitle?: string | null | undefined;
|
|
785
790
|
activeText?: string | null | undefined;
|
|
786
791
|
} | null | undefined;
|
|
787
|
-
maximumSelection?: number | null | undefined;
|
|
788
|
-
minimumSelection?: number | null | undefined;
|
|
789
|
-
nameFilter?: string[] | null | undefined;
|
|
790
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
791
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
792
|
-
deselectOnEmpty?: unknown;
|
|
793
792
|
enableRotation?: unknown;
|
|
794
793
|
enableRotationAxes?: {
|
|
795
794
|
x?: unknown;
|
|
@@ -817,6 +816,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
817
816
|
yz?: unknown;
|
|
818
817
|
xz?: unknown;
|
|
819
818
|
} | null | undefined;
|
|
819
|
+
scale?: number | null | undefined;
|
|
820
820
|
space?: "local" | "world" | null | undefined;
|
|
821
821
|
restrictions?: z.objectInputType<{
|
|
822
822
|
id: z.ZodString;
|
|
@@ -825,11 +825,11 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
825
825
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
826
826
|
angle: z.ZodNumber;
|
|
827
827
|
}, "strip", z.ZodTypeAny, {
|
|
828
|
-
angle: number;
|
|
829
828
|
axis: number[];
|
|
830
|
-
}, {
|
|
831
829
|
angle: number;
|
|
830
|
+
}, {
|
|
832
831
|
axis: number[];
|
|
832
|
+
angle: number;
|
|
833
833
|
}>>>;
|
|
834
834
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
835
835
|
objects?: {
|
|
@@ -851,25 +851,25 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
851
851
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
852
852
|
angle: z.ZodNumber;
|
|
853
853
|
}, "strip", z.ZodTypeAny, {
|
|
854
|
-
angle: number;
|
|
855
854
|
axis: number[];
|
|
856
|
-
}, {
|
|
857
855
|
angle: number;
|
|
856
|
+
}, {
|
|
858
857
|
axis: number[];
|
|
858
|
+
angle: number;
|
|
859
859
|
}>>>;
|
|
860
860
|
}, "strip", z.ZodTypeAny, {
|
|
861
861
|
id: string;
|
|
862
862
|
position: number[];
|
|
863
863
|
rotation?: {
|
|
864
|
-
angle: number;
|
|
865
864
|
axis: number[];
|
|
865
|
+
angle: number;
|
|
866
866
|
} | null | undefined;
|
|
867
867
|
}, {
|
|
868
868
|
id: string;
|
|
869
869
|
position: number[];
|
|
870
870
|
rotation?: {
|
|
871
|
-
angle: number;
|
|
872
871
|
axis: number[];
|
|
872
|
+
angle: number;
|
|
873
873
|
} | null | undefined;
|
|
874
874
|
}>, "many">>>;
|
|
875
875
|
dragOrigin: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -880,8 +880,8 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
880
880
|
id: string;
|
|
881
881
|
position: number[];
|
|
882
882
|
rotation?: {
|
|
883
|
-
angle: number;
|
|
884
883
|
axis: number[];
|
|
884
|
+
angle: number;
|
|
885
885
|
} | null | undefined;
|
|
886
886
|
}[] | null | undefined;
|
|
887
887
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -892,8 +892,8 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
892
892
|
id: string;
|
|
893
893
|
position: number[];
|
|
894
894
|
rotation?: {
|
|
895
|
-
angle: number;
|
|
896
895
|
axis: number[];
|
|
896
|
+
angle: number;
|
|
897
897
|
} | null | undefined;
|
|
898
898
|
}[] | null | undefined;
|
|
899
899
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -905,11 +905,11 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
905
905
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
906
906
|
angle: z.ZodNumber;
|
|
907
907
|
}, "strip", z.ZodTypeAny, {
|
|
908
|
-
angle: number;
|
|
909
908
|
axis: number[];
|
|
910
|
-
}, {
|
|
911
909
|
angle: number;
|
|
910
|
+
}, {
|
|
912
911
|
axis: number[];
|
|
912
|
+
angle: number;
|
|
913
913
|
}>>>;
|
|
914
914
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
915
915
|
id: z.ZodString;
|
|
@@ -918,11 +918,11 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
918
918
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
919
919
|
angle: z.ZodNumber;
|
|
920
920
|
}, "strip", z.ZodTypeAny, {
|
|
921
|
-
angle: number;
|
|
922
921
|
axis: number[];
|
|
923
|
-
}, {
|
|
924
922
|
angle: number;
|
|
923
|
+
}, {
|
|
925
924
|
axis: number[];
|
|
925
|
+
angle: number;
|
|
926
926
|
}>>>;
|
|
927
927
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
928
928
|
id: z.ZodString;
|
|
@@ -931,11 +931,11 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
931
931
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
932
932
|
angle: z.ZodNumber;
|
|
933
933
|
}, "strip", z.ZodTypeAny, {
|
|
934
|
-
angle: number;
|
|
935
934
|
axis: number[];
|
|
936
|
-
}, {
|
|
937
935
|
angle: number;
|
|
936
|
+
}, {
|
|
938
937
|
axis: number[];
|
|
938
|
+
angle: number;
|
|
939
939
|
}>>>;
|
|
940
940
|
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
941
941
|
}, {
|
|
@@ -955,6 +955,7 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
955
955
|
activeText?: string | null | undefined;
|
|
956
956
|
}>>>;
|
|
957
957
|
}>, "strip", z.ZodTypeAny, {
|
|
958
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
958
959
|
hover?: boolean | undefined;
|
|
959
960
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
960
961
|
prompt?: {
|
|
@@ -962,7 +963,6 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
962
963
|
activeTitle?: string | null | undefined;
|
|
963
964
|
activeText?: string | null | undefined;
|
|
964
965
|
} | null | undefined;
|
|
965
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
966
966
|
restrictions?: z.objectOutputType<{
|
|
967
967
|
id: z.ZodString;
|
|
968
968
|
type: z.ZodString;
|
|
@@ -970,11 +970,11 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
970
970
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
971
971
|
angle: z.ZodNumber;
|
|
972
972
|
}, "strip", z.ZodTypeAny, {
|
|
973
|
-
angle: number;
|
|
974
973
|
axis: number[];
|
|
975
|
-
}, {
|
|
976
974
|
angle: number;
|
|
975
|
+
}, {
|
|
977
976
|
axis: number[];
|
|
977
|
+
angle: number;
|
|
978
978
|
}>>>;
|
|
979
979
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
980
980
|
objects?: {
|
|
@@ -984,14 +984,15 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
984
984
|
id: string;
|
|
985
985
|
position: number[];
|
|
986
986
|
rotation?: {
|
|
987
|
-
angle: number;
|
|
988
987
|
axis: number[];
|
|
988
|
+
angle: number;
|
|
989
989
|
} | null | undefined;
|
|
990
990
|
}[] | null | undefined;
|
|
991
991
|
dragOrigin?: number[] | null | undefined;
|
|
992
992
|
}[] | null | undefined;
|
|
993
993
|
draggingColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
994
994
|
}, {
|
|
995
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
995
996
|
hover?: unknown;
|
|
996
997
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
997
998
|
prompt?: {
|
|
@@ -999,7 +1000,6 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
999
1000
|
activeTitle?: string | null | undefined;
|
|
1000
1001
|
activeText?: string | null | undefined;
|
|
1001
1002
|
} | null | undefined;
|
|
1002
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1003
1003
|
restrictions?: z.objectInputType<{
|
|
1004
1004
|
id: z.ZodString;
|
|
1005
1005
|
type: z.ZodString;
|
|
@@ -1007,11 +1007,11 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
1007
1007
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1008
1008
|
angle: z.ZodNumber;
|
|
1009
1009
|
}, "strip", z.ZodTypeAny, {
|
|
1010
|
-
angle: number;
|
|
1011
1010
|
axis: number[];
|
|
1012
|
-
}, {
|
|
1013
1011
|
angle: number;
|
|
1012
|
+
}, {
|
|
1014
1013
|
axis: number[];
|
|
1014
|
+
angle: number;
|
|
1015
1015
|
}>>>;
|
|
1016
1016
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1017
1017
|
objects?: {
|
|
@@ -1021,8 +1021,8 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
1021
1021
|
id: string;
|
|
1022
1022
|
position: number[];
|
|
1023
1023
|
rotation?: {
|
|
1024
|
-
angle: number;
|
|
1025
1024
|
axis: number[];
|
|
1025
|
+
angle: number;
|
|
1026
1026
|
} | null | undefined;
|
|
1027
1027
|
}[] | null | undefined;
|
|
1028
1028
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1044,25 +1044,25 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1044
1044
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1045
1045
|
angle: z.ZodNumber;
|
|
1046
1046
|
}, "strip", z.ZodTypeAny, {
|
|
1047
|
-
angle: number;
|
|
1048
1047
|
axis: number[];
|
|
1049
|
-
}, {
|
|
1050
1048
|
angle: number;
|
|
1049
|
+
}, {
|
|
1051
1050
|
axis: number[];
|
|
1051
|
+
angle: number;
|
|
1052
1052
|
}>>>;
|
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
|
1054
1054
|
id: string;
|
|
1055
1055
|
position: number[];
|
|
1056
1056
|
rotation?: {
|
|
1057
|
-
angle: number;
|
|
1058
1057
|
axis: number[];
|
|
1058
|
+
angle: number;
|
|
1059
1059
|
} | null | undefined;
|
|
1060
1060
|
}, {
|
|
1061
1061
|
id: string;
|
|
1062
1062
|
position: number[];
|
|
1063
1063
|
rotation?: {
|
|
1064
|
-
angle: number;
|
|
1065
1064
|
axis: number[];
|
|
1065
|
+
angle: number;
|
|
1066
1066
|
} | null | undefined;
|
|
1067
1067
|
}>, "many">>>;
|
|
1068
1068
|
dragOrigin: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -1073,8 +1073,8 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1073
1073
|
id: string;
|
|
1074
1074
|
position: number[];
|
|
1075
1075
|
rotation?: {
|
|
1076
|
-
angle: number;
|
|
1077
1076
|
axis: number[];
|
|
1077
|
+
angle: number;
|
|
1078
1078
|
} | null | undefined;
|
|
1079
1079
|
}[] | null | undefined;
|
|
1080
1080
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1085,8 +1085,8 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1085
1085
|
id: string;
|
|
1086
1086
|
position: number[];
|
|
1087
1087
|
rotation?: {
|
|
1088
|
-
angle: number;
|
|
1089
1088
|
axis: number[];
|
|
1089
|
+
angle: number;
|
|
1090
1090
|
} | null | undefined;
|
|
1091
1091
|
}[] | null | undefined;
|
|
1092
1092
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1098,11 +1098,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1098
1098
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1099
1099
|
angle: z.ZodNumber;
|
|
1100
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1101
|
-
angle: number;
|
|
1102
1101
|
axis: number[];
|
|
1103
|
-
}, {
|
|
1104
1102
|
angle: number;
|
|
1103
|
+
}, {
|
|
1105
1104
|
axis: number[];
|
|
1105
|
+
angle: number;
|
|
1106
1106
|
}>>>;
|
|
1107
1107
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1108
1108
|
id: z.ZodString;
|
|
@@ -1111,11 +1111,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1111
1111
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1112
1112
|
angle: z.ZodNumber;
|
|
1113
1113
|
}, "strip", z.ZodTypeAny, {
|
|
1114
|
-
angle: number;
|
|
1115
1114
|
axis: number[];
|
|
1116
|
-
}, {
|
|
1117
1115
|
angle: number;
|
|
1116
|
+
}, {
|
|
1118
1117
|
axis: number[];
|
|
1118
|
+
angle: number;
|
|
1119
1119
|
}>>>;
|
|
1120
1120
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1121
1121
|
id: z.ZodString;
|
|
@@ -1124,11 +1124,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1124
1124
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1125
1125
|
angle: z.ZodNumber;
|
|
1126
1126
|
}, "strip", z.ZodTypeAny, {
|
|
1127
|
-
angle: number;
|
|
1128
1127
|
axis: number[];
|
|
1129
|
-
}, {
|
|
1130
1128
|
angle: number;
|
|
1129
|
+
}, {
|
|
1131
1130
|
axis: number[];
|
|
1131
|
+
angle: number;
|
|
1132
1132
|
}>>>;
|
|
1133
1133
|
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1134
1134
|
}, {
|
|
@@ -1148,6 +1148,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1148
1148
|
activeText?: string | null | undefined;
|
|
1149
1149
|
}>>>;
|
|
1150
1150
|
}>, "strip", z.ZodTypeAny, {
|
|
1151
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1151
1152
|
hover?: boolean | undefined;
|
|
1152
1153
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1153
1154
|
prompt?: {
|
|
@@ -1155,7 +1156,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1155
1156
|
activeTitle?: string | null | undefined;
|
|
1156
1157
|
activeText?: string | null | undefined;
|
|
1157
1158
|
} | null | undefined;
|
|
1158
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1159
1159
|
restrictions?: z.objectOutputType<{
|
|
1160
1160
|
id: z.ZodString;
|
|
1161
1161
|
type: z.ZodString;
|
|
@@ -1163,11 +1163,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1163
1163
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1164
1164
|
angle: z.ZodNumber;
|
|
1165
1165
|
}, "strip", z.ZodTypeAny, {
|
|
1166
|
-
angle: number;
|
|
1167
1166
|
axis: number[];
|
|
1168
|
-
}, {
|
|
1169
1167
|
angle: number;
|
|
1168
|
+
}, {
|
|
1170
1169
|
axis: number[];
|
|
1170
|
+
angle: number;
|
|
1171
1171
|
}>>>;
|
|
1172
1172
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1173
1173
|
objects?: {
|
|
@@ -1177,14 +1177,15 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1177
1177
|
id: string;
|
|
1178
1178
|
position: number[];
|
|
1179
1179
|
rotation?: {
|
|
1180
|
-
angle: number;
|
|
1181
1180
|
axis: number[];
|
|
1181
|
+
angle: number;
|
|
1182
1182
|
} | null | undefined;
|
|
1183
1183
|
}[] | null | undefined;
|
|
1184
1184
|
dragOrigin?: number[] | null | undefined;
|
|
1185
1185
|
}[] | null | undefined;
|
|
1186
1186
|
draggingColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1187
1187
|
}, {
|
|
1188
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1188
1189
|
hover?: unknown;
|
|
1189
1190
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1190
1191
|
prompt?: {
|
|
@@ -1192,7 +1193,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1192
1193
|
activeTitle?: string | null | undefined;
|
|
1193
1194
|
activeText?: string | null | undefined;
|
|
1194
1195
|
} | null | undefined;
|
|
1195
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1196
1196
|
restrictions?: z.objectInputType<{
|
|
1197
1197
|
id: z.ZodString;
|
|
1198
1198
|
type: z.ZodString;
|
|
@@ -1200,11 +1200,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1200
1200
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1201
1201
|
angle: z.ZodNumber;
|
|
1202
1202
|
}, "strip", z.ZodTypeAny, {
|
|
1203
|
-
angle: number;
|
|
1204
1203
|
axis: number[];
|
|
1205
|
-
}, {
|
|
1206
1204
|
angle: number;
|
|
1205
|
+
}, {
|
|
1207
1206
|
axis: number[];
|
|
1207
|
+
angle: number;
|
|
1208
1208
|
}>>>;
|
|
1209
1209
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1210
1210
|
objects?: {
|
|
@@ -1214,8 +1214,8 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1214
1214
|
id: string;
|
|
1215
1215
|
position: number[];
|
|
1216
1216
|
rotation?: {
|
|
1217
|
-
angle: number;
|
|
1218
1217
|
axis: number[];
|
|
1218
|
+
angle: number;
|
|
1219
1219
|
} | null | undefined;
|
|
1220
1220
|
}[] | null | undefined;
|
|
1221
1221
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1225,6 +1225,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1225
1225
|
}, "strip", z.ZodTypeAny, {
|
|
1226
1226
|
type: "dragging";
|
|
1227
1227
|
props: {
|
|
1228
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1228
1229
|
hover?: boolean | undefined;
|
|
1229
1230
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1230
1231
|
prompt?: {
|
|
@@ -1232,7 +1233,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1232
1233
|
activeTitle?: string | null | undefined;
|
|
1233
1234
|
activeText?: string | null | undefined;
|
|
1234
1235
|
} | null | undefined;
|
|
1235
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1236
1236
|
restrictions?: z.objectOutputType<{
|
|
1237
1237
|
id: z.ZodString;
|
|
1238
1238
|
type: z.ZodString;
|
|
@@ -1240,11 +1240,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1240
1240
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1241
1241
|
angle: z.ZodNumber;
|
|
1242
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1243
|
-
angle: number;
|
|
1244
1243
|
axis: number[];
|
|
1245
|
-
}, {
|
|
1246
1244
|
angle: number;
|
|
1245
|
+
}, {
|
|
1247
1246
|
axis: number[];
|
|
1247
|
+
angle: number;
|
|
1248
1248
|
}>>>;
|
|
1249
1249
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1250
1250
|
objects?: {
|
|
@@ -1254,8 +1254,8 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1254
1254
|
id: string;
|
|
1255
1255
|
position: number[];
|
|
1256
1256
|
rotation?: {
|
|
1257
|
-
angle: number;
|
|
1258
1257
|
axis: number[];
|
|
1258
|
+
angle: number;
|
|
1259
1259
|
} | null | undefined;
|
|
1260
1260
|
}[] | null | undefined;
|
|
1261
1261
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1265,6 +1265,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1265
1265
|
}, {
|
|
1266
1266
|
type: "dragging";
|
|
1267
1267
|
props: {
|
|
1268
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1268
1269
|
hover?: unknown;
|
|
1269
1270
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1270
1271
|
prompt?: {
|
|
@@ -1272,7 +1273,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1272
1273
|
activeTitle?: string | null | undefined;
|
|
1273
1274
|
activeText?: string | null | undefined;
|
|
1274
1275
|
} | null | undefined;
|
|
1275
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1276
1276
|
restrictions?: z.objectInputType<{
|
|
1277
1277
|
id: z.ZodString;
|
|
1278
1278
|
type: z.ZodString;
|
|
@@ -1280,11 +1280,11 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1280
1280
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1281
1281
|
angle: z.ZodNumber;
|
|
1282
1282
|
}, "strip", z.ZodTypeAny, {
|
|
1283
|
-
angle: number;
|
|
1284
1283
|
axis: number[];
|
|
1285
|
-
}, {
|
|
1286
1284
|
angle: number;
|
|
1285
|
+
}, {
|
|
1287
1286
|
axis: number[];
|
|
1287
|
+
angle: number;
|
|
1288
1288
|
}>>>;
|
|
1289
1289
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1290
1290
|
objects?: {
|
|
@@ -1294,8 +1294,8 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1294
1294
|
id: string;
|
|
1295
1295
|
position: number[];
|
|
1296
1296
|
rotation?: {
|
|
1297
|
-
angle: number;
|
|
1298
1297
|
axis: number[];
|
|
1298
|
+
angle: number;
|
|
1299
1299
|
} | null | undefined;
|
|
1300
1300
|
}[] | null | undefined;
|
|
1301
1301
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1329,67 +1329,67 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1329
1329
|
activeText?: string | null | undefined;
|
|
1330
1330
|
}>>>;
|
|
1331
1331
|
}>, "strip", z.ZodTypeAny, {
|
|
1332
|
-
hover?: boolean | undefined;
|
|
1333
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1334
|
-
prompt?: {
|
|
1335
|
-
inactiveTitle?: string | null | undefined;
|
|
1336
|
-
activeTitle?: string | null | undefined;
|
|
1337
|
-
activeText?: string | null | undefined;
|
|
1338
|
-
} | null | undefined;
|
|
1339
1332
|
maximumSelection?: number | null | undefined;
|
|
1340
1333
|
minimumSelection?: number | null | undefined;
|
|
1341
1334
|
nameFilter?: string[] | null | undefined;
|
|
1342
1335
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1343
1336
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1344
1337
|
deselectOnEmpty?: boolean | undefined;
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1338
|
+
hover?: boolean | undefined;
|
|
1339
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1348
1340
|
prompt?: {
|
|
1349
1341
|
inactiveTitle?: string | null | undefined;
|
|
1350
1342
|
activeTitle?: string | null | undefined;
|
|
1351
1343
|
activeText?: string | null | undefined;
|
|
1352
1344
|
} | null | undefined;
|
|
1345
|
+
}, {
|
|
1353
1346
|
maximumSelection?: number | null | undefined;
|
|
1354
1347
|
minimumSelection?: number | null | undefined;
|
|
1355
1348
|
nameFilter?: string[] | null | undefined;
|
|
1356
1349
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1357
1350
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1358
1351
|
deselectOnEmpty?: unknown;
|
|
1359
|
-
|
|
1360
|
-
},
|
|
1361
|
-
type: "selection";
|
|
1362
|
-
props: {
|
|
1363
|
-
hover?: boolean | undefined;
|
|
1364
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1352
|
+
hover?: unknown;
|
|
1353
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1365
1354
|
prompt?: {
|
|
1366
1355
|
inactiveTitle?: string | null | undefined;
|
|
1367
1356
|
activeTitle?: string | null | undefined;
|
|
1368
1357
|
activeText?: string | null | undefined;
|
|
1369
1358
|
} | null | undefined;
|
|
1359
|
+
}>;
|
|
1360
|
+
}, "strip", z.ZodTypeAny, {
|
|
1361
|
+
type: "selection";
|
|
1362
|
+
props: {
|
|
1370
1363
|
maximumSelection?: number | null | undefined;
|
|
1371
1364
|
minimumSelection?: number | null | undefined;
|
|
1372
1365
|
nameFilter?: string[] | null | undefined;
|
|
1373
1366
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1374
1367
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1375
1368
|
deselectOnEmpty?: boolean | undefined;
|
|
1376
|
-
|
|
1377
|
-
},
|
|
1378
|
-
type: "selection";
|
|
1379
|
-
props: {
|
|
1380
|
-
hover?: unknown;
|
|
1381
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1369
|
+
hover?: boolean | undefined;
|
|
1370
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1382
1371
|
prompt?: {
|
|
1383
1372
|
inactiveTitle?: string | null | undefined;
|
|
1384
1373
|
activeTitle?: string | null | undefined;
|
|
1385
1374
|
activeText?: string | null | undefined;
|
|
1386
1375
|
} | null | undefined;
|
|
1376
|
+
};
|
|
1377
|
+
}, {
|
|
1378
|
+
type: "selection";
|
|
1379
|
+
props: {
|
|
1387
1380
|
maximumSelection?: number | null | undefined;
|
|
1388
1381
|
minimumSelection?: number | null | undefined;
|
|
1389
1382
|
nameFilter?: string[] | null | undefined;
|
|
1390
1383
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1391
1384
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1392
1385
|
deselectOnEmpty?: unknown;
|
|
1386
|
+
hover?: unknown;
|
|
1387
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1388
|
+
prompt?: {
|
|
1389
|
+
inactiveTitle?: string | null | undefined;
|
|
1390
|
+
activeTitle?: string | null | undefined;
|
|
1391
|
+
activeText?: string | null | undefined;
|
|
1392
|
+
} | null | undefined;
|
|
1393
1393
|
};
|
|
1394
1394
|
}>, z.ZodObject<{
|
|
1395
1395
|
type: z.ZodLiteral<"gumball">;
|
|
@@ -1488,11 +1488,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1488
1488
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1489
1489
|
angle: z.ZodNumber;
|
|
1490
1490
|
}, "strip", z.ZodTypeAny, {
|
|
1491
|
-
angle: number;
|
|
1492
1491
|
axis: number[];
|
|
1493
|
-
}, {
|
|
1494
1492
|
angle: number;
|
|
1493
|
+
}, {
|
|
1495
1494
|
axis: number[];
|
|
1495
|
+
angle: number;
|
|
1496
1496
|
}>>>;
|
|
1497
1497
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1498
1498
|
id: z.ZodString;
|
|
@@ -1501,11 +1501,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1501
1501
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1502
1502
|
angle: z.ZodNumber;
|
|
1503
1503
|
}, "strip", z.ZodTypeAny, {
|
|
1504
|
-
angle: number;
|
|
1505
1504
|
axis: number[];
|
|
1506
|
-
}, {
|
|
1507
1505
|
angle: number;
|
|
1506
|
+
}, {
|
|
1508
1507
|
axis: number[];
|
|
1508
|
+
angle: number;
|
|
1509
1509
|
}>>>;
|
|
1510
1510
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1511
1511
|
id: z.ZodString;
|
|
@@ -1514,11 +1514,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1514
1514
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1515
1515
|
angle: z.ZodNumber;
|
|
1516
1516
|
}, "strip", z.ZodTypeAny, {
|
|
1517
|
-
angle: number;
|
|
1518
1517
|
axis: number[];
|
|
1519
|
-
}, {
|
|
1520
1518
|
angle: number;
|
|
1519
|
+
}, {
|
|
1521
1520
|
axis: number[];
|
|
1521
|
+
angle: number;
|
|
1522
1522
|
}>>>;
|
|
1523
1523
|
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1524
1524
|
}, {
|
|
@@ -1538,7 +1538,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1538
1538
|
activeText?: string | null | undefined;
|
|
1539
1539
|
}>>>;
|
|
1540
1540
|
}>, "strip", z.ZodTypeAny, {
|
|
1541
|
-
|
|
1541
|
+
maximumSelection?: number | null | undefined;
|
|
1542
|
+
minimumSelection?: number | null | undefined;
|
|
1543
|
+
nameFilter?: string[] | null | undefined;
|
|
1544
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1545
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1546
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1542
1547
|
hover?: boolean | undefined;
|
|
1543
1548
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1544
1549
|
prompt?: {
|
|
@@ -1546,12 +1551,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1546
1551
|
activeTitle?: string | null | undefined;
|
|
1547
1552
|
activeText?: string | null | undefined;
|
|
1548
1553
|
} | null | undefined;
|
|
1549
|
-
maximumSelection?: number | null | undefined;
|
|
1550
|
-
minimumSelection?: number | null | undefined;
|
|
1551
|
-
nameFilter?: string[] | null | undefined;
|
|
1552
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1553
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1554
|
-
deselectOnEmpty?: boolean | undefined;
|
|
1555
1554
|
enableRotation?: boolean | undefined;
|
|
1556
1555
|
enableRotationAxes?: {
|
|
1557
1556
|
x?: boolean | undefined;
|
|
@@ -1579,6 +1578,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1579
1578
|
yz?: boolean | undefined;
|
|
1580
1579
|
xz?: boolean | undefined;
|
|
1581
1580
|
} | null | undefined;
|
|
1581
|
+
scale?: number | null | undefined;
|
|
1582
1582
|
space?: "local" | "world" | null | undefined;
|
|
1583
1583
|
restrictions?: z.objectOutputType<{
|
|
1584
1584
|
id: z.ZodString;
|
|
@@ -1587,11 +1587,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1587
1587
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1588
1588
|
angle: z.ZodNumber;
|
|
1589
1589
|
}, "strip", z.ZodTypeAny, {
|
|
1590
|
-
angle: number;
|
|
1591
1590
|
axis: number[];
|
|
1592
|
-
}, {
|
|
1593
1591
|
angle: number;
|
|
1592
|
+
}, {
|
|
1594
1593
|
axis: number[];
|
|
1594
|
+
angle: number;
|
|
1595
1595
|
}>>>;
|
|
1596
1596
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1597
1597
|
objects?: {
|
|
@@ -1599,7 +1599,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1599
1599
|
restrictions: string[];
|
|
1600
1600
|
}[] | null | undefined;
|
|
1601
1601
|
}, {
|
|
1602
|
-
|
|
1602
|
+
maximumSelection?: number | null | undefined;
|
|
1603
|
+
minimumSelection?: number | null | undefined;
|
|
1604
|
+
nameFilter?: string[] | null | undefined;
|
|
1605
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1606
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1607
|
+
deselectOnEmpty?: unknown;
|
|
1603
1608
|
hover?: unknown;
|
|
1604
1609
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1605
1610
|
prompt?: {
|
|
@@ -1607,12 +1612,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1607
1612
|
activeTitle?: string | null | undefined;
|
|
1608
1613
|
activeText?: string | null | undefined;
|
|
1609
1614
|
} | null | undefined;
|
|
1610
|
-
maximumSelection?: number | null | undefined;
|
|
1611
|
-
minimumSelection?: number | null | undefined;
|
|
1612
|
-
nameFilter?: string[] | null | undefined;
|
|
1613
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1614
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1615
|
-
deselectOnEmpty?: unknown;
|
|
1616
1615
|
enableRotation?: unknown;
|
|
1617
1616
|
enableRotationAxes?: {
|
|
1618
1617
|
x?: unknown;
|
|
@@ -1640,6 +1639,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1640
1639
|
yz?: unknown;
|
|
1641
1640
|
xz?: unknown;
|
|
1642
1641
|
} | null | undefined;
|
|
1642
|
+
scale?: number | null | undefined;
|
|
1643
1643
|
space?: "local" | "world" | null | undefined;
|
|
1644
1644
|
restrictions?: z.objectInputType<{
|
|
1645
1645
|
id: z.ZodString;
|
|
@@ -1648,11 +1648,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1648
1648
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1649
1649
|
angle: z.ZodNumber;
|
|
1650
1650
|
}, "strip", z.ZodTypeAny, {
|
|
1651
|
-
angle: number;
|
|
1652
1651
|
axis: number[];
|
|
1653
|
-
}, {
|
|
1654
1652
|
angle: number;
|
|
1653
|
+
}, {
|
|
1655
1654
|
axis: number[];
|
|
1655
|
+
angle: number;
|
|
1656
1656
|
}>>>;
|
|
1657
1657
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1658
1658
|
objects?: {
|
|
@@ -1663,7 +1663,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1663
1663
|
}, "strip", z.ZodTypeAny, {
|
|
1664
1664
|
type: "gumball";
|
|
1665
1665
|
props: {
|
|
1666
|
-
|
|
1666
|
+
maximumSelection?: number | null | undefined;
|
|
1667
|
+
minimumSelection?: number | null | undefined;
|
|
1668
|
+
nameFilter?: string[] | null | undefined;
|
|
1669
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1670
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1671
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1667
1672
|
hover?: boolean | undefined;
|
|
1668
1673
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1669
1674
|
prompt?: {
|
|
@@ -1671,12 +1676,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1671
1676
|
activeTitle?: string | null | undefined;
|
|
1672
1677
|
activeText?: string | null | undefined;
|
|
1673
1678
|
} | null | undefined;
|
|
1674
|
-
maximumSelection?: number | null | undefined;
|
|
1675
|
-
minimumSelection?: number | null | undefined;
|
|
1676
|
-
nameFilter?: string[] | null | undefined;
|
|
1677
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1678
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1679
|
-
deselectOnEmpty?: boolean | undefined;
|
|
1680
1679
|
enableRotation?: boolean | undefined;
|
|
1681
1680
|
enableRotationAxes?: {
|
|
1682
1681
|
x?: boolean | undefined;
|
|
@@ -1704,6 +1703,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1704
1703
|
yz?: boolean | undefined;
|
|
1705
1704
|
xz?: boolean | undefined;
|
|
1706
1705
|
} | null | undefined;
|
|
1706
|
+
scale?: number | null | undefined;
|
|
1707
1707
|
space?: "local" | "world" | null | undefined;
|
|
1708
1708
|
restrictions?: z.objectOutputType<{
|
|
1709
1709
|
id: z.ZodString;
|
|
@@ -1712,11 +1712,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1712
1712
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1713
1713
|
angle: z.ZodNumber;
|
|
1714
1714
|
}, "strip", z.ZodTypeAny, {
|
|
1715
|
-
angle: number;
|
|
1716
1715
|
axis: number[];
|
|
1717
|
-
}, {
|
|
1718
1716
|
angle: number;
|
|
1717
|
+
}, {
|
|
1719
1718
|
axis: number[];
|
|
1719
|
+
angle: number;
|
|
1720
1720
|
}>>>;
|
|
1721
1721
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1722
1722
|
objects?: {
|
|
@@ -1727,7 +1727,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1727
1727
|
}, {
|
|
1728
1728
|
type: "gumball";
|
|
1729
1729
|
props: {
|
|
1730
|
-
|
|
1730
|
+
maximumSelection?: number | null | undefined;
|
|
1731
|
+
minimumSelection?: number | null | undefined;
|
|
1732
|
+
nameFilter?: string[] | null | undefined;
|
|
1733
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1734
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1735
|
+
deselectOnEmpty?: unknown;
|
|
1731
1736
|
hover?: unknown;
|
|
1732
1737
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1733
1738
|
prompt?: {
|
|
@@ -1735,12 +1740,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1735
1740
|
activeTitle?: string | null | undefined;
|
|
1736
1741
|
activeText?: string | null | undefined;
|
|
1737
1742
|
} | null | undefined;
|
|
1738
|
-
maximumSelection?: number | null | undefined;
|
|
1739
|
-
minimumSelection?: number | null | undefined;
|
|
1740
|
-
nameFilter?: string[] | null | undefined;
|
|
1741
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1742
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1743
|
-
deselectOnEmpty?: unknown;
|
|
1744
1743
|
enableRotation?: unknown;
|
|
1745
1744
|
enableRotationAxes?: {
|
|
1746
1745
|
x?: unknown;
|
|
@@ -1768,6 +1767,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1768
1767
|
yz?: unknown;
|
|
1769
1768
|
xz?: unknown;
|
|
1770
1769
|
} | null | undefined;
|
|
1770
|
+
scale?: number | null | undefined;
|
|
1771
1771
|
space?: "local" | "world" | null | undefined;
|
|
1772
1772
|
restrictions?: z.objectInputType<{
|
|
1773
1773
|
id: z.ZodString;
|
|
@@ -1776,11 +1776,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1776
1776
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1777
1777
|
angle: z.ZodNumber;
|
|
1778
1778
|
}, "strip", z.ZodTypeAny, {
|
|
1779
|
-
angle: number;
|
|
1780
1779
|
axis: number[];
|
|
1781
|
-
}, {
|
|
1782
1780
|
angle: number;
|
|
1781
|
+
}, {
|
|
1783
1782
|
axis: number[];
|
|
1783
|
+
angle: number;
|
|
1784
1784
|
}>>>;
|
|
1785
1785
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1786
1786
|
objects?: {
|
|
@@ -1803,25 +1803,25 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1803
1803
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1804
1804
|
angle: z.ZodNumber;
|
|
1805
1805
|
}, "strip", z.ZodTypeAny, {
|
|
1806
|
-
angle: number;
|
|
1807
1806
|
axis: number[];
|
|
1808
|
-
}, {
|
|
1809
1807
|
angle: number;
|
|
1808
|
+
}, {
|
|
1810
1809
|
axis: number[];
|
|
1810
|
+
angle: number;
|
|
1811
1811
|
}>>>;
|
|
1812
1812
|
}, "strip", z.ZodTypeAny, {
|
|
1813
1813
|
id: string;
|
|
1814
1814
|
position: number[];
|
|
1815
1815
|
rotation?: {
|
|
1816
|
-
angle: number;
|
|
1817
1816
|
axis: number[];
|
|
1817
|
+
angle: number;
|
|
1818
1818
|
} | null | undefined;
|
|
1819
1819
|
}, {
|
|
1820
1820
|
id: string;
|
|
1821
1821
|
position: number[];
|
|
1822
1822
|
rotation?: {
|
|
1823
|
-
angle: number;
|
|
1824
1823
|
axis: number[];
|
|
1824
|
+
angle: number;
|
|
1825
1825
|
} | null | undefined;
|
|
1826
1826
|
}>, "many">>>;
|
|
1827
1827
|
dragOrigin: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -1832,8 +1832,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1832
1832
|
id: string;
|
|
1833
1833
|
position: number[];
|
|
1834
1834
|
rotation?: {
|
|
1835
|
-
angle: number;
|
|
1836
1835
|
axis: number[];
|
|
1836
|
+
angle: number;
|
|
1837
1837
|
} | null | undefined;
|
|
1838
1838
|
}[] | null | undefined;
|
|
1839
1839
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1844,8 +1844,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1844
1844
|
id: string;
|
|
1845
1845
|
position: number[];
|
|
1846
1846
|
rotation?: {
|
|
1847
|
-
angle: number;
|
|
1848
1847
|
axis: number[];
|
|
1848
|
+
angle: number;
|
|
1849
1849
|
} | null | undefined;
|
|
1850
1850
|
}[] | null | undefined;
|
|
1851
1851
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1857,11 +1857,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1857
1857
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1858
1858
|
angle: z.ZodNumber;
|
|
1859
1859
|
}, "strip", z.ZodTypeAny, {
|
|
1860
|
-
angle: number;
|
|
1861
1860
|
axis: number[];
|
|
1862
|
-
}, {
|
|
1863
1861
|
angle: number;
|
|
1862
|
+
}, {
|
|
1864
1863
|
axis: number[];
|
|
1864
|
+
angle: number;
|
|
1865
1865
|
}>>>;
|
|
1866
1866
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1867
1867
|
id: z.ZodString;
|
|
@@ -1870,11 +1870,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1870
1870
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1871
1871
|
angle: z.ZodNumber;
|
|
1872
1872
|
}, "strip", z.ZodTypeAny, {
|
|
1873
|
-
angle: number;
|
|
1874
1873
|
axis: number[];
|
|
1875
|
-
}, {
|
|
1876
1874
|
angle: number;
|
|
1875
|
+
}, {
|
|
1877
1876
|
axis: number[];
|
|
1877
|
+
angle: number;
|
|
1878
1878
|
}>>>;
|
|
1879
1879
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1880
1880
|
id: z.ZodString;
|
|
@@ -1883,11 +1883,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1883
1883
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1884
1884
|
angle: z.ZodNumber;
|
|
1885
1885
|
}, "strip", z.ZodTypeAny, {
|
|
1886
|
-
angle: number;
|
|
1887
1886
|
axis: number[];
|
|
1888
|
-
}, {
|
|
1889
1887
|
angle: number;
|
|
1888
|
+
}, {
|
|
1890
1889
|
axis: number[];
|
|
1890
|
+
angle: number;
|
|
1891
1891
|
}>>>;
|
|
1892
1892
|
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1893
1893
|
}, {
|
|
@@ -1907,6 +1907,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1907
1907
|
activeText?: string | null | undefined;
|
|
1908
1908
|
}>>>;
|
|
1909
1909
|
}>, "strip", z.ZodTypeAny, {
|
|
1910
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1910
1911
|
hover?: boolean | undefined;
|
|
1911
1912
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1912
1913
|
prompt?: {
|
|
@@ -1914,7 +1915,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1914
1915
|
activeTitle?: string | null | undefined;
|
|
1915
1916
|
activeText?: string | null | undefined;
|
|
1916
1917
|
} | null | undefined;
|
|
1917
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1918
1918
|
restrictions?: z.objectOutputType<{
|
|
1919
1919
|
id: z.ZodString;
|
|
1920
1920
|
type: z.ZodString;
|
|
@@ -1922,11 +1922,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1922
1922
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1923
1923
|
angle: z.ZodNumber;
|
|
1924
1924
|
}, "strip", z.ZodTypeAny, {
|
|
1925
|
-
angle: number;
|
|
1926
1925
|
axis: number[];
|
|
1927
|
-
}, {
|
|
1928
1926
|
angle: number;
|
|
1927
|
+
}, {
|
|
1929
1928
|
axis: number[];
|
|
1929
|
+
angle: number;
|
|
1930
1930
|
}>>>;
|
|
1931
1931
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1932
1932
|
objects?: {
|
|
@@ -1936,14 +1936,15 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1936
1936
|
id: string;
|
|
1937
1937
|
position: number[];
|
|
1938
1938
|
rotation?: {
|
|
1939
|
-
angle: number;
|
|
1940
1939
|
axis: number[];
|
|
1940
|
+
angle: number;
|
|
1941
1941
|
} | null | undefined;
|
|
1942
1942
|
}[] | null | undefined;
|
|
1943
1943
|
dragOrigin?: number[] | null | undefined;
|
|
1944
1944
|
}[] | null | undefined;
|
|
1945
1945
|
draggingColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1946
1946
|
}, {
|
|
1947
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1947
1948
|
hover?: unknown;
|
|
1948
1949
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1949
1950
|
prompt?: {
|
|
@@ -1951,7 +1952,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1951
1952
|
activeTitle?: string | null | undefined;
|
|
1952
1953
|
activeText?: string | null | undefined;
|
|
1953
1954
|
} | null | undefined;
|
|
1954
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1955
1955
|
restrictions?: z.objectInputType<{
|
|
1956
1956
|
id: z.ZodString;
|
|
1957
1957
|
type: z.ZodString;
|
|
@@ -1959,11 +1959,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1959
1959
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1960
1960
|
angle: z.ZodNumber;
|
|
1961
1961
|
}, "strip", z.ZodTypeAny, {
|
|
1962
|
-
angle: number;
|
|
1963
1962
|
axis: number[];
|
|
1964
|
-
}, {
|
|
1965
1963
|
angle: number;
|
|
1964
|
+
}, {
|
|
1966
1965
|
axis: number[];
|
|
1966
|
+
angle: number;
|
|
1967
1967
|
}>>>;
|
|
1968
1968
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1969
1969
|
objects?: {
|
|
@@ -1973,8 +1973,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1973
1973
|
id: string;
|
|
1974
1974
|
position: number[];
|
|
1975
1975
|
rotation?: {
|
|
1976
|
-
angle: number;
|
|
1977
1976
|
axis: number[];
|
|
1977
|
+
angle: number;
|
|
1978
1978
|
} | null | undefined;
|
|
1979
1979
|
}[] | null | undefined;
|
|
1980
1980
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -1984,6 +1984,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1984
1984
|
}, "strip", z.ZodTypeAny, {
|
|
1985
1985
|
type: "dragging";
|
|
1986
1986
|
props: {
|
|
1987
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1987
1988
|
hover?: boolean | undefined;
|
|
1988
1989
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1989
1990
|
prompt?: {
|
|
@@ -1991,7 +1992,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1991
1992
|
activeTitle?: string | null | undefined;
|
|
1992
1993
|
activeText?: string | null | undefined;
|
|
1993
1994
|
} | null | undefined;
|
|
1994
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1995
1995
|
restrictions?: z.objectOutputType<{
|
|
1996
1996
|
id: z.ZodString;
|
|
1997
1997
|
type: z.ZodString;
|
|
@@ -1999,11 +1999,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1999
1999
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2000
2000
|
angle: z.ZodNumber;
|
|
2001
2001
|
}, "strip", z.ZodTypeAny, {
|
|
2002
|
-
angle: number;
|
|
2003
2002
|
axis: number[];
|
|
2004
|
-
}, {
|
|
2005
2003
|
angle: number;
|
|
2004
|
+
}, {
|
|
2006
2005
|
axis: number[];
|
|
2006
|
+
angle: number;
|
|
2007
2007
|
}>>>;
|
|
2008
2008
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2009
2009
|
objects?: {
|
|
@@ -2013,8 +2013,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2013
2013
|
id: string;
|
|
2014
2014
|
position: number[];
|
|
2015
2015
|
rotation?: {
|
|
2016
|
-
angle: number;
|
|
2017
2016
|
axis: number[];
|
|
2017
|
+
angle: number;
|
|
2018
2018
|
} | null | undefined;
|
|
2019
2019
|
}[] | null | undefined;
|
|
2020
2020
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -2024,6 +2024,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2024
2024
|
}, {
|
|
2025
2025
|
type: "dragging";
|
|
2026
2026
|
props: {
|
|
2027
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2027
2028
|
hover?: unknown;
|
|
2028
2029
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2029
2030
|
prompt?: {
|
|
@@ -2031,7 +2032,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2031
2032
|
activeTitle?: string | null | undefined;
|
|
2032
2033
|
activeText?: string | null | undefined;
|
|
2033
2034
|
} | null | undefined;
|
|
2034
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2035
2035
|
restrictions?: z.objectInputType<{
|
|
2036
2036
|
id: z.ZodString;
|
|
2037
2037
|
type: z.ZodString;
|
|
@@ -2039,11 +2039,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2039
2039
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2040
2040
|
angle: z.ZodNumber;
|
|
2041
2041
|
}, "strip", z.ZodTypeAny, {
|
|
2042
|
-
angle: number;
|
|
2043
2042
|
axis: number[];
|
|
2044
|
-
}, {
|
|
2045
2043
|
angle: number;
|
|
2044
|
+
}, {
|
|
2046
2045
|
axis: number[];
|
|
2046
|
+
angle: number;
|
|
2047
2047
|
}>>>;
|
|
2048
2048
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2049
2049
|
objects?: {
|
|
@@ -2053,8 +2053,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2053
2053
|
id: string;
|
|
2054
2054
|
position: number[];
|
|
2055
2055
|
rotation?: {
|
|
2056
|
-
angle: number;
|
|
2057
2056
|
axis: number[];
|
|
2057
|
+
angle: number;
|
|
2058
2058
|
} | null | undefined;
|
|
2059
2059
|
}[] | null | undefined;
|
|
2060
2060
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -2065,6 +2065,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2065
2065
|
export declare const validateInteractionParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2066
2066
|
type: "selection";
|
|
2067
2067
|
props: {
|
|
2068
|
+
maximumSelection?: number | null | undefined;
|
|
2069
|
+
minimumSelection?: number | null | undefined;
|
|
2070
|
+
nameFilter?: string[] | null | undefined;
|
|
2071
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2072
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2073
|
+
deselectOnEmpty?: unknown;
|
|
2068
2074
|
hover?: unknown;
|
|
2069
2075
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2070
2076
|
prompt?: {
|
|
@@ -2072,17 +2078,16 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2072
2078
|
activeTitle?: string | null | undefined;
|
|
2073
2079
|
activeText?: string | null | undefined;
|
|
2074
2080
|
} | null | undefined;
|
|
2081
|
+
};
|
|
2082
|
+
} | {
|
|
2083
|
+
type: "gumball";
|
|
2084
|
+
props: {
|
|
2075
2085
|
maximumSelection?: number | null | undefined;
|
|
2076
2086
|
minimumSelection?: number | null | undefined;
|
|
2077
2087
|
nameFilter?: string[] | null | undefined;
|
|
2078
2088
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2079
2089
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2080
2090
|
deselectOnEmpty?: unknown;
|
|
2081
|
-
};
|
|
2082
|
-
} | {
|
|
2083
|
-
type: "gumball";
|
|
2084
|
-
props: {
|
|
2085
|
-
scale?: number | null | undefined;
|
|
2086
2091
|
hover?: unknown;
|
|
2087
2092
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2088
2093
|
prompt?: {
|
|
@@ -2090,12 +2095,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2090
2095
|
activeTitle?: string | null | undefined;
|
|
2091
2096
|
activeText?: string | null | undefined;
|
|
2092
2097
|
} | null | undefined;
|
|
2093
|
-
maximumSelection?: number | null | undefined;
|
|
2094
|
-
minimumSelection?: number | null | undefined;
|
|
2095
|
-
nameFilter?: string[] | null | undefined;
|
|
2096
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2097
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2098
|
-
deselectOnEmpty?: unknown;
|
|
2099
2098
|
enableRotation?: unknown;
|
|
2100
2099
|
enableRotationAxes?: {
|
|
2101
2100
|
x?: unknown;
|
|
@@ -2123,6 +2122,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2123
2122
|
yz?: unknown;
|
|
2124
2123
|
xz?: unknown;
|
|
2125
2124
|
} | null | undefined;
|
|
2125
|
+
scale?: number | null | undefined;
|
|
2126
2126
|
space?: "local" | "world" | null | undefined;
|
|
2127
2127
|
restrictions?: z.objectInputType<{
|
|
2128
2128
|
id: z.ZodString;
|
|
@@ -2131,11 +2131,11 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2131
2131
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2132
2132
|
angle: z.ZodNumber;
|
|
2133
2133
|
}, "strip", z.ZodTypeAny, {
|
|
2134
|
-
angle: number;
|
|
2135
2134
|
axis: number[];
|
|
2136
|
-
}, {
|
|
2137
2135
|
angle: number;
|
|
2136
|
+
}, {
|
|
2138
2137
|
axis: number[];
|
|
2138
|
+
angle: number;
|
|
2139
2139
|
}>>>;
|
|
2140
2140
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2141
2141
|
objects?: {
|
|
@@ -2146,6 +2146,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2146
2146
|
} | {
|
|
2147
2147
|
type: "dragging";
|
|
2148
2148
|
props: {
|
|
2149
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2149
2150
|
hover?: unknown;
|
|
2150
2151
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2151
2152
|
prompt?: {
|
|
@@ -2153,7 +2154,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2153
2154
|
activeTitle?: string | null | undefined;
|
|
2154
2155
|
activeText?: string | null | undefined;
|
|
2155
2156
|
} | null | undefined;
|
|
2156
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2157
2157
|
restrictions?: z.objectInputType<{
|
|
2158
2158
|
id: z.ZodString;
|
|
2159
2159
|
type: z.ZodString;
|
|
@@ -2161,11 +2161,11 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2161
2161
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2162
2162
|
angle: z.ZodNumber;
|
|
2163
2163
|
}, "strip", z.ZodTypeAny, {
|
|
2164
|
-
angle: number;
|
|
2165
2164
|
axis: number[];
|
|
2166
|
-
}, {
|
|
2167
2165
|
angle: number;
|
|
2166
|
+
}, {
|
|
2168
2167
|
axis: number[];
|
|
2168
|
+
angle: number;
|
|
2169
2169
|
}>>>;
|
|
2170
2170
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2171
2171
|
objects?: {
|
|
@@ -2175,8 +2175,8 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2175
2175
|
id: string;
|
|
2176
2176
|
position: number[];
|
|
2177
2177
|
rotation?: {
|
|
2178
|
-
angle: number;
|
|
2179
2178
|
axis: number[];
|
|
2179
|
+
angle: number;
|
|
2180
2180
|
} | null | undefined;
|
|
2181
2181
|
}[] | null | undefined;
|
|
2182
2182
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -2186,6 +2186,12 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2186
2186
|
}, {
|
|
2187
2187
|
type: "selection";
|
|
2188
2188
|
props: {
|
|
2189
|
+
maximumSelection?: number | null | undefined;
|
|
2190
|
+
minimumSelection?: number | null | undefined;
|
|
2191
|
+
nameFilter?: string[] | null | undefined;
|
|
2192
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2193
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2194
|
+
deselectOnEmpty?: boolean | undefined;
|
|
2189
2195
|
hover?: boolean | undefined;
|
|
2190
2196
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2191
2197
|
prompt?: {
|
|
@@ -2193,17 +2199,16 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2193
2199
|
activeTitle?: string | null | undefined;
|
|
2194
2200
|
activeText?: string | null | undefined;
|
|
2195
2201
|
} | null | undefined;
|
|
2202
|
+
};
|
|
2203
|
+
} | {
|
|
2204
|
+
type: "gumball";
|
|
2205
|
+
props: {
|
|
2196
2206
|
maximumSelection?: number | null | undefined;
|
|
2197
2207
|
minimumSelection?: number | null | undefined;
|
|
2198
2208
|
nameFilter?: string[] | null | undefined;
|
|
2199
2209
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2200
2210
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2201
2211
|
deselectOnEmpty?: boolean | undefined;
|
|
2202
|
-
};
|
|
2203
|
-
} | {
|
|
2204
|
-
type: "gumball";
|
|
2205
|
-
props: {
|
|
2206
|
-
scale?: number | null | undefined;
|
|
2207
2212
|
hover?: boolean | undefined;
|
|
2208
2213
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2209
2214
|
prompt?: {
|
|
@@ -2211,12 +2216,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2211
2216
|
activeTitle?: string | null | undefined;
|
|
2212
2217
|
activeText?: string | null | undefined;
|
|
2213
2218
|
} | null | undefined;
|
|
2214
|
-
maximumSelection?: number | null | undefined;
|
|
2215
|
-
minimumSelection?: number | null | undefined;
|
|
2216
|
-
nameFilter?: string[] | null | undefined;
|
|
2217
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2218
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2219
|
-
deselectOnEmpty?: boolean | undefined;
|
|
2220
2219
|
enableRotation?: boolean | undefined;
|
|
2221
2220
|
enableRotationAxes?: {
|
|
2222
2221
|
x?: boolean | undefined;
|
|
@@ -2244,6 +2243,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2244
2243
|
yz?: boolean | undefined;
|
|
2245
2244
|
xz?: boolean | undefined;
|
|
2246
2245
|
} | null | undefined;
|
|
2246
|
+
scale?: number | null | undefined;
|
|
2247
2247
|
space?: "local" | "world" | null | undefined;
|
|
2248
2248
|
restrictions?: z.objectOutputType<{
|
|
2249
2249
|
id: z.ZodString;
|
|
@@ -2252,11 +2252,11 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2252
2252
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2253
2253
|
angle: z.ZodNumber;
|
|
2254
2254
|
}, "strip", z.ZodTypeAny, {
|
|
2255
|
-
angle: number;
|
|
2256
2255
|
axis: number[];
|
|
2257
|
-
}, {
|
|
2258
2256
|
angle: number;
|
|
2257
|
+
}, {
|
|
2259
2258
|
axis: number[];
|
|
2259
|
+
angle: number;
|
|
2260
2260
|
}>>>;
|
|
2261
2261
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2262
2262
|
objects?: {
|
|
@@ -2267,6 +2267,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2267
2267
|
} | {
|
|
2268
2268
|
type: "dragging";
|
|
2269
2269
|
props: {
|
|
2270
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2270
2271
|
hover?: boolean | undefined;
|
|
2271
2272
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2272
2273
|
prompt?: {
|
|
@@ -2274,7 +2275,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2274
2275
|
activeTitle?: string | null | undefined;
|
|
2275
2276
|
activeText?: string | null | undefined;
|
|
2276
2277
|
} | null | undefined;
|
|
2277
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2278
2278
|
restrictions?: z.objectOutputType<{
|
|
2279
2279
|
id: z.ZodString;
|
|
2280
2280
|
type: z.ZodString;
|
|
@@ -2282,11 +2282,11 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2282
2282
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2283
2283
|
angle: z.ZodNumber;
|
|
2284
2284
|
}, "strip", z.ZodTypeAny, {
|
|
2285
|
-
angle: number;
|
|
2286
2285
|
axis: number[];
|
|
2287
|
-
}, {
|
|
2288
2286
|
angle: number;
|
|
2287
|
+
}, {
|
|
2289
2288
|
axis: number[];
|
|
2289
|
+
angle: number;
|
|
2290
2290
|
}>>>;
|
|
2291
2291
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2292
2292
|
objects?: {
|
|
@@ -2296,8 +2296,8 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2296
2296
|
id: string;
|
|
2297
2297
|
position: number[];
|
|
2298
2298
|
rotation?: {
|
|
2299
|
-
angle: number;
|
|
2300
2299
|
axis: number[];
|
|
2300
|
+
angle: number;
|
|
2301
2301
|
} | null | undefined;
|
|
2302
2302
|
}[] | null | undefined;
|
|
2303
2303
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -2308,6 +2308,12 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2308
2308
|
export declare const validateSelectionParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2309
2309
|
type: "selection";
|
|
2310
2310
|
props: {
|
|
2311
|
+
maximumSelection?: number | null | undefined;
|
|
2312
|
+
minimumSelection?: number | null | undefined;
|
|
2313
|
+
nameFilter?: string[] | null | undefined;
|
|
2314
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2315
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2316
|
+
deselectOnEmpty?: unknown;
|
|
2311
2317
|
hover?: unknown;
|
|
2312
2318
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2313
2319
|
prompt?: {
|
|
@@ -2315,16 +2321,16 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2315
2321
|
activeTitle?: string | null | undefined;
|
|
2316
2322
|
activeText?: string | null | undefined;
|
|
2317
2323
|
} | null | undefined;
|
|
2318
|
-
maximumSelection?: number | null | undefined;
|
|
2319
|
-
minimumSelection?: number | null | undefined;
|
|
2320
|
-
nameFilter?: string[] | null | undefined;
|
|
2321
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2322
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2323
|
-
deselectOnEmpty?: unknown;
|
|
2324
2324
|
};
|
|
2325
2325
|
}, {
|
|
2326
2326
|
type: "selection";
|
|
2327
2327
|
props: {
|
|
2328
|
+
maximumSelection?: number | null | undefined;
|
|
2329
|
+
minimumSelection?: number | null | undefined;
|
|
2330
|
+
nameFilter?: string[] | null | undefined;
|
|
2331
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2332
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2333
|
+
deselectOnEmpty?: boolean | undefined;
|
|
2328
2334
|
hover?: boolean | undefined;
|
|
2329
2335
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2330
2336
|
prompt?: {
|
|
@@ -2332,18 +2338,17 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2332
2338
|
activeTitle?: string | null | undefined;
|
|
2333
2339
|
activeText?: string | null | undefined;
|
|
2334
2340
|
} | null | undefined;
|
|
2335
|
-
maximumSelection?: number | null | undefined;
|
|
2336
|
-
minimumSelection?: number | null | undefined;
|
|
2337
|
-
nameFilter?: string[] | null | undefined;
|
|
2338
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2339
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2340
|
-
deselectOnEmpty?: boolean | undefined;
|
|
2341
2341
|
};
|
|
2342
2342
|
}>;
|
|
2343
2343
|
export declare const validateGumballParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2344
2344
|
type: "gumball";
|
|
2345
2345
|
props: {
|
|
2346
|
-
|
|
2346
|
+
maximumSelection?: number | null | undefined;
|
|
2347
|
+
minimumSelection?: number | null | undefined;
|
|
2348
|
+
nameFilter?: string[] | null | undefined;
|
|
2349
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2350
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2351
|
+
deselectOnEmpty?: unknown;
|
|
2347
2352
|
hover?: unknown;
|
|
2348
2353
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2349
2354
|
prompt?: {
|
|
@@ -2351,12 +2356,6 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2351
2356
|
activeTitle?: string | null | undefined;
|
|
2352
2357
|
activeText?: string | null | undefined;
|
|
2353
2358
|
} | null | undefined;
|
|
2354
|
-
maximumSelection?: number | null | undefined;
|
|
2355
|
-
minimumSelection?: number | null | undefined;
|
|
2356
|
-
nameFilter?: string[] | null | undefined;
|
|
2357
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2358
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2359
|
-
deselectOnEmpty?: unknown;
|
|
2360
2359
|
enableRotation?: unknown;
|
|
2361
2360
|
enableRotationAxes?: {
|
|
2362
2361
|
x?: unknown;
|
|
@@ -2384,6 +2383,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2384
2383
|
yz?: unknown;
|
|
2385
2384
|
xz?: unknown;
|
|
2386
2385
|
} | null | undefined;
|
|
2386
|
+
scale?: number | null | undefined;
|
|
2387
2387
|
space?: "local" | "world" | null | undefined;
|
|
2388
2388
|
restrictions?: z.objectInputType<{
|
|
2389
2389
|
id: z.ZodString;
|
|
@@ -2392,11 +2392,11 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2392
2392
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2393
2393
|
angle: z.ZodNumber;
|
|
2394
2394
|
}, "strip", z.ZodTypeAny, {
|
|
2395
|
-
angle: number;
|
|
2396
2395
|
axis: number[];
|
|
2397
|
-
}, {
|
|
2398
2396
|
angle: number;
|
|
2397
|
+
}, {
|
|
2399
2398
|
axis: number[];
|
|
2399
|
+
angle: number;
|
|
2400
2400
|
}>>>;
|
|
2401
2401
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2402
2402
|
objects?: {
|
|
@@ -2407,7 +2407,12 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2407
2407
|
}, {
|
|
2408
2408
|
type: "gumball";
|
|
2409
2409
|
props: {
|
|
2410
|
-
|
|
2410
|
+
maximumSelection?: number | null | undefined;
|
|
2411
|
+
minimumSelection?: number | null | undefined;
|
|
2412
|
+
nameFilter?: string[] | null | undefined;
|
|
2413
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2414
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2415
|
+
deselectOnEmpty?: boolean | undefined;
|
|
2411
2416
|
hover?: boolean | undefined;
|
|
2412
2417
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2413
2418
|
prompt?: {
|
|
@@ -2415,12 +2420,6 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2415
2420
|
activeTitle?: string | null | undefined;
|
|
2416
2421
|
activeText?: string | null | undefined;
|
|
2417
2422
|
} | null | undefined;
|
|
2418
|
-
maximumSelection?: number | null | undefined;
|
|
2419
|
-
minimumSelection?: number | null | undefined;
|
|
2420
|
-
nameFilter?: string[] | null | undefined;
|
|
2421
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2422
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2423
|
-
deselectOnEmpty?: boolean | undefined;
|
|
2424
2423
|
enableRotation?: boolean | undefined;
|
|
2425
2424
|
enableRotationAxes?: {
|
|
2426
2425
|
x?: boolean | undefined;
|
|
@@ -2448,6 +2447,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2448
2447
|
yz?: boolean | undefined;
|
|
2449
2448
|
xz?: boolean | undefined;
|
|
2450
2449
|
} | null | undefined;
|
|
2450
|
+
scale?: number | null | undefined;
|
|
2451
2451
|
space?: "local" | "world" | null | undefined;
|
|
2452
2452
|
restrictions?: z.objectOutputType<{
|
|
2453
2453
|
id: z.ZodString;
|
|
@@ -2456,11 +2456,11 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2456
2456
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2457
2457
|
angle: z.ZodNumber;
|
|
2458
2458
|
}, "strip", z.ZodTypeAny, {
|
|
2459
|
-
angle: number;
|
|
2460
2459
|
axis: number[];
|
|
2461
|
-
}, {
|
|
2462
2460
|
angle: number;
|
|
2461
|
+
}, {
|
|
2463
2462
|
axis: number[];
|
|
2463
|
+
angle: number;
|
|
2464
2464
|
}>>>;
|
|
2465
2465
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2466
2466
|
objects?: {
|
|
@@ -2472,6 +2472,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2472
2472
|
export declare const validateDraggingParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2473
2473
|
type: "dragging";
|
|
2474
2474
|
props: {
|
|
2475
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2475
2476
|
hover?: unknown;
|
|
2476
2477
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2477
2478
|
prompt?: {
|
|
@@ -2479,7 +2480,6 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2479
2480
|
activeTitle?: string | null | undefined;
|
|
2480
2481
|
activeText?: string | null | undefined;
|
|
2481
2482
|
} | null | undefined;
|
|
2482
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2483
2483
|
restrictions?: z.objectInputType<{
|
|
2484
2484
|
id: z.ZodString;
|
|
2485
2485
|
type: z.ZodString;
|
|
@@ -2487,11 +2487,11 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2487
2487
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2488
2488
|
angle: z.ZodNumber;
|
|
2489
2489
|
}, "strip", z.ZodTypeAny, {
|
|
2490
|
-
angle: number;
|
|
2491
2490
|
axis: number[];
|
|
2492
|
-
}, {
|
|
2493
2491
|
angle: number;
|
|
2492
|
+
}, {
|
|
2494
2493
|
axis: number[];
|
|
2494
|
+
angle: number;
|
|
2495
2495
|
}>>>;
|
|
2496
2496
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2497
2497
|
objects?: {
|
|
@@ -2501,8 +2501,8 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2501
2501
|
id: string;
|
|
2502
2502
|
position: number[];
|
|
2503
2503
|
rotation?: {
|
|
2504
|
-
angle: number;
|
|
2505
2504
|
axis: number[];
|
|
2505
|
+
angle: number;
|
|
2506
2506
|
} | null | undefined;
|
|
2507
2507
|
}[] | null | undefined;
|
|
2508
2508
|
dragOrigin?: number[] | null | undefined;
|
|
@@ -2512,6 +2512,7 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2512
2512
|
}, {
|
|
2513
2513
|
type: "dragging";
|
|
2514
2514
|
props: {
|
|
2515
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2515
2516
|
hover?: boolean | undefined;
|
|
2516
2517
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2517
2518
|
prompt?: {
|
|
@@ -2519,7 +2520,6 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2519
2520
|
activeTitle?: string | null | undefined;
|
|
2520
2521
|
activeText?: string | null | undefined;
|
|
2521
2522
|
} | null | undefined;
|
|
2522
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2523
2523
|
restrictions?: z.objectOutputType<{
|
|
2524
2524
|
id: z.ZodString;
|
|
2525
2525
|
type: z.ZodString;
|
|
@@ -2527,11 +2527,11 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2527
2527
|
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
2528
2528
|
angle: z.ZodNumber;
|
|
2529
2529
|
}, "strip", z.ZodTypeAny, {
|
|
2530
|
-
angle: number;
|
|
2531
2530
|
axis: number[];
|
|
2532
|
-
}, {
|
|
2533
2531
|
angle: number;
|
|
2532
|
+
}, {
|
|
2534
2533
|
axis: number[];
|
|
2534
|
+
angle: number;
|
|
2535
2535
|
}>>>;
|
|
2536
2536
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
2537
2537
|
objects?: {
|
|
@@ -2541,8 +2541,8 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2541
2541
|
id: string;
|
|
2542
2542
|
position: number[];
|
|
2543
2543
|
rotation?: {
|
|
2544
|
-
angle: number;
|
|
2545
2544
|
axis: number[];
|
|
2545
|
+
angle: number;
|
|
2546
2546
|
} | null | undefined;
|
|
2547
2547
|
}[] | null | undefined;
|
|
2548
2548
|
dragOrigin?: number[] | null | undefined;
|