clarifai-web-grpc 5.1.0 → 9.10.4
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.
- package/.github/workflows/ci.yml +29 -14
- package/README.md +6 -0
- package/VERSION +1 -1
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +10169 -4212
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +1046 -160
- package/dist/cjs/proto/clarifai/api/service_pb.js +19084 -10295
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +24 -2
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +6 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +10169 -4212
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +1046 -160
- package/dist/esm/proto/clarifai/api/service_pb.js +19084 -10295
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +24 -2
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +6 -1
- package/index.ts +2 -1
- package/package.json +2 -23
- package/proto/clarifai/api/resources_pb.d.ts +987 -61
- package/proto/clarifai/api/resources_pb.js +12059 -4632
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +264 -12
- package/proto/clarifai/api/service_grpc_web_pb.js +3434 -2149
- package/proto/clarifai/api/service_pb.d.ts +1376 -100
- package/proto/clarifai/api/service_pb.js +32635 -21703
- package/proto/clarifai/api/status/status_code_pb.d.ts +24 -2
- package/proto/clarifai/api/status/status_code_pb.js +24 -2
- package/proto/clarifai/auth/scope/scope_pb.d.ts +5 -0
- package/proto/clarifai/auth/scope/scope_pb.js +6 -1
- package/.husky/commit-msg +0 -4
- package/CHANGELOG.md +0 -7
- package/package.json-E +0 -52
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
3
|
import * as proto_clarifai_api_status_status_pb from '../../../proto/clarifai/api/status/status_pb';
|
|
4
|
+
import * as proto_clarifai_api_status_status_code_pb from '../../../proto/clarifai/api/status/status_code_pb';
|
|
4
5
|
import * as proto_clarifai_api_utils_extensions_pb from '../../../proto/clarifai/api/utils/extensions_pb';
|
|
5
6
|
import * as proto_clarifai_api_utils_matrix_pb from '../../../proto/clarifai/api/utils/matrix_pb';
|
|
6
7
|
import * as proto_clarifai_auth_util_extension_pb from '../../../proto/clarifai/auth/util/extension_pb';
|
|
@@ -64,6 +65,9 @@ export class Annotation extends jspb.Message {
|
|
|
64
65
|
getTaskId(): string;
|
|
65
66
|
setTaskId(value: string): Annotation;
|
|
66
67
|
|
|
68
|
+
getWorkflowVersionId(): string;
|
|
69
|
+
setWorkflowVersionId(value: string): Annotation;
|
|
70
|
+
|
|
67
71
|
serializeBinary(): Uint8Array;
|
|
68
72
|
toObject(includeInstance?: boolean): Annotation.AsObject;
|
|
69
73
|
static toObject(includeInstance: boolean, msg: Annotation): Annotation.AsObject;
|
|
@@ -88,6 +92,48 @@ export namespace Annotation {
|
|
|
88
92
|
inputLevel: boolean,
|
|
89
93
|
consensusInfo?: google_protobuf_struct_pb.Struct.AsObject,
|
|
90
94
|
taskId: string,
|
|
95
|
+
workflowVersionId: string,
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export class Worker extends jspb.Message {
|
|
100
|
+
getUser(): User | undefined;
|
|
101
|
+
setUser(value?: User): Worker;
|
|
102
|
+
hasUser(): boolean;
|
|
103
|
+
clearUser(): Worker;
|
|
104
|
+
|
|
105
|
+
getModel(): Model | undefined;
|
|
106
|
+
setModel(value?: Model): Worker;
|
|
107
|
+
hasModel(): boolean;
|
|
108
|
+
clearModel(): Worker;
|
|
109
|
+
|
|
110
|
+
getWorkflow(): Workflow | undefined;
|
|
111
|
+
setWorkflow(value?: Workflow): Worker;
|
|
112
|
+
hasWorkflow(): boolean;
|
|
113
|
+
clearWorkflow(): Worker;
|
|
114
|
+
|
|
115
|
+
getWorkerCase(): Worker.WorkerCase;
|
|
116
|
+
|
|
117
|
+
serializeBinary(): Uint8Array;
|
|
118
|
+
toObject(includeInstance?: boolean): Worker.AsObject;
|
|
119
|
+
static toObject(includeInstance: boolean, msg: Worker): Worker.AsObject;
|
|
120
|
+
static serializeBinaryToWriter(message: Worker, writer: jspb.BinaryWriter): void;
|
|
121
|
+
static deserializeBinary(bytes: Uint8Array): Worker;
|
|
122
|
+
static deserializeBinaryFromReader(message: Worker, reader: jspb.BinaryReader): Worker;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export namespace Worker {
|
|
126
|
+
export type AsObject = {
|
|
127
|
+
user?: User.AsObject,
|
|
128
|
+
model?: Model.AsObject,
|
|
129
|
+
workflow?: Workflow.AsObject,
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export enum WorkerCase {
|
|
133
|
+
WORKER_NOT_SET = 0,
|
|
134
|
+
USER = 1,
|
|
135
|
+
MODEL = 2,
|
|
136
|
+
WORKFLOW = 3,
|
|
91
137
|
}
|
|
92
138
|
}
|
|
93
139
|
|
|
@@ -104,6 +150,11 @@ export class App extends jspb.Message {
|
|
|
104
150
|
getDefaultWorkflowId(): string;
|
|
105
151
|
setDefaultWorkflowId(value: string): App;
|
|
106
152
|
|
|
153
|
+
getDefaultWorkflow(): Workflow | undefined;
|
|
154
|
+
setDefaultWorkflow(value?: Workflow): App;
|
|
155
|
+
hasDefaultWorkflow(): boolean;
|
|
156
|
+
clearDefaultWorkflow(): App;
|
|
157
|
+
|
|
107
158
|
getUserId(): string;
|
|
108
159
|
setUserId(value: string): App;
|
|
109
160
|
|
|
@@ -153,6 +204,16 @@ export class App extends jspb.Message {
|
|
|
153
204
|
hasImage(): boolean;
|
|
154
205
|
clearImage(): App;
|
|
155
206
|
|
|
207
|
+
getIsTemplate(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
208
|
+
setIsTemplate(value?: google_protobuf_wrappers_pb.BoolValue): App;
|
|
209
|
+
hasIsTemplate(): boolean;
|
|
210
|
+
clearIsTemplate(): App;
|
|
211
|
+
|
|
212
|
+
getExtraInfo(): AppExtraInfo | undefined;
|
|
213
|
+
setExtraInfo(value?: AppExtraInfo): App;
|
|
214
|
+
hasExtraInfo(): boolean;
|
|
215
|
+
clearExtraInfo(): App;
|
|
216
|
+
|
|
156
217
|
serializeBinary(): Uint8Array;
|
|
157
218
|
toObject(includeInstance?: boolean): App.AsObject;
|
|
158
219
|
static toObject(includeInstance: boolean, msg: App): App.AsObject;
|
|
@@ -167,6 +228,7 @@ export namespace App {
|
|
|
167
228
|
name: string,
|
|
168
229
|
defaultLanguage: string,
|
|
169
230
|
defaultWorkflowId: string,
|
|
231
|
+
defaultWorkflow?: Workflow.AsObject,
|
|
170
232
|
userId: string,
|
|
171
233
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
172
234
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
@@ -180,6 +242,26 @@ export namespace App {
|
|
|
180
242
|
starCount: number,
|
|
181
243
|
notes: string,
|
|
182
244
|
image?: Image.AsObject,
|
|
245
|
+
isTemplate?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
246
|
+
extraInfo?: AppExtraInfo.AsObject,
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export class AppExtraInfo extends jspb.Message {
|
|
251
|
+
getSearchRevisionMarker(): string;
|
|
252
|
+
setSearchRevisionMarker(value: string): AppExtraInfo;
|
|
253
|
+
|
|
254
|
+
serializeBinary(): Uint8Array;
|
|
255
|
+
toObject(includeInstance?: boolean): AppExtraInfo.AsObject;
|
|
256
|
+
static toObject(includeInstance: boolean, msg: AppExtraInfo): AppExtraInfo.AsObject;
|
|
257
|
+
static serializeBinaryToWriter(message: AppExtraInfo, writer: jspb.BinaryWriter): void;
|
|
258
|
+
static deserializeBinary(bytes: Uint8Array): AppExtraInfo;
|
|
259
|
+
static deserializeBinaryFromReader(message: AppExtraInfo, reader: jspb.BinaryReader): AppExtraInfo;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
export namespace AppExtraInfo {
|
|
263
|
+
export type AsObject = {
|
|
264
|
+
searchRevisionMarker: string,
|
|
183
265
|
}
|
|
184
266
|
}
|
|
185
267
|
|
|
@@ -585,6 +667,11 @@ export class Concept extends jspb.Message {
|
|
|
585
667
|
hasKeypointInfo(): boolean;
|
|
586
668
|
clearKeypointInfo(): Concept;
|
|
587
669
|
|
|
670
|
+
getExtraInfo(): ConceptExtraInfo | undefined;
|
|
671
|
+
setExtraInfo(value?: ConceptExtraInfo): Concept;
|
|
672
|
+
hasExtraInfo(): boolean;
|
|
673
|
+
clearExtraInfo(): Concept;
|
|
674
|
+
|
|
588
675
|
serializeBinary(): Uint8Array;
|
|
589
676
|
toObject(includeInstance?: boolean): Concept.AsObject;
|
|
590
677
|
static toObject(includeInstance: boolean, msg: Concept): Concept.AsObject;
|
|
@@ -606,6 +693,7 @@ export namespace Concept {
|
|
|
606
693
|
visibility?: Visibility.AsObject,
|
|
607
694
|
userId: string,
|
|
608
695
|
keypointInfo?: KeypointInfo.AsObject,
|
|
696
|
+
extraInfo?: ConceptExtraInfo.AsObject,
|
|
609
697
|
}
|
|
610
698
|
}
|
|
611
699
|
|
|
@@ -657,6 +745,24 @@ export namespace KeypointEdge {
|
|
|
657
745
|
}
|
|
658
746
|
}
|
|
659
747
|
|
|
748
|
+
export class ConceptExtraInfo extends jspb.Message {
|
|
749
|
+
getIsRankable(): boolean;
|
|
750
|
+
setIsRankable(value: boolean): ConceptExtraInfo;
|
|
751
|
+
|
|
752
|
+
serializeBinary(): Uint8Array;
|
|
753
|
+
toObject(includeInstance?: boolean): ConceptExtraInfo.AsObject;
|
|
754
|
+
static toObject(includeInstance: boolean, msg: ConceptExtraInfo): ConceptExtraInfo.AsObject;
|
|
755
|
+
static serializeBinaryToWriter(message: ConceptExtraInfo, writer: jspb.BinaryWriter): void;
|
|
756
|
+
static deserializeBinary(bytes: Uint8Array): ConceptExtraInfo;
|
|
757
|
+
static deserializeBinaryFromReader(message: ConceptExtraInfo, reader: jspb.BinaryReader): ConceptExtraInfo;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
export namespace ConceptExtraInfo {
|
|
761
|
+
export type AsObject = {
|
|
762
|
+
isRankable: boolean,
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
|
|
660
766
|
export class ConceptCount extends jspb.Message {
|
|
661
767
|
getId(): string;
|
|
662
768
|
setId(value: string): ConceptCount;
|
|
@@ -1590,6 +1696,26 @@ export namespace Input {
|
|
|
1590
1696
|
}
|
|
1591
1697
|
}
|
|
1592
1698
|
|
|
1699
|
+
export class InputBatch extends jspb.Message {
|
|
1700
|
+
getInputsList(): Array<Input>;
|
|
1701
|
+
setInputsList(value: Array<Input>): InputBatch;
|
|
1702
|
+
clearInputsList(): InputBatch;
|
|
1703
|
+
addInputs(value?: Input, index?: number): Input;
|
|
1704
|
+
|
|
1705
|
+
serializeBinary(): Uint8Array;
|
|
1706
|
+
toObject(includeInstance?: boolean): InputBatch.AsObject;
|
|
1707
|
+
static toObject(includeInstance: boolean, msg: InputBatch): InputBatch.AsObject;
|
|
1708
|
+
static serializeBinaryToWriter(message: InputBatch, writer: jspb.BinaryWriter): void;
|
|
1709
|
+
static deserializeBinary(bytes: Uint8Array): InputBatch;
|
|
1710
|
+
static deserializeBinaryFromReader(message: InputBatch, reader: jspb.BinaryReader): InputBatch;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
export namespace InputBatch {
|
|
1714
|
+
export type AsObject = {
|
|
1715
|
+
inputsList: Array<Input.AsObject>,
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1593
1719
|
export class InputCount extends jspb.Message {
|
|
1594
1720
|
getProcessed(): number;
|
|
1595
1721
|
setProcessed(value: number): InputCount;
|
|
@@ -1674,6 +1800,11 @@ export class Dataset extends jspb.Message {
|
|
|
1674
1800
|
hasDefaultAnnotationFilter(): boolean;
|
|
1675
1801
|
clearDefaultAnnotationFilter(): Dataset;
|
|
1676
1802
|
|
|
1803
|
+
getDefaultProcessingInfo(): DatasetVersionProcessingInfo | undefined;
|
|
1804
|
+
setDefaultProcessingInfo(value?: DatasetVersionProcessingInfo): Dataset;
|
|
1805
|
+
hasDefaultProcessingInfo(): boolean;
|
|
1806
|
+
clearDefaultProcessingInfo(): Dataset;
|
|
1807
|
+
|
|
1677
1808
|
getNotes(): string;
|
|
1678
1809
|
setNotes(value: string): Dataset;
|
|
1679
1810
|
|
|
@@ -1682,6 +1813,22 @@ export class Dataset extends jspb.Message {
|
|
|
1682
1813
|
hasVersion(): boolean;
|
|
1683
1814
|
clearVersion(): Dataset;
|
|
1684
1815
|
|
|
1816
|
+
getIsStarred(): boolean;
|
|
1817
|
+
setIsStarred(value: boolean): Dataset;
|
|
1818
|
+
|
|
1819
|
+
getStarCount(): number;
|
|
1820
|
+
setStarCount(value: number): Dataset;
|
|
1821
|
+
|
|
1822
|
+
getBookmarkOrigin(): BookmarkOrigin | undefined;
|
|
1823
|
+
setBookmarkOrigin(value?: BookmarkOrigin): Dataset;
|
|
1824
|
+
hasBookmarkOrigin(): boolean;
|
|
1825
|
+
clearBookmarkOrigin(): Dataset;
|
|
1826
|
+
|
|
1827
|
+
getImage(): Image | undefined;
|
|
1828
|
+
setImage(value?: Image): Dataset;
|
|
1829
|
+
hasImage(): boolean;
|
|
1830
|
+
clearImage(): Dataset;
|
|
1831
|
+
|
|
1685
1832
|
serializeBinary(): Uint8Array;
|
|
1686
1833
|
toObject(includeInstance?: boolean): Dataset.AsObject;
|
|
1687
1834
|
static toObject(includeInstance: boolean, msg: Dataset): Dataset.AsObject;
|
|
@@ -1701,8 +1848,13 @@ export namespace Dataset {
|
|
|
1701
1848
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1702
1849
|
visibility?: Visibility.AsObject,
|
|
1703
1850
|
defaultAnnotationFilter?: AnnotationFilter.AsObject,
|
|
1851
|
+
defaultProcessingInfo?: DatasetVersionProcessingInfo.AsObject,
|
|
1704
1852
|
notes: string,
|
|
1705
1853
|
version?: DatasetVersion.AsObject,
|
|
1854
|
+
isStarred: boolean,
|
|
1855
|
+
starCount: number,
|
|
1856
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
1857
|
+
image?: Image.AsObject,
|
|
1706
1858
|
}
|
|
1707
1859
|
}
|
|
1708
1860
|
|
|
@@ -1726,10 +1878,10 @@ export class AnnotationFilter extends jspb.Message {
|
|
|
1726
1878
|
getAppId(): string;
|
|
1727
1879
|
setAppId(value: string): AnnotationFilter;
|
|
1728
1880
|
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1881
|
+
getSearch(): Search | undefined;
|
|
1882
|
+
setSearch(value?: Search): AnnotationFilter;
|
|
1883
|
+
hasSearch(): boolean;
|
|
1884
|
+
clearSearch(): AnnotationFilter;
|
|
1733
1885
|
|
|
1734
1886
|
serializeBinary(): Uint8Array;
|
|
1735
1887
|
toObject(includeInstance?: boolean): AnnotationFilter.AsObject;
|
|
@@ -1746,7 +1898,7 @@ export namespace AnnotationFilter {
|
|
|
1746
1898
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1747
1899
|
userId: string,
|
|
1748
1900
|
appId: string,
|
|
1749
|
-
|
|
1901
|
+
search?: Search.AsObject,
|
|
1750
1902
|
}
|
|
1751
1903
|
}
|
|
1752
1904
|
|
|
@@ -1817,6 +1969,11 @@ export class DatasetVersion extends jspb.Message {
|
|
|
1817
1969
|
getDescription(): string;
|
|
1818
1970
|
setDescription(value: string): DatasetVersion;
|
|
1819
1971
|
|
|
1972
|
+
getProcessingInfo(): DatasetVersionProcessingInfo | undefined;
|
|
1973
|
+
setProcessingInfo(value?: DatasetVersionProcessingInfo): DatasetVersion;
|
|
1974
|
+
hasProcessingInfo(): boolean;
|
|
1975
|
+
clearProcessingInfo(): DatasetVersion;
|
|
1976
|
+
|
|
1820
1977
|
getMetricsMap(): jspb.Map<string, DatasetVersionMetrics>;
|
|
1821
1978
|
clearMetricsMap(): DatasetVersion;
|
|
1822
1979
|
|
|
@@ -1862,6 +2019,7 @@ export namespace DatasetVersion {
|
|
|
1862
2019
|
modelPredictConfig?: ModelPredictConfig.AsObject,
|
|
1863
2020
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
1864
2021
|
description: string,
|
|
2022
|
+
processingInfo?: DatasetVersionProcessingInfo.AsObject,
|
|
1865
2023
|
metricsMap: Array<[string, DatasetVersionMetrics.AsObject]>,
|
|
1866
2024
|
exportInfo?: DatasetVersionExportInfo.AsObject,
|
|
1867
2025
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
@@ -1882,6 +2040,9 @@ export class AnnotationFilterConfig extends jspb.Message {
|
|
|
1882
2040
|
hasAnnotationFilter(): boolean;
|
|
1883
2041
|
clearAnnotationFilter(): AnnotationFilterConfig;
|
|
1884
2042
|
|
|
2043
|
+
getIgnoreEmptyInputs(): boolean;
|
|
2044
|
+
setIgnoreEmptyInputs(value: boolean): AnnotationFilterConfig;
|
|
2045
|
+
|
|
1885
2046
|
serializeBinary(): Uint8Array;
|
|
1886
2047
|
toObject(includeInstance?: boolean): AnnotationFilterConfig.AsObject;
|
|
1887
2048
|
static toObject(includeInstance: boolean, msg: AnnotationFilterConfig): AnnotationFilterConfig.AsObject;
|
|
@@ -1893,6 +2054,7 @@ export class AnnotationFilterConfig extends jspb.Message {
|
|
|
1893
2054
|
export namespace AnnotationFilterConfig {
|
|
1894
2055
|
export type AsObject = {
|
|
1895
2056
|
annotationFilter?: AnnotationFilter.AsObject,
|
|
2057
|
+
ignoreEmptyInputs: boolean,
|
|
1896
2058
|
}
|
|
1897
2059
|
}
|
|
1898
2060
|
|
|
@@ -2119,6 +2281,9 @@ export class DatasetVersionExport extends jspb.Message {
|
|
|
2119
2281
|
getSize(): number;
|
|
2120
2282
|
setSize(value: number): DatasetVersionExport;
|
|
2121
2283
|
|
|
2284
|
+
getIncludeEmbeddings(): boolean;
|
|
2285
|
+
setIncludeEmbeddings(value: boolean): DatasetVersionExport;
|
|
2286
|
+
|
|
2122
2287
|
serializeBinary(): Uint8Array;
|
|
2123
2288
|
toObject(includeInstance?: boolean): DatasetVersionExport.AsObject;
|
|
2124
2289
|
static toObject(includeInstance: boolean, msg: DatasetVersionExport): DatasetVersionExport.AsObject;
|
|
@@ -2133,6 +2298,45 @@ export namespace DatasetVersionExport {
|
|
|
2133
2298
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
2134
2299
|
url: string,
|
|
2135
2300
|
size: number,
|
|
2301
|
+
includeEmbeddings: boolean,
|
|
2302
|
+
}
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
export class DatasetVersionProcessingInfo extends jspb.Message {
|
|
2306
|
+
getFrameInterpolationInfo(): FrameInterpolationInfo | undefined;
|
|
2307
|
+
setFrameInterpolationInfo(value?: FrameInterpolationInfo): DatasetVersionProcessingInfo;
|
|
2308
|
+
hasFrameInterpolationInfo(): boolean;
|
|
2309
|
+
clearFrameInterpolationInfo(): DatasetVersionProcessingInfo;
|
|
2310
|
+
|
|
2311
|
+
serializeBinary(): Uint8Array;
|
|
2312
|
+
toObject(includeInstance?: boolean): DatasetVersionProcessingInfo.AsObject;
|
|
2313
|
+
static toObject(includeInstance: boolean, msg: DatasetVersionProcessingInfo): DatasetVersionProcessingInfo.AsObject;
|
|
2314
|
+
static serializeBinaryToWriter(message: DatasetVersionProcessingInfo, writer: jspb.BinaryWriter): void;
|
|
2315
|
+
static deserializeBinary(bytes: Uint8Array): DatasetVersionProcessingInfo;
|
|
2316
|
+
static deserializeBinaryFromReader(message: DatasetVersionProcessingInfo, reader: jspb.BinaryReader): DatasetVersionProcessingInfo;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
export namespace DatasetVersionProcessingInfo {
|
|
2320
|
+
export type AsObject = {
|
|
2321
|
+
frameInterpolationInfo?: FrameInterpolationInfo.AsObject,
|
|
2322
|
+
}
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
export class FrameInterpolationInfo extends jspb.Message {
|
|
2326
|
+
getSampleMs(): number;
|
|
2327
|
+
setSampleMs(value: number): FrameInterpolationInfo;
|
|
2328
|
+
|
|
2329
|
+
serializeBinary(): Uint8Array;
|
|
2330
|
+
toObject(includeInstance?: boolean): FrameInterpolationInfo.AsObject;
|
|
2331
|
+
static toObject(includeInstance: boolean, msg: FrameInterpolationInfo): FrameInterpolationInfo.AsObject;
|
|
2332
|
+
static serializeBinaryToWriter(message: FrameInterpolationInfo, writer: jspb.BinaryWriter): void;
|
|
2333
|
+
static deserializeBinary(bytes: Uint8Array): FrameInterpolationInfo;
|
|
2334
|
+
static deserializeBinaryFromReader(message: FrameInterpolationInfo, reader: jspb.BinaryReader): FrameInterpolationInfo;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
export namespace FrameInterpolationInfo {
|
|
2338
|
+
export type AsObject = {
|
|
2339
|
+
sampleMs: number,
|
|
2136
2340
|
}
|
|
2137
2341
|
}
|
|
2138
2342
|
|
|
@@ -2260,16 +2464,6 @@ export class Model extends jspb.Message {
|
|
|
2260
2464
|
getUserId(): string;
|
|
2261
2465
|
setUserId(value: string): Model;
|
|
2262
2466
|
|
|
2263
|
-
getInputInfo(): InputInfo | undefined;
|
|
2264
|
-
setInputInfo(value?: InputInfo): Model;
|
|
2265
|
-
hasInputInfo(): boolean;
|
|
2266
|
-
clearInputInfo(): Model;
|
|
2267
|
-
|
|
2268
|
-
getTrainInfo(): TrainInfo | undefined;
|
|
2269
|
-
setTrainInfo(value?: TrainInfo): Model;
|
|
2270
|
-
hasTrainInfo(): boolean;
|
|
2271
|
-
clearTrainInfo(): Model;
|
|
2272
|
-
|
|
2273
2467
|
getDefaultEvalInfo(): EvalInfo | undefined;
|
|
2274
2468
|
setDefaultEvalInfo(value?: EvalInfo): Model;
|
|
2275
2469
|
hasDefaultEvalInfo(): boolean;
|
|
@@ -2333,16 +2527,21 @@ export class Model extends jspb.Message {
|
|
|
2333
2527
|
getStarCount(): number;
|
|
2334
2528
|
setStarCount(value: number): Model;
|
|
2335
2529
|
|
|
2336
|
-
getImportInfo(): ImportInfo | undefined;
|
|
2337
|
-
setImportInfo(value?: ImportInfo): Model;
|
|
2338
|
-
hasImportInfo(): boolean;
|
|
2339
|
-
clearImportInfo(): Model;
|
|
2340
|
-
|
|
2341
2530
|
getWorkflowRecommended(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
2342
2531
|
setWorkflowRecommended(value?: google_protobuf_wrappers_pb.BoolValue): Model;
|
|
2343
2532
|
hasWorkflowRecommended(): boolean;
|
|
2344
2533
|
clearWorkflowRecommended(): Model;
|
|
2345
2534
|
|
|
2535
|
+
getBookmarkOrigin(): BookmarkOrigin | undefined;
|
|
2536
|
+
setBookmarkOrigin(value?: BookmarkOrigin): Model;
|
|
2537
|
+
hasBookmarkOrigin(): boolean;
|
|
2538
|
+
clearBookmarkOrigin(): Model;
|
|
2539
|
+
|
|
2540
|
+
getImage(): Image | undefined;
|
|
2541
|
+
setImage(value?: Image): Model;
|
|
2542
|
+
hasImage(): boolean;
|
|
2543
|
+
clearImage(): Model;
|
|
2544
|
+
|
|
2346
2545
|
serializeBinary(): Uint8Array;
|
|
2347
2546
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
2348
2547
|
static toObject(includeInstance: boolean, msg: Model): Model.AsObject;
|
|
@@ -2362,8 +2561,6 @@ export namespace Model {
|
|
|
2362
2561
|
modelVersion?: ModelVersion.AsObject,
|
|
2363
2562
|
displayName: string,
|
|
2364
2563
|
userId: string,
|
|
2365
|
-
inputInfo?: InputInfo.AsObject,
|
|
2366
|
-
trainInfo?: TrainInfo.AsObject,
|
|
2367
2564
|
defaultEvalInfo?: EvalInfo.AsObject,
|
|
2368
2565
|
modelTypeId: string,
|
|
2369
2566
|
task: string,
|
|
@@ -2379,8 +2576,9 @@ export namespace Model {
|
|
|
2379
2576
|
checkConsentsList: Array<string>,
|
|
2380
2577
|
isStarred: boolean,
|
|
2381
2578
|
starCount: number,
|
|
2382
|
-
importInfo?: ImportInfo.AsObject,
|
|
2383
2579
|
workflowRecommended?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
2580
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
2581
|
+
image?: Image.AsObject,
|
|
2384
2582
|
}
|
|
2385
2583
|
}
|
|
2386
2584
|
|
|
@@ -2484,6 +2682,11 @@ export class OutputInfo extends jspb.Message {
|
|
|
2484
2682
|
hasParams(): boolean;
|
|
2485
2683
|
clearParams(): OutputInfo;
|
|
2486
2684
|
|
|
2685
|
+
getParamsSpecsList(): Array<ModelTypeField>;
|
|
2686
|
+
setParamsSpecsList(value: Array<ModelTypeField>): OutputInfo;
|
|
2687
|
+
clearParamsSpecsList(): OutputInfo;
|
|
2688
|
+
addParamsSpecs(value?: ModelTypeField, index?: number): ModelTypeField;
|
|
2689
|
+
|
|
2487
2690
|
serializeBinary(): Uint8Array;
|
|
2488
2691
|
toObject(includeInstance?: boolean): OutputInfo.AsObject;
|
|
2489
2692
|
static toObject(includeInstance: boolean, msg: OutputInfo): OutputInfo.AsObject;
|
|
@@ -2499,6 +2702,7 @@ export namespace OutputInfo {
|
|
|
2499
2702
|
message: string,
|
|
2500
2703
|
fieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2501
2704
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2705
|
+
paramsSpecsList: Array<ModelTypeField.AsObject>,
|
|
2502
2706
|
}
|
|
2503
2707
|
}
|
|
2504
2708
|
|
|
@@ -2513,6 +2717,11 @@ export class InputInfo extends jspb.Message {
|
|
|
2513
2717
|
hasParams(): boolean;
|
|
2514
2718
|
clearParams(): InputInfo;
|
|
2515
2719
|
|
|
2720
|
+
getBaseEmbedModel(): Model | undefined;
|
|
2721
|
+
setBaseEmbedModel(value?: Model): InputInfo;
|
|
2722
|
+
hasBaseEmbedModel(): boolean;
|
|
2723
|
+
clearBaseEmbedModel(): InputInfo;
|
|
2724
|
+
|
|
2516
2725
|
serializeBinary(): Uint8Array;
|
|
2517
2726
|
toObject(includeInstance?: boolean): InputInfo.AsObject;
|
|
2518
2727
|
static toObject(includeInstance: boolean, msg: InputInfo): InputInfo.AsObject;
|
|
@@ -2525,6 +2734,7 @@ export namespace InputInfo {
|
|
|
2525
2734
|
export type AsObject = {
|
|
2526
2735
|
fieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2527
2736
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2737
|
+
baseEmbedModel?: Model.AsObject,
|
|
2528
2738
|
}
|
|
2529
2739
|
}
|
|
2530
2740
|
|
|
@@ -2534,6 +2744,11 @@ export class TrainInfo extends jspb.Message {
|
|
|
2534
2744
|
hasParams(): boolean;
|
|
2535
2745
|
clearParams(): TrainInfo;
|
|
2536
2746
|
|
|
2747
|
+
getDataset(): Dataset | undefined;
|
|
2748
|
+
setDataset(value?: Dataset): TrainInfo;
|
|
2749
|
+
hasDataset(): boolean;
|
|
2750
|
+
clearDataset(): TrainInfo;
|
|
2751
|
+
|
|
2537
2752
|
serializeBinary(): Uint8Array;
|
|
2538
2753
|
toObject(includeInstance?: boolean): TrainInfo.AsObject;
|
|
2539
2754
|
static toObject(includeInstance: boolean, msg: TrainInfo): TrainInfo.AsObject;
|
|
@@ -2545,6 +2760,7 @@ export class TrainInfo extends jspb.Message {
|
|
|
2545
2760
|
export namespace TrainInfo {
|
|
2546
2761
|
export type AsObject = {
|
|
2547
2762
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2763
|
+
dataset?: Dataset.AsObject,
|
|
2548
2764
|
}
|
|
2549
2765
|
}
|
|
2550
2766
|
|
|
@@ -2592,9 +2808,6 @@ export class OutputConfig extends jspb.Message {
|
|
|
2592
2808
|
getConceptsMutuallyExclusive(): boolean;
|
|
2593
2809
|
setConceptsMutuallyExclusive(value: boolean): OutputConfig;
|
|
2594
2810
|
|
|
2595
|
-
getClosedEnvironment(): boolean;
|
|
2596
|
-
setClosedEnvironment(value: boolean): OutputConfig;
|
|
2597
|
-
|
|
2598
2811
|
getExistingModelId(): string;
|
|
2599
2812
|
setExistingModelId(value: string): OutputConfig;
|
|
2600
2813
|
|
|
@@ -2648,7 +2861,6 @@ export class OutputConfig extends jspb.Message {
|
|
|
2648
2861
|
export namespace OutputConfig {
|
|
2649
2862
|
export type AsObject = {
|
|
2650
2863
|
conceptsMutuallyExclusive: boolean,
|
|
2651
|
-
closedEnvironment: boolean,
|
|
2652
2864
|
existingModelId: string,
|
|
2653
2865
|
language: string,
|
|
2654
2866
|
hyperParameters: string,
|
|
@@ -2772,6 +2984,28 @@ export namespace ModelLayerInfo {
|
|
|
2772
2984
|
}
|
|
2773
2985
|
}
|
|
2774
2986
|
|
|
2987
|
+
export class TritonCondaEnvInfo extends jspb.Message {
|
|
2988
|
+
getCondaPackUrl(): string;
|
|
2989
|
+
setCondaPackUrl(value: string): TritonCondaEnvInfo;
|
|
2990
|
+
|
|
2991
|
+
getCondaYamlUrl(): string;
|
|
2992
|
+
setCondaYamlUrl(value: string): TritonCondaEnvInfo;
|
|
2993
|
+
|
|
2994
|
+
serializeBinary(): Uint8Array;
|
|
2995
|
+
toObject(includeInstance?: boolean): TritonCondaEnvInfo.AsObject;
|
|
2996
|
+
static toObject(includeInstance: boolean, msg: TritonCondaEnvInfo): TritonCondaEnvInfo.AsObject;
|
|
2997
|
+
static serializeBinaryToWriter(message: TritonCondaEnvInfo, writer: jspb.BinaryWriter): void;
|
|
2998
|
+
static deserializeBinary(bytes: Uint8Array): TritonCondaEnvInfo;
|
|
2999
|
+
static deserializeBinaryFromReader(message: TritonCondaEnvInfo, reader: jspb.BinaryReader): TritonCondaEnvInfo;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
export namespace TritonCondaEnvInfo {
|
|
3003
|
+
export type AsObject = {
|
|
3004
|
+
condaPackUrl: string,
|
|
3005
|
+
condaYamlUrl: string,
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
3008
|
+
|
|
2775
3009
|
export class LayerShape extends jspb.Message {
|
|
2776
3010
|
getDimsList(): Array<number>;
|
|
2777
3011
|
setDimsList(value: Array<number>): LayerShape;
|
|
@@ -2879,6 +3113,10 @@ export namespace ModelTypeField {
|
|
|
2879
3113
|
PYTHON_CODE = 15,
|
|
2880
3114
|
DATASET_ID = 16,
|
|
2881
3115
|
DATASET_VERSION_ID = 17,
|
|
3116
|
+
ARRAY_OF_MODEL_CONCEPTS = 18,
|
|
3117
|
+
DATASET = 19,
|
|
3118
|
+
DATASET_VERSION = 20,
|
|
3119
|
+
ENCRYPTED_STRING = 21,
|
|
2882
3120
|
}
|
|
2883
3121
|
}
|
|
2884
3122
|
|
|
@@ -3056,11 +3294,6 @@ export class ModelVersion extends jspb.Message {
|
|
|
3056
3294
|
getLicense(): string;
|
|
3057
3295
|
setLicense(value: string): ModelVersion;
|
|
3058
3296
|
|
|
3059
|
-
getDatasetVersion(): DatasetVersion | undefined;
|
|
3060
|
-
setDatasetVersion(value?: DatasetVersion): ModelVersion;
|
|
3061
|
-
hasDatasetVersion(): boolean;
|
|
3062
|
-
clearDatasetVersion(): ModelVersion;
|
|
3063
|
-
|
|
3064
3297
|
getOutputInfo(): OutputInfo | undefined;
|
|
3065
3298
|
setOutputInfo(value?: OutputInfo): ModelVersion;
|
|
3066
3299
|
hasOutputInfo(): boolean;
|
|
@@ -3081,6 +3314,9 @@ export class ModelVersion extends jspb.Message {
|
|
|
3081
3314
|
hasImportInfo(): boolean;
|
|
3082
3315
|
clearImportInfo(): ModelVersion;
|
|
3083
3316
|
|
|
3317
|
+
getTrainLog(): string;
|
|
3318
|
+
setTrainLog(value: string): ModelVersion;
|
|
3319
|
+
|
|
3084
3320
|
serializeBinary(): Uint8Array;
|
|
3085
3321
|
toObject(includeInstance?: boolean): ModelVersion.AsObject;
|
|
3086
3322
|
static toObject(includeInstance: boolean, msg: ModelVersion): ModelVersion.AsObject;
|
|
@@ -3106,11 +3342,11 @@ export namespace ModelVersion {
|
|
|
3106
3342
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3107
3343
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
3108
3344
|
license: string,
|
|
3109
|
-
datasetVersion?: DatasetVersion.AsObject,
|
|
3110
3345
|
outputInfo?: OutputInfo.AsObject,
|
|
3111
3346
|
inputInfo?: InputInfo.AsObject,
|
|
3112
3347
|
trainInfo?: TrainInfo.AsObject,
|
|
3113
3348
|
importInfo?: ImportInfo.AsObject,
|
|
3349
|
+
trainLog: string,
|
|
3114
3350
|
}
|
|
3115
3351
|
}
|
|
3116
3352
|
|
|
@@ -3197,6 +3433,11 @@ export class LabelCount extends jspb.Message {
|
|
|
3197
3433
|
getCount(): number;
|
|
3198
3434
|
setCount(value: number): LabelCount;
|
|
3199
3435
|
|
|
3436
|
+
getConcept(): Concept | undefined;
|
|
3437
|
+
setConcept(value?: Concept): LabelCount;
|
|
3438
|
+
hasConcept(): boolean;
|
|
3439
|
+
clearConcept(): LabelCount;
|
|
3440
|
+
|
|
3200
3441
|
serializeBinary(): Uint8Array;
|
|
3201
3442
|
toObject(includeInstance?: boolean): LabelCount.AsObject;
|
|
3202
3443
|
static toObject(includeInstance: boolean, msg: LabelCount): LabelCount.AsObject;
|
|
@@ -3209,6 +3450,7 @@ export namespace LabelCount {
|
|
|
3209
3450
|
export type AsObject = {
|
|
3210
3451
|
conceptName: string,
|
|
3211
3452
|
count: number,
|
|
3453
|
+
concept?: Concept.AsObject,
|
|
3212
3454
|
}
|
|
3213
3455
|
}
|
|
3214
3456
|
|
|
@@ -3294,6 +3536,16 @@ export class ConfusionMatrixEntry extends jspb.Message {
|
|
|
3294
3536
|
getValue(): number;
|
|
3295
3537
|
setValue(value: number): ConfusionMatrixEntry;
|
|
3296
3538
|
|
|
3539
|
+
getPredictedConcept(): Concept | undefined;
|
|
3540
|
+
setPredictedConcept(value?: Concept): ConfusionMatrixEntry;
|
|
3541
|
+
hasPredictedConcept(): boolean;
|
|
3542
|
+
clearPredictedConcept(): ConfusionMatrixEntry;
|
|
3543
|
+
|
|
3544
|
+
getActualConcept(): Concept | undefined;
|
|
3545
|
+
setActualConcept(value?: Concept): ConfusionMatrixEntry;
|
|
3546
|
+
hasActualConcept(): boolean;
|
|
3547
|
+
clearActualConcept(): ConfusionMatrixEntry;
|
|
3548
|
+
|
|
3297
3549
|
serializeBinary(): Uint8Array;
|
|
3298
3550
|
toObject(includeInstance?: boolean): ConfusionMatrixEntry.AsObject;
|
|
3299
3551
|
static toObject(includeInstance: boolean, msg: ConfusionMatrixEntry): ConfusionMatrixEntry.AsObject;
|
|
@@ -3307,6 +3559,8 @@ export namespace ConfusionMatrixEntry {
|
|
|
3307
3559
|
predicted: string,
|
|
3308
3560
|
actual: string,
|
|
3309
3561
|
value: number,
|
|
3562
|
+
predictedConcept?: Concept.AsObject,
|
|
3563
|
+
actualConcept?: Concept.AsObject,
|
|
3310
3564
|
}
|
|
3311
3565
|
}
|
|
3312
3566
|
|
|
@@ -3523,12 +3777,6 @@ export namespace TrackerMetrics {
|
|
|
3523
3777
|
}
|
|
3524
3778
|
|
|
3525
3779
|
export class EvalTestSetEntry extends jspb.Message {
|
|
3526
|
-
getId(): string;
|
|
3527
|
-
setId(value: string): EvalTestSetEntry;
|
|
3528
|
-
|
|
3529
|
-
getUrl(): string;
|
|
3530
|
-
setUrl(value: string): EvalTestSetEntry;
|
|
3531
|
-
|
|
3532
3780
|
getInput(): Input | undefined;
|
|
3533
3781
|
setInput(value?: Input): EvalTestSetEntry;
|
|
3534
3782
|
hasInput(): boolean;
|
|
@@ -3559,8 +3807,6 @@ export class EvalTestSetEntry extends jspb.Message {
|
|
|
3559
3807
|
|
|
3560
3808
|
export namespace EvalTestSetEntry {
|
|
3561
3809
|
export type AsObject = {
|
|
3562
|
-
id: string,
|
|
3563
|
-
url: string,
|
|
3564
3810
|
input?: Input.AsObject,
|
|
3565
3811
|
predictedConceptsList: Array<Concept.AsObject>,
|
|
3566
3812
|
groundTruthConceptsList: Array<Concept.AsObject>,
|
|
@@ -3672,9 +3918,25 @@ export class EvalMetrics extends jspb.Message {
|
|
|
3672
3918
|
hasStatus(): boolean;
|
|
3673
3919
|
clearStatus(): EvalMetrics;
|
|
3674
3920
|
|
|
3921
|
+
getUserId(): string;
|
|
3922
|
+
setUserId(value: string): EvalMetrics;
|
|
3923
|
+
|
|
3924
|
+
getAppId(): string;
|
|
3925
|
+
setAppId(value: string): EvalMetrics;
|
|
3926
|
+
|
|
3675
3927
|
getId(): string;
|
|
3676
3928
|
setId(value: string): EvalMetrics;
|
|
3677
3929
|
|
|
3930
|
+
getModel(): Model | undefined;
|
|
3931
|
+
setModel(value?: Model): EvalMetrics;
|
|
3932
|
+
hasModel(): boolean;
|
|
3933
|
+
clearModel(): EvalMetrics;
|
|
3934
|
+
|
|
3935
|
+
getGroundTruthDataset(): Dataset | undefined;
|
|
3936
|
+
setGroundTruthDataset(value?: Dataset): EvalMetrics;
|
|
3937
|
+
hasGroundTruthDataset(): boolean;
|
|
3938
|
+
clearGroundTruthDataset(): EvalMetrics;
|
|
3939
|
+
|
|
3678
3940
|
getSummary(): MetricsSummary | undefined;
|
|
3679
3941
|
setSummary(value?: MetricsSummary): EvalMetrics;
|
|
3680
3942
|
hasSummary(): boolean;
|
|
@@ -3725,6 +3987,11 @@ export class EvalMetrics extends jspb.Message {
|
|
|
3725
3987
|
hasEvalInfo(): boolean;
|
|
3726
3988
|
clearEvalInfo(): EvalMetrics;
|
|
3727
3989
|
|
|
3990
|
+
getExtendedMetrics(): ExtendedMetrics | undefined;
|
|
3991
|
+
setExtendedMetrics(value?: ExtendedMetrics): EvalMetrics;
|
|
3992
|
+
hasExtendedMetrics(): boolean;
|
|
3993
|
+
clearExtendedMetrics(): EvalMetrics;
|
|
3994
|
+
|
|
3728
3995
|
serializeBinary(): Uint8Array;
|
|
3729
3996
|
toObject(includeInstance?: boolean): EvalMetrics.AsObject;
|
|
3730
3997
|
static toObject(includeInstance: boolean, msg: EvalMetrics): EvalMetrics.AsObject;
|
|
@@ -3736,7 +4003,11 @@ export class EvalMetrics extends jspb.Message {
|
|
|
3736
4003
|
export namespace EvalMetrics {
|
|
3737
4004
|
export type AsObject = {
|
|
3738
4005
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4006
|
+
userId: string,
|
|
4007
|
+
appId: string,
|
|
3739
4008
|
id: string,
|
|
4009
|
+
model?: Model.AsObject,
|
|
4010
|
+
groundTruthDataset?: Dataset.AsObject,
|
|
3740
4011
|
summary?: MetricsSummary.AsObject,
|
|
3741
4012
|
confusionMatrix?: ConfusionMatrix.AsObject,
|
|
3742
4013
|
cooccurrenceMatrix?: CooccurrenceMatrix.AsObject,
|
|
@@ -3747,6 +4018,27 @@ export namespace EvalMetrics {
|
|
|
3747
4018
|
metricsByClassList: Array<BinaryMetrics.AsObject>,
|
|
3748
4019
|
trackerMetricsList: Array<TrackerMetrics.AsObject>,
|
|
3749
4020
|
evalInfo?: EvalInfo.AsObject,
|
|
4021
|
+
extendedMetrics?: ExtendedMetrics.AsObject,
|
|
4022
|
+
}
|
|
4023
|
+
}
|
|
4024
|
+
|
|
4025
|
+
export class ExtendedMetrics extends jspb.Message {
|
|
4026
|
+
getUserMetrics(): google_protobuf_struct_pb.Struct | undefined;
|
|
4027
|
+
setUserMetrics(value?: google_protobuf_struct_pb.Struct): ExtendedMetrics;
|
|
4028
|
+
hasUserMetrics(): boolean;
|
|
4029
|
+
clearUserMetrics(): ExtendedMetrics;
|
|
4030
|
+
|
|
4031
|
+
serializeBinary(): Uint8Array;
|
|
4032
|
+
toObject(includeInstance?: boolean): ExtendedMetrics.AsObject;
|
|
4033
|
+
static toObject(includeInstance: boolean, msg: ExtendedMetrics): ExtendedMetrics.AsObject;
|
|
4034
|
+
static serializeBinaryToWriter(message: ExtendedMetrics, writer: jspb.BinaryWriter): void;
|
|
4035
|
+
static deserializeBinary(bytes: Uint8Array): ExtendedMetrics;
|
|
4036
|
+
static deserializeBinaryFromReader(message: ExtendedMetrics, reader: jspb.BinaryReader): ExtendedMetrics;
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
export namespace ExtendedMetrics {
|
|
4040
|
+
export type AsObject = {
|
|
4041
|
+
userMetrics?: google_protobuf_struct_pb.Struct.AsObject,
|
|
3750
4042
|
}
|
|
3751
4043
|
}
|
|
3752
4044
|
|
|
@@ -3926,6 +4218,24 @@ export namespace Hit {
|
|
|
3926
4218
|
}
|
|
3927
4219
|
}
|
|
3928
4220
|
|
|
4221
|
+
export class HitCount extends jspb.Message {
|
|
4222
|
+
getEstimatedTotal(): number;
|
|
4223
|
+
setEstimatedTotal(value: number): HitCount;
|
|
4224
|
+
|
|
4225
|
+
serializeBinary(): Uint8Array;
|
|
4226
|
+
toObject(includeInstance?: boolean): HitCount.AsObject;
|
|
4227
|
+
static toObject(includeInstance: boolean, msg: HitCount): HitCount.AsObject;
|
|
4228
|
+
static serializeBinaryToWriter(message: HitCount, writer: jspb.BinaryWriter): void;
|
|
4229
|
+
static deserializeBinary(bytes: Uint8Array): HitCount;
|
|
4230
|
+
static deserializeBinaryFromReader(message: HitCount, reader: jspb.BinaryReader): HitCount;
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
export namespace HitCount {
|
|
4234
|
+
export type AsObject = {
|
|
4235
|
+
estimatedTotal: number,
|
|
4236
|
+
}
|
|
4237
|
+
}
|
|
4238
|
+
|
|
3929
4239
|
export class And extends jspb.Message {
|
|
3930
4240
|
getInput(): Input | undefined;
|
|
3931
4241
|
setInput(value?: Input): And;
|
|
@@ -4045,6 +4355,9 @@ export class Search extends jspb.Message {
|
|
|
4045
4355
|
hasVisibility(): boolean;
|
|
4046
4356
|
clearVisibility(): Search;
|
|
4047
4357
|
|
|
4358
|
+
getMetric(): Search.Metric;
|
|
4359
|
+
setMetric(value: Search.Metric): Search;
|
|
4360
|
+
|
|
4048
4361
|
serializeBinary(): Uint8Array;
|
|
4049
4362
|
toObject(includeInstance?: boolean): Search.AsObject;
|
|
4050
4363
|
static toObject(includeInstance: boolean, msg: Search): Search.AsObject;
|
|
@@ -4067,6 +4380,13 @@ export namespace Search {
|
|
|
4067
4380
|
save: boolean,
|
|
4068
4381
|
minValue: number,
|
|
4069
4382
|
visibility?: Visibility.AsObject,
|
|
4383
|
+
metric: Search.Metric,
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4386
|
+
export enum Metric {
|
|
4387
|
+
METRIC_NOT_SET = 0,
|
|
4388
|
+
EUCLIDEAN_DISTANCE = 1,
|
|
4389
|
+
COSINE_DISTANCE = 2,
|
|
4070
4390
|
}
|
|
4071
4391
|
}
|
|
4072
4392
|
|
|
@@ -4286,6 +4606,9 @@ export class User extends jspb.Message {
|
|
|
4286
4606
|
getJobRole(): string;
|
|
4287
4607
|
setJobRole(value: string): User;
|
|
4288
4608
|
|
|
4609
|
+
getIntention(): string;
|
|
4610
|
+
setIntention(value: string): User;
|
|
4611
|
+
|
|
4289
4612
|
getBillType(): string;
|
|
4290
4613
|
setBillType(value: string): User;
|
|
4291
4614
|
|
|
@@ -4363,6 +4686,7 @@ export namespace User {
|
|
|
4363
4686
|
companyName: string,
|
|
4364
4687
|
jobTitle: string,
|
|
4365
4688
|
jobRole: string,
|
|
4689
|
+
intention: string,
|
|
4366
4690
|
billType: string,
|
|
4367
4691
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4368
4692
|
dateGdprConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
@@ -4588,6 +4912,11 @@ export class Video extends jspb.Message {
|
|
|
4588
4912
|
hasHosted(): boolean;
|
|
4589
4913
|
clearHosted(): Video;
|
|
4590
4914
|
|
|
4915
|
+
getHostedThumbnail(): HostedURL | undefined;
|
|
4916
|
+
setHostedThumbnail(value?: HostedURL): Video;
|
|
4917
|
+
hasHostedThumbnail(): boolean;
|
|
4918
|
+
clearHostedThumbnail(): Video;
|
|
4919
|
+
|
|
4591
4920
|
getVideoInfo(): VideoInfo | undefined;
|
|
4592
4921
|
setVideoInfo(value?: VideoInfo): Video;
|
|
4593
4922
|
hasVideoInfo(): boolean;
|
|
@@ -4608,6 +4937,7 @@ export namespace Video {
|
|
|
4608
4937
|
allowDuplicateUrl: boolean,
|
|
4609
4938
|
thumbnailUrl: string,
|
|
4610
4939
|
hosted?: HostedURL.AsObject,
|
|
4940
|
+
hostedThumbnail?: HostedURL.AsObject,
|
|
4611
4941
|
videoInfo?: VideoInfo.AsObject,
|
|
4612
4942
|
}
|
|
4613
4943
|
}
|
|
@@ -4716,6 +5046,16 @@ export class Workflow extends jspb.Message {
|
|
|
4716
5046
|
clearCheckConsentsList(): Workflow;
|
|
4717
5047
|
addCheckConsents(value: string, index?: number): Workflow;
|
|
4718
5048
|
|
|
5049
|
+
getBookmarkOrigin(): BookmarkOrigin | undefined;
|
|
5050
|
+
setBookmarkOrigin(value?: BookmarkOrigin): Workflow;
|
|
5051
|
+
hasBookmarkOrigin(): boolean;
|
|
5052
|
+
clearBookmarkOrigin(): Workflow;
|
|
5053
|
+
|
|
5054
|
+
getImage(): Image | undefined;
|
|
5055
|
+
setImage(value?: Image): Workflow;
|
|
5056
|
+
hasImage(): boolean;
|
|
5057
|
+
clearImage(): Workflow;
|
|
5058
|
+
|
|
4719
5059
|
serializeBinary(): Uint8Array;
|
|
4720
5060
|
toObject(includeInstance?: boolean): Workflow.AsObject;
|
|
4721
5061
|
static toObject(includeInstance: boolean, msg: Workflow): Workflow.AsObject;
|
|
@@ -4741,6 +5081,8 @@ export namespace Workflow {
|
|
|
4741
5081
|
notes: string,
|
|
4742
5082
|
useCasesList: Array<string>,
|
|
4743
5083
|
checkConsentsList: Array<string>,
|
|
5084
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
5085
|
+
image?: Image.AsObject,
|
|
4744
5086
|
}
|
|
4745
5087
|
}
|
|
4746
5088
|
|
|
@@ -4829,6 +5171,11 @@ export class WorkflowNode extends jspb.Message {
|
|
|
4829
5171
|
getSuppressOutput(): boolean;
|
|
4830
5172
|
setSuppressOutput(value: boolean): WorkflowNode;
|
|
4831
5173
|
|
|
5174
|
+
getOutputInfoOverride(): OutputInfo | undefined;
|
|
5175
|
+
setOutputInfoOverride(value?: OutputInfo): WorkflowNode;
|
|
5176
|
+
hasOutputInfoOverride(): boolean;
|
|
5177
|
+
clearOutputInfoOverride(): WorkflowNode;
|
|
5178
|
+
|
|
4832
5179
|
serializeBinary(): Uint8Array;
|
|
4833
5180
|
toObject(includeInstance?: boolean): WorkflowNode.AsObject;
|
|
4834
5181
|
static toObject(includeInstance: boolean, msg: WorkflowNode): WorkflowNode.AsObject;
|
|
@@ -4843,6 +5190,7 @@ export namespace WorkflowNode {
|
|
|
4843
5190
|
model?: Model.AsObject,
|
|
4844
5191
|
nodeInputsList: Array<NodeInput.AsObject>,
|
|
4845
5192
|
suppressOutput: boolean,
|
|
5193
|
+
outputInfoOverride?: OutputInfo.AsObject,
|
|
4846
5194
|
}
|
|
4847
5195
|
}
|
|
4848
5196
|
|
|
@@ -4938,12 +5286,18 @@ export class AppDuplication extends jspb.Message {
|
|
|
4938
5286
|
getId(): string;
|
|
4939
5287
|
setId(value: string): AppDuplication;
|
|
4940
5288
|
|
|
5289
|
+
getExistingAppId(): string;
|
|
5290
|
+
setExistingAppId(value: string): AppDuplication;
|
|
5291
|
+
|
|
4941
5292
|
getNewAppId(): string;
|
|
4942
5293
|
setNewAppId(value: string): AppDuplication;
|
|
4943
5294
|
|
|
4944
5295
|
getNewAppName(): string;
|
|
4945
5296
|
setNewAppName(value: string): AppDuplication;
|
|
4946
5297
|
|
|
5298
|
+
getNewAppDescription(): string;
|
|
5299
|
+
setNewAppDescription(value: string): AppDuplication;
|
|
5300
|
+
|
|
4947
5301
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4948
5302
|
setStatus(value?: proto_clarifai_api_status_status_pb.Status): AppDuplication;
|
|
4949
5303
|
hasStatus(): boolean;
|
|
@@ -4964,9 +5318,6 @@ export class AppDuplication extends jspb.Message {
|
|
|
4964
5318
|
hasFilter(): boolean;
|
|
4965
5319
|
clearFilter(): AppDuplication;
|
|
4966
5320
|
|
|
4967
|
-
getExistingAppId(): string;
|
|
4968
|
-
setExistingAppId(value: string): AppDuplication;
|
|
4969
|
-
|
|
4970
5321
|
getProgressList(): Array<AppCopyProgress>;
|
|
4971
5322
|
setProgressList(value: Array<AppCopyProgress>): AppDuplication;
|
|
4972
5323
|
clearProgressList(): AppDuplication;
|
|
@@ -4983,13 +5334,14 @@ export class AppDuplication extends jspb.Message {
|
|
|
4983
5334
|
export namespace AppDuplication {
|
|
4984
5335
|
export type AsObject = {
|
|
4985
5336
|
id: string,
|
|
5337
|
+
existingAppId: string,
|
|
4986
5338
|
newAppId: string,
|
|
4987
5339
|
newAppName: string,
|
|
5340
|
+
newAppDescription: string,
|
|
4988
5341
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4989
5342
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4990
5343
|
lastModifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4991
5344
|
filter?: AppDuplicationFilters.AsObject,
|
|
4992
|
-
existingAppId: string,
|
|
4993
5345
|
progressList: Array<AppCopyProgress.AsObject>,
|
|
4994
5346
|
}
|
|
4995
5347
|
}
|
|
@@ -5191,6 +5543,14 @@ export class Task extends jspb.Message {
|
|
|
5191
5543
|
getLabelOrderId(): string;
|
|
5192
5544
|
setLabelOrderId(value: string): Task;
|
|
5193
5545
|
|
|
5546
|
+
getConceptsList(): Array<TaskConcept>;
|
|
5547
|
+
setConceptsList(value: Array<TaskConcept>): Task;
|
|
5548
|
+
clearConceptsList(): Task;
|
|
5549
|
+
addConcepts(value?: TaskConcept, index?: number): TaskConcept;
|
|
5550
|
+
|
|
5551
|
+
getDeletePreviousAnnotations(): boolean;
|
|
5552
|
+
setDeletePreviousAnnotations(value: boolean): Task;
|
|
5553
|
+
|
|
5194
5554
|
serializeBinary(): Uint8Array;
|
|
5195
5555
|
toObject(includeInstance?: boolean): Task.AsObject;
|
|
5196
5556
|
static toObject(includeInstance: boolean, msg: Task): Task.AsObject;
|
|
@@ -5219,6 +5579,8 @@ export namespace Task {
|
|
|
5219
5579
|
appId: string,
|
|
5220
5580
|
userId: string,
|
|
5221
5581
|
labelOrderId: string,
|
|
5582
|
+
conceptsList: Array<TaskConcept.AsObject>,
|
|
5583
|
+
deletePreviousAnnotations: boolean,
|
|
5222
5584
|
}
|
|
5223
5585
|
|
|
5224
5586
|
export enum TaskType {
|
|
@@ -5271,6 +5633,16 @@ export class TaskWorker extends jspb.Message {
|
|
|
5271
5633
|
clearUsersList(): TaskWorker;
|
|
5272
5634
|
addUsers(value?: User, index?: number): User;
|
|
5273
5635
|
|
|
5636
|
+
getModelsList(): Array<Model>;
|
|
5637
|
+
setModelsList(value: Array<Model>): TaskWorker;
|
|
5638
|
+
clearModelsList(): TaskWorker;
|
|
5639
|
+
addModels(value?: Model, index?: number): Model;
|
|
5640
|
+
|
|
5641
|
+
getWorkflowsList(): Array<Workflow>;
|
|
5642
|
+
setWorkflowsList(value: Array<Workflow>): TaskWorker;
|
|
5643
|
+
clearWorkflowsList(): TaskWorker;
|
|
5644
|
+
addWorkflows(value?: Workflow, index?: number): Workflow;
|
|
5645
|
+
|
|
5274
5646
|
getPartitionedStrategyInfo(): TaskWorkerPartitionedStrategyInfo | undefined;
|
|
5275
5647
|
setPartitionedStrategyInfo(value?: TaskWorkerPartitionedStrategyInfo): TaskWorker;
|
|
5276
5648
|
hasPartitionedStrategyInfo(): boolean;
|
|
@@ -5291,6 +5663,8 @@ export namespace TaskWorker {
|
|
|
5291
5663
|
strategy: TaskWorker.TaskWorkerStrategy,
|
|
5292
5664
|
userIdsList: Array<string>,
|
|
5293
5665
|
usersList: Array<User.AsObject>,
|
|
5666
|
+
modelsList: Array<Model.AsObject>,
|
|
5667
|
+
workflowsList: Array<Workflow.AsObject>,
|
|
5294
5668
|
partitionedStrategyInfo?: TaskWorkerPartitionedStrategyInfo.AsObject,
|
|
5295
5669
|
}
|
|
5296
5670
|
|
|
@@ -5518,6 +5892,90 @@ export namespace TaskStatusCountPerUser {
|
|
|
5518
5892
|
}
|
|
5519
5893
|
}
|
|
5520
5894
|
|
|
5895
|
+
export class ThresholdRange extends jspb.Message {
|
|
5896
|
+
getIsLowerInclusive(): boolean;
|
|
5897
|
+
setIsLowerInclusive(value: boolean): ThresholdRange;
|
|
5898
|
+
|
|
5899
|
+
getIsUpperInclusive(): boolean;
|
|
5900
|
+
setIsUpperInclusive(value: boolean): ThresholdRange;
|
|
5901
|
+
|
|
5902
|
+
getLower(): number;
|
|
5903
|
+
setLower(value: number): ThresholdRange;
|
|
5904
|
+
|
|
5905
|
+
getUpper(): number;
|
|
5906
|
+
setUpper(value: number): ThresholdRange;
|
|
5907
|
+
|
|
5908
|
+
serializeBinary(): Uint8Array;
|
|
5909
|
+
toObject(includeInstance?: boolean): ThresholdRange.AsObject;
|
|
5910
|
+
static toObject(includeInstance: boolean, msg: ThresholdRange): ThresholdRange.AsObject;
|
|
5911
|
+
static serializeBinaryToWriter(message: ThresholdRange, writer: jspb.BinaryWriter): void;
|
|
5912
|
+
static deserializeBinary(bytes: Uint8Array): ThresholdRange;
|
|
5913
|
+
static deserializeBinaryFromReader(message: ThresholdRange, reader: jspb.BinaryReader): ThresholdRange;
|
|
5914
|
+
}
|
|
5915
|
+
|
|
5916
|
+
export namespace ThresholdRange {
|
|
5917
|
+
export type AsObject = {
|
|
5918
|
+
isLowerInclusive: boolean,
|
|
5919
|
+
isUpperInclusive: boolean,
|
|
5920
|
+
lower: number,
|
|
5921
|
+
upper: number,
|
|
5922
|
+
}
|
|
5923
|
+
}
|
|
5924
|
+
|
|
5925
|
+
export class TaskConceptAutoAnnotationConfig extends jspb.Message {
|
|
5926
|
+
getAnnotationDataTypes(): number;
|
|
5927
|
+
setAnnotationDataTypes(value: number): TaskConceptAutoAnnotationConfig;
|
|
5928
|
+
|
|
5929
|
+
getThresholdRange(): ThresholdRange | undefined;
|
|
5930
|
+
setThresholdRange(value?: ThresholdRange): TaskConceptAutoAnnotationConfig;
|
|
5931
|
+
hasThresholdRange(): boolean;
|
|
5932
|
+
clearThresholdRange(): TaskConceptAutoAnnotationConfig;
|
|
5933
|
+
|
|
5934
|
+
getStatusCode(): proto_clarifai_api_status_status_code_pb.StatusCode;
|
|
5935
|
+
setStatusCode(value: proto_clarifai_api_status_status_code_pb.StatusCode): TaskConceptAutoAnnotationConfig;
|
|
5936
|
+
|
|
5937
|
+
serializeBinary(): Uint8Array;
|
|
5938
|
+
toObject(includeInstance?: boolean): TaskConceptAutoAnnotationConfig.AsObject;
|
|
5939
|
+
static toObject(includeInstance: boolean, msg: TaskConceptAutoAnnotationConfig): TaskConceptAutoAnnotationConfig.AsObject;
|
|
5940
|
+
static serializeBinaryToWriter(message: TaskConceptAutoAnnotationConfig, writer: jspb.BinaryWriter): void;
|
|
5941
|
+
static deserializeBinary(bytes: Uint8Array): TaskConceptAutoAnnotationConfig;
|
|
5942
|
+
static deserializeBinaryFromReader(message: TaskConceptAutoAnnotationConfig, reader: jspb.BinaryReader): TaskConceptAutoAnnotationConfig;
|
|
5943
|
+
}
|
|
5944
|
+
|
|
5945
|
+
export namespace TaskConceptAutoAnnotationConfig {
|
|
5946
|
+
export type AsObject = {
|
|
5947
|
+
annotationDataTypes: number,
|
|
5948
|
+
thresholdRange?: ThresholdRange.AsObject,
|
|
5949
|
+
statusCode: proto_clarifai_api_status_status_code_pb.StatusCode,
|
|
5950
|
+
}
|
|
5951
|
+
}
|
|
5952
|
+
|
|
5953
|
+
export class TaskConcept extends jspb.Message {
|
|
5954
|
+
getConcept(): Concept | undefined;
|
|
5955
|
+
setConcept(value?: Concept): TaskConcept;
|
|
5956
|
+
hasConcept(): boolean;
|
|
5957
|
+
clearConcept(): TaskConcept;
|
|
5958
|
+
|
|
5959
|
+
getAutoAnnotationConfig(): TaskConceptAutoAnnotationConfig | undefined;
|
|
5960
|
+
setAutoAnnotationConfig(value?: TaskConceptAutoAnnotationConfig): TaskConcept;
|
|
5961
|
+
hasAutoAnnotationConfig(): boolean;
|
|
5962
|
+
clearAutoAnnotationConfig(): TaskConcept;
|
|
5963
|
+
|
|
5964
|
+
serializeBinary(): Uint8Array;
|
|
5965
|
+
toObject(includeInstance?: boolean): TaskConcept.AsObject;
|
|
5966
|
+
static toObject(includeInstance: boolean, msg: TaskConcept): TaskConcept.AsObject;
|
|
5967
|
+
static serializeBinaryToWriter(message: TaskConcept, writer: jspb.BinaryWriter): void;
|
|
5968
|
+
static deserializeBinary(bytes: Uint8Array): TaskConcept;
|
|
5969
|
+
static deserializeBinaryFromReader(message: TaskConcept, reader: jspb.BinaryReader): TaskConcept;
|
|
5970
|
+
}
|
|
5971
|
+
|
|
5972
|
+
export namespace TaskConcept {
|
|
5973
|
+
export type AsObject = {
|
|
5974
|
+
concept?: Concept.AsObject,
|
|
5975
|
+
autoAnnotationConfig?: TaskConceptAutoAnnotationConfig.AsObject,
|
|
5976
|
+
}
|
|
5977
|
+
}
|
|
5978
|
+
|
|
5521
5979
|
export class Collector extends jspb.Message {
|
|
5522
5980
|
getId(): string;
|
|
5523
5981
|
setId(value: string): Collector;
|
|
@@ -5602,6 +6060,9 @@ export class APIPostModelOutputsCollectorSource extends jspb.Message {
|
|
|
5602
6060
|
getPostInputsKeyId(): string;
|
|
5603
6061
|
setPostInputsKeyId(value: string): APIPostModelOutputsCollectorSource;
|
|
5604
6062
|
|
|
6063
|
+
getCallerUserId(): string;
|
|
6064
|
+
setCallerUserId(value: string): APIPostModelOutputsCollectorSource;
|
|
6065
|
+
|
|
5605
6066
|
serializeBinary(): Uint8Array;
|
|
5606
6067
|
toObject(includeInstance?: boolean): APIPostModelOutputsCollectorSource.AsObject;
|
|
5607
6068
|
static toObject(includeInstance: boolean, msg: APIPostModelOutputsCollectorSource): APIPostModelOutputsCollectorSource.AsObject;
|
|
@@ -5617,6 +6078,7 @@ export namespace APIPostModelOutputsCollectorSource {
|
|
|
5617
6078
|
modelId: string,
|
|
5618
6079
|
modelVersionId: string,
|
|
5619
6080
|
postInputsKeyId: string,
|
|
6081
|
+
callerUserId: string,
|
|
5620
6082
|
}
|
|
5621
6083
|
}
|
|
5622
6084
|
|
|
@@ -5802,6 +6264,52 @@ export namespace DatasetInputsSearchAddJob {
|
|
|
5802
6264
|
}
|
|
5803
6265
|
}
|
|
5804
6266
|
|
|
6267
|
+
export class PCAProjectionComparator extends jspb.Message {
|
|
6268
|
+
getDistanceThreshold(): number;
|
|
6269
|
+
setDistanceThreshold(value: number): PCAProjectionComparator;
|
|
6270
|
+
|
|
6271
|
+
getModelVersionId(): string;
|
|
6272
|
+
setModelVersionId(value: string): PCAProjectionComparator;
|
|
6273
|
+
|
|
6274
|
+
serializeBinary(): Uint8Array;
|
|
6275
|
+
toObject(includeInstance?: boolean): PCAProjectionComparator.AsObject;
|
|
6276
|
+
static toObject(includeInstance: boolean, msg: PCAProjectionComparator): PCAProjectionComparator.AsObject;
|
|
6277
|
+
static serializeBinaryToWriter(message: PCAProjectionComparator, writer: jspb.BinaryWriter): void;
|
|
6278
|
+
static deserializeBinary(bytes: Uint8Array): PCAProjectionComparator;
|
|
6279
|
+
static deserializeBinaryFromReader(message: PCAProjectionComparator, reader: jspb.BinaryReader): PCAProjectionComparator;
|
|
6280
|
+
}
|
|
6281
|
+
|
|
6282
|
+
export namespace PCAProjectionComparator {
|
|
6283
|
+
export type AsObject = {
|
|
6284
|
+
distanceThreshold: number,
|
|
6285
|
+
modelVersionId: string,
|
|
6286
|
+
}
|
|
6287
|
+
}
|
|
6288
|
+
|
|
6289
|
+
export class DuplicateAnnotationsResults extends jspb.Message {
|
|
6290
|
+
getDuplicateCfidList(): Array<string>;
|
|
6291
|
+
setDuplicateCfidList(value: Array<string>): DuplicateAnnotationsResults;
|
|
6292
|
+
clearDuplicateCfidList(): DuplicateAnnotationsResults;
|
|
6293
|
+
addDuplicateCfid(value: string, index?: number): DuplicateAnnotationsResults;
|
|
6294
|
+
|
|
6295
|
+
getUniqueCount(): number;
|
|
6296
|
+
setUniqueCount(value: number): DuplicateAnnotationsResults;
|
|
6297
|
+
|
|
6298
|
+
serializeBinary(): Uint8Array;
|
|
6299
|
+
toObject(includeInstance?: boolean): DuplicateAnnotationsResults.AsObject;
|
|
6300
|
+
static toObject(includeInstance: boolean, msg: DuplicateAnnotationsResults): DuplicateAnnotationsResults.AsObject;
|
|
6301
|
+
static serializeBinaryToWriter(message: DuplicateAnnotationsResults, writer: jspb.BinaryWriter): void;
|
|
6302
|
+
static deserializeBinary(bytes: Uint8Array): DuplicateAnnotationsResults;
|
|
6303
|
+
static deserializeBinaryFromReader(message: DuplicateAnnotationsResults, reader: jspb.BinaryReader): DuplicateAnnotationsResults;
|
|
6304
|
+
}
|
|
6305
|
+
|
|
6306
|
+
export namespace DuplicateAnnotationsResults {
|
|
6307
|
+
export type AsObject = {
|
|
6308
|
+
duplicateCfidList: Array<string>,
|
|
6309
|
+
uniqueCount: number,
|
|
6310
|
+
}
|
|
6311
|
+
}
|
|
6312
|
+
|
|
5805
6313
|
export class Visibility extends jspb.Message {
|
|
5806
6314
|
getGettable(): Visibility.Gettable;
|
|
5807
6315
|
setGettable(value: Visibility.Gettable): Visibility;
|
|
@@ -5935,6 +6443,42 @@ export namespace TimeInfo {
|
|
|
5935
6443
|
}
|
|
5936
6444
|
}
|
|
5937
6445
|
|
|
6446
|
+
export class DatasetStar extends jspb.Message {
|
|
6447
|
+
getDatasetId(): string;
|
|
6448
|
+
setDatasetId(value: string): DatasetStar;
|
|
6449
|
+
|
|
6450
|
+
serializeBinary(): Uint8Array;
|
|
6451
|
+
toObject(includeInstance?: boolean): DatasetStar.AsObject;
|
|
6452
|
+
static toObject(includeInstance: boolean, msg: DatasetStar): DatasetStar.AsObject;
|
|
6453
|
+
static serializeBinaryToWriter(message: DatasetStar, writer: jspb.BinaryWriter): void;
|
|
6454
|
+
static deserializeBinary(bytes: Uint8Array): DatasetStar;
|
|
6455
|
+
static deserializeBinaryFromReader(message: DatasetStar, reader: jspb.BinaryReader): DatasetStar;
|
|
6456
|
+
}
|
|
6457
|
+
|
|
6458
|
+
export namespace DatasetStar {
|
|
6459
|
+
export type AsObject = {
|
|
6460
|
+
datasetId: string,
|
|
6461
|
+
}
|
|
6462
|
+
}
|
|
6463
|
+
|
|
6464
|
+
export class ModuleStar extends jspb.Message {
|
|
6465
|
+
getModuleId(): string;
|
|
6466
|
+
setModuleId(value: string): ModuleStar;
|
|
6467
|
+
|
|
6468
|
+
serializeBinary(): Uint8Array;
|
|
6469
|
+
toObject(includeInstance?: boolean): ModuleStar.AsObject;
|
|
6470
|
+
static toObject(includeInstance: boolean, msg: ModuleStar): ModuleStar.AsObject;
|
|
6471
|
+
static serializeBinaryToWriter(message: ModuleStar, writer: jspb.BinaryWriter): void;
|
|
6472
|
+
static deserializeBinary(bytes: Uint8Array): ModuleStar;
|
|
6473
|
+
static deserializeBinaryFromReader(message: ModuleStar, reader: jspb.BinaryReader): ModuleStar;
|
|
6474
|
+
}
|
|
6475
|
+
|
|
6476
|
+
export namespace ModuleStar {
|
|
6477
|
+
export type AsObject = {
|
|
6478
|
+
moduleId: string,
|
|
6479
|
+
}
|
|
6480
|
+
}
|
|
6481
|
+
|
|
5938
6482
|
export class Module extends jspb.Message {
|
|
5939
6483
|
getId(): string;
|
|
5940
6484
|
setId(value: string): Module;
|
|
@@ -5973,6 +6517,22 @@ export class Module extends jspb.Message {
|
|
|
5973
6517
|
hasModuleVersion(): boolean;
|
|
5974
6518
|
clearModuleVersion(): Module;
|
|
5975
6519
|
|
|
6520
|
+
getIsStarred(): boolean;
|
|
6521
|
+
setIsStarred(value: boolean): Module;
|
|
6522
|
+
|
|
6523
|
+
getStarCount(): number;
|
|
6524
|
+
setStarCount(value: number): Module;
|
|
6525
|
+
|
|
6526
|
+
getBookmarkOrigin(): BookmarkOrigin | undefined;
|
|
6527
|
+
setBookmarkOrigin(value?: BookmarkOrigin): Module;
|
|
6528
|
+
hasBookmarkOrigin(): boolean;
|
|
6529
|
+
clearBookmarkOrigin(): Module;
|
|
6530
|
+
|
|
6531
|
+
getImage(): Image | undefined;
|
|
6532
|
+
setImage(value?: Image): Module;
|
|
6533
|
+
hasImage(): boolean;
|
|
6534
|
+
clearImage(): Module;
|
|
6535
|
+
|
|
5976
6536
|
serializeBinary(): Uint8Array;
|
|
5977
6537
|
toObject(includeInstance?: boolean): Module.AsObject;
|
|
5978
6538
|
static toObject(includeInstance: boolean, msg: Module): Module.AsObject;
|
|
@@ -5992,6 +6552,10 @@ export namespace Module {
|
|
|
5992
6552
|
userId: string,
|
|
5993
6553
|
appId: string,
|
|
5994
6554
|
moduleVersion?: ModuleVersion.AsObject,
|
|
6555
|
+
isStarred: boolean,
|
|
6556
|
+
starCount: number,
|
|
6557
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
6558
|
+
image?: Image.AsObject,
|
|
5995
6559
|
}
|
|
5996
6560
|
}
|
|
5997
6561
|
|
|
@@ -6195,6 +6759,11 @@ export class BulkOperation extends jspb.Message {
|
|
|
6195
6759
|
hasSearch(): boolean;
|
|
6196
6760
|
clearSearch(): BulkOperation;
|
|
6197
6761
|
|
|
6762
|
+
getDataset(): Dataset | undefined;
|
|
6763
|
+
setDataset(value?: Dataset): BulkOperation;
|
|
6764
|
+
hasDataset(): boolean;
|
|
6765
|
+
clearDataset(): BulkOperation;
|
|
6766
|
+
|
|
6198
6767
|
getOperation(): Operation | undefined;
|
|
6199
6768
|
setOperation(value?: Operation): BulkOperation;
|
|
6200
6769
|
hasOperation(): boolean;
|
|
@@ -6241,6 +6810,7 @@ export namespace BulkOperation {
|
|
|
6241
6810
|
id: string,
|
|
6242
6811
|
inputIds?: InputIDs.AsObject,
|
|
6243
6812
|
search?: Search.AsObject,
|
|
6813
|
+
dataset?: Dataset.AsObject,
|
|
6244
6814
|
operation?: Operation.AsObject,
|
|
6245
6815
|
appId: string,
|
|
6246
6816
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
@@ -6254,6 +6824,7 @@ export namespace BulkOperation {
|
|
|
6254
6824
|
INPUT_SOURCE_NOT_SET = 0,
|
|
6255
6825
|
INPUT_IDS = 2,
|
|
6256
6826
|
SEARCH = 10,
|
|
6827
|
+
DATASET = 11,
|
|
6257
6828
|
}
|
|
6258
6829
|
}
|
|
6259
6830
|
|
|
@@ -6330,6 +6901,21 @@ export class Operation extends jspb.Message {
|
|
|
6330
6901
|
hasDeleteGeo(): boolean;
|
|
6331
6902
|
clearDeleteGeo(): Operation;
|
|
6332
6903
|
|
|
6904
|
+
getDeleteFromDataset(): DeleteFromDataset | undefined;
|
|
6905
|
+
setDeleteFromDataset(value?: DeleteFromDataset): Operation;
|
|
6906
|
+
hasDeleteFromDataset(): boolean;
|
|
6907
|
+
clearDeleteFromDataset(): Operation;
|
|
6908
|
+
|
|
6909
|
+
getAddToDataset(): AddToDataset | undefined;
|
|
6910
|
+
setAddToDataset(value?: AddToDataset): Operation;
|
|
6911
|
+
hasAddToDataset(): boolean;
|
|
6912
|
+
clearAddToDataset(): Operation;
|
|
6913
|
+
|
|
6914
|
+
getSplitIntoDatasets(): SplitIntoDatasets | undefined;
|
|
6915
|
+
setSplitIntoDatasets(value?: SplitIntoDatasets): Operation;
|
|
6916
|
+
hasSplitIntoDatasets(): boolean;
|
|
6917
|
+
clearSplitIntoDatasets(): Operation;
|
|
6918
|
+
|
|
6333
6919
|
getOperationCase(): Operation.OperationCase;
|
|
6334
6920
|
|
|
6335
6921
|
serializeBinary(): Uint8Array;
|
|
@@ -6348,6 +6934,9 @@ export namespace Operation {
|
|
|
6348
6934
|
deleteMetadata?: DeleteMetadata.AsObject,
|
|
6349
6935
|
overwriteGeo?: OverwriteGeo.AsObject,
|
|
6350
6936
|
deleteGeo?: DeleteGeo.AsObject,
|
|
6937
|
+
deleteFromDataset?: DeleteFromDataset.AsObject,
|
|
6938
|
+
addToDataset?: AddToDataset.AsObject,
|
|
6939
|
+
splitIntoDatasets?: SplitIntoDatasets.AsObject,
|
|
6351
6940
|
}
|
|
6352
6941
|
|
|
6353
6942
|
export enum OperationCase {
|
|
@@ -6358,6 +6947,9 @@ export namespace Operation {
|
|
|
6358
6947
|
DELETE_METADATA = 4,
|
|
6359
6948
|
OVERWRITE_GEO = 5,
|
|
6360
6949
|
DELETE_GEO = 6,
|
|
6950
|
+
DELETE_FROM_DATASET = 7,
|
|
6951
|
+
ADD_TO_DATASET = 8,
|
|
6952
|
+
SPLIT_INTO_DATASETS = 9,
|
|
6361
6953
|
}
|
|
6362
6954
|
}
|
|
6363
6955
|
|
|
@@ -6481,13 +7073,106 @@ export namespace DeleteGeo {
|
|
|
6481
7073
|
}
|
|
6482
7074
|
}
|
|
6483
7075
|
|
|
7076
|
+
export class AddToDataset extends jspb.Message {
|
|
7077
|
+
getDatasetId(): string;
|
|
7078
|
+
setDatasetId(value: string): AddToDataset;
|
|
7079
|
+
|
|
7080
|
+
serializeBinary(): Uint8Array;
|
|
7081
|
+
toObject(includeInstance?: boolean): AddToDataset.AsObject;
|
|
7082
|
+
static toObject(includeInstance: boolean, msg: AddToDataset): AddToDataset.AsObject;
|
|
7083
|
+
static serializeBinaryToWriter(message: AddToDataset, writer: jspb.BinaryWriter): void;
|
|
7084
|
+
static deserializeBinary(bytes: Uint8Array): AddToDataset;
|
|
7085
|
+
static deserializeBinaryFromReader(message: AddToDataset, reader: jspb.BinaryReader): AddToDataset;
|
|
7086
|
+
}
|
|
7087
|
+
|
|
7088
|
+
export namespace AddToDataset {
|
|
7089
|
+
export type AsObject = {
|
|
7090
|
+
datasetId: string,
|
|
7091
|
+
}
|
|
7092
|
+
}
|
|
7093
|
+
|
|
7094
|
+
export class DeleteFromDataset extends jspb.Message {
|
|
7095
|
+
getDatasetId(): string;
|
|
7096
|
+
setDatasetId(value: string): DeleteFromDataset;
|
|
7097
|
+
|
|
7098
|
+
serializeBinary(): Uint8Array;
|
|
7099
|
+
toObject(includeInstance?: boolean): DeleteFromDataset.AsObject;
|
|
7100
|
+
static toObject(includeInstance: boolean, msg: DeleteFromDataset): DeleteFromDataset.AsObject;
|
|
7101
|
+
static serializeBinaryToWriter(message: DeleteFromDataset, writer: jspb.BinaryWriter): void;
|
|
7102
|
+
static deserializeBinary(bytes: Uint8Array): DeleteFromDataset;
|
|
7103
|
+
static deserializeBinaryFromReader(message: DeleteFromDataset, reader: jspb.BinaryReader): DeleteFromDataset;
|
|
7104
|
+
}
|
|
7105
|
+
|
|
7106
|
+
export namespace DeleteFromDataset {
|
|
7107
|
+
export type AsObject = {
|
|
7108
|
+
datasetId: string,
|
|
7109
|
+
}
|
|
7110
|
+
}
|
|
7111
|
+
|
|
7112
|
+
export class SplitIntoDatasets extends jspb.Message {
|
|
7113
|
+
getDatasetSplitsList(): Array<DatasetSplit>;
|
|
7114
|
+
setDatasetSplitsList(value: Array<DatasetSplit>): SplitIntoDatasets;
|
|
7115
|
+
clearDatasetSplitsList(): SplitIntoDatasets;
|
|
7116
|
+
addDatasetSplits(value?: DatasetSplit, index?: number): DatasetSplit;
|
|
7117
|
+
|
|
7118
|
+
getMethod(): SplitIntoDatasets.DatasetSplitMethod;
|
|
7119
|
+
setMethod(value: SplitIntoDatasets.DatasetSplitMethod): SplitIntoDatasets;
|
|
7120
|
+
|
|
7121
|
+
serializeBinary(): Uint8Array;
|
|
7122
|
+
toObject(includeInstance?: boolean): SplitIntoDatasets.AsObject;
|
|
7123
|
+
static toObject(includeInstance: boolean, msg: SplitIntoDatasets): SplitIntoDatasets.AsObject;
|
|
7124
|
+
static serializeBinaryToWriter(message: SplitIntoDatasets, writer: jspb.BinaryWriter): void;
|
|
7125
|
+
static deserializeBinary(bytes: Uint8Array): SplitIntoDatasets;
|
|
7126
|
+
static deserializeBinaryFromReader(message: SplitIntoDatasets, reader: jspb.BinaryReader): SplitIntoDatasets;
|
|
7127
|
+
}
|
|
7128
|
+
|
|
7129
|
+
export namespace SplitIntoDatasets {
|
|
7130
|
+
export type AsObject = {
|
|
7131
|
+
datasetSplitsList: Array<DatasetSplit.AsObject>,
|
|
7132
|
+
method: SplitIntoDatasets.DatasetSplitMethod,
|
|
7133
|
+
}
|
|
7134
|
+
|
|
7135
|
+
export enum DatasetSplitMethod {
|
|
7136
|
+
NOT_SET = 0,
|
|
7137
|
+
RANDOM_PERCENTAGE_SPLIT = 1,
|
|
7138
|
+
}
|
|
7139
|
+
}
|
|
7140
|
+
|
|
7141
|
+
export class DatasetSplit extends jspb.Message {
|
|
7142
|
+
getDataset(): Dataset | undefined;
|
|
7143
|
+
setDataset(value?: Dataset): DatasetSplit;
|
|
7144
|
+
hasDataset(): boolean;
|
|
7145
|
+
clearDataset(): DatasetSplit;
|
|
7146
|
+
|
|
7147
|
+
getPercentage(): number;
|
|
7148
|
+
setPercentage(value: number): DatasetSplit;
|
|
7149
|
+
|
|
7150
|
+
getMethodInfoCase(): DatasetSplit.MethodInfoCase;
|
|
7151
|
+
|
|
7152
|
+
serializeBinary(): Uint8Array;
|
|
7153
|
+
toObject(includeInstance?: boolean): DatasetSplit.AsObject;
|
|
7154
|
+
static toObject(includeInstance: boolean, msg: DatasetSplit): DatasetSplit.AsObject;
|
|
7155
|
+
static serializeBinaryToWriter(message: DatasetSplit, writer: jspb.BinaryWriter): void;
|
|
7156
|
+
static deserializeBinary(bytes: Uint8Array): DatasetSplit;
|
|
7157
|
+
static deserializeBinaryFromReader(message: DatasetSplit, reader: jspb.BinaryReader): DatasetSplit;
|
|
7158
|
+
}
|
|
7159
|
+
|
|
7160
|
+
export namespace DatasetSplit {
|
|
7161
|
+
export type AsObject = {
|
|
7162
|
+
dataset?: Dataset.AsObject,
|
|
7163
|
+
percentage: number,
|
|
7164
|
+
}
|
|
7165
|
+
|
|
7166
|
+
export enum MethodInfoCase {
|
|
7167
|
+
METHOD_INFO_NOT_SET = 0,
|
|
7168
|
+
PERCENTAGE = 2,
|
|
7169
|
+
}
|
|
7170
|
+
}
|
|
7171
|
+
|
|
6484
7172
|
export class InputsAddJob extends jspb.Message {
|
|
6485
7173
|
getId(): string;
|
|
6486
7174
|
setId(value: string): InputsAddJob;
|
|
6487
7175
|
|
|
6488
|
-
getCloudStorageUrl(): string;
|
|
6489
|
-
setCloudStorageUrl(value: string): InputsAddJob;
|
|
6490
|
-
|
|
6491
7176
|
getCallBackUrl(): string;
|
|
6492
7177
|
setCallBackUrl(value: string): InputsAddJob;
|
|
6493
7178
|
|
|
@@ -6514,6 +7199,16 @@ export class InputsAddJob extends jspb.Message {
|
|
|
6514
7199
|
clearExtractionJobsList(): InputsAddJob;
|
|
6515
7200
|
addExtractionJobs(value?: InputsExtractionJob, index?: number): InputsExtractionJob;
|
|
6516
7201
|
|
|
7202
|
+
getUploadsList(): Array<Upload>;
|
|
7203
|
+
setUploadsList(value: Array<Upload>): InputsAddJob;
|
|
7204
|
+
clearUploadsList(): InputsAddJob;
|
|
7205
|
+
addUploads(value?: Upload, index?: number): Upload;
|
|
7206
|
+
|
|
7207
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
7208
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): InputsAddJob;
|
|
7209
|
+
hasStatus(): boolean;
|
|
7210
|
+
clearStatus(): InputsAddJob;
|
|
7211
|
+
|
|
6517
7212
|
serializeBinary(): Uint8Array;
|
|
6518
7213
|
toObject(includeInstance?: boolean): InputsAddJob.AsObject;
|
|
6519
7214
|
static toObject(includeInstance: boolean, msg: InputsAddJob): InputsAddJob.AsObject;
|
|
@@ -6525,13 +7220,14 @@ export class InputsAddJob extends jspb.Message {
|
|
|
6525
7220
|
export namespace InputsAddJob {
|
|
6526
7221
|
export type AsObject = {
|
|
6527
7222
|
id: string,
|
|
6528
|
-
cloudStorageUrl: string,
|
|
6529
7223
|
callBackUrl: string,
|
|
6530
7224
|
appPat: string,
|
|
6531
7225
|
progress?: InputsAddJobProgress.AsObject,
|
|
6532
7226
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6533
7227
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6534
7228
|
extractionJobsList: Array<InputsExtractionJob.AsObject>,
|
|
7229
|
+
uploadsList: Array<Upload.AsObject>,
|
|
7230
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
6535
7231
|
}
|
|
6536
7232
|
}
|
|
6537
7233
|
|
|
@@ -6647,6 +7343,32 @@ export namespace UploadContentPart {
|
|
|
6647
7343
|
}
|
|
6648
7344
|
}
|
|
6649
7345
|
|
|
7346
|
+
export class CustomCodeOperatorRequest extends jspb.Message {
|
|
7347
|
+
getInputsList(): Array<Input>;
|
|
7348
|
+
setInputsList(value: Array<Input>): CustomCodeOperatorRequest;
|
|
7349
|
+
clearInputsList(): CustomCodeOperatorRequest;
|
|
7350
|
+
addInputs(value?: Input, index?: number): Input;
|
|
7351
|
+
|
|
7352
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
7353
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): CustomCodeOperatorRequest;
|
|
7354
|
+
hasMetadata(): boolean;
|
|
7355
|
+
clearMetadata(): CustomCodeOperatorRequest;
|
|
7356
|
+
|
|
7357
|
+
serializeBinary(): Uint8Array;
|
|
7358
|
+
toObject(includeInstance?: boolean): CustomCodeOperatorRequest.AsObject;
|
|
7359
|
+
static toObject(includeInstance: boolean, msg: CustomCodeOperatorRequest): CustomCodeOperatorRequest.AsObject;
|
|
7360
|
+
static serializeBinaryToWriter(message: CustomCodeOperatorRequest, writer: jspb.BinaryWriter): void;
|
|
7361
|
+
static deserializeBinary(bytes: Uint8Array): CustomCodeOperatorRequest;
|
|
7362
|
+
static deserializeBinaryFromReader(message: CustomCodeOperatorRequest, reader: jspb.BinaryReader): CustomCodeOperatorRequest;
|
|
7363
|
+
}
|
|
7364
|
+
|
|
7365
|
+
export namespace CustomCodeOperatorRequest {
|
|
7366
|
+
export type AsObject = {
|
|
7367
|
+
inputsList: Array<Input.AsObject>,
|
|
7368
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
7369
|
+
}
|
|
7370
|
+
}
|
|
7371
|
+
|
|
6650
7372
|
export class InputsExtractionJob extends jspb.Message {
|
|
6651
7373
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
6652
7374
|
setStatus(value?: proto_clarifai_api_status_status_pb.Status): InputsExtractionJob;
|
|
@@ -6674,6 +7396,14 @@ export class InputsExtractionJob extends jspb.Message {
|
|
|
6674
7396
|
hasModifiedAt(): boolean;
|
|
6675
7397
|
clearModifiedAt(): InputsExtractionJob;
|
|
6676
7398
|
|
|
7399
|
+
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7400
|
+
setInputIdConflictResolution(value: InputIDConflictResolution): InputsExtractionJob;
|
|
7401
|
+
|
|
7402
|
+
getInputTemplate(): Input | undefined;
|
|
7403
|
+
setInputTemplate(value?: Input): InputsExtractionJob;
|
|
7404
|
+
hasInputTemplate(): boolean;
|
|
7405
|
+
clearInputTemplate(): InputsExtractionJob;
|
|
7406
|
+
|
|
6677
7407
|
serializeBinary(): Uint8Array;
|
|
6678
7408
|
toObject(includeInstance?: boolean): InputsExtractionJob.AsObject;
|
|
6679
7409
|
static toObject(includeInstance: boolean, msg: InputsExtractionJob): InputsExtractionJob.AsObject;
|
|
@@ -6690,13 +7420,12 @@ export namespace InputsExtractionJob {
|
|
|
6690
7420
|
progress?: InputsExtractionJobProgress.AsObject,
|
|
6691
7421
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6692
7422
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7423
|
+
inputIdConflictResolution: InputIDConflictResolution,
|
|
7424
|
+
inputTemplate?: Input.AsObject,
|
|
6693
7425
|
}
|
|
6694
7426
|
}
|
|
6695
7427
|
|
|
6696
7428
|
export class InputsExtractionJobProgress extends jspb.Message {
|
|
6697
|
-
getReadObjectsCount(): number;
|
|
6698
|
-
setReadObjectsCount(value: number): InputsExtractionJobProgress;
|
|
6699
|
-
|
|
6700
7429
|
getAudioInputsCount(): number;
|
|
6701
7430
|
setAudioInputsCount(value: number): InputsExtractionJobProgress;
|
|
6702
7431
|
|
|
@@ -6709,6 +7438,18 @@ export class InputsExtractionJobProgress extends jspb.Message {
|
|
|
6709
7438
|
getTextInputsCount(): number;
|
|
6710
7439
|
setTextInputsCount(value: number): InputsExtractionJobProgress;
|
|
6711
7440
|
|
|
7441
|
+
getPendingArchivesCount(): number;
|
|
7442
|
+
setPendingArchivesCount(value: number): InputsExtractionJobProgress;
|
|
7443
|
+
|
|
7444
|
+
getInProgressArchivesCount(): number;
|
|
7445
|
+
setInProgressArchivesCount(value: number): InputsExtractionJobProgress;
|
|
7446
|
+
|
|
7447
|
+
getCompletedArchivesCount(): number;
|
|
7448
|
+
setCompletedArchivesCount(value: number): InputsExtractionJobProgress;
|
|
7449
|
+
|
|
7450
|
+
getFailedArchivesCount(): number;
|
|
7451
|
+
setFailedArchivesCount(value: number): InputsExtractionJobProgress;
|
|
7452
|
+
|
|
6712
7453
|
serializeBinary(): Uint8Array;
|
|
6713
7454
|
toObject(includeInstance?: boolean): InputsExtractionJobProgress.AsObject;
|
|
6714
7455
|
static toObject(includeInstance: boolean, msg: InputsExtractionJobProgress): InputsExtractionJobProgress.AsObject;
|
|
@@ -6719,11 +7460,14 @@ export class InputsExtractionJobProgress extends jspb.Message {
|
|
|
6719
7460
|
|
|
6720
7461
|
export namespace InputsExtractionJobProgress {
|
|
6721
7462
|
export type AsObject = {
|
|
6722
|
-
readObjectsCount: number,
|
|
6723
7463
|
audioInputsCount: number,
|
|
6724
7464
|
imageInputsCount: number,
|
|
6725
7465
|
videoInputsCount: number,
|
|
6726
7466
|
textInputsCount: number,
|
|
7467
|
+
pendingArchivesCount: number,
|
|
7468
|
+
inProgressArchivesCount: number,
|
|
7469
|
+
completedArchivesCount: number,
|
|
7470
|
+
failedArchivesCount: number,
|
|
6727
7471
|
}
|
|
6728
7472
|
}
|
|
6729
7473
|
|
|
@@ -6736,6 +7480,14 @@ export class InputsDataSource extends jspb.Message {
|
|
|
6736
7480
|
hasUrl(): boolean;
|
|
6737
7481
|
clearUrl(): InputsDataSource;
|
|
6738
7482
|
|
|
7483
|
+
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7484
|
+
setInputIdConflictResolution(value: InputIDConflictResolution): InputsDataSource;
|
|
7485
|
+
|
|
7486
|
+
getInputTemplate(): Input | undefined;
|
|
7487
|
+
setInputTemplate(value?: Input): InputsDataSource;
|
|
7488
|
+
hasInputTemplate(): boolean;
|
|
7489
|
+
clearInputTemplate(): InputsDataSource;
|
|
7490
|
+
|
|
6739
7491
|
serializeBinary(): Uint8Array;
|
|
6740
7492
|
toObject(includeInstance?: boolean): InputsDataSource.AsObject;
|
|
6741
7493
|
static toObject(includeInstance: boolean, msg: InputsDataSource): InputsDataSource.AsObject;
|
|
@@ -6748,6 +7500,8 @@ export namespace InputsDataSource {
|
|
|
6748
7500
|
export type AsObject = {
|
|
6749
7501
|
inputsAddJobId: string,
|
|
6750
7502
|
url?: DataSourceURL.AsObject,
|
|
7503
|
+
inputIdConflictResolution: InputIDConflictResolution,
|
|
7504
|
+
inputTemplate?: Input.AsObject,
|
|
6751
7505
|
}
|
|
6752
7506
|
}
|
|
6753
7507
|
|
|
@@ -6786,8 +7540,10 @@ export class DataSourceCredentials extends jspb.Message {
|
|
|
6786
7540
|
getGcpCreds_asB64(): string;
|
|
6787
7541
|
setGcpCreds(value: Uint8Array | string): DataSourceCredentials;
|
|
6788
7542
|
|
|
6789
|
-
getAzureBlobCreds():
|
|
6790
|
-
setAzureBlobCreds(value
|
|
7543
|
+
getAzureBlobCreds(): AzureBlobCreds | undefined;
|
|
7544
|
+
setAzureBlobCreds(value?: AzureBlobCreds): DataSourceCredentials;
|
|
7545
|
+
hasAzureBlobCreds(): boolean;
|
|
7546
|
+
clearAzureBlobCreds(): DataSourceCredentials;
|
|
6791
7547
|
|
|
6792
7548
|
getCredentialsCase(): DataSourceCredentials.CredentialsCase;
|
|
6793
7549
|
|
|
@@ -6803,24 +7559,30 @@ export namespace DataSourceCredentials {
|
|
|
6803
7559
|
export type AsObject = {
|
|
6804
7560
|
s3Creds?: AWSCreds.AsObject,
|
|
6805
7561
|
gcpCreds: Uint8Array | string,
|
|
6806
|
-
azureBlobCreds
|
|
7562
|
+
azureBlobCreds?: AzureBlobCreds.AsObject,
|
|
6807
7563
|
}
|
|
6808
7564
|
|
|
6809
7565
|
export enum CredentialsCase {
|
|
6810
7566
|
CREDENTIALS_NOT_SET = 0,
|
|
6811
7567
|
S3_CREDS = 1,
|
|
6812
7568
|
GCP_CREDS = 2,
|
|
6813
|
-
AZURE_BLOB_CREDS =
|
|
7569
|
+
AZURE_BLOB_CREDS = 4,
|
|
6814
7570
|
}
|
|
6815
7571
|
}
|
|
6816
7572
|
|
|
6817
7573
|
export class AWSCreds extends jspb.Message {
|
|
6818
|
-
getCreds(): string;
|
|
6819
|
-
setCreds(value: string): AWSCreds;
|
|
6820
|
-
|
|
6821
7574
|
getRegion(): string;
|
|
6822
7575
|
setRegion(value: string): AWSCreds;
|
|
6823
7576
|
|
|
7577
|
+
getId(): string;
|
|
7578
|
+
setId(value: string): AWSCreds;
|
|
7579
|
+
|
|
7580
|
+
getSecret(): string;
|
|
7581
|
+
setSecret(value: string): AWSCreds;
|
|
7582
|
+
|
|
7583
|
+
getToken(): string;
|
|
7584
|
+
setToken(value: string): AWSCreds;
|
|
7585
|
+
|
|
6824
7586
|
serializeBinary(): Uint8Array;
|
|
6825
7587
|
toObject(includeInstance?: boolean): AWSCreds.AsObject;
|
|
6826
7588
|
static toObject(includeInstance: boolean, msg: AWSCreds): AWSCreds.AsObject;
|
|
@@ -6831,8 +7593,158 @@ export class AWSCreds extends jspb.Message {
|
|
|
6831
7593
|
|
|
6832
7594
|
export namespace AWSCreds {
|
|
6833
7595
|
export type AsObject = {
|
|
6834
|
-
creds: string,
|
|
6835
7596
|
region: string,
|
|
7597
|
+
id: string,
|
|
7598
|
+
secret: string,
|
|
7599
|
+
token: string,
|
|
7600
|
+
}
|
|
7601
|
+
}
|
|
7602
|
+
|
|
7603
|
+
export class AzureBlobCreds extends jspb.Message {
|
|
7604
|
+
getAccountName(): string;
|
|
7605
|
+
setAccountName(value: string): AzureBlobCreds;
|
|
7606
|
+
|
|
7607
|
+
getAccountKey(): string;
|
|
7608
|
+
setAccountKey(value: string): AzureBlobCreds;
|
|
7609
|
+
|
|
7610
|
+
serializeBinary(): Uint8Array;
|
|
7611
|
+
toObject(includeInstance?: boolean): AzureBlobCreds.AsObject;
|
|
7612
|
+
static toObject(includeInstance: boolean, msg: AzureBlobCreds): AzureBlobCreds.AsObject;
|
|
7613
|
+
static serializeBinaryToWriter(message: AzureBlobCreds, writer: jspb.BinaryWriter): void;
|
|
7614
|
+
static deserializeBinary(bytes: Uint8Array): AzureBlobCreds;
|
|
7615
|
+
static deserializeBinaryFromReader(message: AzureBlobCreds, reader: jspb.BinaryReader): AzureBlobCreds;
|
|
7616
|
+
}
|
|
7617
|
+
|
|
7618
|
+
export namespace AzureBlobCreds {
|
|
7619
|
+
export type AsObject = {
|
|
7620
|
+
accountName: string,
|
|
7621
|
+
accountKey: string,
|
|
7622
|
+
}
|
|
7623
|
+
}
|
|
7624
|
+
|
|
7625
|
+
export class InputsUpload extends jspb.Message {
|
|
7626
|
+
getInputsAddJobId(): string;
|
|
7627
|
+
setInputsAddJobId(value: string): InputsUpload;
|
|
7628
|
+
|
|
7629
|
+
getAppPat(): string;
|
|
7630
|
+
setAppPat(value: string): InputsUpload;
|
|
7631
|
+
|
|
7632
|
+
getUpload(): Upload | undefined;
|
|
7633
|
+
setUpload(value?: Upload): InputsUpload;
|
|
7634
|
+
hasUpload(): boolean;
|
|
7635
|
+
clearUpload(): InputsUpload;
|
|
7636
|
+
|
|
7637
|
+
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7638
|
+
setInputIdConflictResolution(value: InputIDConflictResolution): InputsUpload;
|
|
7639
|
+
|
|
7640
|
+
getInputTemplate(): Input | undefined;
|
|
7641
|
+
setInputTemplate(value?: Input): InputsUpload;
|
|
7642
|
+
hasInputTemplate(): boolean;
|
|
7643
|
+
clearInputTemplate(): InputsUpload;
|
|
7644
|
+
|
|
7645
|
+
serializeBinary(): Uint8Array;
|
|
7646
|
+
toObject(includeInstance?: boolean): InputsUpload.AsObject;
|
|
7647
|
+
static toObject(includeInstance: boolean, msg: InputsUpload): InputsUpload.AsObject;
|
|
7648
|
+
static serializeBinaryToWriter(message: InputsUpload, writer: jspb.BinaryWriter): void;
|
|
7649
|
+
static deserializeBinary(bytes: Uint8Array): InputsUpload;
|
|
7650
|
+
static deserializeBinaryFromReader(message: InputsUpload, reader: jspb.BinaryReader): InputsUpload;
|
|
7651
|
+
}
|
|
7652
|
+
|
|
7653
|
+
export namespace InputsUpload {
|
|
7654
|
+
export type AsObject = {
|
|
7655
|
+
inputsAddJobId: string,
|
|
7656
|
+
appPat: string,
|
|
7657
|
+
upload?: Upload.AsObject,
|
|
7658
|
+
inputIdConflictResolution: InputIDConflictResolution,
|
|
7659
|
+
inputTemplate?: Input.AsObject,
|
|
7660
|
+
}
|
|
7661
|
+
}
|
|
7662
|
+
|
|
7663
|
+
export class BookmarkOrigin extends jspb.Message {
|
|
7664
|
+
getId(): string;
|
|
7665
|
+
setId(value: string): BookmarkOrigin;
|
|
7666
|
+
|
|
7667
|
+
getAppId(): string;
|
|
7668
|
+
setAppId(value: string): BookmarkOrigin;
|
|
7669
|
+
|
|
7670
|
+
getUserId(): string;
|
|
7671
|
+
setUserId(value: string): BookmarkOrigin;
|
|
7672
|
+
|
|
7673
|
+
getResourceType(): BookmarkOrigin.BookmarkType;
|
|
7674
|
+
setResourceType(value: BookmarkOrigin.BookmarkType): BookmarkOrigin;
|
|
7675
|
+
|
|
7676
|
+
serializeBinary(): Uint8Array;
|
|
7677
|
+
toObject(includeInstance?: boolean): BookmarkOrigin.AsObject;
|
|
7678
|
+
static toObject(includeInstance: boolean, msg: BookmarkOrigin): BookmarkOrigin.AsObject;
|
|
7679
|
+
static serializeBinaryToWriter(message: BookmarkOrigin, writer: jspb.BinaryWriter): void;
|
|
7680
|
+
static deserializeBinary(bytes: Uint8Array): BookmarkOrigin;
|
|
7681
|
+
static deserializeBinaryFromReader(message: BookmarkOrigin, reader: jspb.BinaryReader): BookmarkOrigin;
|
|
7682
|
+
}
|
|
7683
|
+
|
|
7684
|
+
export namespace BookmarkOrigin {
|
|
7685
|
+
export type AsObject = {
|
|
7686
|
+
id: string,
|
|
7687
|
+
appId: string,
|
|
7688
|
+
userId: string,
|
|
7689
|
+
resourceType: BookmarkOrigin.BookmarkType,
|
|
7690
|
+
}
|
|
7691
|
+
|
|
7692
|
+
export enum BookmarkType {
|
|
7693
|
+
UNKNOWN = 0,
|
|
7694
|
+
MODEL = 1,
|
|
7695
|
+
WORKFLOW = 2,
|
|
7696
|
+
DATASET = 3,
|
|
7697
|
+
MODULE = 4,
|
|
7698
|
+
}
|
|
7699
|
+
}
|
|
7700
|
+
|
|
7701
|
+
export class Runner extends jspb.Message {
|
|
7702
|
+
getId(): string;
|
|
7703
|
+
setId(value: string): Runner;
|
|
7704
|
+
|
|
7705
|
+
getDescription(): string;
|
|
7706
|
+
setDescription(value: string): Runner;
|
|
7707
|
+
|
|
7708
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
7709
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Runner;
|
|
7710
|
+
hasCreatedAt(): boolean;
|
|
7711
|
+
clearCreatedAt(): Runner;
|
|
7712
|
+
|
|
7713
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
7714
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Runner;
|
|
7715
|
+
hasModifiedAt(): boolean;
|
|
7716
|
+
clearModifiedAt(): Runner;
|
|
7717
|
+
|
|
7718
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
7719
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Runner;
|
|
7720
|
+
hasMetadata(): boolean;
|
|
7721
|
+
clearMetadata(): Runner;
|
|
7722
|
+
|
|
7723
|
+
getUserId(): string;
|
|
7724
|
+
setUserId(value: string): Runner;
|
|
7725
|
+
|
|
7726
|
+
getLabelsList(): Array<string>;
|
|
7727
|
+
setLabelsList(value: Array<string>): Runner;
|
|
7728
|
+
clearLabelsList(): Runner;
|
|
7729
|
+
addLabels(value: string, index?: number): Runner;
|
|
7730
|
+
|
|
7731
|
+
serializeBinary(): Uint8Array;
|
|
7732
|
+
toObject(includeInstance?: boolean): Runner.AsObject;
|
|
7733
|
+
static toObject(includeInstance: boolean, msg: Runner): Runner.AsObject;
|
|
7734
|
+
static serializeBinaryToWriter(message: Runner, writer: jspb.BinaryWriter): void;
|
|
7735
|
+
static deserializeBinary(bytes: Uint8Array): Runner;
|
|
7736
|
+
static deserializeBinaryFromReader(message: Runner, reader: jspb.BinaryReader): Runner;
|
|
7737
|
+
}
|
|
7738
|
+
|
|
7739
|
+
export namespace Runner {
|
|
7740
|
+
export type AsObject = {
|
|
7741
|
+
id: string,
|
|
7742
|
+
description: string,
|
|
7743
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7744
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7745
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
7746
|
+
userId: string,
|
|
7747
|
+
labelsList: Array<string>,
|
|
6836
7748
|
}
|
|
6837
7749
|
}
|
|
6838
7750
|
|
|
@@ -6901,6 +7813,15 @@ export enum UsageIntervalType {
|
|
|
6901
7813
|
MONTH = 2,
|
|
6902
7814
|
YEAR = 3,
|
|
6903
7815
|
}
|
|
7816
|
+
export enum AnnotationDataType {
|
|
7817
|
+
ANNOTATION_DATA_TYPE_NOT_SET = 0,
|
|
7818
|
+
TAG = 1,
|
|
7819
|
+
BOUNDING_BOX = 2,
|
|
7820
|
+
POLYGON = 4,
|
|
7821
|
+
POINT = 8,
|
|
7822
|
+
SPAN = 16,
|
|
7823
|
+
MASK = 32,
|
|
7824
|
+
}
|
|
6904
7825
|
export enum RoleType {
|
|
6905
7826
|
TEAM = 0,
|
|
6906
7827
|
ORG = 1,
|
|
@@ -6924,3 +7845,8 @@ export enum ValidationErrorType {
|
|
|
6924
7845
|
DATABASE = 2,
|
|
6925
7846
|
FORMAT = 3,
|
|
6926
7847
|
}
|
|
7848
|
+
export enum InputIDConflictResolution {
|
|
7849
|
+
INPUT_ID_CONFLICT_RESOLUTION_NOT_SET = 0,
|
|
7850
|
+
SKIP = 1,
|
|
7851
|
+
SUFFIX = 2,
|
|
7852
|
+
}
|