@cesdk/node 1.63.0-nightly.20251017 → 1.63.0-nightly.20251019
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-AKIGLLJR.wasm → cesdk-v1.63.0-nightly.20251019-TL27OROC.wasm} +0 -0
- 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.20251019-44YCFRT6.data} +0 -0
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -6610,6 +6610,18 @@ export declare class EditorAPI {
|
|
|
6610
6610
|
* @returns The URLs and sizes of transient resources.
|
|
6611
6611
|
*/
|
|
6612
6612
|
findAllTransientResources(): TransientResource[];
|
|
6613
|
+
/**
|
|
6614
|
+
* Get all media URIs referenced by blocks in the scene.
|
|
6615
|
+
*
|
|
6616
|
+
* Returns URIs from image fills, video fills, and audio blocks, including their source sets.
|
|
6617
|
+
* Only returns valid media URIs (http://, https://, file://), excluding transient resources
|
|
6618
|
+
* like buffer URIs. Useful for determining which media files are referenced by a scene
|
|
6619
|
+
* (e.g., for cleanup operations, CDN management, or file system tracking).
|
|
6620
|
+
*
|
|
6621
|
+
* @category Resource Management
|
|
6622
|
+
* @returns The URLs of all media resources referenced in the scene, deduplicated.
|
|
6623
|
+
*/
|
|
6624
|
+
findAllMediaURIs(): string[];
|
|
6613
6625
|
/**
|
|
6614
6626
|
* Provides the data of a resource at the given URL.
|
|
6615
6627
|
*
|
|
@@ -7989,6 +8001,14 @@ export declare interface Settings {
|
|
|
7989
8001
|
fallbackFontUri: string;
|
|
7990
8002
|
/** The supported MIME types for file uploads. */
|
|
7991
8003
|
'upload/supportedMimeTypes': string;
|
|
8004
|
+
/**
|
|
8005
|
+
* Web-only: Credentials mode for cross-origin fetch requests.
|
|
8006
|
+
* - "omit": Never send cookies
|
|
8007
|
+
* - "same-origin": Send cookies only for same-origin requests (default)
|
|
8008
|
+
* - "include": Always send cookies, even for cross-origin requests
|
|
8009
|
+
* Note: Only affects web platform. Ignored on native platforms.
|
|
8010
|
+
*/
|
|
8011
|
+
'web/fetchCredentials': 'omit' | 'same-origin' | 'include';
|
|
7992
8012
|
/** Scale-down limit for blocks in screen pixels when scaling with gizmos or touch gestures. */
|
|
7993
8013
|
'controlGizmo/blockScaleDownLimit': number;
|
|
7994
8014
|
/** The threshold distance in pixels for position snapping. */
|