@treeseed/sdk 0.13.0-rc.31 → 0.13.0-rc.32

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.
@@ -175,7 +175,7 @@ const integrationReleaseSchema = z.object({
175
175
  release: packageVersion,
176
176
  manifest: lockedArtifactSchema,
177
177
  files: z.array(z.object({ path: z.string().min(1), artifact: lockedArtifactSchema }).strict()).min(1)
178
- }).strict()).min(1),
178
+ }).strict()),
179
179
  createdAt: z.string().datetime()
180
180
  }).strict().superRefine((release, context) => {
181
181
  const components = release.components.map((component) => component.componentId);
@@ -189,7 +189,7 @@ const releaseCatalogSchema = z.object({
189
189
  compatibilityId: identifier,
190
190
  catalogDigest: digest,
191
191
  stableBase: z.object({ release: packageVersion, catalogDigest: digest }).strict().nullable(),
192
- components: z.array(componentReleaseSchema).min(1),
192
+ components: z.array(componentReleaseSchema),
193
193
  createdAt: z.string().datetime()
194
194
  }).strict().superRefine((catalog, context) => {
195
195
  if (catalog.track === "development" && !catalog.stableBase) context.addIssue({ code: z.ZodIssueCode.custom, path: ["stableBase"], message: "Development catalogs require an exact stable base." });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treeseed/sdk",
3
- "version": "0.13.0-rc.31",
3
+ "version": "0.13.0-rc.32",
4
4
  "description": "Portable TreeSeed contracts, standards, and typed remote control-plane clients.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {