@elyx-code/project-logic-tree 0.0.6500 → 0.0.6502

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
@@ -5812,7 +5812,7 @@ export declare function flattenDefinitionEntity(entity: IDefinitionEntity | IDef
5812
5812
 
5813
5813
  export declare function flattenDefinitionEntityExtensionAndImplementationTypes(entity: DefinitionEntityState): (BaseEntityNames | EntityType.DefinitionEntity)[];
5814
5814
 
5815
- export declare function flattenDefinitionEntityExtensions(entity: DefinitionEntityState): (BuiltInBaseEntityState | DefinitionEntityState)[];
5815
+ export declare function flattenDefinitionEntityExtensions(entity: DefinitionEntityState | BuiltInBaseEntityState): (BuiltInBaseEntityState | DefinitionEntityState)[];
5816
5816
 
5817
5817
  export declare function flattenDefinitionEntityExtensionTypes(entity: DefinitionEntityState | BuiltInBaseEntityState): (BaseEntityNames | EntityType.DefinitionEntity)[];
5818
5818
 
@@ -6576,6 +6576,8 @@ export declare function getAllVariablesInScope(project: ProjectState, variableDe
6576
6576
 
6577
6577
  export declare function getBaseBuiltInEntities(entity: DefinitionEntityState | BuiltInBaseEntityState): BuiltInBaseEntityState[];
6578
6578
 
6579
+ export declare function getBaseBuiltInNameFromIntegrationName(integrationName: ExternalIntegrationNames): BaseEntityNames | null;
6580
+
6579
6581
  declare function getBaseMethodsNotImplemented(self: DefinitionEntityState, implementedEntity: DefinitionEntityState | BuiltInBaseEntityState): ActionDescriptorState[];
6580
6582
 
6581
6583
  declare function getBasePropertiesNotImplemented(self: DefinitionEntityState, implementedEntity: DefinitionEntityState | BuiltInBaseEntityState): PropertyState[];
@@ -9556,9 +9558,9 @@ export declare function getExtendedBuiltInEntity(entity: DefinitionEntityState):
9556
9558
 
9557
9559
  export declare function getExtendedDefinitionEntity(entity: DefinitionEntityState): DefinitionEntityState | null;
9558
9560
 
9559
- export declare function getExternalIntegrationIdFromAction(entity: ActionDescriptorState | OperationState): string | null;
9561
+ export declare function getExternalIntegrationIdFromAction(entity: ActionDescriptorState | OperationState): ExternalIntegrationNames | null;
9560
9562
 
9561
- export declare function getExternalIntegrationNameFromBuiltInBaseName(baseName: BaseEntityNames): string | null;
9563
+ export declare function getExternalIntegrationNameFromBuiltInBaseName(baseName: BaseEntityNames): ExternalIntegrationNames | null;
9562
9564
 
9563
9565
  export declare function getFirstNonLoopScopeOwner(entity: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, project: ProjectState, _initialEntity?: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer | null): EntryPointEntityState | ProjectState | null;
9564
9566
 
@@ -9579,6 +9581,10 @@ export declare function getHTTPAPINameFromProjectId(projectId: string): string;
9579
9581
 
9580
9582
  export declare function getImplementedBuiltInEntity(entity: DefinitionEntityState): BuiltInBaseEntityState | null;
9581
9583
 
9584
+ export declare function getIntegrationIdFromDefinitionEntity(entity: DefinitionEntityState | BuiltInBaseEntityState): ExternalIntegrationNames | null;
9585
+
9586
+ export declare function getIntegrationIdFromEntity(entity: DefinitionEntityState | BuiltInBaseEntityState | ActionDescriptorState | OperationState): ExternalIntegrationNames | null;
9587
+
9582
9588
  export declare function getIsInteractive(entity: DefinitionEntityState | BuiltInBaseEntityState | PrimitiveEntityState): boolean;
9583
9589
 
9584
9590
  declare function getJoinOnSpecificationAsWhereStatementFromJoinExpr(joinClause: JoinExpr, scopeColumns: ColumnRef[], state: SearchStatementState, project: ProjectState, debug?: boolean): WhereStatement | null;