old-agentic
Travis Fischer 2025-03-23 03:55:34 +08:00
rodzic d9df972989
commit 354938db29
2 zmienionych plików z 22 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,6 @@
/* eslint-disable unicorn/no-unreadable-iife */
/* eslint-disable unicorn/no-array-reduce */
/**
* This file was auto-generated from an OpenAPI spec.
*/
@ -9,6 +12,10 @@ import { z } from 'zod'
export namespace firecrawl {
export const apiBaseUrl = 'https://api.firecrawl.dev/v0'
// -----------------------------------------------------------------------------
// Component schemas
// -----------------------------------------------------------------------------
export const ScrapeResponseSchema = z.object({
success: z.boolean().optional(),
/** Warning message to let you know of any issues. */
@ -161,6 +168,10 @@ export namespace firecrawl {
typeof CrawlStatusResponseObjSchema
>
// -----------------------------------------------------------------------------
// Operation schemas
// -----------------------------------------------------------------------------
export const ScrapeParamsSchema = z.object({
/** The URL to scrape */
url: z.string().url().describe('The URL to scrape'),

Wyświetl plik

@ -1,3 +1,6 @@
/* eslint-disable unicorn/no-unreadable-iife */
/* eslint-disable unicorn/no-array-reduce */
/**
* This file was auto-generated from an OpenAPI spec.
*/
@ -13,6 +16,10 @@ import { z } from 'zod'
export namespace petstore {
export const apiBaseUrl = 'http://petstore.swagger.io/v1'
// -----------------------------------------------------------------------------
// Component schemas
// -----------------------------------------------------------------------------
export const PetSchema = z.object({
id: z.number().int(),
name: z.string(),
@ -23,6 +30,10 @@ export namespace petstore {
export const PetsSchema = z.array(PetSchema).max(100)
export type Pets = z.infer<typeof PetsSchema>
// -----------------------------------------------------------------------------
// Operation schemas
// -----------------------------------------------------------------------------
export const ListPetsParamsSchema = z.object({
/** How many items to return at one time (max 100) */
limit: z