@cesdk/engine 1.61.0-nightly.20250906 → 1.61.0-nightly.20250908

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/index.d.ts CHANGED
@@ -4740,7 +4740,7 @@ export declare class BlockAPI {
4740
4740
  * @param options - The options for configuring the split operation.
4741
4741
  * @returns The newly created second half of the split block.
4742
4742
  */
4743
- split(id: DesignBlockId, atTime: number, options?: SplitOptions_2): DesignBlockId;
4743
+ split(id: DesignBlockId, atTime: number, options?: SplitOptions): DesignBlockId;
4744
4744
  /**
4745
4745
  * Gets the total duration of a scene in video mode.
4746
4746
  *
@@ -8408,28 +8408,11 @@ export declare interface Source {
8408
8408
  height: number;
8409
8409
  }
8410
8410
 
8411
- /**
8412
- * Specifies options for configuring block split operations.
8413
- *
8414
- * The `SplitOptions` interface provides a set of properties that control the
8415
- * behavior of the block splitting operation.
8416
- *
8417
- * @categoryDescription Split Options
8418
- * Methods for configuring block split operations.
8419
- *
8420
- * @public
8421
- */
8422
- declare interface SplitOptions {
8423
- attachToParent: boolean;
8424
- createParentTrackIfNeeded: boolean;
8425
- selectNewBlock: boolean;
8426
- }
8427
-
8428
8411
  /**
8429
8412
  * Options for configuring block split operations.
8430
8413
  * @public
8431
8414
  */
8432
- declare type SplitOptions_2 = {
8415
+ export declare type SplitOptions = {
8433
8416
  /**
8434
8417
  * Whether or not the new block will be attached to the same parent as the original.
8435
8418
  * @defaultValue true
@@ -8447,6 +8430,23 @@ declare type SplitOptions_2 = {
8447
8430
  selectNewBlock?: boolean;
8448
8431
  };
8449
8432
 
8433
+ /**
8434
+ * Specifies options for configuring block split operations.
8435
+ *
8436
+ * The `SplitOptions` interface provides a set of properties that control the
8437
+ * behavior of the block splitting operation.
8438
+ *
8439
+ * @categoryDescription Split Options
8440
+ * Methods for configuring block split operations.
8441
+ *
8442
+ * @public
8443
+ */
8444
+ declare interface SplitOptions_2 {
8445
+ attachToParent: boolean;
8446
+ createParentTrackIfNeeded: boolean;
8447
+ selectNewBlock: boolean;
8448
+ }
8449
+
8450
8450
  /**
8451
8451
  * Represents a spot color value.
8452
8452
  *