@cesdk/node 1.62.0-nightly.20251009 → 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
@@ -187,9 +187,6 @@ export declare interface Asset {
187
187
  *
188
188
  * @categoryDescription Event Subscriptions
189
189
  * Subscribe to asset source changes and lifecycle events.
190
- *
191
- * @categoryDescription Experimental Features
192
- * Experimental middleware system for custom asset processing workflows.
193
190
  */
194
191
  export declare class AssetAPI {
195
192
  #private;
@@ -5520,7 +5517,7 @@ export declare interface CompleteAssetResult extends AssetResult {
5520
5517
  */
5521
5518
  export declare interface Configuration {
5522
5519
  baseURL: string;
5523
- license: string;
5520
+ license?: string;
5524
5521
  userId?: string;
5525
5522
  core: {
5526
5523
  baseURL: string;
@@ -6691,14 +6688,7 @@ export declare interface EnginePlugin {
6691
6688
  * @public
6692
6689
  */
6693
6690
  export declare type EnginePluginContext = {
6694
- engine: {
6695
- asset: AssetAPI;
6696
- block: BlockAPI;
6697
- scene: SceneAPI;
6698
- editor: EditorAPI;
6699
- event: EventAPI;
6700
- variable: VariableAPI;
6701
- };
6691
+ engine: CreativeEngine;
6702
6692
  };
6703
6693
 
6704
6694
  /**