Skip to content

Commit ca8c1e5

Browse files
committed
create a namespace metadata type file
1 parent 5caa21e commit ca8c1e5

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
export interface HubNamespaceMetadata {
2+
metadata: {
3+
pulp_href: string;
4+
name: string;
5+
company: string;
6+
email: string;
7+
description: string;
8+
resources: string;
9+
links: string[];
10+
avatar_sha256: null;
11+
avatar_url: null;
12+
metadata_sha256: string;
13+
groups: [];
14+
task: null;
15+
};
16+
repository: {
17+
pulp_href: string;
18+
pulp_created: string;
19+
versions_href: string;
20+
pulp_labels: {
21+
pipeline: string;
22+
};
23+
latest_version_href: string;
24+
name: string;
25+
description: string;
26+
retain_repo_versions: number;
27+
remote: null;
28+
};
29+
in_latest_repo_version: true;
30+
in_old_repo_version: false;
31+
}

0 commit comments

Comments
 (0)