@cesdk/node 1.60.0-nightly.20250901 → 1.60.0-nightly.20250902

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
@@ -1466,11 +1466,12 @@ export declare class BlockAPI {
1466
1466
  /**
1467
1467
  * Loads blocks from a remote archive URL.
1468
1468
  *
1469
+ * The URL should be that of a file previously saved with `block.saveToArchive`.
1469
1470
  * The blocks are not attached by default and won't be visible until attached to a page or the scene.
1470
1471
  * The UUID of the loaded blocks is replaced with a new one.
1471
1472
  *
1472
1473
  * @category Block Lifecycle
1473
- * @param url - The URL to load the blocks from.
1474
+ * @param url - The URL of the blocks archive file.
1474
1475
  * @returns A promise that resolves with a list of handles representing the found blocks or an error.
1475
1476
  * @example
1476
1477
  * ```typescript
@@ -7260,7 +7261,7 @@ export declare class SceneAPI {
7260
7261
  * calls on this engines instance.
7261
7262
  *
7262
7263
  * @category Scene Loading
7263
- * @param url - The URL of the scene file.
7264
+ * @param url - The URL of the scene archive file.
7264
7265
  * @param overrideEditorConfig - Whether to override editor configuration with settings and data from the scene file. Defaults to false.
7265
7266
  * @returns scene A promise that resolves once the scene was loaded or rejects with an error otherwise.
7266
7267
  */