@elyx-code/project-logic-tree 0.0.6916 → 0.0.6918
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 +126 -126
- package/dist/index.d.ts +233 -1
- package/dist/index.js +7204 -7206
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -21787,6 +21787,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
21787
21787
|
removed: Record<EntityId, UserManagedElementShallowTransfer>;
|
|
21788
21788
|
affected: EntityId[];
|
|
21789
21789
|
actionName?: StateMutationAction | string;
|
|
21790
|
+
self: EntityId;
|
|
21790
21791
|
}
|
|
21791
21792
|
|
|
21792
21793
|
export declare interface IChannelConnections {
|
|
@@ -33444,7 +33445,238 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33444
33445
|
SetErrorEntity = "set-error-entity",
|
|
33445
33446
|
AddValueAsTypeToList = "add-value-as-type-to-list",
|
|
33446
33447
|
RemoveValueAsTypeFromList = "remove-value-as-type-from-list",
|
|
33447
|
-
CreateFromGenerationTarget = "create-from-generation-target"
|
|
33448
|
+
CreateFromGenerationTarget = "create-from-generation-target",
|
|
33449
|
+
ConnectExternalAccount = "connect-external-account",
|
|
33450
|
+
ChangeExternalAccountConnectionUsed = "change-external-account-connection-used",
|
|
33451
|
+
MoveInlineDefToCanvas = "move-inline-def-to-canvas",
|
|
33452
|
+
CreateDefFromValue = "create-def-from-value",
|
|
33453
|
+
PrettifyCanvas = "prettify-canvas",
|
|
33454
|
+
SetPrimitiveDefaultValue = "set-primitive-default-value",
|
|
33455
|
+
MakeArgRequired = "make-argument-required",
|
|
33456
|
+
MakeArgNonRequired = "make-argument-non-required",
|
|
33457
|
+
RecalculateArg = "recalculate-arg",
|
|
33458
|
+
RenameArg = "rename-argument",
|
|
33459
|
+
ChangeArgDescription = "changed-argument-description",
|
|
33460
|
+
RemoveArgBaseImplementation = "remove-argument-base-implementation",
|
|
33461
|
+
AddArgBaseImplementation = "add-argument-base-implementation",
|
|
33462
|
+
ChangeArgDataType = "change-argument-data-type",
|
|
33463
|
+
RecalculateCondition = "recalculate-condition",
|
|
33464
|
+
ChangeTypeOfCondition = "change-type-of-condition",
|
|
33465
|
+
RenameDefinition = "rename-definition",
|
|
33466
|
+
RecalculateDef = "recalculate-definition",
|
|
33467
|
+
ChangeDefDescription = "changed-definition-description",
|
|
33468
|
+
RemoveDefBaseImplementation = "remove-definition-base-implementation",
|
|
33469
|
+
AddDefBaseImplementation = "add-definition-base-implementation",
|
|
33470
|
+
RemoveDefExtension = "remove-definition-extension",
|
|
33471
|
+
SetDefExtends = "set-definition-extension",
|
|
33472
|
+
MakeDefStatic = "make-def-static",
|
|
33473
|
+
MakeDefNonStatic = "make-def-non-static",
|
|
33474
|
+
MakeDefAbstract = "make-def-abstract",
|
|
33475
|
+
MakeDefNonAbstract = "make-def-non-abstract",
|
|
33476
|
+
RecalculateFuncCall = "recalculate-function-call",
|
|
33477
|
+
ChangeFuncCallDeclaration = "change-function-call-declaration",
|
|
33478
|
+
RenameFuncDecl = "rename-function-declaration",
|
|
33479
|
+
ChangeFuncDeclDescription = "changed-function-declaration-description",
|
|
33480
|
+
RecalculateFuncDecl = "recalculate-function-declaration",
|
|
33481
|
+
SetFuncDeclBaseImplementation = "set-function-declaration-base-implementation",
|
|
33482
|
+
ChangeFuncDeclOutputDataType = "change-function-declaration-output-data-type",
|
|
33483
|
+
RecalculateGlobalEvent = "recalculate-global-event",
|
|
33484
|
+
ChangeGlobalEventDescription = "changed-global-event-description",
|
|
33485
|
+
ChangeGlobalEventType = "changed-global-event-type",
|
|
33486
|
+
RecalculateInputMap = "recalculate-input",
|
|
33487
|
+
ChangeInputMapDescription = "changed-input-description",
|
|
33488
|
+
ChangeInputMapDataType = "change-input-data-type",
|
|
33489
|
+
RecalculateLoop = "recalculate-loop",
|
|
33490
|
+
ChangeLoopType = "changed-loop-type",
|
|
33491
|
+
RecalculateOperation = "recalculate-operation",
|
|
33492
|
+
ChangeOperationType = "changed-operation-type",
|
|
33493
|
+
RecalculateOutputMap = "recalculate-output",
|
|
33494
|
+
ChangeOutputMapDataType = "change-output-data-type",
|
|
33495
|
+
RecalculateProperty = "recalculate-property",
|
|
33496
|
+
MakePropertyRequired = "make-property-required",
|
|
33497
|
+
MakePropertyNonRequired = "make-property-non-required",
|
|
33498
|
+
MakePropertyConstant = "make-property-constant",
|
|
33499
|
+
MakePropertyNonConstant = "make-property-non-constant",
|
|
33500
|
+
MakePropertyUnique = "make-property-unique",
|
|
33501
|
+
MakePropertyNonUnique = "make-property-non-unique",
|
|
33502
|
+
MakePropertyStatic = "make-property-static",
|
|
33503
|
+
MakePropertyNonStatic = "make-property-non-static",
|
|
33504
|
+
MakePropertyAbstract = "make-property-abstract",
|
|
33505
|
+
MakePropertyNonAbstract = "make-property-non-abstract",
|
|
33506
|
+
RenameProperty = "rename-property",
|
|
33507
|
+
ChangePropertyDescription = "changed-property-description",
|
|
33508
|
+
RemovePropertyBaseImplementation = "remove-property-base-implementation",
|
|
33509
|
+
AddPropertyBaseImplementation = "add-property-base-implementation",
|
|
33510
|
+
ChangePropertyDataType = "change-property-data-type",
|
|
33511
|
+
RecalculateSearch = "recalculate-search",
|
|
33512
|
+
RenameSearch = "rename-search",
|
|
33513
|
+
ChangeSearchDescription = "changed-search-description",
|
|
33514
|
+
ChangeSearchQuery = "changed-search-query",
|
|
33515
|
+
MakeValueDescriptorRequired = "make-value-descriptor-required",
|
|
33516
|
+
MakeSearchInputRequired = "make-search-input-required",
|
|
33517
|
+
MakeValueDescriptorNonRequired = "make-value-descriptor-non-required",
|
|
33518
|
+
MakeSearchInputNonRequired = "make-search-input-non-required",
|
|
33519
|
+
RenameValueDescriptor = "rename-value-descriptor",
|
|
33520
|
+
RenameSearchInput = "rename-search-input",
|
|
33521
|
+
ChangeValueDescriptorDescription = "changed-value-descriptor-description",
|
|
33522
|
+
ChangeSearchInputDescription = "changed-search-input-description",
|
|
33523
|
+
ChangeValueDescriptorDataType = "change-value-descriptor-data-type",
|
|
33524
|
+
RecalculateVarDecl = "recalculate-variable-declaration",
|
|
33525
|
+
MakeVarDeclConstant = "make-variable-declaration-constant",
|
|
33526
|
+
MakeVarDeclNonConstant = "make-variable-declaration-non-constant",
|
|
33527
|
+
RenameVarDecl = "rename-variable-declaration",
|
|
33528
|
+
ChangeVarDeclDescription = "changed-variable-declaration-description",
|
|
33529
|
+
ChangeVarDeclDataType = "change-variable-declaration-data-type",
|
|
33530
|
+
RecalculateVarInst = "recalculate-variable-instance",
|
|
33531
|
+
ChangeVarInstDeclaration = "change-variable-instance-declaration",
|
|
33532
|
+
HideFuncDeclBody = "hide-function-declaration-body",
|
|
33533
|
+
ShowFuncDeclBody = "show-function-declaration-body",
|
|
33534
|
+
HideGlobalEventBody = "hide-global-event-body",
|
|
33535
|
+
ShowGlobalEventBody = "show-global-event-body",
|
|
33536
|
+
HideLoopBody = "hide-loop-body",
|
|
33537
|
+
ShowLoopBody = "show-loop-body",
|
|
33538
|
+
HideTriggerBody = "hide-trigger-body",
|
|
33539
|
+
ShowTriggerBody = "show-trigger-body",
|
|
33540
|
+
AddNestedAndCondition = "add-nested-and-condition",
|
|
33541
|
+
AddInputToCondition = "add-input-to-condition",
|
|
33542
|
+
RecalculateNode = "recalculate-node",
|
|
33543
|
+
AddInputToFuncDecl = "add-input-to-function-declaration",
|
|
33544
|
+
ChangeInternalCallToThrowErrors = "change-internal-call-to-throw-errors",
|
|
33545
|
+
ChangeInternalCallToCatchErrors = "change-internal-call-to-catch-errors",
|
|
33546
|
+
AddErrorOutputToInternalCall = "add-error-output-to-internal-call",
|
|
33547
|
+
ChangeLoopToThrowErrors = "change-loop-to-throw-errors",
|
|
33548
|
+
ChangeLoopToCatchErrors = "change-loop-to-catch-errors",
|
|
33549
|
+
RecalculateLoopBody = "recalculate-loop-body",
|
|
33550
|
+
RecalculateMethod = "recalculate-method",
|
|
33551
|
+
AddArgToLoopBody = "add-arg-to-loop-body",
|
|
33552
|
+
AddArgToMethod = "add-arg-to-method",
|
|
33553
|
+
RecalculateNestedCondition = "recalculate-nested-condition",
|
|
33554
|
+
ChangeNodeToThrowErrors = "change-node-to-throw-errors",
|
|
33555
|
+
ChangeNodeToCatchErrors = "change-node-to-catch-errors",
|
|
33556
|
+
ChangeOperationToThrowErrors = "change-operation-to-throw-errors",
|
|
33557
|
+
ChangeOperationToCatchErrors = "change-operation-to-catch-errors",
|
|
33558
|
+
ChangeFuncCallToThrowErrors = "change-function-call-to-throw-errors",
|
|
33559
|
+
ChangeFuncCallToCatchErrors = "change-function-call-to-catch-errors",
|
|
33560
|
+
ChangeSearchToThrowErrors = "change-search-to-throw-errors",
|
|
33561
|
+
ChangeSearchToCatchErrors = "change-search-to-catch-errors",
|
|
33562
|
+
ChangeVarDeclToThrowErrors = "change-variable-declaration-to-throw-errors",
|
|
33563
|
+
ChangeVarDeclToCatchErrors = "change-variable-declaration-to-catch-errors",
|
|
33564
|
+
ChangeVarInstToThrowErrors = "change-variable-instance-to-throw-errors",
|
|
33565
|
+
ChangeVarInstToCatchErrors = "change-variable-instance-to-catch-errors",
|
|
33566
|
+
AddErrorOutputToNode = "add-error-output-to-node",
|
|
33567
|
+
AddErrorOutputToOperation = "add-error-output-to-operation",
|
|
33568
|
+
AddErrorOutputToFuncCall = "add-error-output-to-function-call",
|
|
33569
|
+
AddErrorOutputToSearch = "add-error-output-to-search",
|
|
33570
|
+
AddErrorOutputToVarDecl = "add-error-output-to-variable-declaration",
|
|
33571
|
+
AddErrorOutputToVarInst = "add-error-output-to-variable-instance",
|
|
33572
|
+
AddInputToNode = "add-input-to-node",
|
|
33573
|
+
AddInputToOperation = "add-input-to-operation",
|
|
33574
|
+
AddInputToFuncCall = "add-input-to-function-call",
|
|
33575
|
+
AddInputToSearch = "add-input-to-search",
|
|
33576
|
+
AddPropertyToVarDecl = "add-property-to-variable-declaration",
|
|
33577
|
+
AddPropertyToVarInst = "add-property-to-variable-instance",
|
|
33578
|
+
AddMethodToDef = "add-method-to-definition",
|
|
33579
|
+
ReSyncRowTransformer = "re-sync-row-transformer",
|
|
33580
|
+
ManuallyAddRowTransformer = "manually-add-row-transformer",
|
|
33581
|
+
AddPropertyToDef = "add-property-to-definition",
|
|
33582
|
+
RestablishExternalAccountConnection = "restablish-external-account-connection",
|
|
33583
|
+
AddThrownError = "add-thrown-error",
|
|
33584
|
+
RecalculateTerminationStatement = "recalculate-termination-statement",
|
|
33585
|
+
RecalculateReturnStmt = "recalculate-return-statement",
|
|
33586
|
+
RecalculateContinueStmt = "recalculate-continue-statement",
|
|
33587
|
+
RecalculateBreakStmt = "recalculate-break-statement",
|
|
33588
|
+
AddPropertyToTerminationStatement = "add-property-to-termination-statement",
|
|
33589
|
+
AddPropertyToReturnStmt = "add-property-to-return-statement",
|
|
33590
|
+
AddPropertyToContinueStmt = "add-property-to-continue-statement",
|
|
33591
|
+
AddPropertyToBreakStmt = "add-property-to-break-statement",
|
|
33592
|
+
SetLiteralValueToExplicitlyEmpty = "set-literal-value-to-explicitly-empty",
|
|
33593
|
+
ModifyLiteralValue = "modify-literal-value",
|
|
33594
|
+
RemoveLiteralValue = "remove-literal-value",
|
|
33595
|
+
ModifyLiteralValueAsType = "modify-literal-value-as-type",
|
|
33596
|
+
UpdateProjectMetadata = "update-project-metadata",
|
|
33597
|
+
RenameProject = "rename-project",
|
|
33598
|
+
ChangeProjectDescription = "change-project-description",
|
|
33599
|
+
RestoreNode = "restore-node",
|
|
33600
|
+
RestoreDef = "restore-definition",
|
|
33601
|
+
RestoreFuncDecl = "restore-function-declaration",
|
|
33602
|
+
RestoreGlobalEvent = "restore-global-event",
|
|
33603
|
+
RestoreSearch = "restore-search",
|
|
33604
|
+
RestoreVarDecl = "restore-variable-declaration",
|
|
33605
|
+
RestoreVarInst = "restore-variable-instance",
|
|
33606
|
+
RestoreFuncCall = "restore-function-call",
|
|
33607
|
+
RestoreOperation = "restore-operation",
|
|
33608
|
+
RestoreCondition = "restore-condition",
|
|
33609
|
+
RestoreReturnStmt = "restore-return-statement",
|
|
33610
|
+
RestoreContinueStmt = "restore-continue-statement",
|
|
33611
|
+
RestoreBreakStmt = "restore-break-statement",
|
|
33612
|
+
RestoreInstalledProject = "restore-installed-project",
|
|
33613
|
+
RestoreLoop = "restore-loop",
|
|
33614
|
+
CreateNewDef = "create-new-definition",
|
|
33615
|
+
CreateNewFuncDecl = "create-new-function-declaration",
|
|
33616
|
+
CreateNewGlobalEvent = "create-new-global-event",
|
|
33617
|
+
CreateNewSearch = "create-new-search",
|
|
33618
|
+
CreateNewVarDecl = "create-new-variable-declaration",
|
|
33619
|
+
CreateNewVarInst = "create-new-variable-instance",
|
|
33620
|
+
CreateNewFuncCall = "create-new-function-call",
|
|
33621
|
+
CreateNewOperation = "create-new-operation",
|
|
33622
|
+
CreateNewCondition = "create-new-condition",
|
|
33623
|
+
CreateNewReturnStmt = "create-new-return-statement",
|
|
33624
|
+
CreateNewContinueStmt = "create-new-continue-statement",
|
|
33625
|
+
CreateNewBreakStmt = "create-new-break-statement",
|
|
33626
|
+
CreateNewInternalCall = "create-new-internal-call",
|
|
33627
|
+
CreateNewLoop = "create-new-loop",
|
|
33628
|
+
ImplementBuiltInFunctionalityAsDef = "implement-built-in-functionality-as-definition",
|
|
33629
|
+
ImplementAbstractEntityAsDef = "implement-abstract-entity-as-definition",
|
|
33630
|
+
ImplementNewHTTPEndpoint = "implement-new-http-endpoint",
|
|
33631
|
+
ImplementNewScheduledTrigger = "implement-new-scheduled-trigger",
|
|
33632
|
+
ImplementNewPersistedEntity = "implement-new-persisted-entity",
|
|
33633
|
+
AddedNewRowTransformer = "added-new-row-transformer",
|
|
33634
|
+
AddedSQLConnectionConfig = "added-sql-connection-config",
|
|
33635
|
+
AddedNewSSLConnectionConfig = "added-new-ssl-connection-config",
|
|
33636
|
+
AddedGoogleConnection = "added-google-connection",
|
|
33637
|
+
AddedSlackConnection = "added-slack-connection",
|
|
33638
|
+
AddedNewExternalAccountConnection = "added-new-external-account-connection",
|
|
33639
|
+
AddedGoogleDriveConnection = "added-google-drive-connection",
|
|
33640
|
+
AddedGoogleSheetsConnection = "added-google-sheets-connection",
|
|
33641
|
+
AddedGoogleSlidesConnection = "added-google-slides-connection",
|
|
33642
|
+
AddedGoogleMailConnection = "added-gmail-connection",
|
|
33643
|
+
ManuallyCreateIndividualNode = "manually-create-individual-node",
|
|
33644
|
+
UpdateNode = "update-node",
|
|
33645
|
+
CreateNewProjectPublicationCompletedEvent = "create-new-project-publication-completed-event",
|
|
33646
|
+
CreateNewCountedLoop = "create-new-counted-loop",
|
|
33647
|
+
CreateNewListLoop = "create-new-list-loop",
|
|
33648
|
+
CreateNewManualFlowLoop = "create-new-manual-flow-loop",
|
|
33649
|
+
CreateNewObjectKeysLoop = "create-new-object-keys-loop",
|
|
33650
|
+
CreateNewObjectValuesLoop = "create-new-object-values-loop",
|
|
33651
|
+
CreateNewStringLoop = "create-new-string-loop",
|
|
33652
|
+
CreateNewIsFalseCondition = "create-new-is-false-condition",
|
|
33653
|
+
CreateNewIsTrueCondition = "create-new-is-true-condition",
|
|
33654
|
+
CreateNewAndCondition = "create-new-and-condition",
|
|
33655
|
+
CreateNewOrCondition = "create-new-or-condition",
|
|
33656
|
+
DisconnectNodes = "disconnect-nodes",
|
|
33657
|
+
DisconnectExecutions = "disconnect-executions",
|
|
33658
|
+
DisconnectValues = "disconnect-values",
|
|
33659
|
+
ConnectNodes = "connect-nodes",
|
|
33660
|
+
ConnectExecution = "connect-execution",
|
|
33661
|
+
ConnectValues = "connect-values",
|
|
33662
|
+
ConnectValueToNewInput = "connect-value-to-new-input",
|
|
33663
|
+
ConnectValueToNewOperationInput = "connect-value-to-new-operation-input",
|
|
33664
|
+
ConnectValueToNewConditionInput = "connect-value-to-new-condition-input",
|
|
33665
|
+
ConnectValueToNewSearchInput = "connect-value-to-new-search-input",
|
|
33666
|
+
ConnectValueToNewVarDeclProperty = "connect-value-to-new-variable-declaration-property",
|
|
33667
|
+
ConnectValueToNewVarInstProperty = "connect-value-to-new-variable-instance-property",
|
|
33668
|
+
ConnectValueToNewReturnStmtProperty = "connect-value-to-new-return-statement-property",
|
|
33669
|
+
ConnectValueToNewContinueStmtProperty = "connect-value-to-new-continue-statement-property",
|
|
33670
|
+
ConnectValueToNewBreakStmtProperty = "connect-value-to-new-break-statement-property",
|
|
33671
|
+
ConnectNewFuncDeclArgToValue = "connect-new-function-argument-to-value",
|
|
33672
|
+
RemoveNodes = "remove-nodes",
|
|
33673
|
+
RemoveNode = "remove-node",
|
|
33674
|
+
InitialLoadAutomaticCanvasRefresh = "initial-load-automatic-canvas-refresh",
|
|
33675
|
+
MoveNodes = "move-nodes",
|
|
33676
|
+
MoveNode = "move-node",
|
|
33677
|
+
CloneNodes = "clone-nodes",
|
|
33678
|
+
CloneNode = "clone-node",
|
|
33679
|
+
GenerateSQLMigrationOnPersistedEntityUpdate = "generate-sql-migration-on-persisted-entity-update"
|
|
33448
33680
|
}
|
|
33449
33681
|
|
|
33450
33682
|
export declare enum StateMutationErrorCode {
|