@elyx-code/project-logic-tree 0.0.7059 → 0.0.7060
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 +194 -194
- package/dist/index.d.ts +8 -4
- package/dist/index.js +28427 -28254
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10503,8 +10503,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10503
10503
|
export declare enum ComputeNameValidationErrorCodes {
|
|
10504
10504
|
InvalidCharacters = "compute-name-invalid-characters",
|
|
10505
10505
|
TooLong = "compute-name-too-long",
|
|
10506
|
-
Empty = "compute-name-empty"
|
|
10507
|
-
Duplicate = "compute-name-duplicate"
|
|
10506
|
+
Empty = "compute-name-empty"
|
|
10508
10507
|
}
|
|
10509
10508
|
|
|
10510
10509
|
export declare function concatLists(base: unknown, ...others: unknown[]): any[];
|
|
@@ -13134,7 +13133,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13134
13133
|
|
|
13135
13134
|
export declare function entityDisabledReasonToShortReadableError(code: CanvasEntityConnectionDisabledReason | string): string;
|
|
13136
13135
|
|
|
13137
|
-
export declare class EntityError<TCode = SharedEntityErrorCode | EntityInstanceErrorCode> implements IEntityError<TCode> {
|
|
13136
|
+
export declare class EntityError<TCode = SharedEntityErrorCode | EntityInstanceErrorCode | string> implements IEntityError<TCode> {
|
|
13138
13137
|
id: string;
|
|
13139
13138
|
message: string;
|
|
13140
13139
|
severity: EntityErrorSeverity;
|
|
@@ -13294,7 +13293,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13294
13293
|
ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls",
|
|
13295
13294
|
EndpointPathConflict = "endpoint-path-conflict",
|
|
13296
13295
|
SharedDriveMountPathConflict = "shared-drive-mount-path-conflict",
|
|
13297
|
-
|
|
13296
|
+
RelationalDatabaseMinSizeTooSmall = "relational-database-min-size-too-small",
|
|
13297
|
+
RelationalDatabaseMinSizeTooLarge = "relational-database-min-size-too-large",
|
|
13298
|
+
RelationalDatabaseMinSizeMustBeNumber = "relational-database-min-size-must-be-number",
|
|
13299
|
+
ComputeNameNotUnique = "compute-name-not-unique"
|
|
13298
13300
|
}
|
|
13299
13301
|
|
|
13300
13302
|
export declare type EntityPayloadUnion = BuiltInBaseEntityPayloadUnion | ProjectPayloadUnion | InstalledProjectPayloadUnion | DefinitionEntityPayloadUnion | FunctionDeclarationPayloadUnion | GlobalEventPayloadUnion | VariableDeclarationPayloadUnion | VariableInstancePayloadUnion | InputMapPayloadUnion | OutputMapPayloadUnion | ConditionPayloadUnion | OperationPayloadUnion | FunctionCallPayloadUnion | ArgumentDeclarationPayloadUnion | PrimitiveEntityPayloadUnion | DataTypePayloadUnion | PropertyPayloadUnion | ActionDescriptorPayloadUnion | ReturnStatementPayloadUnion | ContinueStatementPayloadUnion | BreakStatementPayloadUnion | LoopPayloadUnion | SearchPayloadUnion | ValueDescriptorPayloadUnion | InternalCallPayloadUnion | LiteralValuePayloadUnion;
|
|
@@ -14872,6 +14874,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14872
14874
|
|
|
14873
14875
|
export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
|
|
14874
14876
|
|
|
14877
|
+
export declare function findNextAvailableNameString(baseName: string, takenNames: string[]): string;
|
|
14878
|
+
|
|
14875
14879
|
export declare function findNextCombinedSingleCallerAncestor(targetA: CallableEntityState | CallerEntityState, targetB: CallableEntityState | CallerEntityState, from?: CallerEntityState): {
|
|
14876
14880
|
ancestor: CallerEntityState | null;
|
|
14877
14881
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|