@cesdk/engine 1.62.0-nightly.20251010 → 1.62.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.
package/index.d.ts CHANGED
@@ -5547,7 +5547,7 @@ export declare interface CompleteAssetResult extends AssetResult {
5547
5547
  */
5548
5548
  export declare interface Configuration {
5549
5549
  baseURL: string;
5550
- license: string;
5550
+ license?: string;
5551
5551
  userId?: string;
5552
5552
  core: {
5553
5553
  baseURL: string;
@@ -6828,14 +6828,7 @@ export declare interface EnginePlugin {
6828
6828
  * @public
6829
6829
  */
6830
6830
  export declare type EnginePluginContext = {
6831
- engine: {
6832
- asset: AssetAPI;
6833
- block: BlockAPI;
6834
- scene: SceneAPI;
6835
- editor: EditorAPI;
6836
- event: EventAPI;
6837
- variable: VariableAPI;
6838
- };
6831
+ engine: CreativeEngine;
6839
6832
  };
6840
6833
 
6841
6834
  /**