catalog: mark ancestors and descendants for deprecation (#3392)

This commit is contained in:
Fredrik Adelöw
2020-11-23 11:29:37 +01:00
committed by GitHub
parent 514c269b36
commit 1185919f39
5 changed files with 104 additions and 0 deletions
@@ -57,8 +57,22 @@ export interface GroupEntityV1alpha1 extends Entity {
spec: {
type: string;
parent?: string;
/**
* @deprecated This field will disappear on Dec 6th, 2020. Please remove
* any consuming code. Producers can stop producing this field
* before that date, as long as the catalog backend uses the
* BuiltinKindsEntityProcessor which inserts the fields in the
* mean time.
*/
ancestors: string[];
children: string[];
/**
* @deprecated This field will disappear on Dec 6th, 2020. Please remove
* any consuming code. Producers can stop producing this field
* before that date, as long as the catalog backend uses the
* BuiltinKindsEntityProcessor which inserts the fields in the
* mean time.
*/
descendants: string[];
};
}