@cesdk/node 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/index.d.ts CHANGED
@@ -7989,6 +7989,14 @@ export declare interface Settings {
7989
7989
  fallbackFontUri: string;
7990
7990
  /** The supported MIME types for file uploads. */
7991
7991
  'upload/supportedMimeTypes': string;
7992
+ /**
7993
+ * Web-only: Credentials mode for cross-origin fetch requests.
7994
+ * - "omit": Never send cookies
7995
+ * - "same-origin": Send cookies only for same-origin requests (default)
7996
+ * - "include": Always send cookies, even for cross-origin requests
7997
+ * Note: Only affects web platform. Ignored on native platforms.
7998
+ */
7999
+ 'web/fetchCredentials': 'omit' | 'same-origin' | 'include';
7992
8000
  /** Scale-down limit for blocks in screen pixels when scaling with gizmos or touch gestures. */
7993
8001
  'controlGizmo/blockScaleDownLimit': number;
7994
8002
  /** The threshold distance in pixels for position snapping. */