@elyx-code/project-logic-tree 0.0.6772 → 0.0.6773

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -11552,7 +11552,7 @@ export declare class DefaultEditorContext extends ExtensionContextBase<Extension
11552
11552
  requestActiveDynamicValue(valueOwner: EntityWithValueState, onlyDefault?: boolean): IDynamicValue | null;
11553
11553
  getValueTypePreference(valueOwnerId: EntityId): DynamicValueTypes.DefaultValue | DynamicValueTypes.Testing | null;
11554
11554
  setValueTypePreference(valueOwnerId: EntityId, valueTypePreference: DynamicValueTypes.DefaultValue | DynamicValueTypes.Testing | null): void;
11555
- implementFeature(featureId: string): Promise<void>;
11555
+ implementFeature(featureId: string): Promise<PersistChangeSetEntityActionRequestPayload>;
11556
11556
  }
11557
11557
 
11558
11558
  export declare type DefaultExtensionContext = DefaultEditorContext | DefaultProjectLogicContext | DefaultPublicationRunContext;
@@ -21220,7 +21220,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
21220
21220
  loadGivenPublication(publicationId: string): Promise<IPublication>;
21221
21221
  requestExtension<T = any>(moduleId: string): IRegisteredExtension<T>;
21222
21222
  initRegistry(): Promise<ExtensionsRegistry<any>>;
21223
- implementFeature(featureId: string): Promise<void>;
21223
+ implementFeature(featureId: string): Promise<PersistChangeSetEntityActionRequestPayload>;
21224
21224
  }
21225
21225
 
21226
21226
  export declare interface IEditorContext extends ExtensionContextBase<ExtensionContextType.Editor>, Omit<IEditor, 'onLogicLoadingComplete' | 'onLogicLoadingCompleteCallback' | 'onProjectHeadLoaded' | 'onProjectHeadLoadedCallback' | 'onProjectSetupError' | 'onProjectSetupErrorCallback' | 'onRenderedCallback' | 'handleIncommingWebsocketMessage' | 'handleNotificationChannelsMessage' | 'handlePersistChangeSetMessage' | 'handleReconnectingWebsocket' | 'handleChunkedChangeSetMessage' | 'getLogic' | 'injectLocalImplementationOfSearchExecution' | 'setup' | 'destroy' | 'requestExtension' | 'socket' | 'events' | 'initRegistry' | 'extensionsRegistry' | 'on' | 'emit' | 'off' | 'contextType' | 'registerNonDefaultLocalImplementationsOfModules'> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6772",
3
+ "version": "0.0.6773",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",