@elyx-code/project-logic-tree 0.0.6898 → 0.0.6900
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.cjs +23 -23
- package/dist/index.d.ts +10 -4
- package/dist/index.js +121 -120
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9791,14 +9791,14 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9791
9791
|
lockedVersions: boolean;
|
|
9792
9792
|
type: ChangeSetChangeCaptureType;
|
|
9793
9793
|
autoclose: boolean;
|
|
9794
|
-
|
|
9794
|
+
actionName: string;
|
|
9795
9795
|
project: ProjectState;
|
|
9796
9796
|
events: Map<string, ChangeSetEvent>;
|
|
9797
9797
|
ignoreNonEditable: boolean;
|
|
9798
9798
|
ignoreNonDeletable: boolean;
|
|
9799
9799
|
logger: LoggerInstance;
|
|
9800
9800
|
constructor(project: ProjectState, author: string, timestamp: string, // ISO 8601 format
|
|
9801
|
-
self: UserManagedEntityState | null, autoclose?: boolean,
|
|
9801
|
+
self: UserManagedEntityState | null, autoclose?: boolean, actionName?: string);
|
|
9802
9802
|
get index(): number | null;
|
|
9803
9803
|
get isEmpty(): boolean;
|
|
9804
9804
|
get isValid(): boolean;
|
|
@@ -11986,7 +11986,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11986
11986
|
closePersistChangeSetsSequentially(): Promise<void>;
|
|
11987
11987
|
persistChangeSetSequentially(changeSet: ChangeSet): Promise<void>;
|
|
11988
11988
|
toLatestChangeSet(author: string, timestamp: string, // ISO 8601 format
|
|
11989
|
-
self: UserManagedEntityState | null, autoclose?: boolean,
|
|
11989
|
+
self: UserManagedEntityState | null, autoclose?: boolean, actionName?: string): ChangeSet;
|
|
11990
11990
|
addChangeSet(changeSet: ChangeSet): ChangeSet;
|
|
11991
11991
|
discardChangeSet(changeSet: ChangeSet): ProjectState;
|
|
11992
11992
|
subscribeDependents(dependencies: {
|
|
@@ -21598,6 +21598,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
21598
21598
|
userAuthor: string;
|
|
21599
21599
|
versionId: string;
|
|
21600
21600
|
timestamp: string;
|
|
21601
|
+
actionName: string | null;
|
|
21601
21602
|
}
|
|
21602
21603
|
|
|
21603
21604
|
export declare interface IBranchMerge {
|
|
@@ -21728,6 +21729,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
21728
21729
|
removed: TGeneric[];
|
|
21729
21730
|
affected: TGeneric[];
|
|
21730
21731
|
self: TSelf;
|
|
21732
|
+
actionName?: StateMutationAction | string;
|
|
21731
21733
|
}
|
|
21732
21734
|
|
|
21733
21735
|
export declare interface IChangeSetEvent {
|
|
@@ -21761,6 +21763,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
21761
21763
|
updated: Record<EntityId, UserManagedElementShallowTransfer>;
|
|
21762
21764
|
removed: Record<EntityId, UserManagedElementShallowTransfer>;
|
|
21763
21765
|
affected: EntityId[];
|
|
21766
|
+
actionName?: StateMutationAction | string;
|
|
21764
21767
|
}
|
|
21765
21768
|
|
|
21766
21769
|
export declare interface IChannelConnections {
|
|
@@ -22263,6 +22266,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22263
22266
|
EXTERNAL_INTEGRATIONS_LOGOS_URL: string;
|
|
22264
22267
|
HTTP_CLIENT_URL: string;
|
|
22265
22268
|
EDITOR_RUNTIME_IP_ADDRESS: string;
|
|
22269
|
+
GOOGLE_PICKER_APP_ID: string;
|
|
22270
|
+
GOOGLE_PICKER_API_KEY: string;
|
|
22266
22271
|
}
|
|
22267
22272
|
|
|
22268
22273
|
export declare interface IExecutionCallbackContext {
|
|
@@ -23758,6 +23763,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
23758
23763
|
affected: EntityId[];
|
|
23759
23764
|
self: TSelf;
|
|
23760
23765
|
seenEntities: EntityId[];
|
|
23766
|
+
actionName?: StateMutationAction | string;
|
|
23761
23767
|
}
|
|
23762
23768
|
|
|
23763
23769
|
export declare interface IRegisteredExtension<T = any> extends IExecutionClient {
|
|
@@ -30875,7 +30881,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
30875
30881
|
persistChangeSetSequentially(changeSet: ChangeSet): Promise<void>;
|
|
30876
30882
|
persistChangeSetInParallel(changeSet: ChangeSet): Promise<void>;
|
|
30877
30883
|
toLatestChangeSet(author: string, timestamp: string, // ISO 8601 format
|
|
30878
|
-
self: UserManagedEntityState | null, autoclose?: boolean,
|
|
30884
|
+
self: UserManagedEntityState | null, autoclose?: boolean, actionName?: string): ChangeSet;
|
|
30879
30885
|
addChangeSet(changeSet: ChangeSet): ChangeSet;
|
|
30880
30886
|
discardChangeSet(changeSet: ChangeSet): ProjectState;
|
|
30881
30887
|
validateGeneratedUpdate(data: Partial<IProjectGenerationTarget>): {
|