@elyx-code/project-logic-tree 0.0.6532 → 0.0.6534
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/dist/index.d.ts +4 -2
- package/dist/index.js +164 -153
- package/dist/index.umd.cjs +16 -16
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -13172,10 +13172,11 @@ export declare interface IEditor extends IUndoableInterface, IValueResolutionCon
|
|
|
13172
13172
|
removeValueByOwnerId(entityId: EntityId): void;
|
|
13173
13173
|
removeValue(dynamicValue: IDynamicValue): void;
|
|
13174
13174
|
handleIncommingWebsocketMessage(message: ILiveMessageDTO): Promise<void>;
|
|
13175
|
-
handleNotificationChannelsMessage(message: ILiveMessageDTO<DTOAction.
|
|
13175
|
+
handleNotificationChannelsMessage(message: ILiveMessageDTO<DTOAction.SubscribeChannelsV1, string, {
|
|
13176
13176
|
channels: IChannelConnections[];
|
|
13177
13177
|
sessionId: string;
|
|
13178
13178
|
}>): void;
|
|
13179
|
+
handleReconnectingWebsocket(): void;
|
|
13179
13180
|
handlePersistChangeSetMessage(message: PersistChangeSetEntityActionRequestPayload): void;
|
|
13180
13181
|
getLogic(options?: {
|
|
13181
13182
|
mockLogic?: ProjectState;
|
|
@@ -13200,7 +13201,7 @@ export declare interface IEditor extends IUndoableInterface, IValueResolutionCon
|
|
|
13200
13201
|
initRegistry(): Promise<ExtensionsRegistry<any>>;
|
|
13201
13202
|
}
|
|
13202
13203
|
|
|
13203
|
-
export declare interface IEditorContext extends ExtensionContextBase<ExtensionContextType.Editor>, Omit<IEditor, 'onLogicLoadingComplete' | 'onLogicLoadingCompleteCallback' | 'onProjectHeadLoaded' | 'onProjectHeadLoadedCallback' | 'onProjectSetupError' | 'onProjectSetupErrorCallback' | 'onRenderedCallback' | 'handleIncommingWebsocketMessage' | 'handleNotificationChannelsMessage' | 'handlePersistChangeSetMessage' | 'getLogic' | 'injectLocalImplementationOfSearchExecution' | 'setup' | 'destroy' | 'requestModule' | 'socket' | 'events' | 'initRegistry' | 'extensionsRegistry' | 'on' | 'emit' | 'off' | 'contextType' | 'registerNonDefaultLocalImplementationsOfModules'> {
|
|
13204
|
+
export declare interface IEditorContext extends ExtensionContextBase<ExtensionContextType.Editor>, Omit<IEditor, 'onLogicLoadingComplete' | 'onLogicLoadingCompleteCallback' | 'onProjectHeadLoaded' | 'onProjectHeadLoadedCallback' | 'onProjectSetupError' | 'onProjectSetupErrorCallback' | 'onRenderedCallback' | 'handleIncommingWebsocketMessage' | 'handleNotificationChannelsMessage' | 'handlePersistChangeSetMessage' | 'handleReconnectingWebsocket' | 'getLogic' | 'injectLocalImplementationOfSearchExecution' | 'setup' | 'destroy' | 'requestModule' | 'socket' | 'events' | 'initRegistry' | 'extensionsRegistry' | 'on' | 'emit' | 'off' | 'contextType' | 'registerNonDefaultLocalImplementationsOfModules'> {
|
|
13204
13205
|
}
|
|
13205
13206
|
|
|
13206
13207
|
export declare interface IEntityActionRequestPayload<P extends {
|
|
@@ -18826,6 +18827,7 @@ export declare enum SharedEntityErrorCode {
|
|
|
18826
18827
|
InternalCallParentMissingDataType = "internal-call-parent-missing-data-type",
|
|
18827
18828
|
InternalCallParentDeclarationEntityInvalidType = "internal-call-parent-declaration-entity-invalid-type",
|
|
18828
18829
|
InternalCallDeclarationNotFoundInParentDatatypeEntity = "internal-call-declaration-not-found-in-parent-datatype-entity",
|
|
18830
|
+
InternalCallDeclarationNotFound = "internal-call-declaration-not-found",
|
|
18829
18831
|
InternalCallDeclarationIsNotFunctionDeclaration = "internal-call-declaration-is-not-function-declaration",
|
|
18830
18832
|
InternalCallDeclarationNotInParentDatatypeEntity = "internal-call-declaration-not-in-parent-datatype-entity",
|
|
18831
18833
|
GlobalVariableDeclarationCannotCatchError = "global-variable-declaration-cannot-catch-error",
|