@treeseed/sdk 0.13.0-rc.89 → 0.13.0-rc.90
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"completedAt":"2026-09-
|
|
1
|
+
{"completedAt":"2026-09-05T05:09:06.919Z"}
|
|
@@ -1283,13 +1283,13 @@ export declare const hostConfigurationSchema: z.ZodObject<{
|
|
|
1283
1283
|
};
|
|
1284
1284
|
}>;
|
|
1285
1285
|
secrets: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1286
|
-
provider: z.ZodEnum<["file", "systemd-credential"
|
|
1286
|
+
provider: z.ZodEnum<["file", "systemd-credential"]>;
|
|
1287
1287
|
reference: z.ZodString;
|
|
1288
1288
|
}, "strict", z.ZodTypeAny, {
|
|
1289
|
-
provider: "file" | "systemd-credential"
|
|
1289
|
+
provider: "file" | "systemd-credential";
|
|
1290
1290
|
reference: string;
|
|
1291
1291
|
}, {
|
|
1292
|
-
provider: "file" | "systemd-credential"
|
|
1292
|
+
provider: "file" | "systemd-credential";
|
|
1293
1293
|
reference: string;
|
|
1294
1294
|
}>>;
|
|
1295
1295
|
security: z.ZodOptional<z.ZodObject<{
|
|
@@ -1553,7 +1553,7 @@ export declare const hostConfigurationSchema: z.ZodObject<{
|
|
|
1553
1553
|
};
|
|
1554
1554
|
};
|
|
1555
1555
|
secrets: Record<string, {
|
|
1556
|
-
provider: "file" | "systemd-credential"
|
|
1556
|
+
provider: "file" | "systemd-credential";
|
|
1557
1557
|
reference: string;
|
|
1558
1558
|
}>;
|
|
1559
1559
|
security?: {
|
|
@@ -1693,7 +1693,7 @@ export declare const hostConfigurationSchema: z.ZodObject<{
|
|
|
1693
1693
|
};
|
|
1694
1694
|
};
|
|
1695
1695
|
secrets: Record<string, {
|
|
1696
|
-
provider: "file" | "systemd-credential"
|
|
1696
|
+
provider: "file" | "systemd-credential";
|
|
1697
1697
|
reference: string;
|
|
1698
1698
|
}>;
|
|
1699
1699
|
security?: {
|
|
@@ -134,7 +134,7 @@ const hostConfigurationSchema = z.object({
|
|
|
134
134
|
if (fleet.receiptReporting.enabled && fleet.receiptReporting.connection?.kind !== "remote") context.addIssue({ code: z.ZodIssueCode.custom, path: ["receiptReporting", "connection"], message: "Enabled fleet receipt reporting requires an explicit remote connection." });
|
|
135
135
|
}),
|
|
136
136
|
secrets: z.record(identifier, z.object({
|
|
137
|
-
provider: z.enum(["file", "systemd-credential"
|
|
137
|
+
provider: z.enum(["file", "systemd-credential"]),
|
|
138
138
|
reference: z.string().min(1)
|
|
139
139
|
}).strict()),
|
|
140
140
|
security: z.object({
|