@elyx-code/project-logic-tree 0.0.7057 → 0.0.7058

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 CHANGED
@@ -10503,7 +10503,8 @@ 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"
10506
+ Empty = "compute-name-empty",
10507
+ Duplicate = "compute-name-duplicate"
10507
10508
  }
10508
10509
 
10509
10510
  export declare function concatLists(base: unknown, ...others: unknown[]): any[];
@@ -13292,7 +13293,8 @@ export declare enum BaseValueDescriptorIds {
13292
13293
  ParentScopeRequiresReturnCurrentCatchesErrorWithNoCalls = "parent-scope-requires-return-current-catches-error-with-no-calls",
13293
13294
  ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls",
13294
13295
  EndpointPathConflict = "endpoint-path-conflict",
13295
- SharedDriveMountPathConflict = "shared-drive-mount-path-conflict"
13296
+ SharedDriveMountPathConflict = "shared-drive-mount-path-conflict",
13297
+ RelationalDatabaseMinSizeOutOfBounds = "relational-database-min-size-out-of-bounds"
13296
13298
  }
13297
13299
 
13298
13300
  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;