@peasant-labs/schema 0.1.3 → 0.15.0

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.
@@ -3647,6 +3647,7 @@ export declare const zUICapabilitiesResponse: z.ZodObject<{
3647
3647
  }, z.core.$strict>;
3648
3648
  export type UICapabilitiesResponse = z.infer<typeof zUICapabilitiesResponse>;
3649
3649
  export declare const zUnifiedMetadata: z.ZodObject<{
3650
+ adapterVersion: z.ZodOptional<z.ZodInt>;
3650
3651
  contentHash: z.ZodString;
3651
3652
  cwd: z.ZodOptional<z.ZodString>;
3652
3653
  derivedAt: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
@@ -1794,6 +1794,7 @@ export const zUICapabilitiesResponse = z.object({
1794
1794
  uiCapabilities: z.array(z.string()).optional()
1795
1795
  }).strict();
1796
1796
  export const zUnifiedMetadata = z.object({
1797
+ adapterVersion: z.int().gte(1).optional(),
1797
1798
  contentHash: z.string(),
1798
1799
  cwd: z.string().optional(),
1799
1800
  derivedAt: z.int().nullish(),
@@ -1,4 +1,4 @@
1
1
  export declare const VillageAPIVersion: "0.14.0";
2
2
  export declare const PeasantLocalAPIVersion: "0.9.0";
3
- export declare const TypesVersion: "0.14.0";
4
- export declare const MetadataSchemaVersion: 9;
3
+ export declare const TypesVersion: "0.15.0";
4
+ export declare const MetadataSchemaVersion: 10;
@@ -1,5 +1,5 @@
1
1
  // Code generated from the canonical Go/OpenAPI contract. DO NOT EDIT.
2
2
  export const VillageAPIVersion = "0.14.0";
3
3
  export const PeasantLocalAPIVersion = "0.9.0";
4
- export const TypesVersion = "0.14.0";
5
- export const MetadataSchemaVersion = 9;
4
+ export const TypesVersion = "0.15.0";
5
+ export const MetadataSchemaVersion = 10;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peasant-labs/schema",
3
- "version": "0.1.3",
3
+ "version": "0.15.0",
4
4
  "description": "Generated TypeScript contract bindings for the peasant-labs schema module",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {