@cesdk/engine 1.63.0-nightly.20251017 → 1.63.0-nightly.20251018
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/assets/core/{cesdk-v1.63.0-nightly.20251017-UA57WSOA.wasm → cesdk-v1.63.0-nightly.20251018-R6G6JPYJ.wasm} +0 -0
- package/assets/core/{worker-host-v1.63.0-nightly.20251017.js → worker-host-v1.63.0-nightly.20251018.js} +1 -1
- package/index.d.ts +20 -0
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.63.0-nightly.20251017-44YCFRT6.data → cesdk-v1.63.0-nightly.20251018-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -6877,6 +6877,18 @@ export declare class EditorAPI {
|
|
|
6877
6877
|
* @returns The URLs and sizes of transient resources.
|
|
6878
6878
|
*/
|
|
6879
6879
|
findAllTransientResources(): TransientResource[];
|
|
6880
|
+
/**
|
|
6881
|
+
* Get all media URIs referenced by blocks in the scene.
|
|
6882
|
+
*
|
|
6883
|
+
* Returns URIs from image fills, video fills, and audio blocks, including their source sets.
|
|
6884
|
+
* Only returns valid media URIs (http://, https://, file://), excluding transient resources
|
|
6885
|
+
* like buffer URIs. Useful for determining which media files are referenced by a scene
|
|
6886
|
+
* (e.g., for cleanup operations, CDN management, or file system tracking).
|
|
6887
|
+
*
|
|
6888
|
+
* @category Resource Management
|
|
6889
|
+
* @returns The URLs of all media resources referenced in the scene, deduplicated.
|
|
6890
|
+
*/
|
|
6891
|
+
findAllMediaURIs(): string[];
|
|
6880
6892
|
/**
|
|
6881
6893
|
* Provides the data of a resource at the given URL.
|
|
6882
6894
|
*
|
|
@@ -8513,6 +8525,14 @@ export declare interface Settings {
|
|
|
8513
8525
|
fallbackFontUri: string;
|
|
8514
8526
|
/** The supported MIME types for file uploads. */
|
|
8515
8527
|
'upload/supportedMimeTypes': string;
|
|
8528
|
+
/**
|
|
8529
|
+
* Web-only: Credentials mode for cross-origin fetch requests.
|
|
8530
|
+
* - "omit": Never send cookies
|
|
8531
|
+
* - "same-origin": Send cookies only for same-origin requests (default)
|
|
8532
|
+
* - "include": Always send cookies, even for cross-origin requests
|
|
8533
|
+
* Note: Only affects web platform. Ignored on native platforms.
|
|
8534
|
+
*/
|
|
8535
|
+
'web/fetchCredentials': 'omit' | 'same-origin' | 'include';
|
|
8516
8536
|
/** Scale-down limit for blocks in screen pixels when scaling with gizmos or touch gestures. */
|
|
8517
8537
|
'controlGizmo/blockScaleDownLimit': number;
|
|
8518
8538
|
/** The threshold distance in pixels for position snapping. */
|