@valbuild/shared 0.81.0 → 0.83.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.
@@ -3069,7 +3069,7 @@ export declare const Api: {
3069
3069
  schemaSha: z.ZodString;
3070
3070
  sourcesSha: z.ZodString;
3071
3071
  modules: z.ZodRecord<z.ZodEffects<z.ZodString, ModuleFilePath, string>, z.ZodObject<{
3072
- preview: z.ZodAny;
3072
+ render: z.ZodAny;
3073
3073
  source: z.ZodAny;
3074
3074
  patches: z.ZodOptional<z.ZodObject<{
3075
3075
  applied: z.ZodArray<z.ZodEffects<z.ZodString, import("@valbuild/core").PatchId, string>, "many">;
@@ -3118,7 +3118,7 @@ export declare const Api: {
3118
3118
  }>> | undefined;
3119
3119
  skipped?: import("@valbuild/core").PatchId[] | undefined;
3120
3120
  } | undefined;
3121
- preview?: any;
3121
+ render?: any;
3122
3122
  source?: any;
3123
3123
  validationErrors?: Record<string, {
3124
3124
  message: string;
@@ -3134,7 +3134,7 @@ export declare const Api: {
3134
3134
  }> | undefined;
3135
3135
  skipped?: string[] | undefined;
3136
3136
  } | undefined;
3137
- preview?: any;
3137
+ render?: any;
3138
3138
  source?: any;
3139
3139
  validationErrors?: Record<string, {
3140
3140
  message: string;
@@ -3154,7 +3154,7 @@ export declare const Api: {
3154
3154
  }>> | undefined;
3155
3155
  skipped?: import("@valbuild/core").PatchId[] | undefined;
3156
3156
  } | undefined;
3157
- preview?: any;
3157
+ render?: any;
3158
3158
  source?: any;
3159
3159
  validationErrors?: Record<string, {
3160
3160
  message: string;
@@ -3174,7 +3174,7 @@ export declare const Api: {
3174
3174
  }> | undefined;
3175
3175
  skipped?: string[] | undefined;
3176
3176
  } | undefined;
3177
- preview?: any;
3177
+ render?: any;
3178
3178
  source?: any;
3179
3179
  validationErrors?: Record<string, {
3180
3180
  message: string;
@@ -3197,7 +3197,7 @@ export declare const Api: {
3197
3197
  }>> | undefined;
3198
3198
  skipped?: import("@valbuild/core").PatchId[] | undefined;
3199
3199
  } | undefined;
3200
- preview?: any;
3200
+ render?: any;
3201
3201
  source?: any;
3202
3202
  validationErrors?: Record<string, {
3203
3203
  message: string;
@@ -3220,7 +3220,7 @@ export declare const Api: {
3220
3220
  }> | undefined;
3221
3221
  skipped?: string[] | undefined;
3222
3222
  } | undefined;
3223
- preview?: any;
3223
+ render?: any;
3224
3224
  source?: any;
3225
3225
  validationErrors?: Record<string, {
3226
3226
  message: string;
@@ -1964,7 +1964,7 @@ var Api = {
1964
1964
  schemaSha: zod.z.string(),
1965
1965
  sourcesSha: zod.z.string(),
1966
1966
  modules: zod.z.record(ModuleFilePath, zod.z.object({
1967
- preview: zod.z.any(),
1967
+ render: zod.z.any(),
1968
1968
  // TODO: improve this type
1969
1969
  source: zod.z.any(),
1970
1970
  //.optional(), // TODO: Json zod type
@@ -1964,7 +1964,7 @@ var Api = {
1964
1964
  schemaSha: zod.z.string(),
1965
1965
  sourcesSha: zod.z.string(),
1966
1966
  modules: zod.z.record(ModuleFilePath, zod.z.object({
1967
- preview: zod.z.any(),
1967
+ render: zod.z.any(),
1968
1968
  // TODO: improve this type
1969
1969
  source: zod.z.any(),
1970
1970
  //.optional(), // TODO: Json zod type
@@ -1960,7 +1960,7 @@ var Api = {
1960
1960
  schemaSha: z.string(),
1961
1961
  sourcesSha: z.string(),
1962
1962
  modules: z.record(ModuleFilePath, z.object({
1963
- preview: z.any(),
1963
+ render: z.any(),
1964
1964
  // TODO: improve this type
1965
1965
  source: z.any(),
1966
1966
  //.optional(), // TODO: Json zod type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valbuild/shared",
3
- "version": "0.81.0",
3
+ "version": "0.83.0",
4
4
  "private": false,
5
5
  "description": "Val shared types and utilities",
6
6
  "scripts": {
@@ -29,7 +29,7 @@
29
29
  "exports": true
30
30
  },
31
31
  "dependencies": {
32
- "@valbuild/core": "~0.81.0",
32
+ "@valbuild/core": "~0.83.0",
33
33
  "zod": "^3.22.4",
34
34
  "zod-validation-error": "^3.3.0"
35
35
  },