@@ -20,8 +20,8 @@ export const catalogConditions: Conditions<{
|
||||
EntitiesSearchFilter,
|
||||
'catalog-entity',
|
||||
{
|
||||
value?: string | undefined;
|
||||
annotation: string;
|
||||
value?: string | undefined;
|
||||
}
|
||||
>;
|
||||
hasLabel: PermissionRule<
|
||||
@@ -37,8 +37,8 @@ export const catalogConditions: Conditions<{
|
||||
EntitiesSearchFilter,
|
||||
'catalog-entity',
|
||||
{
|
||||
value?: string | undefined;
|
||||
key: string;
|
||||
value?: string | undefined;
|
||||
}
|
||||
>;
|
||||
hasSpec: PermissionRule<
|
||||
@@ -46,8 +46,8 @@ export const catalogConditions: Conditions<{
|
||||
EntitiesSearchFilter,
|
||||
'catalog-entity',
|
||||
{
|
||||
value?: string | undefined;
|
||||
key: string;
|
||||
value?: string | undefined;
|
||||
}
|
||||
>;
|
||||
isEntityKind: PermissionRule<
|
||||
@@ -104,8 +104,8 @@ export const permissionRules: {
|
||||
EntitiesSearchFilter,
|
||||
'catalog-entity',
|
||||
{
|
||||
value?: string | undefined;
|
||||
annotation: string;
|
||||
value?: string | undefined;
|
||||
}
|
||||
>;
|
||||
hasLabel: PermissionRule<
|
||||
@@ -121,8 +121,8 @@ export const permissionRules: {
|
||||
EntitiesSearchFilter,
|
||||
'catalog-entity',
|
||||
{
|
||||
value?: string | undefined;
|
||||
key: string;
|
||||
value?: string | undefined;
|
||||
}
|
||||
>;
|
||||
hasSpec: PermissionRule<
|
||||
@@ -130,8 +130,8 @@ export const permissionRules: {
|
||||
EntitiesSearchFilter,
|
||||
'catalog-entity',
|
||||
{
|
||||
value?: string | undefined;
|
||||
key: string;
|
||||
value?: string | undefined;
|
||||
}
|
||||
>;
|
||||
isEntityKind: PermissionRule<
|
||||
|
||||
@@ -83,8 +83,10 @@ export function createCatalogRegisterAction(options: {
|
||||
|
||||
// @public
|
||||
export function createCatalogWriteAction(): TemplateAction_2<{
|
||||
entity: {} & {
|
||||
[k: string]: unknown;
|
||||
};
|
||||
filePath?: string | undefined;
|
||||
entity: {};
|
||||
}>;
|
||||
|
||||
// @public
|
||||
|
||||
@@ -75,10 +75,10 @@ export const EntityNamePickerFieldExtension: FieldExtensionComponent_2<
|
||||
export const EntityPickerFieldExtension: FieldExtensionComponent_2<
|
||||
string,
|
||||
{
|
||||
defaultKind?: string | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
allowedKinds?: string[] | undefined;
|
||||
defaultKind?: string | undefined;
|
||||
allowArbitraryValues?: boolean | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
catalogFilter?:
|
||||
| Record<
|
||||
string,
|
||||
@@ -104,10 +104,10 @@ export const EntityPickerFieldExtension: FieldExtensionComponent_2<
|
||||
export const EntityPickerFieldSchema: FieldSchema<
|
||||
string,
|
||||
{
|
||||
defaultKind?: string | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
allowedKinds?: string[] | undefined;
|
||||
defaultKind?: string | undefined;
|
||||
allowArbitraryValues?: boolean | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
catalogFilter?:
|
||||
| Record<
|
||||
string,
|
||||
@@ -137,8 +137,8 @@ export type EntityPickerUiOptions =
|
||||
export const EntityTagsPickerFieldExtension: FieldExtensionComponent_2<
|
||||
string[],
|
||||
{
|
||||
showCounts?: boolean | undefined;
|
||||
kinds?: string[] | undefined;
|
||||
showCounts?: boolean | undefined;
|
||||
helperText?: string | undefined;
|
||||
}
|
||||
>;
|
||||
@@ -147,8 +147,8 @@ export const EntityTagsPickerFieldExtension: FieldExtensionComponent_2<
|
||||
export const EntityTagsPickerFieldSchema: FieldSchema<
|
||||
string[],
|
||||
{
|
||||
showCounts?: boolean | undefined;
|
||||
kinds?: string[] | undefined;
|
||||
showCounts?: boolean | undefined;
|
||||
helperText?: string | undefined;
|
||||
}
|
||||
>;
|
||||
@@ -210,10 +210,10 @@ export function makeFieldSchemaFromZod<
|
||||
export const OwnedEntityPickerFieldExtension: FieldExtensionComponent_2<
|
||||
string,
|
||||
{
|
||||
defaultKind?: string | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
allowedKinds?: string[] | undefined;
|
||||
defaultKind?: string | undefined;
|
||||
allowArbitraryValues?: boolean | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
}
|
||||
>;
|
||||
|
||||
@@ -221,10 +221,10 @@ export const OwnedEntityPickerFieldExtension: FieldExtensionComponent_2<
|
||||
export const OwnedEntityPickerFieldSchema: FieldSchema<
|
||||
string,
|
||||
{
|
||||
defaultKind?: string | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
allowedKinds?: string[] | undefined;
|
||||
defaultKind?: string | undefined;
|
||||
allowArbitraryValues?: boolean | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
}
|
||||
>;
|
||||
|
||||
@@ -236,9 +236,9 @@ export type OwnedEntityPickerUiOptions =
|
||||
export const OwnerPickerFieldExtension: FieldExtensionComponent_2<
|
||||
string,
|
||||
{
|
||||
defaultNamespace?: string | false | undefined;
|
||||
allowedKinds?: string[] | undefined;
|
||||
allowArbitraryValues?: boolean | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
catalogFilter?:
|
||||
| Record<
|
||||
string,
|
||||
@@ -264,9 +264,9 @@ export const OwnerPickerFieldExtension: FieldExtensionComponent_2<
|
||||
export const OwnerPickerFieldSchema: FieldSchema<
|
||||
string,
|
||||
{
|
||||
defaultNamespace?: string | false | undefined;
|
||||
allowedKinds?: string[] | undefined;
|
||||
allowArbitraryValues?: boolean | undefined;
|
||||
defaultNamespace?: string | false | undefined;
|
||||
catalogFilter?:
|
||||
| Record<
|
||||
string,
|
||||
@@ -311,16 +311,16 @@ export const RepoUrlPickerFieldExtension: FieldExtensionComponent_2<
|
||||
allowedRepos?: string[] | undefined;
|
||||
requestUserCredentials?:
|
||||
| {
|
||||
secretsKey: string;
|
||||
additionalScopes?:
|
||||
| {
|
||||
azure?: string[] | undefined;
|
||||
gerrit?: string[] | undefined;
|
||||
github?: string[] | undefined;
|
||||
gitlab?: string[] | undefined;
|
||||
bitbucket?: string[] | undefined;
|
||||
gerrit?: string[] | undefined;
|
||||
azure?: string[] | undefined;
|
||||
}
|
||||
| undefined;
|
||||
secretsKey: string;
|
||||
}
|
||||
| undefined;
|
||||
}
|
||||
@@ -337,16 +337,16 @@ export const RepoUrlPickerFieldSchema: FieldSchema<
|
||||
allowedRepos?: string[] | undefined;
|
||||
requestUserCredentials?:
|
||||
| {
|
||||
secretsKey: string;
|
||||
additionalScopes?:
|
||||
| {
|
||||
azure?: string[] | undefined;
|
||||
gerrit?: string[] | undefined;
|
||||
github?: string[] | undefined;
|
||||
gitlab?: string[] | undefined;
|
||||
bitbucket?: string[] | undefined;
|
||||
gerrit?: string[] | undefined;
|
||||
azure?: string[] | undefined;
|
||||
}
|
||||
| undefined;
|
||||
secretsKey: string;
|
||||
}
|
||||
| undefined;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user