Skip to content

Commit 1bb2c31

Browse files
committed
SDK regeneration
1 parent 3f94d41 commit 1bb2c31

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

src/api/resources/jobs/client/requests/JobsListRunsRequest.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,7 @@ export interface JobsListRunsRequest {
2424
* Prefix used to search for job runs by name or identifier
2525
*/
2626
searchPrefix?: string;
27-
/**
28-
* Attribute to sort by
29-
*/
3027
sortBy?: TrueFoundry.JobRunsSortBy;
31-
/**
32-
* Sorting order
33-
*/
3428
order?: TrueFoundry.JobRunsSortDirection;
3529
/**
3630
* Array of subject slugs

src/api/resources/logs/client/requests/LogsGetRequest.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ export interface LogsGetRequest {
6565
* String that needs to be matched
6666
*/
6767
searchString?: string;
68-
/**
69-
* Query filter type, `regex` or `substring`
70-
*/
7168
searchType?: TrueFoundry.LogsSearchFilterType;
72-
/**
73-
* Comparison operator for filter. `equal` or `not_equal`
74-
*/
7569
searchOperator?: TrueFoundry.LogsSearchOperatorType;
7670
}

src/api/types/JobRunsSortBy.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5+
/**
6+
* Attribute to sort by
7+
*/
58
export type JobRunsSortBy = "startTime" | "duration" | "deploymentVersion" | "triggeredBy" | "status";
69
export const JobRunsSortBy = {
710
StartTime: "startTime",

src/api/types/JobRunsSortDirection.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5+
/**
6+
* Sorting order
7+
*/
58
export type JobRunsSortDirection = "asc" | "desc";
69
export const JobRunsSortDirection = {
710
Asc: "asc",

src/api/types/LogsSearchFilterType.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5+
/**
6+
* Query filter type, `regex` or `substring`
7+
*/
58
export type LogsSearchFilterType = "regex" | "substring";
69
export const LogsSearchFilterType = {
710
Regex: "regex",

src/api/types/LogsSearchOperatorType.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5+
/**
6+
* Comparison operator for filter. `equal` or `not_equal`
7+
*/
58
export type LogsSearchOperatorType = "equal" | "not_equal";
69
export const LogsSearchOperatorType = {
710
Equal: "equal",

0 commit comments

Comments
 (0)