@runfile-ai/schemas 0.4.0 → 0.6.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.
@@ -56,9 +56,9 @@ export declare const MerkleManifestSchema: z.ZodObject<{
56
56
  inclusion_proof: string;
57
57
  }>>;
58
58
  }, "strict", z.ZodTypeAny, {
59
+ tenant_id: string;
59
60
  merkle_root: string;
60
61
  schema_version: string;
61
- tenant_id: string;
62
62
  manifest_version: string;
63
63
  day_utc: string;
64
64
  built_at: string;
@@ -81,9 +81,9 @@ export declare const MerkleManifestSchema: z.ZodObject<{
81
81
  inclusion_proof: string;
82
82
  } | undefined;
83
83
  }, {
84
+ tenant_id: string;
84
85
  merkle_root: string;
85
86
  schema_version: string;
86
- tenant_id: string;
87
87
  manifest_version: string;
88
88
  day_utc: string;
89
89
  built_at: string;
@@ -1074,7 +1074,9 @@
1074
1074
  "type": "string",
1075
1075
  "enum": [
1076
1076
  "runfile-py",
1077
- "@runfile/sdk"
1077
+ "@runfile/sdk",
1078
+ "runfile-ai",
1079
+ "@runfile-ai/sdk"
1078
1080
  ]
1079
1081
  },
1080
1082
  "version": {
@@ -114,7 +114,9 @@
114
114
  "type": "string",
115
115
  "enum": [
116
116
  "runfile-py",
117
- "@runfile/sdk"
117
+ "@runfile/sdk",
118
+ "runfile-ai",
119
+ "@runfile-ai/sdk"
118
120
  ]
119
121
  },
120
122
  "version": {
@@ -229,7 +229,9 @@
229
229
  "type": "string",
230
230
  "enum": [
231
231
  "runfile-py",
232
- "@runfile/sdk"
232
+ "@runfile/sdk",
233
+ "runfile-ai",
234
+ "@runfile-ai/sdk"
233
235
  ]
234
236
  },
235
237
  "version": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runfile-ai/schemas",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "description": "Runfile event, ingest, vault, evidence, and manifest schemas. Source of truth in Zod; generates JSON Schema, Pydantic, and Go.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",