@elyx-code/project-logic-tree 0.0.6647 → 0.0.6649
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 +13 -5
- package/dist/index.js +4412 -4402
- package/dist/index.umd.cjs +96 -96
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -668,6 +668,14 @@ export declare enum BaseEntityNames {
|
|
|
668
668
|
JIRA_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_JIRA_AUTH"
|
|
669
669
|
}
|
|
670
670
|
|
|
671
|
+
export declare class BaseExtensionState implements IExtensionState {
|
|
672
|
+
private state;
|
|
673
|
+
constructor(initialState?: Record<string, any>);
|
|
674
|
+
get(key: string): any | undefined;
|
|
675
|
+
set(key: string, value: any): void;
|
|
676
|
+
delete(key: string): void;
|
|
677
|
+
}
|
|
678
|
+
|
|
671
679
|
export declare class BaseRegisteredExtension<T = any> implements IRegisteredExtension<T> {
|
|
672
680
|
readonly extensionsRegistry: ExtensionsRegistry;
|
|
673
681
|
manifest: ExtensionManifest;
|
|
@@ -12674,13 +12682,9 @@ export declare class ExtensionsRegistry<TEditorContext extends Omit<IEditorConte
|
|
|
12674
12682
|
setValueTypePreference(valueOwnerId: EntityId, valueTypePreference: DynamicValueTypes.DefaultValue | DynamicValueTypes.Testing | null): void;
|
|
12675
12683
|
}
|
|
12676
12684
|
|
|
12677
|
-
export declare class ExtensionState implements IExtensionState {
|
|
12685
|
+
export declare class ExtensionState extends BaseExtensionState implements IExtensionState {
|
|
12678
12686
|
parentExtension: IRegisteredExtension;
|
|
12679
|
-
private state;
|
|
12680
12687
|
constructor(parentExtension: IRegisteredExtension, initialState?: Record<string, any>);
|
|
12681
|
-
get(key: string): any | undefined;
|
|
12682
|
-
set(key: string, value: any): void;
|
|
12683
|
-
delete(key: string): void;
|
|
12684
12688
|
}
|
|
12685
12689
|
|
|
12686
12690
|
export declare enum ExtentionPriority {
|
|
@@ -22287,6 +22291,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
22287
22291
|
deletedProperties: PropertyState[];
|
|
22288
22292
|
lastPublishedEntityVersion: DefinitionEntityState | null;
|
|
22289
22293
|
updatedEntityVersion: DefinitionEntityState;
|
|
22294
|
+
nameChange?: {
|
|
22295
|
+
from: string;
|
|
22296
|
+
to: string;
|
|
22297
|
+
};
|
|
22290
22298
|
propChanges: Map<EntityId, {
|
|
22291
22299
|
castableDataTypeEntity?: {
|
|
22292
22300
|
fromId: EntityId;
|