Update generated TypeScript types

This commit is contained in:
github-actions[bot] 2025-09-22 17:21:44 +00:00
parent 28b566110e
commit 6784245e87
3 changed files with 120 additions and 0 deletions

View File

@ -22,6 +22,8 @@ export enum NodeSubType {
RollbackEntityTask = "rollbackEntityTask",
RunAppTask = "runAppTask",
SetEntityAttributeTask = "setEntityAttributeTask",
SetEntityCertificationTask = "setEntityCertificationTask",
SetGlossaryTermStatusTask = "setGlossaryTermStatusTask",
StartEvent = "startEvent",
UserApprovalTask = "userApprovalTask",
}

View File

@ -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;
}

View File

@ -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;
}