mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-16 19:04:16 +00:00
Update generated TypeScript types
This commit is contained in:
parent
28b566110e
commit
6784245e87
@ -22,6 +22,8 @@ export enum NodeSubType {
|
|||||||
RollbackEntityTask = "rollbackEntityTask",
|
RollbackEntityTask = "rollbackEntityTask",
|
||||||
RunAppTask = "runAppTask",
|
RunAppTask = "runAppTask",
|
||||||
SetEntityAttributeTask = "setEntityAttributeTask",
|
SetEntityAttributeTask = "setEntityAttributeTask",
|
||||||
|
SetEntityCertificationTask = "setEntityCertificationTask",
|
||||||
|
SetGlossaryTermStatusTask = "setGlossaryTermStatusTask",
|
||||||
StartEvent = "startEvent",
|
StartEvent = "startEvent",
|
||||||
UserApprovalTask = "userApprovalTask",
|
UserApprovalTask = "userApprovalTask",
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2025 Collate.
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Sets the Entity Certification to the configured value.
|
||||||
|
*/
|
||||||
|
export interface SetEntityCertificationTask {
|
||||||
|
config?: NodeConfiguration;
|
||||||
|
/**
|
||||||
|
* Description of the Node.
|
||||||
|
*/
|
||||||
|
description?: string;
|
||||||
|
/**
|
||||||
|
* Display Name that identifies this Node.
|
||||||
|
*/
|
||||||
|
displayName?: string;
|
||||||
|
input?: string[];
|
||||||
|
inputNamespaceMap?: InputNamespaceMap;
|
||||||
|
/**
|
||||||
|
* Name that identifies this Node.
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
subType?: string;
|
||||||
|
type?: string;
|
||||||
|
[property: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface NodeConfiguration {
|
||||||
|
/**
|
||||||
|
* Choose which Certification to apply to the Data Asset
|
||||||
|
*/
|
||||||
|
certification: CertificationEnum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Choose which Certification to apply to the Data Asset
|
||||||
|
*/
|
||||||
|
export enum CertificationEnum {
|
||||||
|
CertificationBronze = "Certification.Bronze",
|
||||||
|
CertificationGold = "Certification.Gold",
|
||||||
|
CertificationSilver = "Certification.Silver",
|
||||||
|
Empty = "",
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface InputNamespaceMap {
|
||||||
|
relatedEntity: string;
|
||||||
|
updatedBy?: string;
|
||||||
|
}
|
||||||
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2025 Collate.
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Sets the GlossaryTerm Status to the configured value.
|
||||||
|
*/
|
||||||
|
export interface SetGlossaryTermStatusTask {
|
||||||
|
config?: NodeConfiguration;
|
||||||
|
/**
|
||||||
|
* Description of the Node.
|
||||||
|
*/
|
||||||
|
description?: string;
|
||||||
|
/**
|
||||||
|
* Display Name that identifies this Node.
|
||||||
|
*/
|
||||||
|
displayName?: string;
|
||||||
|
input?: string[];
|
||||||
|
inputNamespaceMap?: InputNamespaceMap;
|
||||||
|
/**
|
||||||
|
* Name that identifies this Node.
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
subType?: string;
|
||||||
|
type?: string;
|
||||||
|
[property: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface NodeConfiguration {
|
||||||
|
/**
|
||||||
|
* Choose which Status to apply to the Glossary Term
|
||||||
|
*/
|
||||||
|
glossaryTermStatus: EntityStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Choose which Status to apply to the Glossary Term
|
||||||
|
*
|
||||||
|
* Status of an entity. It is used for governance and is applied to all the entities in the
|
||||||
|
* catalog.
|
||||||
|
*/
|
||||||
|
export enum EntityStatus {
|
||||||
|
Approved = "Approved",
|
||||||
|
Deprecated = "Deprecated",
|
||||||
|
Draft = "Draft",
|
||||||
|
InReview = "In Review",
|
||||||
|
Rejected = "Rejected",
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface InputNamespaceMap {
|
||||||
|
relatedEntity: string;
|
||||||
|
updatedBy?: string;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user