@rendley/sdk 1.1.1 → 1.2.1

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.
@@ -9,6 +9,11 @@ export declare enum ClipState {
9
9
  Loaded = 2,
10
10
  Offloaded = 3
11
11
  }
12
+ export declare enum AnimationTypeEnum {
13
+ IN = "in",
14
+ OUT = "out",
15
+ LOOP = "loop"
16
+ }
12
17
  export interface ClipOptions<K extends ClipStyle = ClipStyle> {
13
18
  type?: string;
14
19
  id?: string;
@@ -23,6 +28,418 @@ export interface ClipOptions<K extends ClipStyle = ClipStyle> {
23
28
  effects?: Clip["effects"];
24
29
  style?: Partial<ReturnType<K["serialize"]>>;
25
30
  }
31
+ export declare const AnimationClassSchema: z.ZodObject<{
32
+ animationDataIn: z.ZodOptional<z.ZodObject<{
33
+ name: z.ZodString;
34
+ speed: z.ZodOptional<z.ZodNumber>;
35
+ offset: z.ZodOptional<z.ZodNumber>;
36
+ amplification: z.ZodOptional<z.ZodNumber>;
37
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
38
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
39
+ propertyAnimations: z.ZodArray<z.ZodObject<{
40
+ property: z.ZodString;
41
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
42
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
43
+ keyframes: z.ZodArray<z.ZodObject<{
44
+ time: z.ZodNumber;
45
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
46
+ easing: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').EasingEnum>>>;
47
+ space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
48
+ relativeProperty: z.ZodOptional<z.ZodString>;
49
+ }, "strip", z.ZodTypeAny, {
50
+ time: number;
51
+ value: string | number;
52
+ easing: import('../../utils/animation/animation').EasingEnum;
53
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
54
+ relativeProperty?: string | undefined;
55
+ }, {
56
+ time: number;
57
+ value: string | number;
58
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
59
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
60
+ relativeProperty?: string | undefined;
61
+ }>, "many">;
62
+ }, "strip", z.ZodTypeAny, {
63
+ property: string;
64
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
65
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
66
+ keyframes: {
67
+ time: number;
68
+ value: string | number;
69
+ easing: import('../../utils/animation/animation').EasingEnum;
70
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
71
+ relativeProperty?: string | undefined;
72
+ }[];
73
+ }, {
74
+ property: string;
75
+ keyframes: {
76
+ time: number;
77
+ value: string | number;
78
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
79
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
80
+ relativeProperty?: string | undefined;
81
+ }[];
82
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
83
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
84
+ }>, "many">;
85
+ }, "strip", z.ZodTypeAny, {
86
+ name: string;
87
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
88
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
89
+ propertyAnimations: {
90
+ property: string;
91
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
92
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
93
+ keyframes: {
94
+ time: number;
95
+ value: string | number;
96
+ easing: import('../../utils/animation/animation').EasingEnum;
97
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
98
+ relativeProperty?: string | undefined;
99
+ }[];
100
+ }[];
101
+ speed?: number | undefined;
102
+ offset?: number | undefined;
103
+ amplification?: number | undefined;
104
+ }, {
105
+ name: string;
106
+ propertyAnimations: {
107
+ property: string;
108
+ keyframes: {
109
+ time: number;
110
+ value: string | number;
111
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
112
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
113
+ relativeProperty?: string | undefined;
114
+ }[];
115
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
116
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
117
+ }[];
118
+ speed?: number | undefined;
119
+ offset?: number | undefined;
120
+ amplification?: number | undefined;
121
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
122
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
123
+ }>>;
124
+ animationDataOut: z.ZodOptional<z.ZodObject<{
125
+ name: z.ZodString;
126
+ speed: z.ZodOptional<z.ZodNumber>;
127
+ offset: z.ZodOptional<z.ZodNumber>;
128
+ amplification: z.ZodOptional<z.ZodNumber>;
129
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
130
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
131
+ propertyAnimations: z.ZodArray<z.ZodObject<{
132
+ property: z.ZodString;
133
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
134
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
135
+ keyframes: z.ZodArray<z.ZodObject<{
136
+ time: z.ZodNumber;
137
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
138
+ easing: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').EasingEnum>>>;
139
+ space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
140
+ relativeProperty: z.ZodOptional<z.ZodString>;
141
+ }, "strip", z.ZodTypeAny, {
142
+ time: number;
143
+ value: string | number;
144
+ easing: import('../../utils/animation/animation').EasingEnum;
145
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
146
+ relativeProperty?: string | undefined;
147
+ }, {
148
+ time: number;
149
+ value: string | number;
150
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
151
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
152
+ relativeProperty?: string | undefined;
153
+ }>, "many">;
154
+ }, "strip", z.ZodTypeAny, {
155
+ property: string;
156
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
157
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
158
+ keyframes: {
159
+ time: number;
160
+ value: string | number;
161
+ easing: import('../../utils/animation/animation').EasingEnum;
162
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
163
+ relativeProperty?: string | undefined;
164
+ }[];
165
+ }, {
166
+ property: string;
167
+ keyframes: {
168
+ time: number;
169
+ value: string | number;
170
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
171
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
172
+ relativeProperty?: string | undefined;
173
+ }[];
174
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
175
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
176
+ }>, "many">;
177
+ }, "strip", z.ZodTypeAny, {
178
+ name: string;
179
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
180
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
181
+ propertyAnimations: {
182
+ property: string;
183
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
184
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
185
+ keyframes: {
186
+ time: number;
187
+ value: string | number;
188
+ easing: import('../../utils/animation/animation').EasingEnum;
189
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
190
+ relativeProperty?: string | undefined;
191
+ }[];
192
+ }[];
193
+ speed?: number | undefined;
194
+ offset?: number | undefined;
195
+ amplification?: number | undefined;
196
+ }, {
197
+ name: string;
198
+ propertyAnimations: {
199
+ property: string;
200
+ keyframes: {
201
+ time: number;
202
+ value: string | number;
203
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
204
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
205
+ relativeProperty?: string | undefined;
206
+ }[];
207
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
208
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
209
+ }[];
210
+ speed?: number | undefined;
211
+ offset?: number | undefined;
212
+ amplification?: number | undefined;
213
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
214
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
215
+ }>>;
216
+ animationDataLoop: z.ZodOptional<z.ZodObject<{
217
+ name: z.ZodString;
218
+ speed: z.ZodOptional<z.ZodNumber>;
219
+ offset: z.ZodOptional<z.ZodNumber>;
220
+ amplification: z.ZodOptional<z.ZodNumber>;
221
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
222
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
223
+ propertyAnimations: z.ZodArray<z.ZodObject<{
224
+ property: z.ZodString;
225
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
226
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
227
+ keyframes: z.ZodArray<z.ZodObject<{
228
+ time: z.ZodNumber;
229
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
230
+ easing: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').EasingEnum>>>;
231
+ space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
232
+ relativeProperty: z.ZodOptional<z.ZodString>;
233
+ }, "strip", z.ZodTypeAny, {
234
+ time: number;
235
+ value: string | number;
236
+ easing: import('../../utils/animation/animation').EasingEnum;
237
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
238
+ relativeProperty?: string | undefined;
239
+ }, {
240
+ time: number;
241
+ value: string | number;
242
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
243
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
244
+ relativeProperty?: string | undefined;
245
+ }>, "many">;
246
+ }, "strip", z.ZodTypeAny, {
247
+ property: string;
248
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
249
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
250
+ keyframes: {
251
+ time: number;
252
+ value: string | number;
253
+ easing: import('../../utils/animation/animation').EasingEnum;
254
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
255
+ relativeProperty?: string | undefined;
256
+ }[];
257
+ }, {
258
+ property: string;
259
+ keyframes: {
260
+ time: number;
261
+ value: string | number;
262
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
263
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
264
+ relativeProperty?: string | undefined;
265
+ }[];
266
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
267
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
268
+ }>, "many">;
269
+ }, "strip", z.ZodTypeAny, {
270
+ name: string;
271
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
272
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
273
+ propertyAnimations: {
274
+ property: string;
275
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
276
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
277
+ keyframes: {
278
+ time: number;
279
+ value: string | number;
280
+ easing: import('../../utils/animation/animation').EasingEnum;
281
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
282
+ relativeProperty?: string | undefined;
283
+ }[];
284
+ }[];
285
+ speed?: number | undefined;
286
+ offset?: number | undefined;
287
+ amplification?: number | undefined;
288
+ }, {
289
+ name: string;
290
+ propertyAnimations: {
291
+ property: string;
292
+ keyframes: {
293
+ time: number;
294
+ value: string | number;
295
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
296
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
297
+ relativeProperty?: string | undefined;
298
+ }[];
299
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
300
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
301
+ }[];
302
+ speed?: number | undefined;
303
+ offset?: number | undefined;
304
+ amplification?: number | undefined;
305
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
306
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
307
+ }>>;
308
+ animationInDuration: z.ZodOptional<z.ZodNumber>;
309
+ animationOutDuration: z.ZodOptional<z.ZodNumber>;
310
+ animationLoopCount: z.ZodOptional<z.ZodNumber>;
311
+ loopSmoothing: z.ZodOptional<z.ZodNumber>;
312
+ }, "strip", z.ZodTypeAny, {
313
+ animationDataIn?: {
314
+ name: string;
315
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
316
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
317
+ propertyAnimations: {
318
+ property: string;
319
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
320
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
321
+ keyframes: {
322
+ time: number;
323
+ value: string | number;
324
+ easing: import('../../utils/animation/animation').EasingEnum;
325
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
326
+ relativeProperty?: string | undefined;
327
+ }[];
328
+ }[];
329
+ speed?: number | undefined;
330
+ offset?: number | undefined;
331
+ amplification?: number | undefined;
332
+ } | undefined;
333
+ animationDataOut?: {
334
+ name: string;
335
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
336
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
337
+ propertyAnimations: {
338
+ property: string;
339
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
340
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
341
+ keyframes: {
342
+ time: number;
343
+ value: string | number;
344
+ easing: import('../../utils/animation/animation').EasingEnum;
345
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
346
+ relativeProperty?: string | undefined;
347
+ }[];
348
+ }[];
349
+ speed?: number | undefined;
350
+ offset?: number | undefined;
351
+ amplification?: number | undefined;
352
+ } | undefined;
353
+ animationDataLoop?: {
354
+ name: string;
355
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
356
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
357
+ propertyAnimations: {
358
+ property: string;
359
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
360
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
361
+ keyframes: {
362
+ time: number;
363
+ value: string | number;
364
+ easing: import('../../utils/animation/animation').EasingEnum;
365
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
366
+ relativeProperty?: string | undefined;
367
+ }[];
368
+ }[];
369
+ speed?: number | undefined;
370
+ offset?: number | undefined;
371
+ amplification?: number | undefined;
372
+ } | undefined;
373
+ animationInDuration?: number | undefined;
374
+ animationOutDuration?: number | undefined;
375
+ animationLoopCount?: number | undefined;
376
+ loopSmoothing?: number | undefined;
377
+ }, {
378
+ animationDataIn?: {
379
+ name: string;
380
+ propertyAnimations: {
381
+ property: string;
382
+ keyframes: {
383
+ time: number;
384
+ value: string | number;
385
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
386
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
387
+ relativeProperty?: string | undefined;
388
+ }[];
389
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
390
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
391
+ }[];
392
+ speed?: number | undefined;
393
+ offset?: number | undefined;
394
+ amplification?: number | undefined;
395
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
396
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
397
+ } | undefined;
398
+ animationDataOut?: {
399
+ name: string;
400
+ propertyAnimations: {
401
+ property: string;
402
+ keyframes: {
403
+ time: number;
404
+ value: string | number;
405
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
406
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
407
+ relativeProperty?: string | undefined;
408
+ }[];
409
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
410
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
411
+ }[];
412
+ speed?: number | undefined;
413
+ offset?: number | undefined;
414
+ amplification?: number | undefined;
415
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
416
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
417
+ } | undefined;
418
+ animationDataLoop?: {
419
+ name: string;
420
+ propertyAnimations: {
421
+ property: string;
422
+ keyframes: {
423
+ time: number;
424
+ value: string | number;
425
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
426
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
427
+ relativeProperty?: string | undefined;
428
+ }[];
429
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
430
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
431
+ }[];
432
+ speed?: number | undefined;
433
+ offset?: number | undefined;
434
+ amplification?: number | undefined;
435
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
436
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
437
+ } | undefined;
438
+ animationInDuration?: number | undefined;
439
+ animationOutDuration?: number | undefined;
440
+ animationLoopCount?: number | undefined;
441
+ loopSmoothing?: number | undefined;
442
+ }>;
26
443
  export declare const ClipSchema: z.ZodObject<{
27
444
  id: z.ZodString;
28
445
  type: z.ZodString;
@@ -60,6 +477,418 @@ export declare const ClipSchema: z.ZodObject<{
60
477
  warpMode: z.ZodNativeEnum<typeof WarpModeEnum>;
61
478
  style: z.ZodUnknown;
62
479
  text: z.ZodOptional<z.ZodString>;
480
+ animationController: z.ZodOptional<z.ZodObject<{
481
+ animationDataIn: z.ZodOptional<z.ZodObject<{
482
+ name: z.ZodString;
483
+ speed: z.ZodOptional<z.ZodNumber>;
484
+ offset: z.ZodOptional<z.ZodNumber>;
485
+ amplification: z.ZodOptional<z.ZodNumber>;
486
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
487
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
488
+ propertyAnimations: z.ZodArray<z.ZodObject<{
489
+ property: z.ZodString;
490
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
491
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
492
+ keyframes: z.ZodArray<z.ZodObject<{
493
+ time: z.ZodNumber;
494
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
495
+ easing: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').EasingEnum>>>;
496
+ space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
497
+ relativeProperty: z.ZodOptional<z.ZodString>;
498
+ }, "strip", z.ZodTypeAny, {
499
+ time: number;
500
+ value: string | number;
501
+ easing: import('../../utils/animation/animation').EasingEnum;
502
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
503
+ relativeProperty?: string | undefined;
504
+ }, {
505
+ time: number;
506
+ value: string | number;
507
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
508
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
509
+ relativeProperty?: string | undefined;
510
+ }>, "many">;
511
+ }, "strip", z.ZodTypeAny, {
512
+ property: string;
513
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
514
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
515
+ keyframes: {
516
+ time: number;
517
+ value: string | number;
518
+ easing: import('../../utils/animation/animation').EasingEnum;
519
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
520
+ relativeProperty?: string | undefined;
521
+ }[];
522
+ }, {
523
+ property: string;
524
+ keyframes: {
525
+ time: number;
526
+ value: string | number;
527
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
528
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
529
+ relativeProperty?: string | undefined;
530
+ }[];
531
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
532
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
533
+ }>, "many">;
534
+ }, "strip", z.ZodTypeAny, {
535
+ name: string;
536
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
537
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
538
+ propertyAnimations: {
539
+ property: string;
540
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
541
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
542
+ keyframes: {
543
+ time: number;
544
+ value: string | number;
545
+ easing: import('../../utils/animation/animation').EasingEnum;
546
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
547
+ relativeProperty?: string | undefined;
548
+ }[];
549
+ }[];
550
+ speed?: number | undefined;
551
+ offset?: number | undefined;
552
+ amplification?: number | undefined;
553
+ }, {
554
+ name: string;
555
+ propertyAnimations: {
556
+ property: string;
557
+ keyframes: {
558
+ time: number;
559
+ value: string | number;
560
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
561
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
562
+ relativeProperty?: string | undefined;
563
+ }[];
564
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
565
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
566
+ }[];
567
+ speed?: number | undefined;
568
+ offset?: number | undefined;
569
+ amplification?: number | undefined;
570
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
571
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
572
+ }>>;
573
+ animationDataOut: z.ZodOptional<z.ZodObject<{
574
+ name: z.ZodString;
575
+ speed: z.ZodOptional<z.ZodNumber>;
576
+ offset: z.ZodOptional<z.ZodNumber>;
577
+ amplification: z.ZodOptional<z.ZodNumber>;
578
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
579
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
580
+ propertyAnimations: z.ZodArray<z.ZodObject<{
581
+ property: z.ZodString;
582
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
583
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
584
+ keyframes: z.ZodArray<z.ZodObject<{
585
+ time: z.ZodNumber;
586
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
587
+ easing: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').EasingEnum>>>;
588
+ space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
589
+ relativeProperty: z.ZodOptional<z.ZodString>;
590
+ }, "strip", z.ZodTypeAny, {
591
+ time: number;
592
+ value: string | number;
593
+ easing: import('../../utils/animation/animation').EasingEnum;
594
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
595
+ relativeProperty?: string | undefined;
596
+ }, {
597
+ time: number;
598
+ value: string | number;
599
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
600
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
601
+ relativeProperty?: string | undefined;
602
+ }>, "many">;
603
+ }, "strip", z.ZodTypeAny, {
604
+ property: string;
605
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
606
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
607
+ keyframes: {
608
+ time: number;
609
+ value: string | number;
610
+ easing: import('../../utils/animation/animation').EasingEnum;
611
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
612
+ relativeProperty?: string | undefined;
613
+ }[];
614
+ }, {
615
+ property: string;
616
+ keyframes: {
617
+ time: number;
618
+ value: string | number;
619
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
620
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
621
+ relativeProperty?: string | undefined;
622
+ }[];
623
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
624
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
625
+ }>, "many">;
626
+ }, "strip", z.ZodTypeAny, {
627
+ name: string;
628
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
629
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
630
+ propertyAnimations: {
631
+ property: string;
632
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
633
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
634
+ keyframes: {
635
+ time: number;
636
+ value: string | number;
637
+ easing: import('../../utils/animation/animation').EasingEnum;
638
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
639
+ relativeProperty?: string | undefined;
640
+ }[];
641
+ }[];
642
+ speed?: number | undefined;
643
+ offset?: number | undefined;
644
+ amplification?: number | undefined;
645
+ }, {
646
+ name: string;
647
+ propertyAnimations: {
648
+ property: string;
649
+ keyframes: {
650
+ time: number;
651
+ value: string | number;
652
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
653
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
654
+ relativeProperty?: string | undefined;
655
+ }[];
656
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
657
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
658
+ }[];
659
+ speed?: number | undefined;
660
+ offset?: number | undefined;
661
+ amplification?: number | undefined;
662
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
663
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
664
+ }>>;
665
+ animationDataLoop: z.ZodOptional<z.ZodObject<{
666
+ name: z.ZodString;
667
+ speed: z.ZodOptional<z.ZodNumber>;
668
+ offset: z.ZodOptional<z.ZodNumber>;
669
+ amplification: z.ZodOptional<z.ZodNumber>;
670
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
671
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
672
+ propertyAnimations: z.ZodArray<z.ZodObject<{
673
+ property: z.ZodString;
674
+ inOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
675
+ outOutOfRange: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').OutOfRangeEnum>>>;
676
+ keyframes: z.ZodArray<z.ZodObject<{
677
+ time: z.ZodNumber;
678
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
679
+ easing: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').EasingEnum>>>;
680
+ space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
681
+ relativeProperty: z.ZodOptional<z.ZodString>;
682
+ }, "strip", z.ZodTypeAny, {
683
+ time: number;
684
+ value: string | number;
685
+ easing: import('../../utils/animation/animation').EasingEnum;
686
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
687
+ relativeProperty?: string | undefined;
688
+ }, {
689
+ time: number;
690
+ value: string | number;
691
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
692
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
693
+ relativeProperty?: string | undefined;
694
+ }>, "many">;
695
+ }, "strip", z.ZodTypeAny, {
696
+ property: string;
697
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
698
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
699
+ keyframes: {
700
+ time: number;
701
+ value: string | number;
702
+ easing: import('../../utils/animation/animation').EasingEnum;
703
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
704
+ relativeProperty?: string | undefined;
705
+ }[];
706
+ }, {
707
+ property: string;
708
+ keyframes: {
709
+ time: number;
710
+ value: string | number;
711
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
712
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
713
+ relativeProperty?: string | undefined;
714
+ }[];
715
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
716
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
717
+ }>, "many">;
718
+ }, "strip", z.ZodTypeAny, {
719
+ name: string;
720
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
721
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
722
+ propertyAnimations: {
723
+ property: string;
724
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
725
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
726
+ keyframes: {
727
+ time: number;
728
+ value: string | number;
729
+ easing: import('../../utils/animation/animation').EasingEnum;
730
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
731
+ relativeProperty?: string | undefined;
732
+ }[];
733
+ }[];
734
+ speed?: number | undefined;
735
+ offset?: number | undefined;
736
+ amplification?: number | undefined;
737
+ }, {
738
+ name: string;
739
+ propertyAnimations: {
740
+ property: string;
741
+ keyframes: {
742
+ time: number;
743
+ value: string | number;
744
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
745
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
746
+ relativeProperty?: string | undefined;
747
+ }[];
748
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
749
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
750
+ }[];
751
+ speed?: number | undefined;
752
+ offset?: number | undefined;
753
+ amplification?: number | undefined;
754
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
755
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
756
+ }>>;
757
+ animationInDuration: z.ZodOptional<z.ZodNumber>;
758
+ animationOutDuration: z.ZodOptional<z.ZodNumber>;
759
+ animationLoopCount: z.ZodOptional<z.ZodNumber>;
760
+ loopSmoothing: z.ZodOptional<z.ZodNumber>;
761
+ }, "strip", z.ZodTypeAny, {
762
+ animationDataIn?: {
763
+ name: string;
764
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
765
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
766
+ propertyAnimations: {
767
+ property: string;
768
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
769
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
770
+ keyframes: {
771
+ time: number;
772
+ value: string | number;
773
+ easing: import('../../utils/animation/animation').EasingEnum;
774
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
775
+ relativeProperty?: string | undefined;
776
+ }[];
777
+ }[];
778
+ speed?: number | undefined;
779
+ offset?: number | undefined;
780
+ amplification?: number | undefined;
781
+ } | undefined;
782
+ animationDataOut?: {
783
+ name: string;
784
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
785
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
786
+ propertyAnimations: {
787
+ property: string;
788
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
789
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
790
+ keyframes: {
791
+ time: number;
792
+ value: string | number;
793
+ easing: import('../../utils/animation/animation').EasingEnum;
794
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
795
+ relativeProperty?: string | undefined;
796
+ }[];
797
+ }[];
798
+ speed?: number | undefined;
799
+ offset?: number | undefined;
800
+ amplification?: number | undefined;
801
+ } | undefined;
802
+ animationDataLoop?: {
803
+ name: string;
804
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
805
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
806
+ propertyAnimations: {
807
+ property: string;
808
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
809
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
810
+ keyframes: {
811
+ time: number;
812
+ value: string | number;
813
+ easing: import('../../utils/animation/animation').EasingEnum;
814
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
815
+ relativeProperty?: string | undefined;
816
+ }[];
817
+ }[];
818
+ speed?: number | undefined;
819
+ offset?: number | undefined;
820
+ amplification?: number | undefined;
821
+ } | undefined;
822
+ animationInDuration?: number | undefined;
823
+ animationOutDuration?: number | undefined;
824
+ animationLoopCount?: number | undefined;
825
+ loopSmoothing?: number | undefined;
826
+ }, {
827
+ animationDataIn?: {
828
+ name: string;
829
+ propertyAnimations: {
830
+ property: string;
831
+ keyframes: {
832
+ time: number;
833
+ value: string | number;
834
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
835
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
836
+ relativeProperty?: string | undefined;
837
+ }[];
838
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
839
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
840
+ }[];
841
+ speed?: number | undefined;
842
+ offset?: number | undefined;
843
+ amplification?: number | undefined;
844
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
845
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
846
+ } | undefined;
847
+ animationDataOut?: {
848
+ name: string;
849
+ propertyAnimations: {
850
+ property: string;
851
+ keyframes: {
852
+ time: number;
853
+ value: string | number;
854
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
855
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
856
+ relativeProperty?: string | undefined;
857
+ }[];
858
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
859
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
860
+ }[];
861
+ speed?: number | undefined;
862
+ offset?: number | undefined;
863
+ amplification?: number | undefined;
864
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
865
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
866
+ } | undefined;
867
+ animationDataLoop?: {
868
+ name: string;
869
+ propertyAnimations: {
870
+ property: string;
871
+ keyframes: {
872
+ time: number;
873
+ value: string | number;
874
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
875
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
876
+ relativeProperty?: string | undefined;
877
+ }[];
878
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
879
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
880
+ }[];
881
+ speed?: number | undefined;
882
+ offset?: number | undefined;
883
+ amplification?: number | undefined;
884
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
885
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
886
+ } | undefined;
887
+ animationInDuration?: number | undefined;
888
+ animationOutDuration?: number | undefined;
889
+ animationLoopCount?: number | undefined;
890
+ loopSmoothing?: number | undefined;
891
+ }>>;
63
892
  }, "strip", z.ZodTypeAny, {
64
893
  type: string;
65
894
  id: string;
@@ -81,6 +910,72 @@ export declare const ClipSchema: z.ZodObject<{
81
910
  subtitlesId?: string | undefined;
82
911
  style?: unknown;
83
912
  text?: string | undefined;
913
+ animationController?: {
914
+ animationDataIn?: {
915
+ name: string;
916
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
917
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
918
+ propertyAnimations: {
919
+ property: string;
920
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
921
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
922
+ keyframes: {
923
+ time: number;
924
+ value: string | number;
925
+ easing: import('../../utils/animation/animation').EasingEnum;
926
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
927
+ relativeProperty?: string | undefined;
928
+ }[];
929
+ }[];
930
+ speed?: number | undefined;
931
+ offset?: number | undefined;
932
+ amplification?: number | undefined;
933
+ } | undefined;
934
+ animationDataOut?: {
935
+ name: string;
936
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
937
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
938
+ propertyAnimations: {
939
+ property: string;
940
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
941
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
942
+ keyframes: {
943
+ time: number;
944
+ value: string | number;
945
+ easing: import('../../utils/animation/animation').EasingEnum;
946
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
947
+ relativeProperty?: string | undefined;
948
+ }[];
949
+ }[];
950
+ speed?: number | undefined;
951
+ offset?: number | undefined;
952
+ amplification?: number | undefined;
953
+ } | undefined;
954
+ animationDataLoop?: {
955
+ name: string;
956
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
957
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
958
+ propertyAnimations: {
959
+ property: string;
960
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
961
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
962
+ keyframes: {
963
+ time: number;
964
+ value: string | number;
965
+ easing: import('../../utils/animation/animation').EasingEnum;
966
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
967
+ relativeProperty?: string | undefined;
968
+ }[];
969
+ }[];
970
+ speed?: number | undefined;
971
+ offset?: number | undefined;
972
+ amplification?: number | undefined;
973
+ } | undefined;
974
+ animationInDuration?: number | undefined;
975
+ animationOutDuration?: number | undefined;
976
+ animationLoopCount?: number | undefined;
977
+ loopSmoothing?: number | undefined;
978
+ } | undefined;
84
979
  }, {
85
980
  type: string;
86
981
  id: string;
@@ -102,6 +997,72 @@ export declare const ClipSchema: z.ZodObject<{
102
997
  subtitlesId?: string | undefined;
103
998
  style?: unknown;
104
999
  text?: string | undefined;
1000
+ animationController?: {
1001
+ animationDataIn?: {
1002
+ name: string;
1003
+ propertyAnimations: {
1004
+ property: string;
1005
+ keyframes: {
1006
+ time: number;
1007
+ value: string | number;
1008
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
1009
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
1010
+ relativeProperty?: string | undefined;
1011
+ }[];
1012
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1013
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1014
+ }[];
1015
+ speed?: number | undefined;
1016
+ offset?: number | undefined;
1017
+ amplification?: number | undefined;
1018
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1019
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1020
+ } | undefined;
1021
+ animationDataOut?: {
1022
+ name: string;
1023
+ propertyAnimations: {
1024
+ property: string;
1025
+ keyframes: {
1026
+ time: number;
1027
+ value: string | number;
1028
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
1029
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
1030
+ relativeProperty?: string | undefined;
1031
+ }[];
1032
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1033
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1034
+ }[];
1035
+ speed?: number | undefined;
1036
+ offset?: number | undefined;
1037
+ amplification?: number | undefined;
1038
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1039
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1040
+ } | undefined;
1041
+ animationDataLoop?: {
1042
+ name: string;
1043
+ propertyAnimations: {
1044
+ property: string;
1045
+ keyframes: {
1046
+ time: number;
1047
+ value: string | number;
1048
+ easing?: import('../../utils/animation/animation').EasingEnum | undefined;
1049
+ space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
1050
+ relativeProperty?: string | undefined;
1051
+ }[];
1052
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1053
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1054
+ }[];
1055
+ speed?: number | undefined;
1056
+ offset?: number | undefined;
1057
+ amplification?: number | undefined;
1058
+ inOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1059
+ outOutOfRange?: import('../../utils/animation/animation').OutOfRangeEnum | undefined;
1060
+ } | undefined;
1061
+ animationInDuration?: number | undefined;
1062
+ animationOutDuration?: number | undefined;
1063
+ animationLoopCount?: number | undefined;
1064
+ loopSmoothing?: number | undefined;
1065
+ } | undefined;
105
1066
  }>;
106
1067
  export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipStyle = ClipStyle> {
107
1068
  id: string;
@@ -121,8 +1082,14 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
121
1082
  sprite: T;
122
1083
  style: K;
123
1084
  state: ClipState;
1085
+ private AnimationClass;
1086
+ readonly animationController: InstanceType<typeof this.AnimationClass>;
124
1087
  constructor(options: ClipOptions<K>);
125
1088
  init(layerId: string): Promise<void>;
1089
+ resetAllAnimationProperties(): void;
1090
+ protected setAnimationPropertyValue(property: string, value: any): void;
1091
+ protected getAnimationPropertyValue(property: string): number | string;
1092
+ protected resetAnimationPropertyValue(property: string): void;
126
1093
  isReady(): boolean;
127
1094
  getStartTime(): number;
128
1095
  getEndTime(): number;
@@ -158,7 +1125,7 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
158
1125
  onRenderDone(canceled: boolean): Promise<void>;
159
1126
  isActive(currentTime: number): boolean;
160
1127
  updateVisibility(currentTime: number): void;
161
- setSubtitles(subtitlesId: string, offset: number): void;
1128
+ setSubtitles(subtitlesId: string, offset?: number): void;
162
1129
  removeSubtitles(): void;
163
1130
  getSubtitlesId(): string | undefined;
164
1131
  getSubtitlesOffset(): number;
@@ -194,6 +1161,72 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
194
1161
  subtitlesId?: string | undefined;
195
1162
  style?: unknown;
196
1163
  text?: string | undefined;
1164
+ animationController?: {
1165
+ animationDataIn?: {
1166
+ name: string;
1167
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1168
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1169
+ propertyAnimations: {
1170
+ property: string;
1171
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1172
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1173
+ keyframes: {
1174
+ time: number;
1175
+ value: string | number;
1176
+ easing: import('../../utils/animation/animation').EasingEnum;
1177
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
1178
+ relativeProperty?: string | undefined;
1179
+ }[];
1180
+ }[];
1181
+ speed?: number | undefined;
1182
+ offset?: number | undefined;
1183
+ amplification?: number | undefined;
1184
+ } | undefined;
1185
+ animationDataOut?: {
1186
+ name: string;
1187
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1188
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1189
+ propertyAnimations: {
1190
+ property: string;
1191
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1192
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1193
+ keyframes: {
1194
+ time: number;
1195
+ value: string | number;
1196
+ easing: import('../../utils/animation/animation').EasingEnum;
1197
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
1198
+ relativeProperty?: string | undefined;
1199
+ }[];
1200
+ }[];
1201
+ speed?: number | undefined;
1202
+ offset?: number | undefined;
1203
+ amplification?: number | undefined;
1204
+ } | undefined;
1205
+ animationDataLoop?: {
1206
+ name: string;
1207
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1208
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1209
+ propertyAnimations: {
1210
+ property: string;
1211
+ inOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1212
+ outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
1213
+ keyframes: {
1214
+ time: number;
1215
+ value: string | number;
1216
+ easing: import('../../utils/animation/animation').EasingEnum;
1217
+ space: import('../../utils/animation/animation').AnimationSpaceEnum;
1218
+ relativeProperty?: string | undefined;
1219
+ }[];
1220
+ }[];
1221
+ speed?: number | undefined;
1222
+ offset?: number | undefined;
1223
+ amplification?: number | undefined;
1224
+ } | undefined;
1225
+ animationInDuration?: number | undefined;
1226
+ animationOutDuration?: number | undefined;
1227
+ animationLoopCount?: number | undefined;
1228
+ loopSmoothing?: number | undefined;
1229
+ } | undefined;
197
1230
  };
198
1231
  static deserialize(data: object): Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>>;
199
1232
  }