donobu 2.13.0 → 2.13.2
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.
- package/dist/assets/generated/parameter-schemas.json +240 -139
- package/dist/assets/generated/version +1 -1
- package/dist/esm/assets/generated/parameter-schemas.json +240 -139
- package/dist/esm/assets/generated/version +1 -1
- package/dist/esm/managers/DonobuFlow.d.ts.map +1 -1
- package/dist/esm/managers/DonobuFlow.js +4 -1
- package/dist/esm/managers/DonobuFlow.js.map +1 -1
- package/dist/esm/managers/DonobuFlowsManager.js +1 -1
- package/dist/esm/managers/DonobuFlowsManager.js.map +1 -1
- package/dist/esm/managers/ToolTipper.d.ts +14 -17
- package/dist/esm/managers/ToolTipper.d.ts.map +1 -1
- package/dist/esm/managers/ToolTipper.js +170 -141
- package/dist/esm/managers/ToolTipper.js.map +1 -1
- package/dist/esm/playwrightTestExtensions.d.ts.map +1 -1
- package/dist/esm/playwrightTestExtensions.js +29 -16
- package/dist/esm/playwrightTestExtensions.js.map +1 -1
- package/dist/esm/tools/AssertTool.d.ts +14 -0
- package/dist/esm/tools/AssertTool.d.ts.map +1 -1
- package/dist/esm/tools/AssertTool.js.map +1 -1
- package/dist/esm/tools/ExtractGoogleStreetviewEntityDataTool.d.ts.map +1 -1
- package/dist/esm/tools/ExtractGoogleStreetviewEntityDataTool.js +1 -1
- package/dist/esm/tools/ExtractGoogleStreetviewEntityDataTool.js.map +1 -1
- package/dist/esm/tools/ReplayableInteraction.d.ts.map +1 -1
- package/dist/esm/tools/ReplayableInteraction.js +6 -2
- package/dist/esm/tools/ReplayableInteraction.js.map +1 -1
- package/dist/managers/DonobuFlow.d.ts.map +1 -1
- package/dist/managers/DonobuFlow.js +4 -1
- package/dist/managers/DonobuFlow.js.map +1 -1
- package/dist/managers/DonobuFlowsManager.js +1 -1
- package/dist/managers/DonobuFlowsManager.js.map +1 -1
- package/dist/managers/ToolTipper.d.ts +14 -17
- package/dist/managers/ToolTipper.d.ts.map +1 -1
- package/dist/managers/ToolTipper.js +170 -141
- package/dist/managers/ToolTipper.js.map +1 -1
- package/dist/playwrightTestExtensions.d.ts.map +1 -1
- package/dist/playwrightTestExtensions.js +29 -16
- package/dist/playwrightTestExtensions.js.map +1 -1
- package/dist/tools/AssertTool.d.ts +14 -0
- package/dist/tools/AssertTool.d.ts.map +1 -1
- package/dist/tools/AssertTool.js.map +1 -1
- package/dist/tools/ExtractGoogleStreetviewEntityDataTool.d.ts.map +1 -1
- package/dist/tools/ExtractGoogleStreetviewEntityDataTool.js +1 -1
- package/dist/tools/ExtractGoogleStreetviewEntityDataTool.js.map +1 -1
- package/dist/tools/ReplayableInteraction.d.ts.map +1 -1
- package/dist/tools/ReplayableInteraction.js +6 -2
- package/dist/tools/ReplayableInteraction.js.map +1 -1
- package/package.json +1 -1
|
@@ -150,87 +150,32 @@
|
|
|
150
150
|
"additionalProperties": false,
|
|
151
151
|
"required": ["annotation", "rationale", "whyThisAnnotation"]
|
|
152
152
|
},
|
|
153
|
-
"
|
|
153
|
+
"HandleBrowserDialogToolCoreParameters": {
|
|
154
|
+
"description": "The parameters for handling browser dialogs",
|
|
154
155
|
"type": "object",
|
|
155
156
|
"properties": {
|
|
156
157
|
"text": {
|
|
157
|
-
"description": "
|
|
158
|
-
"type": "string"
|
|
159
|
-
},
|
|
160
|
-
"finalizeWithSubmit": {
|
|
161
|
-
"description": "Attempt to submit the data after inputting the text (i.e. hitting 'Enter' at the end).\nThis can be useful if doing something like using a webpage's search box, etc.",
|
|
162
|
-
"type": "boolean"
|
|
163
|
-
}
|
|
164
|
-
},
|
|
165
|
-
"additionalProperties": false,
|
|
166
|
-
"required": ["finalizeWithSubmit", "text"]
|
|
167
|
-
},
|
|
168
|
-
"SelectorBasedInputTextToolParameters": {
|
|
169
|
-
"type": "object",
|
|
170
|
-
"properties": {
|
|
171
|
-
"selector": {
|
|
172
|
-
"description": "A query structure used to resolve specific a HTML element in a webpage.",
|
|
173
|
-
"type": "object",
|
|
174
|
-
"properties": {
|
|
175
|
-
"element": {
|
|
176
|
-
"description": "An prioritized list of element selectors to use to attempt to resolve the\ndesired element, going from most specific to least specific. The first\nelement selector that is successfully used, wins, and the rest are ignored.",
|
|
177
|
-
"type": "array",
|
|
178
|
-
"items": {
|
|
179
|
-
"type": "string"
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
"frame": {
|
|
183
|
-
"description": "A selector for the corresponding frame of the element to select.\nIf null, this means the primary frame of the page is used.",
|
|
184
|
-
"type": "string"
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
"additionalProperties": false,
|
|
188
|
-
"required": ["element", "frame"]
|
|
189
|
-
},
|
|
190
|
-
"text": {
|
|
191
|
-
"description": "The text to input.",
|
|
192
|
-
"type": "string"
|
|
193
|
-
},
|
|
194
|
-
"finalizeWithSubmit": {
|
|
195
|
-
"description": "Attempt to submit the data after inputting the text (i.e. hitting 'Enter' at the end).\nThis can be useful if doing something like using a webpage's search box, etc.",
|
|
196
|
-
"type": "boolean"
|
|
158
|
+
"description": "If this is a \"confirm\" dialog, a string of \"true\" will accept the dialog and a string of \"false\" will dismiss it.\nHowever, if this is a \"prompt\" dialog, any non-null string will accept it, and a null value will dismiss it.",
|
|
159
|
+
"type": ["string", "null"]
|
|
197
160
|
}
|
|
198
161
|
},
|
|
199
162
|
"additionalProperties": false,
|
|
200
|
-
"required": ["
|
|
163
|
+
"required": ["text"]
|
|
201
164
|
},
|
|
202
|
-
"
|
|
165
|
+
"HandleBrowserDialogToolGptParameters": {
|
|
203
166
|
"type": "object",
|
|
204
167
|
"properties": {
|
|
205
|
-
"whyThisAnnotation": {
|
|
206
|
-
"description": "The reason why this particular numbered annotation was chosen.",
|
|
207
|
-
"type": "string"
|
|
208
|
-
},
|
|
209
|
-
"annotation": {
|
|
210
|
-
"description": "The numbered annotation of the element to click.",
|
|
211
|
-
"type": "string"
|
|
212
|
-
},
|
|
213
168
|
"rationale": {
|
|
214
169
|
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
215
170
|
"type": "string"
|
|
216
171
|
},
|
|
217
172
|
"text": {
|
|
218
|
-
"description": "
|
|
219
|
-
"type": "string"
|
|
220
|
-
},
|
|
221
|
-
"finalizeWithSubmit": {
|
|
222
|
-
"description": "Attempt to submit the data after inputting the text (i.e. hitting 'Enter' at the end).\nThis can be useful if doing something like using a webpage's search box, etc.",
|
|
223
|
-
"type": "boolean"
|
|
173
|
+
"description": "If this is a \"confirm\" dialog, a string of \"true\" will accept the dialog and a string of \"false\" will dismiss it.\nHowever, if this is a \"prompt\" dialog, any non-null string will accept it, and a null value will dismiss it.",
|
|
174
|
+
"type": ["string", "null"]
|
|
224
175
|
}
|
|
225
176
|
},
|
|
226
177
|
"additionalProperties": false,
|
|
227
|
-
"required": [
|
|
228
|
-
"annotation",
|
|
229
|
-
"finalizeWithSubmit",
|
|
230
|
-
"rationale",
|
|
231
|
-
"text",
|
|
232
|
-
"whyThisAnnotation"
|
|
233
|
-
]
|
|
178
|
+
"required": ["rationale", "text"]
|
|
234
179
|
},
|
|
235
180
|
"InputRandomizedEmailAddressToolCoreParameters": {
|
|
236
181
|
"type": "object",
|
|
@@ -314,6 +259,55 @@
|
|
|
314
259
|
"whyThisAnnotation"
|
|
315
260
|
]
|
|
316
261
|
},
|
|
262
|
+
"MarkObjectiveCompleteToolCoreParameters": {
|
|
263
|
+
"description": "Parameters for marking an objective as complete",
|
|
264
|
+
"type": "object",
|
|
265
|
+
"additionalProperties": false,
|
|
266
|
+
"required": [],
|
|
267
|
+
"properties": {}
|
|
268
|
+
},
|
|
269
|
+
"MarkObjectiveCompleteToolGptParameters": {
|
|
270
|
+
"description": "Parameters for marking an objective as complete",
|
|
271
|
+
"type": "object",
|
|
272
|
+
"properties": {
|
|
273
|
+
"details": {
|
|
274
|
+
"description": "Relevant details for the completed objective.",
|
|
275
|
+
"type": "string"
|
|
276
|
+
},
|
|
277
|
+
"rationale": {
|
|
278
|
+
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
279
|
+
"type": "string"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"additionalProperties": false,
|
|
283
|
+
"required": ["details", "rationale"]
|
|
284
|
+
},
|
|
285
|
+
"GoToWebpageToolCoreParameters": {
|
|
286
|
+
"type": "object",
|
|
287
|
+
"properties": {
|
|
288
|
+
"url": {
|
|
289
|
+
"description": "The URL to navigate to. Must use the http or https (example is https://google.com).",
|
|
290
|
+
"type": "string"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"additionalProperties": false,
|
|
294
|
+
"required": ["url"]
|
|
295
|
+
},
|
|
296
|
+
"GoToWebpageToolGptParameters": {
|
|
297
|
+
"type": "object",
|
|
298
|
+
"properties": {
|
|
299
|
+
"rationale": {
|
|
300
|
+
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
301
|
+
"type": "string"
|
|
302
|
+
},
|
|
303
|
+
"url": {
|
|
304
|
+
"description": "The URL to navigate to. Must use the http or https (example is https://google.com).",
|
|
305
|
+
"type": "string"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"additionalProperties": false,
|
|
309
|
+
"required": ["rationale", "url"]
|
|
310
|
+
},
|
|
317
311
|
"PressKeyToolCoreParameters": {
|
|
318
312
|
"type": "object",
|
|
319
313
|
"properties": {
|
|
@@ -378,152 +372,158 @@
|
|
|
378
372
|
"additionalProperties": false,
|
|
379
373
|
"required": ["annotation", "key", "rationale", "whyThisAnnotation"]
|
|
380
374
|
},
|
|
381
|
-
"
|
|
382
|
-
"description": "The parameters for handling browser dialogs",
|
|
383
|
-
"type": "object",
|
|
384
|
-
"properties": {
|
|
385
|
-
"text": {
|
|
386
|
-
"description": "If this is a \"confirm\" dialog, a string of \"true\" will accept the dialog and a string of \"false\" will dismiss it.\nHowever, if this is a \"prompt\" dialog, any non-null string will accept it, and a null value will dismiss it.",
|
|
387
|
-
"type": ["string", "null"]
|
|
388
|
-
}
|
|
389
|
-
},
|
|
390
|
-
"additionalProperties": false,
|
|
391
|
-
"required": ["text"]
|
|
392
|
-
},
|
|
393
|
-
"HandleBrowserDialogToolGptParameters": {
|
|
394
|
-
"type": "object",
|
|
395
|
-
"properties": {
|
|
396
|
-
"rationale": {
|
|
397
|
-
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
398
|
-
"type": "string"
|
|
399
|
-
},
|
|
400
|
-
"text": {
|
|
401
|
-
"description": "If this is a \"confirm\" dialog, a string of \"true\" will accept the dialog and a string of \"false\" will dismiss it.\nHowever, if this is a \"prompt\" dialog, any non-null string will accept it, and a null value will dismiss it.",
|
|
402
|
-
"type": ["string", "null"]
|
|
403
|
-
}
|
|
404
|
-
},
|
|
405
|
-
"additionalProperties": false,
|
|
406
|
-
"required": ["rationale", "text"]
|
|
407
|
-
},
|
|
408
|
-
"MarkObjectiveCompleteToolCoreParameters": {
|
|
409
|
-
"description": "Parameters for marking an objective as complete",
|
|
375
|
+
"RunAccessibilityTestToolCoreParameters": {
|
|
410
376
|
"type": "object",
|
|
411
377
|
"additionalProperties": false,
|
|
412
378
|
"required": [],
|
|
413
379
|
"properties": {}
|
|
414
380
|
},
|
|
415
|
-
"
|
|
416
|
-
"description": "Parameters for marking an objective as complete",
|
|
381
|
+
"RunAccessibilityTestToolGptParameters": {
|
|
417
382
|
"type": "object",
|
|
418
383
|
"properties": {
|
|
419
|
-
"details": {
|
|
420
|
-
"description": "Relevant details for the completed objective.",
|
|
421
|
-
"type": "string"
|
|
422
|
-
},
|
|
423
384
|
"rationale": {
|
|
424
385
|
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
425
386
|
"type": "string"
|
|
426
387
|
}
|
|
427
388
|
},
|
|
428
389
|
"additionalProperties": false,
|
|
429
|
-
"required": ["
|
|
390
|
+
"required": ["rationale"]
|
|
430
391
|
},
|
|
431
|
-
"
|
|
392
|
+
"ScrollPageToolCoreParameters": {
|
|
432
393
|
"type": "object",
|
|
433
394
|
"properties": {
|
|
434
|
-
"
|
|
435
|
-
"description": "The
|
|
395
|
+
"direction": {
|
|
396
|
+
"description": "The direction to scroll - either UP or DOWN",
|
|
397
|
+
"enum": ["DOWN", "UP"],
|
|
436
398
|
"type": "string"
|
|
437
399
|
}
|
|
438
400
|
},
|
|
439
401
|
"additionalProperties": false,
|
|
440
|
-
"required": ["
|
|
402
|
+
"required": ["direction"]
|
|
441
403
|
},
|
|
442
|
-
"
|
|
404
|
+
"ScrollPageToolGptParameters": {
|
|
443
405
|
"type": "object",
|
|
444
406
|
"properties": {
|
|
445
407
|
"rationale": {
|
|
446
408
|
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
447
409
|
"type": "string"
|
|
448
410
|
},
|
|
449
|
-
"
|
|
450
|
-
"description": "The
|
|
411
|
+
"direction": {
|
|
412
|
+
"description": "The direction to scroll - either UP or DOWN",
|
|
413
|
+
"enum": ["DOWN", "UP"],
|
|
451
414
|
"type": "string"
|
|
452
415
|
}
|
|
453
416
|
},
|
|
454
417
|
"additionalProperties": false,
|
|
455
|
-
"required": ["
|
|
456
|
-
},
|
|
457
|
-
"RunAccessibilityTestToolCoreParameters": {
|
|
458
|
-
"type": "object",
|
|
459
|
-
"additionalProperties": false,
|
|
460
|
-
"required": [],
|
|
461
|
-
"properties": {}
|
|
418
|
+
"required": ["direction", "rationale"]
|
|
462
419
|
},
|
|
463
|
-
"
|
|
420
|
+
"AssertToolCoreParameters": {
|
|
464
421
|
"type": "object",
|
|
465
422
|
"properties": {
|
|
466
|
-
"
|
|
467
|
-
"description": "The
|
|
423
|
+
"assertionToTestFor": {
|
|
424
|
+
"description": "The assertion that will be tested for, using plain English.\n\nExamples:\n- 'Assert that this webpage includes a product summary.'\n- 'Assert there are more than 3 search results.'\n- 'Assert that the webpage title is \"Hello World\".'\n- 'Assert that the theme of the website is in dark mode.'\n\nThe raw assertion text should avoid embedding state about the webpage\nsince the assertion is being evaluated by the tool itself, and the tool\nwill have access to the webpage's content, title, URL, etc.\n\nExamples of bad assertions:\n- 'Assert that the 3 search results is greater than 2.'\n- 'Assert that the first search result (\"banana\") is not \"strawberry\".'\n\nExamples of the bad assertions being rephrased as good assertions:\n- 'Assert that there are more than 2 search results.'\n- 'Assert that the first search result is not \"strawberry\".'",
|
|
468
425
|
"type": "string"
|
|
469
426
|
}
|
|
470
427
|
},
|
|
471
428
|
"additionalProperties": false,
|
|
472
|
-
"required": ["
|
|
429
|
+
"required": ["assertionToTestFor"]
|
|
473
430
|
},
|
|
474
|
-
"
|
|
431
|
+
"AssertToolGptParameters": {
|
|
475
432
|
"type": "object",
|
|
476
433
|
"properties": {
|
|
477
|
-
"
|
|
478
|
-
"description": "The
|
|
479
|
-
"
|
|
434
|
+
"rationale": {
|
|
435
|
+
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
436
|
+
"type": "string"
|
|
437
|
+
},
|
|
438
|
+
"assertionToTestFor": {
|
|
439
|
+
"description": "The assertion that will be tested for, using plain English.\n\nExamples:\n- 'Assert that this webpage includes a product summary.'\n- 'Assert there are more than 3 search results.'\n- 'Assert that the webpage title is \"Hello World\".'\n- 'Assert that the theme of the website is in dark mode.'\n\nThe raw assertion text should avoid embedding state about the webpage\nsince the assertion is being evaluated by the tool itself, and the tool\nwill have access to the webpage's content, title, URL, etc.\n\nExamples of bad assertions:\n- 'Assert that the 3 search results is greater than 2.'\n- 'Assert that the first search result (\"banana\") is not \"strawberry\".'\n\nExamples of the bad assertions being rephrased as good assertions:\n- 'Assert that there are more than 2 search results.'\n- 'Assert that the first search result is not \"strawberry\".'",
|
|
480
440
|
"type": "string"
|
|
481
441
|
}
|
|
482
442
|
},
|
|
483
443
|
"additionalProperties": false,
|
|
484
|
-
"required": ["
|
|
444
|
+
"required": ["assertionToTestFor", "rationale"]
|
|
485
445
|
},
|
|
486
|
-
"
|
|
446
|
+
"InputTextToolCoreParameters": {
|
|
487
447
|
"type": "object",
|
|
488
448
|
"properties": {
|
|
489
|
-
"
|
|
490
|
-
"description": "The
|
|
449
|
+
"text": {
|
|
450
|
+
"description": "The text to input.",
|
|
491
451
|
"type": "string"
|
|
492
452
|
},
|
|
493
|
-
"
|
|
494
|
-
"description": "
|
|
495
|
-
"
|
|
496
|
-
"type": "string"
|
|
453
|
+
"finalizeWithSubmit": {
|
|
454
|
+
"description": "Attempt to submit the data after inputting the text (i.e. hitting 'Enter' at the end).\nThis can be useful if doing something like using a webpage's search box, etc.",
|
|
455
|
+
"type": "boolean"
|
|
497
456
|
}
|
|
498
457
|
},
|
|
499
458
|
"additionalProperties": false,
|
|
500
|
-
"required": ["
|
|
459
|
+
"required": ["finalizeWithSubmit", "text"]
|
|
501
460
|
},
|
|
502
|
-
"
|
|
461
|
+
"SelectorBasedInputTextToolParameters": {
|
|
503
462
|
"type": "object",
|
|
504
463
|
"properties": {
|
|
505
|
-
"
|
|
506
|
-
"description": "
|
|
464
|
+
"selector": {
|
|
465
|
+
"description": "A query structure used to resolve specific a HTML element in a webpage.",
|
|
466
|
+
"type": "object",
|
|
467
|
+
"properties": {
|
|
468
|
+
"element": {
|
|
469
|
+
"description": "An prioritized list of element selectors to use to attempt to resolve the\ndesired element, going from most specific to least specific. The first\nelement selector that is successfully used, wins, and the rest are ignored.",
|
|
470
|
+
"type": "array",
|
|
471
|
+
"items": {
|
|
472
|
+
"type": "string"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"frame": {
|
|
476
|
+
"description": "A selector for the corresponding frame of the element to select.\nIf null, this means the primary frame of the page is used.",
|
|
477
|
+
"type": "string"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"additionalProperties": false,
|
|
481
|
+
"required": ["element", "frame"]
|
|
482
|
+
},
|
|
483
|
+
"text": {
|
|
484
|
+
"description": "The text to input.",
|
|
507
485
|
"type": "string"
|
|
486
|
+
},
|
|
487
|
+
"finalizeWithSubmit": {
|
|
488
|
+
"description": "Attempt to submit the data after inputting the text (i.e. hitting 'Enter' at the end).\nThis can be useful if doing something like using a webpage's search box, etc.",
|
|
489
|
+
"type": "boolean"
|
|
508
490
|
}
|
|
509
491
|
},
|
|
510
492
|
"additionalProperties": false,
|
|
511
|
-
"required": ["
|
|
493
|
+
"required": ["finalizeWithSubmit", "selector", "text"]
|
|
512
494
|
},
|
|
513
|
-
"
|
|
495
|
+
"AnnotationBasedInputTextToolParameters": {
|
|
514
496
|
"type": "object",
|
|
515
497
|
"properties": {
|
|
498
|
+
"whyThisAnnotation": {
|
|
499
|
+
"description": "The reason why this particular numbered annotation was chosen.",
|
|
500
|
+
"type": "string"
|
|
501
|
+
},
|
|
502
|
+
"annotation": {
|
|
503
|
+
"description": "The numbered annotation of the element to click.",
|
|
504
|
+
"type": "string"
|
|
505
|
+
},
|
|
516
506
|
"rationale": {
|
|
517
507
|
"description": "The reason why this particular action is being taken. It MUST relate to the overall objective.",
|
|
518
508
|
"type": "string"
|
|
519
509
|
},
|
|
520
|
-
"
|
|
521
|
-
"description": "The
|
|
510
|
+
"text": {
|
|
511
|
+
"description": "The text to input.",
|
|
522
512
|
"type": "string"
|
|
513
|
+
},
|
|
514
|
+
"finalizeWithSubmit": {
|
|
515
|
+
"description": "Attempt to submit the data after inputting the text (i.e. hitting 'Enter' at the end).\nThis can be useful if doing something like using a webpage's search box, etc.",
|
|
516
|
+
"type": "boolean"
|
|
523
517
|
}
|
|
524
518
|
},
|
|
525
519
|
"additionalProperties": false,
|
|
526
|
-
"required": [
|
|
520
|
+
"required": [
|
|
521
|
+
"annotation",
|
|
522
|
+
"finalizeWithSubmit",
|
|
523
|
+
"rationale",
|
|
524
|
+
"text",
|
|
525
|
+
"whyThisAnnotation"
|
|
526
|
+
]
|
|
527
527
|
},
|
|
528
528
|
"AnalyzePageTextToolCoreParameters": {
|
|
529
529
|
"type": "object",
|
|
@@ -1962,6 +1962,107 @@
|
|
|
1962
1962
|
"additionalProperties": false,
|
|
1963
1963
|
"required": ["rationale", "text"]
|
|
1964
1964
|
},
|
|
1965
|
+
"ToolParameters": {
|
|
1966
|
+
"anyOf": [
|
|
1967
|
+
{
|
|
1968
|
+
"type": "object",
|
|
1969
|
+
"properties": {
|
|
1970
|
+
"_type": {},
|
|
1971
|
+
"_output": {},
|
|
1972
|
+
"_input": {},
|
|
1973
|
+
"_def": {},
|
|
1974
|
+
"description": {
|
|
1975
|
+
"type": "string"
|
|
1976
|
+
},
|
|
1977
|
+
"~standard": {
|
|
1978
|
+
"description": "The Standard Schema properties interface.",
|
|
1979
|
+
"type": "object",
|
|
1980
|
+
"properties": {
|
|
1981
|
+
"version": {
|
|
1982
|
+
"description": "The version number of the standard.",
|
|
1983
|
+
"type": "number",
|
|
1984
|
+
"const": 1
|
|
1985
|
+
},
|
|
1986
|
+
"vendor": {
|
|
1987
|
+
"description": "The vendor name of the schema library.",
|
|
1988
|
+
"type": "string"
|
|
1989
|
+
},
|
|
1990
|
+
"validate": {
|
|
1991
|
+
"description": "Validates unknown input values.",
|
|
1992
|
+
"type": "object",
|
|
1993
|
+
"additionalProperties": false
|
|
1994
|
+
},
|
|
1995
|
+
"types": {
|
|
1996
|
+
"description": "Inferred types associated with the schema.",
|
|
1997
|
+
"type": "object",
|
|
1998
|
+
"properties": {
|
|
1999
|
+
"input": {
|
|
2000
|
+
"description": "The input type of the schema."
|
|
2001
|
+
},
|
|
2002
|
+
"output": {
|
|
2003
|
+
"description": "The output type of the schema."
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
2006
|
+
"additionalProperties": false,
|
|
2007
|
+
"required": ["input", "output"]
|
|
2008
|
+
}
|
|
2009
|
+
},
|
|
2010
|
+
"additionalProperties": false,
|
|
2011
|
+
"required": ["validate", "vendor", "version"]
|
|
2012
|
+
},
|
|
2013
|
+
"spa": {
|
|
2014
|
+
"description": "Alias of safeParseAsync",
|
|
2015
|
+
"type": "object",
|
|
2016
|
+
"additionalProperties": false
|
|
2017
|
+
}
|
|
2018
|
+
},
|
|
2019
|
+
"additionalProperties": false,
|
|
2020
|
+
"required": [
|
|
2021
|
+
"_def",
|
|
2022
|
+
"_input",
|
|
2023
|
+
"_output",
|
|
2024
|
+
"_type",
|
|
2025
|
+
"description",
|
|
2026
|
+
"spa",
|
|
2027
|
+
"~standard"
|
|
2028
|
+
]
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"additionalProperties": false,
|
|
2032
|
+
"type": "object",
|
|
2033
|
+
"properties": {
|
|
2034
|
+
"validate": {
|
|
2035
|
+
"description": "Optional. Validates that the structure of a value matches this schema,\nand returns a typed version of the value if it does.",
|
|
2036
|
+
"type": "object",
|
|
2037
|
+
"additionalProperties": false
|
|
2038
|
+
},
|
|
2039
|
+
"__@validatorSymbol@19376": {
|
|
2040
|
+
"description": "Used to mark validator functions so we can support both Zod and custom schemas.",
|
|
2041
|
+
"type": "boolean",
|
|
2042
|
+
"const": true
|
|
2043
|
+
},
|
|
2044
|
+
"_type": {
|
|
2045
|
+
"description": "Schema type for inference."
|
|
2046
|
+
},
|
|
2047
|
+
"jsonSchema": {
|
|
2048
|
+
"$ref": "#/definitions/JSONSchema7",
|
|
2049
|
+
"description": "The JSON Schema for the schema. It is passed to the providers."
|
|
2050
|
+
},
|
|
2051
|
+
"__@schemaSymbol@19381": {
|
|
2052
|
+
"description": "Used to mark schemas so we can support both Zod and custom schemas.",
|
|
2053
|
+
"type": "boolean",
|
|
2054
|
+
"const": true
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
"required": [
|
|
2058
|
+
"__@schemaSymbol@19381",
|
|
2059
|
+
"__@validatorSymbol@19376",
|
|
2060
|
+
"_type",
|
|
2061
|
+
"jsonSchema"
|
|
2062
|
+
]
|
|
2063
|
+
}
|
|
2064
|
+
]
|
|
2065
|
+
},
|
|
1965
2066
|
"AggregateExtractedStreetviewDataToolCoreParameters": {
|
|
1966
2067
|
"type": "object",
|
|
1967
2068
|
"additionalProperties": false,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1086
|