@perses-dev/core 0.52.0-rc.0 → 0.52.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,11 +5,11 @@ export declare const datasourceSpecSchema: z.ZodSchema<DatasourceSpec>;
|
|
|
5
5
|
export declare function buildDatasourceSpecSchema(pluginSchema: PluginSchema): z.ZodSchema<DatasourceSpec>;
|
|
6
6
|
export declare const datasourceSchema: z.ZodObject<{
|
|
7
7
|
kind: z.ZodLiteral<"Datasource">;
|
|
8
|
-
metadata: z.ZodObject<
|
|
8
|
+
metadata: z.ZodObject<{
|
|
9
9
|
name: z.ZodString;
|
|
10
|
-
}
|
|
10
|
+
} & {
|
|
11
11
|
project: z.ZodString;
|
|
12
|
-
}
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
project: string;
|
|
14
14
|
name: string;
|
|
15
15
|
}, {
|
|
@@ -7,11 +7,11 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
7
7
|
}, {
|
|
8
8
|
name: string;
|
|
9
9
|
}>;
|
|
10
|
-
export declare const projectMetadataSchema: z.ZodObject<
|
|
10
|
+
export declare const projectMetadataSchema: z.ZodObject<{
|
|
11
11
|
name: z.ZodString;
|
|
12
|
-
}
|
|
12
|
+
} & {
|
|
13
13
|
project: z.ZodString;
|
|
14
|
-
}
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
15
|
project: string;
|
|
16
16
|
name: string;
|
|
17
17
|
}, {
|
package/dist/schema/role.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ export declare const permissionSchema: z.ZodSchema<Permission>;
|
|
|
4
4
|
export declare const roleSpecSchema: z.ZodSchema<RoleSpec>;
|
|
5
5
|
export declare const roleSchema: z.ZodObject<{
|
|
6
6
|
kind: z.ZodLiteral<"Role">;
|
|
7
|
-
metadata: z.ZodObject<
|
|
7
|
+
metadata: z.ZodObject<{
|
|
8
8
|
name: z.ZodString;
|
|
9
|
-
}
|
|
9
|
+
} & {
|
|
10
10
|
project: z.ZodString;
|
|
11
|
-
}
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
project: string;
|
|
13
13
|
name: string;
|
|
14
14
|
}, {
|
|
@@ -4,11 +4,11 @@ export declare const subjectSchema: z.ZodSchema<Subject>;
|
|
|
4
4
|
export declare const roleBindingSpecSchema: z.ZodSchema<RoleBindingSpec>;
|
|
5
5
|
export declare const roleBindingSchema: z.ZodObject<{
|
|
6
6
|
kind: z.ZodLiteral<"RoleBinding">;
|
|
7
|
-
metadata: z.ZodObject<
|
|
7
|
+
metadata: z.ZodObject<{
|
|
8
8
|
name: z.ZodString;
|
|
9
|
-
}
|
|
9
|
+
} & {
|
|
10
10
|
project: z.ZodString;
|
|
11
|
-
}
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
project: string;
|
|
13
13
|
name: string;
|
|
14
14
|
}, {
|
package/dist/schema/secret.d.ts
CHANGED
|
@@ -252,11 +252,11 @@ export declare const secretSpecSchema: z.ZodEffects<z.ZodObject<{
|
|
|
252
252
|
}>;
|
|
253
253
|
export declare const secretSchema: z.ZodObject<{
|
|
254
254
|
kind: z.ZodLiteral<"Secret">;
|
|
255
|
-
metadata: z.ZodObject<
|
|
255
|
+
metadata: z.ZodObject<{
|
|
256
256
|
name: z.ZodString;
|
|
257
|
-
}
|
|
257
|
+
} & {
|
|
258
258
|
project: z.ZodString;
|
|
259
|
-
}
|
|
259
|
+
}, "strip", z.ZodTypeAny, {
|
|
260
260
|
project: string;
|
|
261
261
|
name: string;
|
|
262
262
|
}, {
|
|
@@ -924,11 +924,11 @@ export declare const globalSecretSchema: z.ZodObject<{
|
|
|
924
924
|
}>;
|
|
925
925
|
export declare const secretsEditorSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
926
926
|
kind: z.ZodLiteral<"Secret">;
|
|
927
|
-
metadata: z.ZodObject<
|
|
927
|
+
metadata: z.ZodObject<{
|
|
928
928
|
name: z.ZodString;
|
|
929
|
-
}
|
|
929
|
+
} & {
|
|
930
930
|
project: z.ZodString;
|
|
931
|
-
}
|
|
931
|
+
}, "strip", z.ZodTypeAny, {
|
|
932
932
|
project: string;
|
|
933
933
|
name: string;
|
|
934
934
|
}, {
|
|
@@ -30,11 +30,11 @@ export declare const variableSpecSchema: z.ZodSchema<TextVariableDefinition | Li
|
|
|
30
30
|
export declare function buildVariableSpecSchema(pluginSchema: PluginSchema): z.ZodSchema<VariableDefinition>;
|
|
31
31
|
export declare const variableSchema: z.ZodObject<{
|
|
32
32
|
kind: z.ZodLiteral<"Variable">;
|
|
33
|
-
metadata: z.ZodObject<
|
|
33
|
+
metadata: z.ZodObject<{
|
|
34
34
|
name: z.ZodString;
|
|
35
|
-
}
|
|
35
|
+
} & {
|
|
36
36
|
project: z.ZodString;
|
|
37
|
-
}
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
project: string;
|
|
39
39
|
name: string;
|
|
40
40
|
}, {
|
|
@@ -59,11 +59,11 @@ export declare const variableSchema: z.ZodObject<{
|
|
|
59
59
|
}>;
|
|
60
60
|
export declare const globalVariableSchema: z.ZodObject<{
|
|
61
61
|
kind: z.ZodLiteral<"GlobalVariable">;
|
|
62
|
-
metadata: z.ZodObject<
|
|
62
|
+
metadata: z.ZodObject<{
|
|
63
63
|
name: z.ZodString;
|
|
64
|
-
}
|
|
64
|
+
} & {
|
|
65
65
|
project: z.ZodString;
|
|
66
|
-
}
|
|
66
|
+
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
project: string;
|
|
68
68
|
name: string;
|
|
69
69
|
}, {
|
package/package.json
CHANGED