@seamapi/types 1.1024.0 → 1.1025.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.
@@ -78877,7 +78877,7 @@ export type Routes = {
78877
78877
  /** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
78878
78878
  context_type?: ('request' | 'job') | undefined;
78879
78879
  /** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
78880
- page_cursor?: (string | null) | undefined;
78880
+ page_cursor?: (string | undefined) | null;
78881
78881
  };
78882
78882
  formData: {};
78883
78883
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.1024.0",
3
+ "version": "1.1025.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -66633,7 +66633,6 @@ const openapi: OpenAPISpec = {
66633
66633
  schema: {
66634
66634
  description:
66635
66635
  'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
66636
- minLength: 1,
66637
66636
  nullable: true,
66638
66637
  type: 'string',
66639
66638
  },
@@ -67031,7 +67030,6 @@ const openapi: OpenAPISpec = {
67031
67030
  page_cursor: {
67032
67031
  description:
67033
67032
  'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
67034
- minLength: 1,
67035
67033
  nullable: true,
67036
67034
  type: 'string',
67037
67035
  },
@@ -94865,7 +94865,7 @@ export type Routes = {
94865
94865
  /** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
94866
94866
  context_type?: ('request' | 'job') | undefined
94867
94867
  /** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
94868
- page_cursor?: (string | null) | undefined
94868
+ page_cursor?: (string | undefined) | null
94869
94869
  }
94870
94870
  formData: {}
94871
94871
  jsonResponse: {