diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 40257688..0def34da 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -66633,7 +66633,6 @@ const openapi: OpenAPISpec = { schema: { description: 'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.', - minLength: 1, nullable: true, type: 'string', }, @@ -67031,7 +67030,6 @@ const openapi: OpenAPISpec = { page_cursor: { description: 'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.', - minLength: 1, nullable: true, type: 'string', }, diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 01060ad1..1d7134df 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -94865,7 +94865,7 @@ export type Routes = { /** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */ context_type?: ('request' | 'job') | undefined /** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */ - page_cursor?: (string | null) | undefined + page_cursor?: (string | undefined) | null } formData: {} jsonResponse: {