@treeseed/sdk 0.13.0-rc.29 → 0.13.0-rc.30

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.
@@ -753,19 +753,19 @@ export declare const hostConfigurationSchema: z.ZodObject<{
753
753
  network: z.ZodObject<{
754
754
  manager: z.ZodObject<{
755
755
  binding: z.ZodString;
756
- aliases: z.ZodArray<z.ZodString, "many">;
757
- sans: z.ZodArray<z.ZodString, "many">;
758
- trustedLanCidrs: z.ZodArray<z.ZodString, "many">;
756
+ aliases: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
757
+ sans: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
758
+ trustedLanCidrs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
759
759
  }, "strict", z.ZodTypeAny, {
760
760
  aliases: string[];
761
761
  binding: string;
762
762
  sans: string[];
763
763
  trustedLanCidrs: string[];
764
764
  }, {
765
- aliases: string[];
766
765
  binding: string;
767
- sans: string[];
768
- trustedLanCidrs: string[];
766
+ aliases?: string[] | undefined;
767
+ sans?: string[] | undefined;
768
+ trustedLanCidrs?: string[] | undefined;
769
769
  }>;
770
770
  }, "strict", z.ZodTypeAny, {
771
771
  manager: {
@@ -776,10 +776,10 @@ export declare const hostConfigurationSchema: z.ZodObject<{
776
776
  };
777
777
  }, {
778
778
  manager: {
779
- aliases: string[];
780
779
  binding: string;
781
- sans: string[];
782
- trustedLanCidrs: string[];
780
+ aliases?: string[] | undefined;
781
+ sans?: string[] | undefined;
782
+ trustedLanCidrs?: string[] | undefined;
783
783
  };
784
784
  }>;
785
785
  fleet: z.ZodEffects<z.ZodObject<{
@@ -1308,10 +1308,10 @@ export declare const hostConfigurationSchema: z.ZodObject<{
1308
1308
  }>;
1309
1309
  network: {
1310
1310
  manager: {
1311
- aliases: string[];
1312
1311
  binding: string;
1313
- sans: string[];
1314
- trustedLanCidrs: string[];
1312
+ aliases?: string[] | undefined;
1313
+ sans?: string[] | undefined;
1314
+ trustedLanCidrs?: string[] | undefined;
1315
1315
  };
1316
1316
  };
1317
1317
  fleet: {
@@ -2638,6 +2638,7 @@ export declare const componentReleaseSchema: z.ZodEffects<z.ZodObject<{
2638
2638
  export declare const integrationReleaseSchema: z.ZodEffects<z.ZodObject<{
2639
2639
  schemaVersion: z.ZodLiteral<"treeseed.integration-release/v1">;
2640
2640
  release: z.ZodString;
2641
+ generation: z.ZodNumber;
2641
2642
  track: z.ZodEnum<["stable", "development"]>;
2642
2643
  compatibilityId: z.ZodString;
2643
2644
  platform: z.ZodObject<{
@@ -2765,6 +2766,7 @@ export declare const integrationReleaseSchema: z.ZodEffects<z.ZodObject<{
2765
2766
  }, "strict", z.ZodTypeAny, {
2766
2767
  track: "stable" | "development";
2767
2768
  schemaVersion: "treeseed.integration-release/v1";
2769
+ generation: number;
2768
2770
  components: {
2769
2771
  componentId: string;
2770
2772
  files: {
@@ -2804,6 +2806,7 @@ export declare const integrationReleaseSchema: z.ZodEffects<z.ZodObject<{
2804
2806
  }, {
2805
2807
  track: "stable" | "development";
2806
2808
  schemaVersion: "treeseed.integration-release/v1";
2809
+ generation: number;
2807
2810
  components: {
2808
2811
  componentId: string;
2809
2812
  files: {
@@ -2843,6 +2846,7 @@ export declare const integrationReleaseSchema: z.ZodEffects<z.ZodObject<{
2843
2846
  }>, {
2844
2847
  track: "stable" | "development";
2845
2848
  schemaVersion: "treeseed.integration-release/v1";
2849
+ generation: number;
2846
2850
  components: {
2847
2851
  componentId: string;
2848
2852
  files: {
@@ -2882,6 +2886,7 @@ export declare const integrationReleaseSchema: z.ZodEffects<z.ZodObject<{
2882
2886
  }, {
2883
2887
  track: "stable" | "development";
2884
2888
  schemaVersion: "treeseed.integration-release/v1";
2889
+ generation: number;
2885
2890
  components: {
2886
2891
  componentId: string;
2887
2892
  files: {
@@ -84,7 +84,7 @@ const hostConfigurationSchema = z.object({
84
84
  }).strict(),
85
85
  components: z.record(identifier, hostComponentSchema),
86
86
  network: z.object({
87
- manager: z.object({ binding, aliases: z.array(localAlias).min(1), sans: z.array(z.string().min(1)), trustedLanCidrs: z.array(z.string().min(1)) }).strict()
87
+ manager: z.object({ binding, aliases: z.array(localAlias).default([]), sans: z.array(z.string().min(1)).default([]), trustedLanCidrs: z.array(z.string().min(1)).default([]) }).strict()
88
88
  }).strict(),
89
89
  fleet: z.object({
90
90
  rolloutGroup: identifier,
@@ -164,6 +164,7 @@ const lockedArtifactSchema = z.object({ url: z.string().url(), sha256: z.string(
164
164
  const integrationReleaseSchema = z.object({
165
165
  schemaVersion: z.literal("treeseed.integration-release/v1"),
166
166
  release: packageVersion,
167
+ generation: z.number().int().positive(),
167
168
  track: deploymentTrackSchema,
168
169
  compatibilityId: identifier,
169
170
  platform: z.object({ repository: z.literal("treeseed-ai/platform"), commit: gitCommit }).strict(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treeseed/sdk",
3
- "version": "0.13.0-rc.29",
3
+ "version": "0.13.0-rc.30",
4
4
  "description": "Portable TreeSeed contracts, standards, and typed remote control-plane clients.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {