@elyx-code/project-logic-tree 0.0.6861 → 0.0.6864
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 +311 -315
- package/dist/index.d.ts +106 -54
- package/dist/index.js +44577 -43597
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -137,7 +137,9 @@ export declare class ActionDescriptorState extends UserManagedVersionedState imp
|
|
|
137
137
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
138
138
|
captureVersion(): ActionDescriptorState;
|
|
139
139
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<ActionDescriptorState>;
|
|
140
|
-
restoreVersion(versionId: EntityVersion
|
|
140
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
141
|
+
skipIfSameVersion?: boolean;
|
|
142
|
+
}): Promise<IChangeSet<ActionDescriptorState>>;
|
|
141
143
|
updateWithShallowTransfer(transfer: IActionDescriptorShallowTransfer, changeSet?: ChangeSet | null): ActionDescriptorState;
|
|
142
144
|
updateWithGenerationTarget(transfer: Partial<IActionDescriptorGenerationTarget>, changeSet?: ChangeSet | null): ActionDescriptorState;
|
|
143
145
|
hydrateAncestors(): IChangeSet<ActionDescriptorState>;
|
|
@@ -599,7 +601,9 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
|
|
|
599
601
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
600
602
|
captureVersion(): ArgumentDeclarationState;
|
|
601
603
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<ArgumentDeclarationState>;
|
|
602
|
-
restoreVersion(versionId: EntityVersion
|
|
604
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
605
|
+
skipIfSameVersion?: boolean;
|
|
606
|
+
}): Promise<IChangeSet<ArgumentDeclarationState>>;
|
|
603
607
|
updateWithShallowTransfer(transfer: IArgumentDeclarationShallowTransfer, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
604
608
|
updateWithGenerationTarget(transfer: Partial<IArgumentDeclarationGenerationTarget>, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
605
609
|
hydrateAncestors(): IChangeSet<ArgumentDeclarationState>;
|
|
@@ -842,7 +846,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
842
846
|
entity: UserManagedEntityState;
|
|
843
847
|
field: string;
|
|
844
848
|
}>;
|
|
845
|
-
knownVersions: Map<string,
|
|
849
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
846
850
|
activeVersion: boolean;
|
|
847
851
|
initialized: boolean;
|
|
848
852
|
startedInitialization: boolean;
|
|
@@ -901,7 +905,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
901
905
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
902
906
|
captureVersion(): BreakStatementState;
|
|
903
907
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<BreakStatementState>;
|
|
904
|
-
restoreVersion(versionId: EntityVersion
|
|
908
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
909
|
+
skipIfSameVersion?: boolean;
|
|
910
|
+
}): Promise<IChangeSet<BreakStatementState>>;
|
|
905
911
|
updateWithShallowTransfer(transfer: IBreakStatementShallowTransfer, changeSet?: ChangeSet | null): BreakStatementState;
|
|
906
912
|
updateWithGenerationTarget(transfer: Partial<IBreakStatementGenerationTarget>, changeSet?: ChangeSet | null): BreakStatementState;
|
|
907
913
|
hydrateAncestors(): IChangeSet<BreakStatementState>;
|
|
@@ -9529,7 +9535,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9529
9535
|
CannotReSetValueOfConstantVariable = "cannot-reset-value-of-constant-variable",
|
|
9530
9536
|
CannotConnectToOwnNode = "cannot-connect-to-own-node",
|
|
9531
9537
|
VariableDeclarationCannotBeMovedToLowerScopeBecauseInstancesUsage = "variable-declaration-cannot-be-moved-to-lower-scope-because-instances-usage",
|
|
9532
|
-
|
|
9538
|
+
CannotChangeScopeBecauseItIsAlreadyCalledByOtherEntitiesInDifferentScope = "cannot-change-scope-because-it-is-already-called-by-other-entities-in-different-scope",
|
|
9533
9539
|
CannotChangeScopeBecauseItCallsOtherEntities = "cannot-change-scope-because-it-calls-other-entities",
|
|
9534
9540
|
CalledByErrorMustBePassThroughCallable = "called-by-error-must-be-pass-through-callable",
|
|
9535
9541
|
CalledByErrorCannotBeConnectedToEntitiesCalledByOwnSuccessBranch = "called-by-error-cannot-be-connected-to-entities-called-by-own-success-branch",
|
|
@@ -10093,7 +10099,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10093
10099
|
entity: UserManagedEntityState;
|
|
10094
10100
|
field: string;
|
|
10095
10101
|
}>;
|
|
10096
|
-
knownVersions: Map<string,
|
|
10102
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
10097
10103
|
activeVersion: boolean;
|
|
10098
10104
|
initialized: boolean;
|
|
10099
10105
|
startedInitialization: boolean;
|
|
@@ -10149,7 +10155,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10149
10155
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
10150
10156
|
captureVersion(): ConditionState;
|
|
10151
10157
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<ConditionState>;
|
|
10152
|
-
restoreVersion(versionId: EntityVersion
|
|
10158
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
10159
|
+
skipIfSameVersion?: boolean;
|
|
10160
|
+
}): Promise<IChangeSet<ConditionState>>;
|
|
10153
10161
|
updateWithShallowTransfer(transfer: IConditionShallowTransfer, changeSet?: ChangeSet | null): ConditionState;
|
|
10154
10162
|
updateWithGenerationTarget(transfer: IConditionGenerationTarget, changeSet?: ChangeSet | null): ConditionState;
|
|
10155
10163
|
hydrateAncestors(): IChangeSet<ConditionState>;
|
|
@@ -10227,7 +10235,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10227
10235
|
}
|
|
10228
10236
|
export { conditionValidation }
|
|
10229
10237
|
|
|
10230
|
-
export declare const CONNECTABLE_TYPES: EntityType[]
|
|
10238
|
+
export declare const CONNECTABLE_TYPES: EntityType[];
|
|
10239
|
+
|
|
10240
|
+
export declare function connectEntitiesBasedOnConenctionType(sourceEntity: UserManagedEntityState, targetEntity: UserManagedEntityState, connectionType: ConnectionNodeType, changeSet: ChangeSet): void;
|
|
10231
10241
|
|
|
10232
10242
|
export declare enum ConnectionNodeType {
|
|
10233
10243
|
PropertyOut = "property-out",
|
|
@@ -10273,7 +10283,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10273
10283
|
entity: UserManagedEntityState;
|
|
10274
10284
|
field: string;
|
|
10275
10285
|
}>;
|
|
10276
|
-
knownVersions: Map<string,
|
|
10286
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
10277
10287
|
activeVersion: boolean;
|
|
10278
10288
|
initialized: boolean;
|
|
10279
10289
|
startedInitialization: boolean;
|
|
@@ -10332,7 +10342,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10332
10342
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
10333
10343
|
captureVersion(): ContinueStatementState;
|
|
10334
10344
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<ContinueStatementState>;
|
|
10335
|
-
restoreVersion(versionId: EntityVersion
|
|
10345
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
10346
|
+
skipIfSameVersion?: boolean;
|
|
10347
|
+
}): Promise<IChangeSet<ContinueStatementState>>;
|
|
10336
10348
|
updateWithShallowTransfer(transfer: IContinueStatementShallowTransfer, changeSet?: ChangeSet | null): ContinueStatementState;
|
|
10337
10349
|
updateWithGenerationTarget(transfer: Partial<IContinueStatementGenerationTarget>, changeSet?: ChangeSet | null): ContinueStatementState;
|
|
10338
10350
|
hydrateAncestors(): IChangeSet<ContinueStatementState>;
|
|
@@ -10913,7 +10925,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10913
10925
|
entity: UserManagedEntityState;
|
|
10914
10926
|
field: string;
|
|
10915
10927
|
}>;
|
|
10916
|
-
knownVersions: Map<string,
|
|
10928
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
10917
10929
|
activeVersion: boolean;
|
|
10918
10930
|
initialized: boolean;
|
|
10919
10931
|
startedInitialization: boolean;
|
|
@@ -10971,7 +10983,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10971
10983
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
10972
10984
|
captureVersion(): DataTypeState;
|
|
10973
10985
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<DataTypeState>;
|
|
10974
|
-
restoreVersion(versionId: EntityVersion
|
|
10986
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
10987
|
+
skipIfSameVersion?: boolean;
|
|
10988
|
+
}): Promise<IChangeSet<DataTypeState>>;
|
|
10975
10989
|
updateWithShallowTransfer(transfer: IDataTypeShallowTransfer, changeSet?: ChangeSet | null): DataTypeState;
|
|
10976
10990
|
updateWithGenerationTarget(transfer: Partial<IDataTypeGenerationTarget>, changeSet?: ChangeSet | null): DataTypeState;
|
|
10977
10991
|
hydrateAncestors(): IChangeSet<DataTypeState>;
|
|
@@ -11866,7 +11880,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11866
11880
|
entity: UserManagedEntityState;
|
|
11867
11881
|
field: string;
|
|
11868
11882
|
}>;
|
|
11869
|
-
knownVersions: Map<string,
|
|
11883
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
11870
11884
|
activeVersion: boolean;
|
|
11871
11885
|
initialized: boolean;
|
|
11872
11886
|
startedInitialization: boolean;
|
|
@@ -11939,7 +11953,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11939
11953
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
11940
11954
|
captureVersion(): DefinitionEntityState;
|
|
11941
11955
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<DefinitionEntityState>;
|
|
11942
|
-
restoreVersion(versionId: EntityVersion
|
|
11956
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
11957
|
+
skipIfSameVersion?: boolean;
|
|
11958
|
+
}): Promise<IChangeSet<DefinitionEntityState>>;
|
|
11943
11959
|
updateWithShallowTransfer(transfer: IDefinitionEntityShallowTransfer, changeSet?: ChangeSet | null): DefinitionEntityState;
|
|
11944
11960
|
updateWithGenerationTarget(transfer: Partial<IDefinitionEntityGenerationTarget>, changeSet?: ChangeSet | null): DefinitionEntityState;
|
|
11945
11961
|
hydrateAncestors(): IChangeSet<DefinitionEntityState>;
|
|
@@ -14757,7 +14773,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14757
14773
|
entity: UserManagedEntityState;
|
|
14758
14774
|
field: string;
|
|
14759
14775
|
}>;
|
|
14760
|
-
knownVersions: Map<string,
|
|
14776
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
14761
14777
|
activeVersion: boolean;
|
|
14762
14778
|
initialized: boolean;
|
|
14763
14779
|
startedInitialization: boolean;
|
|
@@ -14813,7 +14829,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14813
14829
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
14814
14830
|
captureVersion(): FunctionCallState;
|
|
14815
14831
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<FunctionCallState>;
|
|
14816
|
-
restoreVersion(versionId: EntityVersion
|
|
14832
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
14833
|
+
skipIfSameVersion?: boolean;
|
|
14834
|
+
}): Promise<IChangeSet<FunctionCallState>>;
|
|
14817
14835
|
updateWithShallowTransfer(transfer: IFunctionCallShallowTransfer, changeSet?: ChangeSet | null): FunctionCallState;
|
|
14818
14836
|
updateWithGenerationTarget(transfer: Partial<IFunctionCallGenerationTarget>, changeSet?: ChangeSet | null): FunctionCallState;
|
|
14819
14837
|
hydrateAncestors(): IChangeSet<FunctionCallState>;
|
|
@@ -14927,7 +14945,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14927
14945
|
entity: UserManagedEntityState;
|
|
14928
14946
|
field: string;
|
|
14929
14947
|
}>;
|
|
14930
|
-
knownVersions: Map<string,
|
|
14948
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
14931
14949
|
activeVersion: boolean;
|
|
14932
14950
|
initialized: boolean;
|
|
14933
14951
|
startedInitialization: boolean;
|
|
@@ -14986,7 +15004,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14986
15004
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
14987
15005
|
captureVersion(): FunctionDeclarationState;
|
|
14988
15006
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<FunctionDeclarationState>;
|
|
14989
|
-
restoreVersion(versionId: EntityVersion
|
|
15007
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
15008
|
+
skipIfSameVersion?: boolean;
|
|
15009
|
+
}): Promise<IChangeSet<FunctionDeclarationState>>;
|
|
14990
15010
|
updateWithShallowTransfer(transfer: IFunctionDeclarationShallowTransfer, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
14991
15011
|
updateWithGenerationTarget(transfer: Partial<IFunctionDeclarationGenerationTarget>, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
14992
15012
|
hydrateAncestors(): IChangeSet<FunctionDeclarationState>;
|
|
@@ -20014,7 +20034,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
20014
20034
|
entity: UserManagedEntityState;
|
|
20015
20035
|
field: string;
|
|
20016
20036
|
}>;
|
|
20017
|
-
knownVersions: Map<string,
|
|
20037
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
20018
20038
|
activeVersion: boolean;
|
|
20019
20039
|
initialized: boolean;
|
|
20020
20040
|
startedInitialization: boolean;
|
|
@@ -20071,7 +20091,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
20071
20091
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
20072
20092
|
captureVersion(): GlobalEventState;
|
|
20073
20093
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<GlobalEventState>;
|
|
20074
|
-
restoreVersion(versionId: EntityVersion
|
|
20094
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
20095
|
+
skipIfSameVersion?: boolean;
|
|
20096
|
+
}): Promise<IChangeSet<GlobalEventState>>;
|
|
20075
20097
|
updateWithShallowTransfer(transfer: IGlobalEventShallowTransfer, changeSet?: ChangeSet | null): GlobalEventState;
|
|
20076
20098
|
updateWithGenerationTarget(transfer: Partial<IGlobalEventGenerationTarget>, changeSet?: ChangeSet | null): GlobalEventState;
|
|
20077
20099
|
hydrateAncestors(): IChangeSet<GlobalEventState>;
|
|
@@ -22085,7 +22107,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22085
22107
|
fixable: boolean;
|
|
22086
22108
|
requiresCallConnectionTo: CallableEntityState | null;
|
|
22087
22109
|
requiresCallConnectionToFrom: CallerEntityState | null;
|
|
22088
|
-
nonAutofixableReasons: (CanvasEntityConnectionDisabledReason.VariableDeclarationCannotBeMovedToLowerScopeBecauseInstancesUsage | CanvasEntityConnectionDisabledReason.CannotChangeScopeBecauseItCallsOtherEntities | CanvasEntityConnectionDisabledReason.
|
|
22110
|
+
nonAutofixableReasons: (CanvasEntityConnectionDisabledReason.VariableDeclarationCannotBeMovedToLowerScopeBecauseInstancesUsage | CanvasEntityConnectionDisabledReason.CannotChangeScopeBecauseItCallsOtherEntities | CanvasEntityConnectionDisabledReason.CannotChangeScopeBecauseItIsAlreadyCalledByOtherEntitiesInDifferentScope)[];
|
|
22089
22111
|
}
|
|
22090
22112
|
|
|
22091
22113
|
export declare interface IIncompatibleParallelInCommonParentScope extends IScopeCompatibility {
|
|
@@ -22461,7 +22483,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22461
22483
|
entity: UserManagedEntityState;
|
|
22462
22484
|
field: string;
|
|
22463
22485
|
}>;
|
|
22464
|
-
knownVersions: Map<string,
|
|
22486
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
22465
22487
|
activeVersion: boolean;
|
|
22466
22488
|
initialized: boolean;
|
|
22467
22489
|
startedInitialization: boolean;
|
|
@@ -22520,7 +22542,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22520
22542
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
22521
22543
|
captureVersion(): InputMapState;
|
|
22522
22544
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<InputMapState>;
|
|
22523
|
-
restoreVersion(versionId: EntityVersion
|
|
22545
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
22546
|
+
skipIfSameVersion?: boolean;
|
|
22547
|
+
}): Promise<IChangeSet<InputMapState>>;
|
|
22524
22548
|
updateWithShallowTransfer(transfer: IInputMapShallowTransfer, changeSet?: ChangeSet | null): InputMapState;
|
|
22525
22549
|
updateWithGenerationTarget(transfer: Partial<IInputMapGenerationTarget>, changeSet?: ChangeSet | null): InputMapState;
|
|
22526
22550
|
hydrateAncestors(): IChangeSet<InputMapState>;
|
|
@@ -22608,7 +22632,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22608
22632
|
entity: UserManagedEntityState;
|
|
22609
22633
|
field: string;
|
|
22610
22634
|
}>;
|
|
22611
|
-
knownVersions: Map<string,
|
|
22635
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
22612
22636
|
activeVersion: boolean;
|
|
22613
22637
|
initialized: boolean;
|
|
22614
22638
|
startedInitialization: boolean;
|
|
@@ -22664,7 +22688,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22664
22688
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
22665
22689
|
captureVersion(): InstalledProjectState;
|
|
22666
22690
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<InstalledProjectState>;
|
|
22667
|
-
restoreVersion(versionId: EntityVersion
|
|
22691
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
22692
|
+
skipIfSameVersion?: boolean;
|
|
22693
|
+
}): Promise<IChangeSet<InstalledProjectState>>;
|
|
22668
22694
|
updateWithShallowTransfer(transfer: IInstalledProjectShallowTransfer, changeSet?: ChangeSet | null): InstalledProjectState;
|
|
22669
22695
|
updateWithGenerationTarget(transfer: Partial<IInstalledProjectGenerationTarget>, changeSet?: ChangeSet | null): InstalledProjectState;
|
|
22670
22696
|
hydrateAncestors(): IChangeSet<InstalledProjectState>;
|
|
@@ -22756,7 +22782,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22756
22782
|
entity: UserManagedEntityState;
|
|
22757
22783
|
field: string;
|
|
22758
22784
|
}>;
|
|
22759
|
-
knownVersions: Map<string,
|
|
22785
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
22760
22786
|
activeVersion: boolean;
|
|
22761
22787
|
initialized: boolean;
|
|
22762
22788
|
startedInitialization: boolean;
|
|
@@ -22813,7 +22839,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22813
22839
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
22814
22840
|
captureVersion(): InternalCallState;
|
|
22815
22841
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<InternalCallState>;
|
|
22816
|
-
restoreVersion(versionId: EntityVersion
|
|
22842
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
22843
|
+
skipIfSameVersion?: boolean;
|
|
22844
|
+
}): Promise<IChangeSet<InternalCallState>>;
|
|
22817
22845
|
updateWithShallowTransfer(transfer: IInternalCallShallowTransfer, changeSet?: ChangeSet | null): InternalCallState;
|
|
22818
22846
|
updateWithGenerationTarget(transfer: Partial<IInternalCallGenerationTarget>, changeSet?: ChangeSet | null): InternalCallState;
|
|
22819
22847
|
hydrateAncestors(): IChangeSet<InternalCallState>;
|
|
@@ -24394,6 +24422,12 @@ export declare enum BaseValueDescriptorIds {
|
|
|
24394
24422
|
|
|
24395
24423
|
export declare const keyValuePrototype: IPrimitiveEntity;
|
|
24396
24424
|
|
|
24425
|
+
export declare function layoutFromCallsFromGivenCaller(caller: CallerEntityState, changeSet: ChangeSet, options?: YieldOptions): Promise<void>;
|
|
24426
|
+
|
|
24427
|
+
export declare function layoutFullProjectCanvas(project: ProjectState, changeSet: ChangeSet, options?: YieldOptions): Promise<void>;
|
|
24428
|
+
|
|
24429
|
+
export declare function layoutOnlyModifiedEntryPointCanvas(project: ProjectState, changeSet: ChangeSet, options?: YieldOptions): Promise<void>;
|
|
24430
|
+
|
|
24397
24431
|
export declare const lengthDefault: ILiteralValueTransfer;
|
|
24398
24432
|
|
|
24399
24433
|
export declare const LIST_OPERATIONS: {
|
|
@@ -25114,7 +25148,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
25114
25148
|
entity: UserManagedEntityState;
|
|
25115
25149
|
field: string;
|
|
25116
25150
|
}>;
|
|
25117
|
-
knownVersions: Map<string,
|
|
25151
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
25118
25152
|
activeVersion: boolean;
|
|
25119
25153
|
initialized: boolean;
|
|
25120
25154
|
startedInitialization: boolean;
|
|
@@ -25174,7 +25208,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
25174
25208
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
25175
25209
|
captureVersion(): LiteralValueState;
|
|
25176
25210
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<LiteralValueState>;
|
|
25177
|
-
restoreVersion(versionId: EntityVersion
|
|
25211
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
25212
|
+
skipIfSameVersion?: boolean;
|
|
25213
|
+
}): Promise<IChangeSet<LiteralValueState>>;
|
|
25178
25214
|
updateWithShallowTransfer(transfer: ILiteralValueShallowTransfer, changeSet?: ChangeSet | null): LiteralValueState;
|
|
25179
25215
|
updateWithGenerationTarget(transfer: Partial<ILiteralValueGenerationTarget>, changeSet?: ChangeSet | null): LiteralValueState;
|
|
25180
25216
|
hydrateAncestors(): IChangeSet<LiteralValueState>;
|
|
@@ -25277,7 +25313,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
25277
25313
|
entity: UserManagedEntityState;
|
|
25278
25314
|
field: string;
|
|
25279
25315
|
}>;
|
|
25280
|
-
knownVersions: Map<string,
|
|
25316
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
25281
25317
|
activeVersion: boolean;
|
|
25282
25318
|
initialized: boolean;
|
|
25283
25319
|
startedInitialization: boolean;
|
|
@@ -25339,7 +25375,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
25339
25375
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
25340
25376
|
captureVersion(): LoopState;
|
|
25341
25377
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<LoopState>;
|
|
25342
|
-
restoreVersion(versionId: EntityVersion
|
|
25378
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
25379
|
+
skipIfSameVersion?: boolean;
|
|
25380
|
+
}): Promise<IChangeSet<LoopState>>;
|
|
25343
25381
|
updateWithShallowTransfer(transfer: ILoopShallowTransfer, changeSet?: ChangeSet | null): LoopState;
|
|
25344
25382
|
updateWithGenerationTarget(transfer: Partial<ILoopGenerationTarget>, changeSet?: ChangeSet | null): LoopState;
|
|
25345
25383
|
hydrateAncestors(): IChangeSet<LoopState>;
|
|
@@ -29551,7 +29589,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
29551
29589
|
entity: UserManagedEntityState;
|
|
29552
29590
|
field: string;
|
|
29553
29591
|
}>;
|
|
29554
|
-
knownVersions: Map<string,
|
|
29592
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
29555
29593
|
activeVersion: boolean;
|
|
29556
29594
|
initialized: boolean;
|
|
29557
29595
|
startedInitialization: boolean;
|
|
@@ -29607,7 +29645,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
29607
29645
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
29608
29646
|
captureVersion(): OperationState;
|
|
29609
29647
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<OperationState>;
|
|
29610
|
-
restoreVersion(versionId: EntityVersion
|
|
29648
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
29649
|
+
skipIfSameVersion?: boolean;
|
|
29650
|
+
}): Promise<IChangeSet<OperationState>>;
|
|
29611
29651
|
updateWithShallowTransfer(transfer: IOperationShallowTransfer, changeSet?: ChangeSet | null): OperationState;
|
|
29612
29652
|
updateWithGenerationTarget(transfer: Partial<IOperationGenerationTarget>, changeSet?: ChangeSet | null): OperationState;
|
|
29613
29653
|
hydrateAncestors(): IChangeSet<OperationState>;
|
|
@@ -29740,7 +29780,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
29740
29780
|
entity: UserManagedEntityState;
|
|
29741
29781
|
field: string;
|
|
29742
29782
|
}>;
|
|
29743
|
-
knownVersions: Map<string,
|
|
29783
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
29744
29784
|
activeVersion: boolean;
|
|
29745
29785
|
initialized: boolean;
|
|
29746
29786
|
startedInitialization: boolean;
|
|
@@ -29800,7 +29840,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
29800
29840
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
29801
29841
|
captureVersion(): OutputMapState;
|
|
29802
29842
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<OutputMapState>;
|
|
29803
|
-
restoreVersion(versionId: EntityVersion
|
|
29843
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
29844
|
+
skipIfSameVersion?: boolean;
|
|
29845
|
+
}): Promise<IChangeSet<OutputMapState>>;
|
|
29804
29846
|
updateWithShallowTransfer(transfer: IOutputMapShallowTransfer, changeSet?: ChangeSet | null): OutputMapState;
|
|
29805
29847
|
updateWithGenerationTarget(transfer: Partial<IOutputMapGenerationTarget>, changeSet?: ChangeSet | null): OutputMapState;
|
|
29806
29848
|
hydrateAncestors(): IChangeSet<OutputMapState>;
|
|
@@ -30298,7 +30340,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
30298
30340
|
entity: UserManagedEntityState;
|
|
30299
30341
|
field: string;
|
|
30300
30342
|
}>;
|
|
30301
|
-
knownVersions: Map<string,
|
|
30343
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
30302
30344
|
activeVersion: boolean;
|
|
30303
30345
|
initialized: boolean;
|
|
30304
30346
|
startedInitialization: boolean;
|
|
@@ -30394,7 +30436,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
30394
30436
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
30395
30437
|
captureVersion(): ProjectState;
|
|
30396
30438
|
recursiveCaptureUpstreamVersions(_sharedTimestamp: null | string): IChangeSet<ProjectState>;
|
|
30397
|
-
restoreVersion(versionId: EntityVersion
|
|
30439
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
30440
|
+
skipIfSameVersion?: boolean;
|
|
30441
|
+
}): Promise<IChangeSet<ProjectState>>;
|
|
30398
30442
|
updateWithShallowTransfer(transfer: IProjectShallowTransfer, changeSet?: ChangeSet | null): ProjectState;
|
|
30399
30443
|
updateWithGenerationTarget(transfer: Partial<IProjectGenerationTarget>, changeSet?: ChangeSet | null): ProjectState;
|
|
30400
30444
|
hydrateAncestors(): IChangeSet<ProjectState>;
|
|
@@ -30622,7 +30666,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
30622
30666
|
entity: UserManagedEntityState;
|
|
30623
30667
|
field: string;
|
|
30624
30668
|
}>;
|
|
30625
|
-
knownVersions: Map<string,
|
|
30669
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
30626
30670
|
activeVersion: boolean;
|
|
30627
30671
|
initialized: boolean;
|
|
30628
30672
|
startedInitialization: boolean;
|
|
@@ -30683,7 +30727,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
30683
30727
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
30684
30728
|
captureVersion(): PropertyState;
|
|
30685
30729
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<PropertyState>;
|
|
30686
|
-
restoreVersion(versionId: EntityVersion
|
|
30730
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
30731
|
+
skipIfSameVersion?: boolean;
|
|
30732
|
+
}): Promise<IChangeSet<PropertyState>>;
|
|
30687
30733
|
updateWithShallowTransfer(transfer: IPropertyShallowTransfer, changeSet?: ChangeSet | null): PropertyState;
|
|
30688
30734
|
updateWithGenerationTarget(transfer: Partial<IPropertyGenerationTarget>, changeSet?: ChangeSet | null): PropertyState;
|
|
30689
30735
|
hydrateAncestors(): IChangeSet<PropertyState>;
|
|
@@ -31384,7 +31430,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31384
31430
|
entity: UserManagedEntityState;
|
|
31385
31431
|
field: string;
|
|
31386
31432
|
}>;
|
|
31387
|
-
knownVersions: Map<string,
|
|
31433
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
31388
31434
|
activeVersion: boolean;
|
|
31389
31435
|
initialized: boolean;
|
|
31390
31436
|
startedInitialization: boolean;
|
|
@@ -31443,7 +31489,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31443
31489
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
31444
31490
|
captureVersion(): ReturnStatementState;
|
|
31445
31491
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<ReturnStatementState>;
|
|
31446
|
-
restoreVersion(versionId: EntityVersion
|
|
31492
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
31493
|
+
skipIfSameVersion?: boolean;
|
|
31494
|
+
}): Promise<IChangeSet<ReturnStatementState>>;
|
|
31447
31495
|
updateWithShallowTransfer(transfer: IReturnStatementShallowTransfer, changeSet?: ChangeSet | null): ReturnStatementState;
|
|
31448
31496
|
updateWithGenerationTarget(transfer: Partial<IReturnStatementGenerationTarget>, changeSet?: ChangeSet | null): ReturnStatementState;
|
|
31449
31497
|
hydrateAncestors(): IChangeSet<ReturnStatementState>;
|
|
@@ -31625,7 +31673,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31625
31673
|
entity: UserManagedEntityState;
|
|
31626
31674
|
field: string;
|
|
31627
31675
|
}>;
|
|
31628
|
-
knownVersions: Map<string,
|
|
31676
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
31629
31677
|
activeVersion: boolean;
|
|
31630
31678
|
initialized: boolean;
|
|
31631
31679
|
startedInitialization: boolean;
|
|
@@ -31692,7 +31740,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31692
31740
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
31693
31741
|
captureVersion(): SearchState;
|
|
31694
31742
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<SearchState>;
|
|
31695
|
-
restoreVersion(versionId: EntityVersion
|
|
31743
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
31744
|
+
skipIfSameVersion?: boolean;
|
|
31745
|
+
}): Promise<IChangeSet<SearchState>>;
|
|
31696
31746
|
updateWithShallowTransfer(transfer: ISearchShallowTransfer, changeSet?: ChangeSet | null): SearchState;
|
|
31697
31747
|
updateWithGenerationTarget(transfer: Partial<ISearchGenerationTarget>, changeSet?: ChangeSet | null): SearchState;
|
|
31698
31748
|
hydrateAncestors(): IChangeSet<SearchState>;
|
|
@@ -33605,10 +33655,6 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33605
33655
|
*/
|
|
33606
33656
|
export declare function toCamelCase(str: string): string;
|
|
33607
33657
|
|
|
33608
|
-
export declare function toCanvasFlatArray(project: ProjectState, changeSet: ChangeSet, options?: YieldOptions & {
|
|
33609
|
-
forceAll?: boolean;
|
|
33610
|
-
}): Promise<CanvasEntityState[]>;
|
|
33611
|
-
|
|
33612
33658
|
export declare function toEditorContext(extensionsRegistry: ExtensionsRegistry, editor: IEditor): DefaultEditorContext;
|
|
33613
33659
|
|
|
33614
33660
|
export declare function toEntityState(entity: string | EntityState | IGenericReference | Element_2 | ElementTransfer | ElementShallowTransfer | ElementGenerationTarget, project: ProjectState): EntityState | null;
|
|
@@ -33753,7 +33799,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33753
33799
|
|
|
33754
33800
|
export declare function translateLogicErrorCodeWithEntityName(error: EntityError<SharedEntityErrorCode | EntityInstanceErrorCode | HTTPStatucCodeValidationErrorCodes | UUIDV4ValidationErrorCodes | CommonStringValidationErrorCodes>): string;
|
|
33755
33801
|
|
|
33756
|
-
export declare function traverseChangeSet(changeSet: ChangeSet, onAdded: (entity: UserManagedEntityState) => void, onUpdated: (entity: UserManagedEntityState) => void, onRemoved: (entity: UserManagedEntityState) => void): void;
|
|
33802
|
+
export declare function traverseChangeSet(changeSet: ChangeSet, onAdded: (entity: UserManagedEntityState) => void, onUpdated: (entity: UserManagedEntityState) => void, onRemoved: (entity: UserManagedEntityState) => void, onAffected: (entity: UserManagedEntityState) => void): void;
|
|
33757
33803
|
|
|
33758
33804
|
export declare class Traverser {
|
|
33759
33805
|
order: EntityId[];
|
|
@@ -34848,7 +34894,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
34848
34894
|
entity: UserManagedEntityState;
|
|
34849
34895
|
field: string;
|
|
34850
34896
|
}>;
|
|
34851
|
-
knownVersions: Map<string,
|
|
34897
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
34852
34898
|
activeVersion: boolean;
|
|
34853
34899
|
initialized: boolean;
|
|
34854
34900
|
startedInitialization: boolean;
|
|
@@ -34905,7 +34951,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
34905
34951
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
34906
34952
|
captureVersion(): ValueDescriptorState;
|
|
34907
34953
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<ValueDescriptorState>;
|
|
34908
|
-
restoreVersion(versionId: EntityVersion
|
|
34954
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
34955
|
+
skipIfSameVersion?: boolean;
|
|
34956
|
+
}): Promise<IChangeSet<ValueDescriptorState>>;
|
|
34909
34957
|
updateWithShallowTransfer(transfer: IValueDescriptorShallowTransfer, changeSet?: ChangeSet | null): ValueDescriptorState;
|
|
34910
34958
|
updateWithGenerationTarget(transfer: Partial<IValueDescriptorGenerationTarget>, changeSet?: ChangeSet | null): ValueDescriptorState;
|
|
34911
34959
|
hydrateAncestors(): IChangeSet<ValueDescriptorState>;
|
|
@@ -35071,7 +35119,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
35071
35119
|
entity: UserManagedEntityState;
|
|
35072
35120
|
field: string;
|
|
35073
35121
|
}>;
|
|
35074
|
-
knownVersions: Map<string,
|
|
35122
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
35075
35123
|
activeVersion: boolean;
|
|
35076
35124
|
initialized: boolean;
|
|
35077
35125
|
startedInitialization: boolean;
|
|
@@ -35130,7 +35178,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
35130
35178
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
35131
35179
|
captureVersion(): VariableDeclarationState;
|
|
35132
35180
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<VariableDeclarationState>;
|
|
35133
|
-
restoreVersion(versionId: EntityVersion
|
|
35181
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
35182
|
+
skipIfSameVersion?: boolean;
|
|
35183
|
+
}): Promise<IChangeSet<VariableDeclarationState>>;
|
|
35134
35184
|
updateWithShallowTransfer(transfer: IVariableDeclarationShallowTransfer, changeSet?: ChangeSet | null): VariableDeclarationState;
|
|
35135
35185
|
updateWithGenerationTarget(transfer: Partial<IVariableDeclarationGenerationTarget>, changeSet?: ChangeSet | null): VariableDeclarationState;
|
|
35136
35186
|
hydrateAncestors(): IChangeSet<VariableDeclarationState>;
|
|
@@ -35288,7 +35338,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
35288
35338
|
entity: UserManagedEntityState;
|
|
35289
35339
|
field: string;
|
|
35290
35340
|
}>;
|
|
35291
|
-
knownVersions: Map<string,
|
|
35341
|
+
knownVersions: Map<string, UserManagedEntityState> | null;
|
|
35292
35342
|
activeVersion: boolean;
|
|
35293
35343
|
initialized: boolean;
|
|
35294
35344
|
startedInitialization: boolean;
|
|
@@ -35348,7 +35398,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
35348
35398
|
increaseVersion(sharedTimestamp: null | string): UserManagedEntityState;
|
|
35349
35399
|
captureVersion(): VariableInstanceState;
|
|
35350
35400
|
recursiveCaptureUpstreamVersions(sharedTimestamp: null | string): IChangeSet<VariableInstanceState>;
|
|
35351
|
-
restoreVersion(versionId: EntityVersion
|
|
35401
|
+
restoreVersion(versionId: EntityVersion, options?: {
|
|
35402
|
+
skipIfSameVersion?: boolean;
|
|
35403
|
+
}): Promise<IChangeSet<VariableInstanceState>>;
|
|
35352
35404
|
updateWithShallowTransfer(transfer: IVariableInstanceShallowTransfer, changeSet?: ChangeSet | null): VariableInstanceState;
|
|
35353
35405
|
updateWithGenerationTarget(transfer: Partial<IVariableInstanceGenerationTarget>, changeSet?: ChangeSet | null): VariableInstanceState;
|
|
35354
35406
|
hydrateAncestors(): IChangeSet<VariableInstanceState>;
|