@cesdk/engine 1.62.0-rc.2 → 1.62.0
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.62.0-rc.2-G5XFDOBE.wasm → cesdk-v1.62.0-6GBJYZBC.wasm} +0 -0
- package/assets/core/{worker-host-v1.62.0-rc.2.js → worker-host-v1.62.0.js} +1 -1
- package/index.d.ts +8 -0
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.62.0-rc.2-44YCFRT6.data → cesdk-v1.62.0-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -8249,6 +8249,14 @@ export declare interface Settings {
|
|
|
8249
8249
|
fallbackFontUri: string;
|
|
8250
8250
|
/** The supported MIME types for file uploads. */
|
|
8251
8251
|
'upload/supportedMimeTypes': string;
|
|
8252
|
+
/**
|
|
8253
|
+
* Web-only: Credentials mode for cross-origin fetch requests.
|
|
8254
|
+
* - "omit": Never send cookies
|
|
8255
|
+
* - "same-origin": Send cookies only for same-origin requests (default)
|
|
8256
|
+
* - "include": Always send cookies, even for cross-origin requests
|
|
8257
|
+
* Note: Only affects web platform. Ignored on native platforms.
|
|
8258
|
+
*/
|
|
8259
|
+
'web/fetchCredentials': 'omit' | 'same-origin' | 'include';
|
|
8252
8260
|
/** Scale-down limit for blocks in screen pixels when scaling with gizmos or touch gestures. */
|
|
8253
8261
|
'controlGizmo/blockScaleDownLimit': number;
|
|
8254
8262
|
/** The threshold distance in pixels for position snapping. */
|