@cesdk/node 1.73.0-nightly.20260401 → 1.73.0-rc.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.
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -1007,7 +1007,11 @@ export declare interface AssetQueryData {
|
|
|
1007
1007
|
groups?: AssetGroups;
|
|
1008
1008
|
/** Filter out assets with this groups */
|
|
1009
1009
|
excludeGroups?: AssetGroups;
|
|
1010
|
-
/**
|
|
1010
|
+
/**
|
|
1011
|
+
* Choose the locale of the labels and tags for localized search and filtering.
|
|
1012
|
+
* For local asset sources, labels and tags are resolved using a fallback chain:
|
|
1013
|
+
* requested locale → "en" → first available entry → empty default.
|
|
1014
|
+
*/
|
|
1011
1015
|
locale?: Locale;
|
|
1012
1016
|
/**
|
|
1013
1017
|
* The number of results queried. How many assets shall be returned regardless
|
|
@@ -7688,10 +7692,11 @@ export declare type HorizontalBlockAlignment = TextHorizontalAlignment;
|
|
|
7688
7692
|
* - 'image/jpeg': JPEG image format.
|
|
7689
7693
|
* - 'image/webp': WebP image format.
|
|
7690
7694
|
* - 'image/x-tga': TGA image format.
|
|
7695
|
+
* - 'image/svg+xml': SVG image format.
|
|
7691
7696
|
*
|
|
7692
7697
|
* @public
|
|
7693
7698
|
*/
|
|
7694
|
-
export declare type ImageMimeType = Extract<MimeType_2, 'image/png' | 'image/jpeg' | 'image/webp' | 'image/x-tga'>;
|
|
7699
|
+
export declare type ImageMimeType = Extract<MimeType_2, 'image/png' | 'image/jpeg' | 'image/webp' | 'image/x-tga' | 'image/svg+xml'>;
|
|
7695
7700
|
|
|
7696
7701
|
/** @public */
|
|
7697
7702
|
export declare type IntPropertyName = 'effect/lut_filter/horizontalTileCount' | 'effect/lut_filter/verticalTileCount' | 'effect/mirror/side' | 'effect/pixelize/horizontalPixelSize' | 'effect/pixelize/verticalPixelSize' | 'shape/polygon/sides' | 'shape/star/points' | (string & {});
|
|
@@ -7797,6 +7802,7 @@ export declare const LogLevel: {
|
|
|
7797
7802
|
* - 'image/jpeg': JPEG image format.
|
|
7798
7803
|
* - 'image/webp': WebP image format.
|
|
7799
7804
|
* - 'image/x-tga': TGA image format.
|
|
7805
|
+
* - 'image/svg+xml': SVG image format.
|
|
7800
7806
|
* - 'audio/wav': WAV audio format.
|
|
7801
7807
|
* - 'audio/mp4': MP4 audio format.
|
|
7802
7808
|
* - 'video/mp4': MP4 video format.
|
|
@@ -7813,6 +7819,7 @@ declare const MimeType_2: {
|
|
|
7813
7819
|
readonly Jpeg: "image/jpeg";
|
|
7814
7820
|
readonly WebP: "image/webp";
|
|
7815
7821
|
readonly Tga: "image/x-tga";
|
|
7822
|
+
readonly Svg: "image/svg+xml";
|
|
7816
7823
|
readonly Wav: "audio/wav";
|
|
7817
7824
|
readonly Mp4Audio: "audio/mp4";
|
|
7818
7825
|
readonly Mp4: "video/mp4";
|
|
@@ -7831,6 +7838,7 @@ declare const MimeType_2: {
|
|
|
7831
7838
|
* - 'image/jpeg': JPEG image format.
|
|
7832
7839
|
* - 'image/webp': WebP image format.
|
|
7833
7840
|
* - 'image/x-tga': TGA image format.
|
|
7841
|
+
* - 'image/svg+xml': SVG image format.
|
|
7834
7842
|
* - 'audio/wav': WAV audio format.
|
|
7835
7843
|
* - 'audio/mp4': MP4 audio format.
|
|
7836
7844
|
* - 'video/mp4': MP4 video format.
|