Skip to content

Commit 70cc4bb

Browse files
author
Ståle Zerener Haugnæss
committed
Renamed agent run statuses and added useNewScopes parameter to Organization
1 parent 96eaf19 commit 70cc4bb

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

packages/las-sdk-core/src/types/agentRun.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import { JSONObject, PaginationOptions, RequestConfig, SortParam } from './common';
22

33
export const AgentRunStatusValues = [
4-
'Archived',
5-
'Exported',
6-
'Pending export',
7-
'Pending predictions',
8-
'Ready for review',
9-
'Review completed',
10-
'Succeeded predictions',
4+
'archived',
5+
'exported',
6+
'pending-export',
7+
'pending-predictions',
8+
'ready-for-review',
9+
'review-completed',
10+
'succeeded-predictions',
11+
'error',
1112
] as const;
1213
export type AgentRunStatus = (typeof AgentRunStatusValues)[number];
1314

packages/las-sdk-core/src/types/organization.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export type Organization = {
3030
updatedBy?: string | null;
3131
updatedTime?: Date | null;
3232
url?: string | null;
33+
useNewScopes?: boolean | null;
3334
};
3435

3536
export type OrganizationList = {

0 commit comments

Comments
 (0)