/** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { DataProductQueryBuilderState, type DataProductOption, type QueryBuilderActionConfig, type QueryBuilderConfig, type QueryBuilderWorkflowState } from '@finos/legend-query-builder'; import type { LegendQueryApplicationStore } from '../../LegendQueryBaseStore.js'; import { type DepotServerClient } from '@finos/legend-server-depot'; import type { DepotEntityWithOrigin, ProjectGAVCoordinates, QueryableSourceInfo } from '@finos/legend-storage'; import { LegendSDLC, type PackageableRuntime, type Class, type DataProduct, type GraphManagerState, type ModelAccessPointGroup, type NativeModelExecutionContext, type PackageableElement, type V1_DataProductArtifact, type LakehouseAccessPoint } from '@finos/legend-graph'; import type { DataProductSelectorState } from '../../data-space/DataProductSelectorState.js'; import { ResolvedDataSpaceEntityWithOrigin } from '@finos/legend-extension-dsl-data-space/application'; import type { GeneratorFn } from '@finos/legend-shared'; export declare class LegendQueryDataProductQueryBuilderState extends DataProductQueryBuilderState { applicationStore: LegendQueryApplicationStore; depotServerClient: DepotServerClient; project: ProjectGAVCoordinates; readonly onLegacyDataSpaceChange: ((val: ResolvedDataSpaceEntityWithOrigin) => void) | undefined; productSelectorState: DataProductSelectorState; createLakehousePackageableRuntime: (dataProductPath: string, gav: { groupId: string; artifactId: string; versionId: string; }) => Promise; constructor(applicationStore: LegendQueryApplicationStore, graphManagerState: GraphManagerState, workflow: QueryBuilderWorkflowState, actionConfig: QueryBuilderActionConfig, dataProduct: DataProduct, artifact: V1_DataProductArtifact | undefined, executionState: NativeModelExecutionContext | ModelAccessPointGroup | LakehouseAccessPoint, depotServerClient: DepotServerClient, project: ProjectGAVCoordinates, onDataProductChange: (val: DepotEntityWithOrigin) => Promise, createLakehousePackageableRuntime: (dataProductPath: string, gav: { groupId: string; artifactId: string; versionId: string; }) => Promise, productSelectorState: DataProductSelectorState, onLegacyDataSpaceChange?: ((val: ResolvedDataSpaceEntityWithOrigin) => void) | undefined, onClassChange?: ((val: Class) => void) | undefined, config?: QueryBuilderConfig | undefined, sourceInfo?: QueryableSourceInfo | undefined); handleDataProductChange(val: DepotEntityWithOrigin): void; prepareAccessForExecution(): Promise; get dataProductOptions(): DataProductOption[]; loadEntities(): GeneratorFn; get isProductLinkable(): boolean; TEMPORARY__setupPanelContentRenderer: () => React.ReactNode; get sdlc(): LegendSDLC; get floatingExecutionElements(): PackageableElement[] | undefined; copyDataProductLinkToClipBoard(): void; } //# sourceMappingURL=LegendQueryDataProductQueryBuilderState.d.ts.map