@finos/legend-application-studio
Version:
Legend Studio application core
36 lines • 2.94 kB
TypeScript
/**
* 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 { type AccessPoint, type AccessPointGroup, type DataProduct, type Email, SupportInfo, type LakehouseAccessPoint } from '@finos/legend-graph';
export declare const dataProduct_deleteAccessPoint: (group: AccessPointGroup, accessPoint: AccessPoint) => void;
export declare const dataProduct_addAccessPoint: (group: AccessPointGroup, accessPoint: AccessPoint) => void;
export declare const accessPoint_setClassification: (accessPoint: LakehouseAccessPoint, classification: string | undefined) => void;
export declare const accessPoint_setReproducible: (accessPoint: LakehouseAccessPoint, reproducible: boolean | undefined) => void;
export declare const accessPointGroup_setDescription: (group: AccessPointGroup, description: string) => void;
export declare const accessPointGroup_setName: (group: AccessPointGroup, name: string) => void;
export declare const accessPointGroup_swapAccessPoints: (group: AccessPointGroup, sourceAp: AccessPoint, targetAp: AccessPoint) => void;
export declare const dataProduct_addAccessPointGroup: (product: DataProduct, accessPointGroup: AccessPointGroup) => void;
export declare const dataProduct_deleteAccessPointGroup: (product: DataProduct, accessPointGroup: AccessPointGroup) => void;
export declare const dataProduct_swapAccessPointGroups: (product: DataProduct, sourceGroup: AccessPointGroup, targetGroup: AccessPointGroup) => void;
export declare const dataProduct_setTitle: (product: DataProduct, title: string) => void;
export declare const dataProduct_setDescription: (product: DataProduct, description: string) => void;
export declare const dataProduct_setSupportInfoIfAbsent: (product: DataProduct) => void;
export declare const supportInfo_setDocumentationUrl: (supportInfo: SupportInfo, documentationUrl: string) => void;
export declare const supportInfo_setWebsite: (supportInfo: SupportInfo, website: string) => void;
export declare const supportInfo_setFaqUrl: (supportInfo: SupportInfo, faqUrl: string) => void;
export declare const supportInfo_setSupportUrl: (supportInfo: SupportInfo, supportUrl: string) => void;
export declare const supportInfo_addEmail: (supportInfo: SupportInfo, email: Email) => void;
export declare const supportInfo_deleteEmail: (supportInfo: SupportInfo, email: Email) => void;
//# sourceMappingURL=DSL_DataProduct_GraphModifierHelper.d.ts.map