@lucidtech/las-sdk-core
Advanced tools
Comparing version 5.1.0 to 5.1.1
@@ -249,2 +249,3 @@ /// <reference types="node" /> | ||
containsPersonallyIdentifiableInformation: boolean; | ||
createdBy: string | null; | ||
createdTime: string; | ||
@@ -258,2 +259,3 @@ datasetId: string; | ||
storageLocation: 'EU'; | ||
updatedBy: string | null; | ||
updatedTime: string; | ||
@@ -277,10 +279,12 @@ version: number; | ||
export declare type DataBundle = { | ||
createdBy: string | null; | ||
createdTime: string; | ||
dataBundleId: string; | ||
datasets: Array<Dataset>; | ||
description: string; | ||
description: string | null; | ||
modelId: string; | ||
name: string; | ||
name: string | null; | ||
status: 'ready' | 'processing' | 'failed'; | ||
summary: Record<string, any>; | ||
updatedBy: string | null; | ||
updatedTime: string; | ||
@@ -302,6 +306,10 @@ }; | ||
export declare type User = { | ||
userId: string; | ||
avatar: string | null; | ||
createdBy: string | null; | ||
createdTime: string | null; | ||
email: string; | ||
avatar: string | null; | ||
name: string | null; | ||
updatedBy: string | null; | ||
updatedTime: string | null; | ||
userId: string; | ||
}; | ||
@@ -398,9 +406,11 @@ export declare type CreateUserOptions = { | ||
clientSecret?: string; | ||
createdBy: string | null; | ||
createdTime: string | null; | ||
defaultLoginUrl: string | null; | ||
description: string | null; | ||
hasSecret: boolean; | ||
loginUrls: Array<string> | null; | ||
logoutUrls: Array<string> | null; | ||
loginUrls: Array<string> | null; | ||
defaultLoginUrl: string | null; | ||
name: string | null; | ||
updatedBy: string | null; | ||
updatedTime: string | null; | ||
@@ -448,2 +458,3 @@ }; | ||
export declare type Model = { | ||
createdBy: string | null; | ||
createdTime: string | null; | ||
@@ -457,2 +468,3 @@ description: string | null; | ||
status: 'active' | 'inactive' | 'training'; | ||
updatedBy: string | null; | ||
updatedTime: string | null; | ||
@@ -459,0 +471,0 @@ width: number; |
{ | ||
"name": "@lucidtech/las-sdk-core", | ||
"version": "5.1.0", | ||
"version": "5.1.1", | ||
"author": "Lucidtech AS <hello@lucidtech.ai>", | ||
@@ -33,3 +33,3 @@ "maintainers": [ | ||
}, | ||
"gitHead": "3ace809e7a6337026a262d78b4e5d3f386d3d63e" | ||
"gitHead": "e101fb6bd5d89cde514bf961183c29028ea7e697" | ||
} |
@@ -296,2 +296,3 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
containsPersonallyIdentifiableInformation: boolean; | ||
createdBy: string | null; | ||
createdTime: string; | ||
@@ -305,2 +306,3 @@ datasetId: string; | ||
storageLocation: 'EU'; | ||
updatedBy: string | null; | ||
updatedTime: string; | ||
@@ -329,10 +331,12 @@ version: number; | ||
export type DataBundle = { | ||
createdBy: string | null; | ||
createdTime: string; | ||
dataBundleId: string; | ||
datasets: Array<Dataset>; | ||
description: string; | ||
description: string | null; | ||
modelId: string; | ||
name: string; | ||
name: string | null; | ||
status: 'ready' | 'processing' | 'failed'; | ||
summary: Record<string, any>; | ||
updatedBy: string | null; | ||
updatedTime: string; | ||
@@ -359,6 +363,10 @@ }; | ||
export type User = { | ||
userId: string; | ||
avatar: string | null; | ||
createdBy: string | null; | ||
createdTime: string | null; | ||
email: string; | ||
avatar: string | null; | ||
name: string | null; | ||
updatedBy: string | null; | ||
updatedTime: string | null; | ||
userId: string; | ||
}; | ||
@@ -469,9 +477,11 @@ | ||
clientSecret?: string; | ||
createdBy: string | null; | ||
createdTime: string | null; | ||
defaultLoginUrl: string | null; | ||
description: string | null; | ||
hasSecret: boolean; | ||
loginUrls: Array<string> | null; | ||
logoutUrls: Array<string> | null; | ||
loginUrls: Array<string> | null; | ||
defaultLoginUrl: string | null; | ||
name: string | null; | ||
updatedBy: string | null; | ||
updatedTime: string | null; | ||
@@ -530,2 +540,3 @@ }; | ||
export type Model = { | ||
createdBy: string | null; | ||
createdTime: string | null; | ||
@@ -539,2 +550,3 @@ description: string | null; | ||
status: 'active' | 'inactive' | 'training'; | ||
updatedBy: string | null; | ||
updatedTime: string | null; | ||
@@ -541,0 +553,0 @@ width: number; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
234631
5239