Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/open-api/types/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export interface paths {
patch?: never;
trace?: never;
};
"/beta/lighthouse/{filesystem_id}/ingest": {
"/beta/lighthouse/{collection_configuration_id}/ingest": {
parameters: {
query?: never;
header?: never;
Expand All @@ -304,7 +304,7 @@ export interface paths {
query?: never;
header?: never;
path: {
filesystem_id: string;
collection_configuration_id: string;
};
cookie?: never;
};
Expand Down
23 changes: 13 additions & 10 deletions src/open-api/types/timers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,11 @@ export interface components {
/** Detail */
detail?: Record<string, unknown>;
};
/** JobListResponse */
JobListResponse: {
/** Jobs */
jobs: (components["schemas"]["FlowTimerRead"] | components["schemas"]["JobRead"])[];
};
/** JobRead */
JobRead: {
/** Name */
Expand Down Expand Up @@ -909,11 +914,11 @@ export interface operations {
* @description List only jobs with names containing the argument as a substring
* (case-insensitive).
*/
filter_name?: string;
filter_name?: string | null;
/** @description Filter listed jobs to only those submitted after the specified date. */
submitted_after?: string;
submitted_after?: string | null;
/** @description Filter listed jobs to only those submitted before the specified date. */
submitted_before?: string;
submitted_before?: string | null;
/** @description [DEPRECATED] Equivalent to 'filter_status=active'. */
filter_active?: boolean;
/** @description [DEPRECATED] Equivalent to 'filter_status=ended'. */
Expand All @@ -923,7 +928,7 @@ export interface operations {
* list. Valid statuses are 'active', 'inactive', and 'ended'.
* Defaults to 'active,inactive,ended'.
*/
filter_status?: string;
filter_status?: string | null;
/** @description Limit the number of results returned per job. */
result_count?: number;
/**
Expand All @@ -934,7 +939,7 @@ export interface operations {
* jobs in reverse alphabetical order on name; `submitted_at` (with no ordering
* specified) would list oldest jobs first.
*/
order?: string;
order?: string | null;
};
header?: never;
path?: never;
Expand All @@ -948,9 +953,7 @@ export interface operations {
[name: string]: unknown;
};
content: {
"application/json": {
jobs?: (components["schemas"]["FlowTimerRead"] | components["schemas"]["JobRead"])[];
};
"application/json": components["schemas"]["JobListResponse"];
};
};
/** @description Validation Error */
Expand Down Expand Up @@ -1000,7 +1003,7 @@ export interface operations {
read_job_jobs__job_id__get: {
parameters: {
query?: {
results_pt?: string;
results_pt?: string | null;
page_size?: number;
};
header?: never;
Expand Down Expand Up @@ -1100,7 +1103,7 @@ export interface operations {
resume_job_jobs__job_id__resume_post: {
parameters: {
query?: {
update_credentials?: boolean;
update_credentials?: boolean | null;
};
header?: never;
path: {
Expand Down
Loading