@automate.ax/integration-contracts 0.153.0 → 0.153.1

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.
@@ -1273,7 +1273,7 @@ export declare const CLOUDFLARE_BROWSER_JSON_INPUT_SCHEMA: z.ZodObject<{
1273
1273
  }, z.core.$strip>>;
1274
1274
  }, z.core.$strip>;
1275
1275
  export declare const CLOUDFLARE_BROWSER_SCRAPE_RESULT_SCHEMA: z.ZodObject<{
1276
- results: z.ZodObject<{
1276
+ results: z.ZodArray<z.ZodObject<{
1277
1277
  attributes: z.ZodArray<z.ZodObject<{
1278
1278
  name: z.ZodString;
1279
1279
  value: z.ZodString;
@@ -1284,7 +1284,7 @@ export declare const CLOUDFLARE_BROWSER_SCRAPE_RESULT_SCHEMA: z.ZodObject<{
1284
1284
  text: z.ZodString;
1285
1285
  top: z.ZodNumber;
1286
1286
  width: z.ZodNumber;
1287
- }, z.core.$strip>;
1287
+ }, z.core.$strip>>;
1288
1288
  selector: z.ZodString;
1289
1289
  }, z.core.$strip>;
1290
1290
  export declare const CLOUDFLARE_BROWSER_SNAPSHOT_RESULT_SCHEMA: z.ZodObject<{
@@ -259,7 +259,8 @@ export const CLOUDFLARE_BROWSER_JSON_INPUT_SCHEMA = browserRenderingInput(JSON_E
259
259
  });
260
260
  });
261
261
  export const CLOUDFLARE_BROWSER_SCRAPE_RESULT_SCHEMA = z.object({
262
- results: z.object({
262
+ results: z
263
+ .object({
263
264
  attributes: z.object({ name: z.string(), value: z.string() }).array(),
264
265
  height: z.number(),
265
266
  html: z.string(),
@@ -267,7 +268,8 @@ export const CLOUDFLARE_BROWSER_SCRAPE_RESULT_SCHEMA = z.object({
267
268
  text: z.string(),
268
269
  top: z.number(),
269
270
  width: z.number(),
270
- }),
271
+ })
272
+ .array(),
271
273
  selector: z.string(),
272
274
  });
273
275
  export const CLOUDFLARE_BROWSER_SNAPSHOT_RESULT_SCHEMA = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/integration-contracts",
3
- "version": "0.153.0",
3
+ "version": "0.153.1",
4
4
  "description": "Shared integration payload contracts and provider primitives for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -72,7 +72,7 @@
72
72
  },
73
73
  "dependencies": {
74
74
  "@anthropic-ai/sdk": "0.123.0",
75
- "@automate.ax/codec": "0.153.0",
75
+ "@automate.ax/codec": "0.153.1",
76
76
  "@cfworker/json-schema": "^4.1.1",
77
77
  "@googleapis/calendar": "^16.0.0",
78
78
  "@googleapis/forms": "^6.0.1",
@@ -304,15 +304,17 @@ export const CLOUDFLARE_BROWSER_JSON_INPUT_SCHEMA = browserRenderingInput(
304
304
  })
305
305
 
306
306
  export const CLOUDFLARE_BROWSER_SCRAPE_RESULT_SCHEMA = z.object({
307
- results: z.object({
308
- attributes: z.object({ name: z.string(), value: z.string() }).array(),
309
- height: z.number(),
310
- html: z.string(),
311
- left: z.number(),
312
- text: z.string(),
313
- top: z.number(),
314
- width: z.number(),
315
- }),
307
+ results: z
308
+ .object({
309
+ attributes: z.object({ name: z.string(), value: z.string() }).array(),
310
+ height: z.number(),
311
+ html: z.string(),
312
+ left: z.number(),
313
+ text: z.string(),
314
+ top: z.number(),
315
+ width: z.number(),
316
+ })
317
+ .array(),
316
318
  selector: z.string(),
317
319
  })
318
320
  export const CLOUDFLARE_BROWSER_SNAPSHOT_RESULT_SCHEMA = z.object({