@elyx-code/project-logic-tree 0.0.6291 → 0.0.6299

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
@@ -391,7 +391,7 @@ export declare class ArgumentDeclarationState extends VersionedState implements
391
391
  getErrors(): EntityError[];
392
392
  getShallowErrors(): EntityError[];
393
393
  getDefaultValue(): LiteralValueState | null;
394
- setDefaultValue(defaultValue: LiteralValueState): ArgumentDeclarationState;
394
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): ArgumentDeclarationState;
395
395
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | null, newId?: string | null, subscribe?: boolean): ArgumentDeclarationState;
396
396
  getDataType(_changeSet?: ChangeSet | null): DataTypeState | null;
397
397
  setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ArgumentDeclarationState;
@@ -8957,7 +8957,7 @@ export declare class InputMapState extends VersionedState implements IInputMap,
8957
8957
  getErrors(): EntityError[];
8958
8958
  getShallowErrors(): EntityError[];
8959
8959
  getDefaultValue(): LiteralValueState | null;
8960
- setDefaultValue(value: LiteralValueState): InputMapState;
8960
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): InputMapState;
8961
8961
  clone(changeSet?: ChangeSet | null, parent?: PassThroughCallableEntityState | null, newId?: string | null, subscribe?: boolean): InputMapState;
8962
8962
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
8963
8963
  }
@@ -11201,7 +11201,7 @@ export declare class OutputMapState extends VersionedState implements IOutputMap
11201
11201
  getErrors(): EntityError[];
11202
11202
  getShallowErrors(): EntityError[];
11203
11203
  getDefaultValue(): LiteralValueState | null;
11204
- setDefaultValue(defaultValue: LiteralValueState): OutputMapState;
11204
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): OutputMapState;
11205
11205
  clone(changeSet?: ChangeSet | null, parent?: PassThroughCallableEntityWithOutputsState | null, newId?: string | null, subscribe?: boolean): OutputMapState;
11206
11206
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
11207
11207
  }
@@ -11825,13 +11825,14 @@ export declare class PropertyState extends VersionedState implements IProperty,
11825
11825
  };
11826
11826
  getErrors(): EntityError[];
11827
11827
  getShallowErrors(): EntityError[];
11828
+ implement(parent: DefinitionEntityState, changeSet?: ChangeSet | null, newId?: string | null): PropertyState;
11828
11829
  clone(changeSet?: ChangeSet | null, parent?: DefinitionEntityState | null, newId?: string | null, subscribe?: boolean): PropertyState;
11829
11830
  setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): PropertyState;
11830
11831
  removeDataType(): PropertyState;
11831
11832
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
11832
11833
  getDefaultValue(): LiteralValueState | null;
11833
- setDefaultValue(value: LiteralValueState): PropertyState;
11834
- syncDataTypeWithImplementation(changeSet?: ChangeSet | null): IChangeSet<PropertyState>;
11834
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): PropertyState;
11835
+ syncWithImplementation(changeSet?: ChangeSet | null): IChangeSet<PropertyState>;
11835
11836
  }
11836
11837
 
11837
11838
  export declare function propertyToZodSchema(property: IProperty): z.ZodType<any>;
@@ -12078,7 +12079,7 @@ export declare class ReturnDeclarationState extends VersionedState implements IR
12078
12079
  getErrors(): EntityError[];
12079
12080
  getShallowErrors(): EntityError[];
12080
12081
  getDefaultValue(): LiteralValueState | null;
12081
- setDefaultValue(defaultValue: LiteralValueState): ReturnDeclarationState;
12082
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): ReturnDeclarationState;
12082
12083
  clone(changeSet?: ChangeSet | null, parent?: ReturnStatementState | BreakStatementState | ContinueStatementState | null, newId?: string | null, subscribe?: boolean): ReturnDeclarationState;
12083
12084
  setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ReturnDeclarationState;
12084
12085
  removeDataType(): ReturnDeclarationState;
@@ -12227,6 +12228,8 @@ declare namespace returnStatementValidation {
12227
12228
  }
12228
12229
  export { returnStatementValidation }
12229
12230
 
12231
+ declare function sanitizeQuery(query: string): string;
12232
+
12230
12233
  declare function sanitizeSQLIdentifierText(text: string): string;
12231
12234
 
12232
12235
  export declare type ScopeCompatibility = ICompatibleSameBothLocalScope | ICompatibleSameBothGlobalScope | ICompatibleAInBScope | ICompatibleBInAScope | IIncompatibleParallelInProjectScope | IIncompatibleParallelInCommonParentScope | IIncompatibleAIsGlobalBIsNotScope | IIncompatibleBIsGlobalAIsNotScope;
@@ -12507,6 +12510,7 @@ export { searchStatementState }
12507
12510
  declare namespace searchStatementUtils {
12508
12511
  export {
12509
12512
  sanitizeSQLIdentifierText,
12513
+ sanitizeQuery,
12510
12514
  fromNameToTableDescription,
12511
12515
  loadProjectDatasources,
12512
12516
  getSelectStatementFromProgram,
@@ -13980,7 +13984,7 @@ export declare class ValueDescriptorState extends VersionedState implements IVal
13980
13984
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
13981
13985
  setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ValueDescriptorState;
13982
13986
  getDefaultValue(): LiteralValueState | null;
13983
- setDefaultValue(defaultValue: LiteralValueState): ValueDescriptorState;
13987
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): ValueDescriptorState;
13984
13988
  removeDataType(): ValueDescriptorState;
13985
13989
  implementAsReturnDeclaration(changeSet: (ChangeSet | null) | undefined, newParent: ReturnStatementState | BreakStatementState | ContinueStatementState, newId?: string): ReturnDeclarationState;
13986
13990
  implementAsArgumentDeclaration(changeSet: (ChangeSet | null) | undefined, newParent: EntryPointEntityState, newId?: string): ArgumentDeclarationState;
@@ -14196,7 +14200,7 @@ export declare class VariableDeclarationState extends VersionedState implements
14196
14200
  getErrors(): EntityError[];
14197
14201
  getShallowErrors(): EntityError[];
14198
14202
  getDefaultValue(): LiteralValueState | null;
14199
- setDefaultValue(defaultValue: LiteralValueState): VariableDeclarationState;
14203
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): VariableDeclarationState;
14200
14204
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): VariableDeclarationState;
14201
14205
  addInternalCall(internalCall: InternalCallState): VariableDeclarationState;
14202
14206
  createInstance(parent?: EntityWithLogicScopeState | ProjectState, changeSet?: ChangeSet | null, overrides?: Partial<IVariableInstanceTransfer>): VariableInstanceState;
@@ -14389,7 +14393,7 @@ export declare class VariableInstanceState extends VersionedState implements IVa
14389
14393
  getErrors(): EntityError[];
14390
14394
  getShallowErrors(): EntityError[];
14391
14395
  getDefaultValue(): LiteralValueState | null;
14392
- setDefaultValue(value: LiteralValueState): VariableInstanceState;
14396
+ setDefaultValue(value: LiteralValueState | null, changeSet?: ChangeSet | null): VariableInstanceState;
14393
14397
  clone(changeSet?: ChangeSet | null, parent?: EntryPointEntityState | ProjectState | null, newId?: string | null, subscribe?: boolean): VariableInstanceState;
14394
14398
  addInternalCall(internalCall: InternalCallState): VariableInstanceState;
14395
14399
  setDeclaration(declaration: VariableDeclarationState): VariableInstanceState;