clarifai-web-grpc 4.1.0 → 5.0.0
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/codeql-analysis.yml +72 -0
- package/CHANGELOG.md +9 -3
- package/VERSION +1 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +8401 -1039
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +1428 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +26106 -16201
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +33 -0
- package/dist/cjs/proto/clarifai/api/status/status_pb.js +237 -1
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +11 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +8401 -1039
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +1428 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +26106 -16201
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +33 -0
- package/dist/esm/proto/clarifai/api/status/status_pb.js +237 -1
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +11 -1
- package/package.json +1 -1
- package/package.json-E +52 -0
- package/proto/clarifai/api/resources_pb.d.ts +1160 -39
- package/proto/clarifai/api/resources_pb.js +9717 -529
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +408 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +2098 -24
- package/proto/clarifai/api/service_pb.d.ts +1418 -0
- package/proto/clarifai/api/service_pb.js +30537 -18314
- package/proto/clarifai/api/status/status_code_pb.d.ts +33 -0
- package/proto/clarifai/api/status/status_code_pb.js +33 -0
- package/proto/clarifai/api/status/status_pb.d.ts +36 -0
- package/proto/clarifai/api/status/status_pb.js +294 -1
- package/proto/clarifai/auth/scope/scope_pb.d.ts +10 -0
- package/proto/clarifai/auth/scope/scope_pb.js +11 -1
- package/LICENCE +0 -13
|
@@ -574,6 +574,11 @@ export class Concept extends jspb.Message {
|
|
|
574
574
|
getUserId(): string;
|
|
575
575
|
setUserId(value: string): Concept;
|
|
576
576
|
|
|
577
|
+
getKeypointInfo(): KeypointInfo | undefined;
|
|
578
|
+
setKeypointInfo(value?: KeypointInfo): Concept;
|
|
579
|
+
hasKeypointInfo(): boolean;
|
|
580
|
+
clearKeypointInfo(): Concept;
|
|
581
|
+
|
|
577
582
|
serializeBinary(): Uint8Array;
|
|
578
583
|
toObject(includeInstance?: boolean): Concept.AsObject;
|
|
579
584
|
static toObject(includeInstance: boolean, msg: Concept): Concept.AsObject;
|
|
@@ -594,6 +599,55 @@ export namespace Concept {
|
|
|
594
599
|
vocabId: string,
|
|
595
600
|
visibility?: Visibility.AsObject,
|
|
596
601
|
userId: string,
|
|
602
|
+
keypointInfo?: KeypointInfo.AsObject,
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
export class KeypointInfo extends jspb.Message {
|
|
607
|
+
getKeypointNamesList(): Array<string>;
|
|
608
|
+
setKeypointNamesList(value: Array<string>): KeypointInfo;
|
|
609
|
+
clearKeypointNamesList(): KeypointInfo;
|
|
610
|
+
addKeypointNames(value: string, index?: number): KeypointInfo;
|
|
611
|
+
|
|
612
|
+
getSkeletonList(): Array<KeypointEdge>;
|
|
613
|
+
setSkeletonList(value: Array<KeypointEdge>): KeypointInfo;
|
|
614
|
+
clearSkeletonList(): KeypointInfo;
|
|
615
|
+
addSkeleton(value?: KeypointEdge, index?: number): KeypointEdge;
|
|
616
|
+
|
|
617
|
+
serializeBinary(): Uint8Array;
|
|
618
|
+
toObject(includeInstance?: boolean): KeypointInfo.AsObject;
|
|
619
|
+
static toObject(includeInstance: boolean, msg: KeypointInfo): KeypointInfo.AsObject;
|
|
620
|
+
static serializeBinaryToWriter(message: KeypointInfo, writer: jspb.BinaryWriter): void;
|
|
621
|
+
static deserializeBinary(bytes: Uint8Array): KeypointInfo;
|
|
622
|
+
static deserializeBinaryFromReader(message: KeypointInfo, reader: jspb.BinaryReader): KeypointInfo;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export namespace KeypointInfo {
|
|
626
|
+
export type AsObject = {
|
|
627
|
+
keypointNamesList: Array<string>,
|
|
628
|
+
skeletonList: Array<KeypointEdge.AsObject>,
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
export class KeypointEdge extends jspb.Message {
|
|
633
|
+
getK1(): number;
|
|
634
|
+
setK1(value: number): KeypointEdge;
|
|
635
|
+
|
|
636
|
+
getK2(): number;
|
|
637
|
+
setK2(value: number): KeypointEdge;
|
|
638
|
+
|
|
639
|
+
serializeBinary(): Uint8Array;
|
|
640
|
+
toObject(includeInstance?: boolean): KeypointEdge.AsObject;
|
|
641
|
+
static toObject(includeInstance: boolean, msg: KeypointEdge): KeypointEdge.AsObject;
|
|
642
|
+
static serializeBinaryToWriter(message: KeypointEdge, writer: jspb.BinaryWriter): void;
|
|
643
|
+
static deserializeBinary(bytes: Uint8Array): KeypointEdge;
|
|
644
|
+
static deserializeBinaryFromReader(message: KeypointEdge, reader: jspb.BinaryReader): KeypointEdge;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
export namespace KeypointEdge {
|
|
648
|
+
export type AsObject = {
|
|
649
|
+
k1: number,
|
|
650
|
+
k2: number,
|
|
597
651
|
}
|
|
598
652
|
}
|
|
599
653
|
|
|
@@ -921,6 +975,11 @@ export class Data extends jspb.Message {
|
|
|
921
975
|
clearHitsList(): Data;
|
|
922
976
|
addHits(value?: Hit, index?: number): Hit;
|
|
923
977
|
|
|
978
|
+
getHeatmapsList(): Array<Image>;
|
|
979
|
+
setHeatmapsList(value: Array<Image>): Data;
|
|
980
|
+
clearHeatmapsList(): Data;
|
|
981
|
+
addHeatmaps(value?: Image, index?: number): Image;
|
|
982
|
+
|
|
924
983
|
serializeBinary(): Uint8Array;
|
|
925
984
|
toObject(includeInstance?: boolean): Data.AsObject;
|
|
926
985
|
static toObject(includeInstance: boolean, msg: Data): Data.AsObject;
|
|
@@ -946,6 +1005,7 @@ export namespace Data {
|
|
|
946
1005
|
tracksList: Array<Track.AsObject>,
|
|
947
1006
|
timeSegmentsList: Array<TimeSegment.AsObject>,
|
|
948
1007
|
hitsList: Array<Hit.AsObject>,
|
|
1008
|
+
heatmapsList: Array<Image.AsObject>,
|
|
949
1009
|
}
|
|
950
1010
|
}
|
|
951
1011
|
|
|
@@ -1018,6 +1078,11 @@ export class RegionInfo extends jspb.Message {
|
|
|
1018
1078
|
hasToken(): boolean;
|
|
1019
1079
|
clearToken(): RegionInfo;
|
|
1020
1080
|
|
|
1081
|
+
getKeypointLocationsList(): Array<Point>;
|
|
1082
|
+
setKeypointLocationsList(value: Array<Point>): RegionInfo;
|
|
1083
|
+
clearKeypointLocationsList(): RegionInfo;
|
|
1084
|
+
addKeypointLocations(value?: Point, index?: number): Point;
|
|
1085
|
+
|
|
1021
1086
|
serializeBinary(): Uint8Array;
|
|
1022
1087
|
toObject(includeInstance?: boolean): RegionInfo.AsObject;
|
|
1023
1088
|
static toObject(includeInstance: boolean, msg: RegionInfo): RegionInfo.AsObject;
|
|
@@ -1034,6 +1099,7 @@ export namespace RegionInfo {
|
|
|
1034
1099
|
point?: Point.AsObject,
|
|
1035
1100
|
span?: Span.AsObject,
|
|
1036
1101
|
token?: Token.AsObject,
|
|
1102
|
+
keypointLocationsList: Array<Point.AsObject>,
|
|
1037
1103
|
}
|
|
1038
1104
|
}
|
|
1039
1105
|
|
|
@@ -1169,6 +1235,9 @@ export class Point extends jspb.Message {
|
|
|
1169
1235
|
getZ(): number;
|
|
1170
1236
|
setZ(value: number): Point;
|
|
1171
1237
|
|
|
1238
|
+
getVisibility(): Point.Visibility;
|
|
1239
|
+
setVisibility(value: Point.Visibility): Point;
|
|
1240
|
+
|
|
1172
1241
|
serializeBinary(): Uint8Array;
|
|
1173
1242
|
toObject(includeInstance?: boolean): Point.AsObject;
|
|
1174
1243
|
static toObject(includeInstance: boolean, msg: Point): Point.AsObject;
|
|
@@ -1182,6 +1251,14 @@ export namespace Point {
|
|
|
1182
1251
|
row: number,
|
|
1183
1252
|
col: number,
|
|
1184
1253
|
z: number,
|
|
1254
|
+
visibility: Point.Visibility,
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
export enum Visibility {
|
|
1258
|
+
NOT_SET = 0,
|
|
1259
|
+
VISIBLE = 1,
|
|
1260
|
+
NOT_VISIBLE = 2,
|
|
1261
|
+
NOT_PRESENT = 3,
|
|
1185
1262
|
}
|
|
1186
1263
|
}
|
|
1187
1264
|
|
|
@@ -1721,6 +1798,11 @@ export class DatasetVersion extends jspb.Message {
|
|
|
1721
1798
|
hasAnnotationFilterConfig(): boolean;
|
|
1722
1799
|
clearAnnotationFilterConfig(): DatasetVersion;
|
|
1723
1800
|
|
|
1801
|
+
getModelPredictConfig(): ModelPredictConfig | undefined;
|
|
1802
|
+
setModelPredictConfig(value?: ModelPredictConfig): DatasetVersion;
|
|
1803
|
+
hasModelPredictConfig(): boolean;
|
|
1804
|
+
clearModelPredictConfig(): DatasetVersion;
|
|
1805
|
+
|
|
1724
1806
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
1725
1807
|
setStatus(value?: proto_clarifai_api_status_status_pb.Status): DatasetVersion;
|
|
1726
1808
|
hasStatus(): boolean;
|
|
@@ -1729,10 +1811,13 @@ export class DatasetVersion extends jspb.Message {
|
|
|
1729
1811
|
getDescription(): string;
|
|
1730
1812
|
setDescription(value: string): DatasetVersion;
|
|
1731
1813
|
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1814
|
+
getMetricsMap(): jspb.Map<string, DatasetVersionMetrics>;
|
|
1815
|
+
clearMetricsMap(): DatasetVersion;
|
|
1816
|
+
|
|
1817
|
+
getExportInfo(): DatasetVersionExportInfo | undefined;
|
|
1818
|
+
setExportInfo(value?: DatasetVersionExportInfo): DatasetVersion;
|
|
1819
|
+
hasExportInfo(): boolean;
|
|
1820
|
+
clearExportInfo(): DatasetVersion;
|
|
1736
1821
|
|
|
1737
1822
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
1738
1823
|
setMetadata(value?: google_protobuf_struct_pb.Struct): DatasetVersion;
|
|
@@ -1768,9 +1853,11 @@ export namespace DatasetVersion {
|
|
|
1768
1853
|
userId: string,
|
|
1769
1854
|
datasetId: string,
|
|
1770
1855
|
annotationFilterConfig?: AnnotationFilterConfig.AsObject,
|
|
1856
|
+
modelPredictConfig?: ModelPredictConfig.AsObject,
|
|
1771
1857
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
1772
1858
|
description: string,
|
|
1773
|
-
|
|
1859
|
+
metricsMap: Array<[string, DatasetVersionMetrics.AsObject]>,
|
|
1860
|
+
exportInfo?: DatasetVersionExportInfo.AsObject,
|
|
1774
1861
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1775
1862
|
visibility?: Visibility.AsObject,
|
|
1776
1863
|
embedModelVersionIdsList: Array<string>,
|
|
@@ -1779,6 +1866,7 @@ export namespace DatasetVersion {
|
|
|
1779
1866
|
export enum DataConfigCase {
|
|
1780
1867
|
DATA_CONFIG_NOT_SET = 0,
|
|
1781
1868
|
ANNOTATION_FILTER_CONFIG = 15,
|
|
1869
|
+
MODEL_PREDICT_CONFIG = 18,
|
|
1782
1870
|
}
|
|
1783
1871
|
}
|
|
1784
1872
|
|
|
@@ -1802,6 +1890,26 @@ export namespace AnnotationFilterConfig {
|
|
|
1802
1890
|
}
|
|
1803
1891
|
}
|
|
1804
1892
|
|
|
1893
|
+
export class ModelPredictConfig extends jspb.Message {
|
|
1894
|
+
getModel(): Model | undefined;
|
|
1895
|
+
setModel(value?: Model): ModelPredictConfig;
|
|
1896
|
+
hasModel(): boolean;
|
|
1897
|
+
clearModel(): ModelPredictConfig;
|
|
1898
|
+
|
|
1899
|
+
serializeBinary(): Uint8Array;
|
|
1900
|
+
toObject(includeInstance?: boolean): ModelPredictConfig.AsObject;
|
|
1901
|
+
static toObject(includeInstance: boolean, msg: ModelPredictConfig): ModelPredictConfig.AsObject;
|
|
1902
|
+
static serializeBinaryToWriter(message: ModelPredictConfig, writer: jspb.BinaryWriter): void;
|
|
1903
|
+
static deserializeBinary(bytes: Uint8Array): ModelPredictConfig;
|
|
1904
|
+
static deserializeBinaryFromReader(message: ModelPredictConfig, reader: jspb.BinaryReader): ModelPredictConfig;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
export namespace ModelPredictConfig {
|
|
1908
|
+
export type AsObject = {
|
|
1909
|
+
model?: Model.AsObject,
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1805
1913
|
export class DatasetVersionMetrics extends jspb.Message {
|
|
1806
1914
|
getInputsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1807
1915
|
setInputsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
@@ -1958,6 +2066,70 @@ export namespace DatasetVersionMetricsGroup {
|
|
|
1958
2066
|
}
|
|
1959
2067
|
}
|
|
1960
2068
|
|
|
2069
|
+
export class DatasetVersionExportInfo extends jspb.Message {
|
|
2070
|
+
getClarifaiDataProtobuf(): DatasetVersionExport | undefined;
|
|
2071
|
+
setClarifaiDataProtobuf(value?: DatasetVersionExport): DatasetVersionExportInfo;
|
|
2072
|
+
hasClarifaiDataProtobuf(): boolean;
|
|
2073
|
+
clearClarifaiDataProtobuf(): DatasetVersionExportInfo;
|
|
2074
|
+
|
|
2075
|
+
getClarifaiDataJson(): DatasetVersionExport | undefined;
|
|
2076
|
+
setClarifaiDataJson(value?: DatasetVersionExport): DatasetVersionExportInfo;
|
|
2077
|
+
hasClarifaiDataJson(): boolean;
|
|
2078
|
+
clearClarifaiDataJson(): DatasetVersionExportInfo;
|
|
2079
|
+
|
|
2080
|
+
getCoco(): DatasetVersionExport | undefined;
|
|
2081
|
+
setCoco(value?: DatasetVersionExport): DatasetVersionExportInfo;
|
|
2082
|
+
hasCoco(): boolean;
|
|
2083
|
+
clearCoco(): DatasetVersionExportInfo;
|
|
2084
|
+
|
|
2085
|
+
serializeBinary(): Uint8Array;
|
|
2086
|
+
toObject(includeInstance?: boolean): DatasetVersionExportInfo.AsObject;
|
|
2087
|
+
static toObject(includeInstance: boolean, msg: DatasetVersionExportInfo): DatasetVersionExportInfo.AsObject;
|
|
2088
|
+
static serializeBinaryToWriter(message: DatasetVersionExportInfo, writer: jspb.BinaryWriter): void;
|
|
2089
|
+
static deserializeBinary(bytes: Uint8Array): DatasetVersionExportInfo;
|
|
2090
|
+
static deserializeBinaryFromReader(message: DatasetVersionExportInfo, reader: jspb.BinaryReader): DatasetVersionExportInfo;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
export namespace DatasetVersionExportInfo {
|
|
2094
|
+
export type AsObject = {
|
|
2095
|
+
clarifaiDataProtobuf?: DatasetVersionExport.AsObject,
|
|
2096
|
+
clarifaiDataJson?: DatasetVersionExport.AsObject,
|
|
2097
|
+
coco?: DatasetVersionExport.AsObject,
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
export class DatasetVersionExport extends jspb.Message {
|
|
2102
|
+
getFormat(): DatasetVersionExportFormat;
|
|
2103
|
+
setFormat(value: DatasetVersionExportFormat): DatasetVersionExport;
|
|
2104
|
+
|
|
2105
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
2106
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): DatasetVersionExport;
|
|
2107
|
+
hasStatus(): boolean;
|
|
2108
|
+
clearStatus(): DatasetVersionExport;
|
|
2109
|
+
|
|
2110
|
+
getUrl(): string;
|
|
2111
|
+
setUrl(value: string): DatasetVersionExport;
|
|
2112
|
+
|
|
2113
|
+
getSize(): number;
|
|
2114
|
+
setSize(value: number): DatasetVersionExport;
|
|
2115
|
+
|
|
2116
|
+
serializeBinary(): Uint8Array;
|
|
2117
|
+
toObject(includeInstance?: boolean): DatasetVersionExport.AsObject;
|
|
2118
|
+
static toObject(includeInstance: boolean, msg: DatasetVersionExport): DatasetVersionExport.AsObject;
|
|
2119
|
+
static serializeBinaryToWriter(message: DatasetVersionExport, writer: jspb.BinaryWriter): void;
|
|
2120
|
+
static deserializeBinary(bytes: Uint8Array): DatasetVersionExport;
|
|
2121
|
+
static deserializeBinaryFromReader(message: DatasetVersionExport, reader: jspb.BinaryReader): DatasetVersionExport;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
export namespace DatasetVersionExport {
|
|
2125
|
+
export type AsObject = {
|
|
2126
|
+
format: DatasetVersionExportFormat,
|
|
2127
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
2128
|
+
url: string,
|
|
2129
|
+
size: number,
|
|
2130
|
+
}
|
|
2131
|
+
}
|
|
2132
|
+
|
|
1961
2133
|
export class WorkflowResultsSimilarity extends jspb.Message {
|
|
1962
2134
|
getProbeInput(): Input | undefined;
|
|
1963
2135
|
setProbeInput(value?: Input): WorkflowResultsSimilarity;
|
|
@@ -2092,6 +2264,11 @@ export class Model extends jspb.Message {
|
|
|
2092
2264
|
hasTrainInfo(): boolean;
|
|
2093
2265
|
clearTrainInfo(): Model;
|
|
2094
2266
|
|
|
2267
|
+
getDefaultEvalInfo(): EvalInfo | undefined;
|
|
2268
|
+
setDefaultEvalInfo(value?: EvalInfo): Model;
|
|
2269
|
+
hasDefaultEvalInfo(): boolean;
|
|
2270
|
+
clearDefaultEvalInfo(): Model;
|
|
2271
|
+
|
|
2095
2272
|
getModelTypeId(): string;
|
|
2096
2273
|
setModelTypeId(value: string): Model;
|
|
2097
2274
|
|
|
@@ -2111,6 +2288,11 @@ export class Model extends jspb.Message {
|
|
|
2111
2288
|
hasMetadata(): boolean;
|
|
2112
2289
|
clearMetadata(): Model;
|
|
2113
2290
|
|
|
2291
|
+
getPresets(): google_protobuf_struct_pb.Struct | undefined;
|
|
2292
|
+
setPresets(value?: google_protobuf_struct_pb.Struct): Model;
|
|
2293
|
+
hasPresets(): boolean;
|
|
2294
|
+
clearPresets(): Model;
|
|
2295
|
+
|
|
2114
2296
|
getNotes(): string;
|
|
2115
2297
|
setNotes(value: string): Model;
|
|
2116
2298
|
|
|
@@ -2129,6 +2311,16 @@ export class Model extends jspb.Message {
|
|
|
2129
2311
|
clearLanguagesList(): Model;
|
|
2130
2312
|
addLanguages(value: string, index?: number): Model;
|
|
2131
2313
|
|
|
2314
|
+
getLanguagesFullList(): Array<FullTag>;
|
|
2315
|
+
setLanguagesFullList(value: Array<FullTag>): Model;
|
|
2316
|
+
clearLanguagesFullList(): Model;
|
|
2317
|
+
addLanguagesFull(value?: FullTag, index?: number): FullTag;
|
|
2318
|
+
|
|
2319
|
+
getCheckConsentsList(): Array<string>;
|
|
2320
|
+
setCheckConsentsList(value: Array<string>): Model;
|
|
2321
|
+
clearCheckConsentsList(): Model;
|
|
2322
|
+
addCheckConsents(value: string, index?: number): Model;
|
|
2323
|
+
|
|
2132
2324
|
getIsStarred(): boolean;
|
|
2133
2325
|
setIsStarred(value: boolean): Model;
|
|
2134
2326
|
|
|
@@ -2140,6 +2332,11 @@ export class Model extends jspb.Message {
|
|
|
2140
2332
|
hasImportInfo(): boolean;
|
|
2141
2333
|
clearImportInfo(): Model;
|
|
2142
2334
|
|
|
2335
|
+
getWorkflowRecommended(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
2336
|
+
setWorkflowRecommended(value?: google_protobuf_wrappers_pb.BoolValue): Model;
|
|
2337
|
+
hasWorkflowRecommended(): boolean;
|
|
2338
|
+
clearWorkflowRecommended(): Model;
|
|
2339
|
+
|
|
2143
2340
|
serializeBinary(): Uint8Array;
|
|
2144
2341
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
2145
2342
|
static toObject(includeInstance: boolean, msg: Model): Model.AsObject;
|
|
@@ -2161,18 +2358,23 @@ export namespace Model {
|
|
|
2161
2358
|
userId: string,
|
|
2162
2359
|
inputInfo?: InputInfo.AsObject,
|
|
2163
2360
|
trainInfo?: TrainInfo.AsObject,
|
|
2361
|
+
defaultEvalInfo?: EvalInfo.AsObject,
|
|
2164
2362
|
modelTypeId: string,
|
|
2165
2363
|
task: string,
|
|
2166
2364
|
visibility?: Visibility.AsObject,
|
|
2167
2365
|
description: string,
|
|
2168
2366
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2367
|
+
presets?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2169
2368
|
notes: string,
|
|
2170
2369
|
toolkitsList: Array<string>,
|
|
2171
2370
|
useCasesList: Array<string>,
|
|
2172
2371
|
languagesList: Array<string>,
|
|
2372
|
+
languagesFullList: Array<FullTag.AsObject>,
|
|
2373
|
+
checkConsentsList: Array<string>,
|
|
2173
2374
|
isStarred: boolean,
|
|
2174
2375
|
starCount: number,
|
|
2175
2376
|
importInfo?: ImportInfo.AsObject,
|
|
2377
|
+
workflowRecommended?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
2176
2378
|
}
|
|
2177
2379
|
}
|
|
2178
2380
|
|
|
@@ -2340,6 +2542,26 @@ export namespace TrainInfo {
|
|
|
2340
2542
|
}
|
|
2341
2543
|
}
|
|
2342
2544
|
|
|
2545
|
+
export class EvalInfo extends jspb.Message {
|
|
2546
|
+
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2547
|
+
setParams(value?: google_protobuf_struct_pb.Struct): EvalInfo;
|
|
2548
|
+
hasParams(): boolean;
|
|
2549
|
+
clearParams(): EvalInfo;
|
|
2550
|
+
|
|
2551
|
+
serializeBinary(): Uint8Array;
|
|
2552
|
+
toObject(includeInstance?: boolean): EvalInfo.AsObject;
|
|
2553
|
+
static toObject(includeInstance: boolean, msg: EvalInfo): EvalInfo.AsObject;
|
|
2554
|
+
static serializeBinaryToWriter(message: EvalInfo, writer: jspb.BinaryWriter): void;
|
|
2555
|
+
static deserializeBinary(bytes: Uint8Array): EvalInfo;
|
|
2556
|
+
static deserializeBinaryFromReader(message: EvalInfo, reader: jspb.BinaryReader): EvalInfo;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
export namespace EvalInfo {
|
|
2560
|
+
export type AsObject = {
|
|
2561
|
+
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2343
2565
|
export class ImportInfo extends jspb.Message {
|
|
2344
2566
|
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2345
2567
|
setParams(value?: google_protobuf_struct_pb.Struct): ImportInfo;
|
|
@@ -2476,15 +2698,15 @@ export class ModelType extends jspb.Message {
|
|
|
2476
2698
|
getEvaluable(): boolean;
|
|
2477
2699
|
setEvaluable(value: boolean): ModelType;
|
|
2478
2700
|
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2701
|
+
getExpectedInputLayersList(): Array<ModelLayerInfo>;
|
|
2702
|
+
setExpectedInputLayersList(value: Array<ModelLayerInfo>): ModelType;
|
|
2703
|
+
clearExpectedInputLayersList(): ModelType;
|
|
2704
|
+
addExpectedInputLayers(value?: ModelLayerInfo, index?: number): ModelLayerInfo;
|
|
2483
2705
|
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2706
|
+
getExpectedOutputLayersList(): Array<ModelLayerInfo>;
|
|
2707
|
+
setExpectedOutputLayersList(value: Array<ModelLayerInfo>): ModelType;
|
|
2708
|
+
clearExpectedOutputLayersList(): ModelType;
|
|
2709
|
+
addExpectedOutputLayers(value?: ModelLayerInfo, index?: number): ModelLayerInfo;
|
|
2488
2710
|
|
|
2489
2711
|
serializeBinary(): Uint8Array;
|
|
2490
2712
|
toObject(includeInstance?: boolean): ModelType.AsObject;
|
|
@@ -2507,8 +2729,74 @@ export namespace ModelType {
|
|
|
2507
2729
|
modelTypeFieldsList: Array<ModelTypeField.AsObject>,
|
|
2508
2730
|
requiresSequentialFrames: boolean,
|
|
2509
2731
|
evaluable: boolean,
|
|
2510
|
-
|
|
2511
|
-
|
|
2732
|
+
expectedInputLayersList: Array<ModelLayerInfo.AsObject>,
|
|
2733
|
+
expectedOutputLayersList: Array<ModelLayerInfo.AsObject>,
|
|
2734
|
+
}
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
export class ModelLayerInfo extends jspb.Message {
|
|
2738
|
+
getDataFieldName(): string;
|
|
2739
|
+
setDataFieldName(value: string): ModelLayerInfo;
|
|
2740
|
+
|
|
2741
|
+
getShapesList(): Array<LayerShape>;
|
|
2742
|
+
setShapesList(value: Array<LayerShape>): ModelLayerInfo;
|
|
2743
|
+
clearShapesList(): ModelLayerInfo;
|
|
2744
|
+
addShapes(value?: LayerShape, index?: number): LayerShape;
|
|
2745
|
+
|
|
2746
|
+
getDescription(): string;
|
|
2747
|
+
setDescription(value: string): ModelLayerInfo;
|
|
2748
|
+
|
|
2749
|
+
getRequiresLabelFilename(): boolean;
|
|
2750
|
+
setRequiresLabelFilename(value: boolean): ModelLayerInfo;
|
|
2751
|
+
|
|
2752
|
+
serializeBinary(): Uint8Array;
|
|
2753
|
+
toObject(includeInstance?: boolean): ModelLayerInfo.AsObject;
|
|
2754
|
+
static toObject(includeInstance: boolean, msg: ModelLayerInfo): ModelLayerInfo.AsObject;
|
|
2755
|
+
static serializeBinaryToWriter(message: ModelLayerInfo, writer: jspb.BinaryWriter): void;
|
|
2756
|
+
static deserializeBinary(bytes: Uint8Array): ModelLayerInfo;
|
|
2757
|
+
static deserializeBinaryFromReader(message: ModelLayerInfo, reader: jspb.BinaryReader): ModelLayerInfo;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
export namespace ModelLayerInfo {
|
|
2761
|
+
export type AsObject = {
|
|
2762
|
+
dataFieldName: string,
|
|
2763
|
+
shapesList: Array<LayerShape.AsObject>,
|
|
2764
|
+
description: string,
|
|
2765
|
+
requiresLabelFilename: boolean,
|
|
2766
|
+
}
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
export class LayerShape extends jspb.Message {
|
|
2770
|
+
getDimsList(): Array<number>;
|
|
2771
|
+
setDimsList(value: Array<number>): LayerShape;
|
|
2772
|
+
clearDimsList(): LayerShape;
|
|
2773
|
+
addDims(value: number, index?: number): LayerShape;
|
|
2774
|
+
|
|
2775
|
+
getMaxDimsList(): Array<number>;
|
|
2776
|
+
setMaxDimsList(value: Array<number>): LayerShape;
|
|
2777
|
+
clearMaxDimsList(): LayerShape;
|
|
2778
|
+
addMaxDims(value: number, index?: number): LayerShape;
|
|
2779
|
+
|
|
2780
|
+
getDataType(): DataType;
|
|
2781
|
+
setDataType(value: DataType): LayerShape;
|
|
2782
|
+
|
|
2783
|
+
getDescription(): string;
|
|
2784
|
+
setDescription(value: string): LayerShape;
|
|
2785
|
+
|
|
2786
|
+
serializeBinary(): Uint8Array;
|
|
2787
|
+
toObject(includeInstance?: boolean): LayerShape.AsObject;
|
|
2788
|
+
static toObject(includeInstance: boolean, msg: LayerShape): LayerShape.AsObject;
|
|
2789
|
+
static serializeBinaryToWriter(message: LayerShape, writer: jspb.BinaryWriter): void;
|
|
2790
|
+
static deserializeBinary(bytes: Uint8Array): LayerShape;
|
|
2791
|
+
static deserializeBinaryFromReader(message: LayerShape, reader: jspb.BinaryReader): LayerShape;
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
export namespace LayerShape {
|
|
2795
|
+
export type AsObject = {
|
|
2796
|
+
dimsList: Array<number>,
|
|
2797
|
+
maxDimsList: Array<number>,
|
|
2798
|
+
dataType: DataType,
|
|
2799
|
+
description: string,
|
|
2512
2800
|
}
|
|
2513
2801
|
}
|
|
2514
2802
|
|
|
@@ -2582,6 +2870,9 @@ export namespace ModelTypeField {
|
|
|
2582
2870
|
WORKFLOW_EMBED_MODELS = 12,
|
|
2583
2871
|
ARRAY_OF_STRINGS = 13,
|
|
2584
2872
|
RECURSIVE_ENUM = 14,
|
|
2873
|
+
PYTHON_CODE = 15,
|
|
2874
|
+
DATASET_ID = 16,
|
|
2875
|
+
DATASET_VERSION_ID = 17,
|
|
2585
2876
|
}
|
|
2586
2877
|
}
|
|
2587
2878
|
|
|
@@ -2653,6 +2944,9 @@ export class ModelTypeEnumOptionAlias extends jspb.Message {
|
|
|
2653
2944
|
getIdInt(): number;
|
|
2654
2945
|
setIdInt(value: number): ModelTypeEnumOptionAlias;
|
|
2655
2946
|
|
|
2947
|
+
getWildcardString(): string;
|
|
2948
|
+
setWildcardString(value: string): ModelTypeEnumOptionAlias;
|
|
2949
|
+
|
|
2656
2950
|
serializeBinary(): Uint8Array;
|
|
2657
2951
|
toObject(includeInstance?: boolean): ModelTypeEnumOptionAlias.AsObject;
|
|
2658
2952
|
static toObject(includeInstance: boolean, msg: ModelTypeEnumOptionAlias): ModelTypeEnumOptionAlias.AsObject;
|
|
@@ -2664,6 +2958,7 @@ export class ModelTypeEnumOptionAlias extends jspb.Message {
|
|
|
2664
2958
|
export namespace ModelTypeEnumOptionAlias {
|
|
2665
2959
|
export type AsObject = {
|
|
2666
2960
|
idInt: number,
|
|
2961
|
+
wildcardString: string,
|
|
2667
2962
|
}
|
|
2668
2963
|
}
|
|
2669
2964
|
|
|
@@ -2714,6 +3009,11 @@ export class ModelVersion extends jspb.Message {
|
|
|
2714
3009
|
getTotalInputCount(): number;
|
|
2715
3010
|
setTotalInputCount(value: number): ModelVersion;
|
|
2716
3011
|
|
|
3012
|
+
getPretrainedModelConfig(): PretrainedModelConfig | undefined;
|
|
3013
|
+
setPretrainedModelConfig(value?: PretrainedModelConfig): ModelVersion;
|
|
3014
|
+
hasPretrainedModelConfig(): boolean;
|
|
3015
|
+
clearPretrainedModelConfig(): ModelVersion;
|
|
3016
|
+
|
|
2717
3017
|
getCompletedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
2718
3018
|
setCompletedAt(value?: google_protobuf_timestamp_pb.Timestamp): ModelVersion;
|
|
2719
3019
|
hasCompletedAt(): boolean;
|
|
@@ -2767,6 +3067,7 @@ export namespace ModelVersion {
|
|
|
2767
3067
|
activeConceptCount: number,
|
|
2768
3068
|
metrics?: EvalMetrics.AsObject,
|
|
2769
3069
|
totalInputCount: number,
|
|
3070
|
+
pretrainedModelConfig?: PretrainedModelConfig.AsObject,
|
|
2770
3071
|
completedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2771
3072
|
description: string,
|
|
2772
3073
|
visibility?: Visibility.AsObject,
|
|
@@ -2780,12 +3081,6 @@ export namespace ModelVersion {
|
|
|
2780
3081
|
}
|
|
2781
3082
|
|
|
2782
3083
|
export class PretrainedModelConfig extends jspb.Message {
|
|
2783
|
-
getId(): string;
|
|
2784
|
-
setId(value: string): PretrainedModelConfig;
|
|
2785
|
-
|
|
2786
|
-
getType(): string;
|
|
2787
|
-
setType(value: string): PretrainedModelConfig;
|
|
2788
|
-
|
|
2789
3084
|
getInputFieldsMap(): google_protobuf_struct_pb.Struct | undefined;
|
|
2790
3085
|
setInputFieldsMap(value?: google_protobuf_struct_pb.Struct): PretrainedModelConfig;
|
|
2791
3086
|
hasInputFieldsMap(): boolean;
|
|
@@ -2796,15 +3091,9 @@ export class PretrainedModelConfig extends jspb.Message {
|
|
|
2796
3091
|
hasOutputFieldsMap(): boolean;
|
|
2797
3092
|
clearOutputFieldsMap(): PretrainedModelConfig;
|
|
2798
3093
|
|
|
2799
|
-
getDataProviderParams(): string;
|
|
2800
|
-
setDataProviderParams(value: string): PretrainedModelConfig;
|
|
2801
|
-
|
|
2802
3094
|
getModelZipUrl(): string;
|
|
2803
3095
|
setModelZipUrl(value: string): PretrainedModelConfig;
|
|
2804
3096
|
|
|
2805
|
-
getOverwrite(): boolean;
|
|
2806
|
-
setOverwrite(value: boolean): PretrainedModelConfig;
|
|
2807
|
-
|
|
2808
3097
|
serializeBinary(): Uint8Array;
|
|
2809
3098
|
toObject(includeInstance?: boolean): PretrainedModelConfig.AsObject;
|
|
2810
3099
|
static toObject(includeInstance: boolean, msg: PretrainedModelConfig): PretrainedModelConfig.AsObject;
|
|
@@ -2815,13 +3104,9 @@ export class PretrainedModelConfig extends jspb.Message {
|
|
|
2815
3104
|
|
|
2816
3105
|
export namespace PretrainedModelConfig {
|
|
2817
3106
|
export type AsObject = {
|
|
2818
|
-
id: string,
|
|
2819
|
-
type: string,
|
|
2820
3107
|
inputFieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2821
3108
|
outputFieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2822
|
-
dataProviderParams: string,
|
|
2823
3109
|
modelZipUrl: string,
|
|
2824
|
-
overwrite: boolean,
|
|
2825
3110
|
}
|
|
2826
3111
|
}
|
|
2827
3112
|
|
|
@@ -3401,6 +3686,11 @@ export class EvalMetrics extends jspb.Message {
|
|
|
3401
3686
|
clearTrackerMetricsList(): EvalMetrics;
|
|
3402
3687
|
addTrackerMetrics(value?: TrackerMetrics, index?: number): TrackerMetrics;
|
|
3403
3688
|
|
|
3689
|
+
getEvalInfo(): EvalInfo | undefined;
|
|
3690
|
+
setEvalInfo(value?: EvalInfo): EvalMetrics;
|
|
3691
|
+
hasEvalInfo(): boolean;
|
|
3692
|
+
clearEvalInfo(): EvalMetrics;
|
|
3693
|
+
|
|
3404
3694
|
serializeBinary(): Uint8Array;
|
|
3405
3695
|
toObject(includeInstance?: boolean): EvalMetrics.AsObject;
|
|
3406
3696
|
static toObject(includeInstance: boolean, msg: EvalMetrics): EvalMetrics.AsObject;
|
|
@@ -3422,6 +3712,7 @@ export namespace EvalMetrics {
|
|
|
3422
3712
|
metricsByAreaList: Array<BinaryMetrics.AsObject>,
|
|
3423
3713
|
metricsByClassList: Array<BinaryMetrics.AsObject>,
|
|
3424
3714
|
trackerMetricsList: Array<TrackerMetrics.AsObject>,
|
|
3715
|
+
evalInfo?: EvalInfo.AsObject,
|
|
3425
3716
|
}
|
|
3426
3717
|
}
|
|
3427
3718
|
|
|
@@ -3984,6 +4275,11 @@ export class User extends jspb.Message {
|
|
|
3984
4275
|
hasDateMarketingConsent(): boolean;
|
|
3985
4276
|
clearDateMarketingConsent(): User;
|
|
3986
4277
|
|
|
4278
|
+
getDatePiiConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4279
|
+
setDatePiiConsent(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
4280
|
+
hasDatePiiConsent(): boolean;
|
|
4281
|
+
clearDatePiiConsent(): User;
|
|
4282
|
+
|
|
3987
4283
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
3988
4284
|
setMetadata(value?: google_protobuf_struct_pb.Struct): User;
|
|
3989
4285
|
hasMetadata(): boolean;
|
|
@@ -3994,9 +4290,6 @@ export class User extends jspb.Message {
|
|
|
3994
4290
|
clearEmailAddressesList(): User;
|
|
3995
4291
|
addEmailAddresses(value?: EmailAddress, index?: number): EmailAddress;
|
|
3996
4292
|
|
|
3997
|
-
getIsOrgAdmin(): boolean;
|
|
3998
|
-
setIsOrgAdmin(value: boolean): User;
|
|
3999
|
-
|
|
4000
4293
|
getTwoFactorAuthEnabled(): boolean;
|
|
4001
4294
|
setTwoFactorAuthEnabled(value: boolean): User;
|
|
4002
4295
|
|
|
@@ -4041,9 +4334,9 @@ export namespace User {
|
|
|
4041
4334
|
dateGdprConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4042
4335
|
dateTosConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4043
4336
|
dateMarketingConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4337
|
+
datePiiConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4044
4338
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
4045
4339
|
emailAddressesList: Array<EmailAddress.AsObject>,
|
|
4046
|
-
isOrgAdmin: boolean,
|
|
4047
4340
|
twoFactorAuthEnabled: boolean,
|
|
4048
4341
|
teamsCount: number,
|
|
4049
4342
|
isStarred: boolean,
|
|
@@ -4075,6 +4368,11 @@ export class UserDetail extends jspb.Message {
|
|
|
4075
4368
|
hasDateMarketingConsent(): boolean;
|
|
4076
4369
|
clearDateMarketingConsent(): UserDetail;
|
|
4077
4370
|
|
|
4371
|
+
getDatePiiConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4372
|
+
setDatePiiConsent(value?: google_protobuf_timestamp_pb.Timestamp): UserDetail;
|
|
4373
|
+
hasDatePiiConsent(): boolean;
|
|
4374
|
+
clearDatePiiConsent(): UserDetail;
|
|
4375
|
+
|
|
4078
4376
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
4079
4377
|
setMetadata(value?: google_protobuf_struct_pb.Struct): UserDetail;
|
|
4080
4378
|
hasMetadata(): boolean;
|
|
@@ -4085,9 +4383,6 @@ export class UserDetail extends jspb.Message {
|
|
|
4085
4383
|
clearEmailAddressesList(): UserDetail;
|
|
4086
4384
|
addEmailAddresses(value?: EmailAddress, index?: number): EmailAddress;
|
|
4087
4385
|
|
|
4088
|
-
getIsOrgAdmin(): boolean;
|
|
4089
|
-
setIsOrgAdmin(value: boolean): UserDetail;
|
|
4090
|
-
|
|
4091
4386
|
getTwoFactorAuthEnabled(): boolean;
|
|
4092
4387
|
setTwoFactorAuthEnabled(value: boolean): UserDetail;
|
|
4093
4388
|
|
|
@@ -4115,9 +4410,9 @@ export namespace UserDetail {
|
|
|
4115
4410
|
dateGdprConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4116
4411
|
dateTosConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4117
4412
|
dateMarketingConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4413
|
+
datePiiConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4118
4414
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
4119
4415
|
emailAddressesList: Array<EmailAddress.AsObject>,
|
|
4120
|
-
isOrgAdmin: boolean,
|
|
4121
4416
|
twoFactorAuthEnabled: boolean,
|
|
4122
4417
|
teamsCount: number,
|
|
4123
4418
|
country: string,
|
|
@@ -4382,6 +4677,11 @@ export class Workflow extends jspb.Message {
|
|
|
4382
4677
|
clearUseCasesList(): Workflow;
|
|
4383
4678
|
addUseCases(value: string, index?: number): Workflow;
|
|
4384
4679
|
|
|
4680
|
+
getCheckConsentsList(): Array<string>;
|
|
4681
|
+
setCheckConsentsList(value: Array<string>): Workflow;
|
|
4682
|
+
clearCheckConsentsList(): Workflow;
|
|
4683
|
+
addCheckConsents(value: string, index?: number): Workflow;
|
|
4684
|
+
|
|
4385
4685
|
serializeBinary(): Uint8Array;
|
|
4386
4686
|
toObject(includeInstance?: boolean): Workflow.AsObject;
|
|
4387
4687
|
static toObject(includeInstance: boolean, msg: Workflow): Workflow.AsObject;
|
|
@@ -4406,6 +4706,7 @@ export namespace Workflow {
|
|
|
4406
4706
|
description: string,
|
|
4407
4707
|
notes: string,
|
|
4408
4708
|
useCasesList: Array<string>,
|
|
4709
|
+
checkConsentsList: Array<string>,
|
|
4409
4710
|
}
|
|
4410
4711
|
}
|
|
4411
4712
|
|
|
@@ -4632,6 +4933,11 @@ export class AppDuplication extends jspb.Message {
|
|
|
4632
4933
|
getExistingAppId(): string;
|
|
4633
4934
|
setExistingAppId(value: string): AppDuplication;
|
|
4634
4935
|
|
|
4936
|
+
getProgressList(): Array<AppCopyProgress>;
|
|
4937
|
+
setProgressList(value: Array<AppCopyProgress>): AppDuplication;
|
|
4938
|
+
clearProgressList(): AppDuplication;
|
|
4939
|
+
addProgress(value?: AppCopyProgress, index?: number): AppCopyProgress;
|
|
4940
|
+
|
|
4635
4941
|
serializeBinary(): Uint8Array;
|
|
4636
4942
|
toObject(includeInstance?: boolean): AppDuplication.AsObject;
|
|
4637
4943
|
static toObject(includeInstance: boolean, msg: AppDuplication): AppDuplication.AsObject;
|
|
@@ -4650,6 +4956,29 @@ export namespace AppDuplication {
|
|
|
4650
4956
|
lastModifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4651
4957
|
filter?: AppDuplicationFilters.AsObject,
|
|
4652
4958
|
existingAppId: string,
|
|
4959
|
+
progressList: Array<AppCopyProgress.AsObject>,
|
|
4960
|
+
}
|
|
4961
|
+
}
|
|
4962
|
+
|
|
4963
|
+
export class AppCopyProgress extends jspb.Message {
|
|
4964
|
+
getField(): string;
|
|
4965
|
+
setField(value: string): AppCopyProgress;
|
|
4966
|
+
|
|
4967
|
+
getValue(): number;
|
|
4968
|
+
setValue(value: number): AppCopyProgress;
|
|
4969
|
+
|
|
4970
|
+
serializeBinary(): Uint8Array;
|
|
4971
|
+
toObject(includeInstance?: boolean): AppCopyProgress.AsObject;
|
|
4972
|
+
static toObject(includeInstance: boolean, msg: AppCopyProgress): AppCopyProgress.AsObject;
|
|
4973
|
+
static serializeBinaryToWriter(message: AppCopyProgress, writer: jspb.BinaryWriter): void;
|
|
4974
|
+
static deserializeBinary(bytes: Uint8Array): AppCopyProgress;
|
|
4975
|
+
static deserializeBinaryFromReader(message: AppCopyProgress, reader: jspb.BinaryReader): AppCopyProgress;
|
|
4976
|
+
}
|
|
4977
|
+
|
|
4978
|
+
export namespace AppCopyProgress {
|
|
4979
|
+
export type AsObject = {
|
|
4980
|
+
field: string,
|
|
4981
|
+
value: number,
|
|
4653
4982
|
}
|
|
4654
4983
|
}
|
|
4655
4984
|
|
|
@@ -4825,6 +5154,9 @@ export class Task extends jspb.Message {
|
|
|
4825
5154
|
getUserId(): string;
|
|
4826
5155
|
setUserId(value: string): Task;
|
|
4827
5156
|
|
|
5157
|
+
getLabelOrderId(): string;
|
|
5158
|
+
setLabelOrderId(value: string): Task;
|
|
5159
|
+
|
|
4828
5160
|
serializeBinary(): Uint8Array;
|
|
4829
5161
|
toObject(includeInstance?: boolean): Task.AsObject;
|
|
4830
5162
|
static toObject(includeInstance: boolean, msg: Task): Task.AsObject;
|
|
@@ -4852,6 +5184,7 @@ export namespace Task {
|
|
|
4852
5184
|
visibility?: Visibility.AsObject,
|
|
4853
5185
|
appId: string,
|
|
4854
5186
|
userId: string,
|
|
5187
|
+
labelOrderId: string,
|
|
4855
5188
|
}
|
|
4856
5189
|
|
|
4857
5190
|
export enum TaskType {
|
|
@@ -4899,6 +5232,11 @@ export class TaskWorker extends jspb.Message {
|
|
|
4899
5232
|
clearUserIdsList(): TaskWorker;
|
|
4900
5233
|
addUserIds(value: string, index?: number): TaskWorker;
|
|
4901
5234
|
|
|
5235
|
+
getUsersList(): Array<User>;
|
|
5236
|
+
setUsersList(value: Array<User>): TaskWorker;
|
|
5237
|
+
clearUsersList(): TaskWorker;
|
|
5238
|
+
addUsers(value?: User, index?: number): User;
|
|
5239
|
+
|
|
4902
5240
|
getPartitionedStrategyInfo(): TaskWorkerPartitionedStrategyInfo | undefined;
|
|
4903
5241
|
setPartitionedStrategyInfo(value?: TaskWorkerPartitionedStrategyInfo): TaskWorker;
|
|
4904
5242
|
hasPartitionedStrategyInfo(): boolean;
|
|
@@ -4918,6 +5256,7 @@ export namespace TaskWorker {
|
|
|
4918
5256
|
export type AsObject = {
|
|
4919
5257
|
strategy: TaskWorker.TaskWorkerStrategy,
|
|
4920
5258
|
userIdsList: Array<string>,
|
|
5259
|
+
usersList: Array<User.AsObject>,
|
|
4921
5260
|
partitionedStrategyInfo?: TaskWorkerPartitionedStrategyInfo.AsObject,
|
|
4922
5261
|
}
|
|
4923
5262
|
|
|
@@ -5005,6 +5344,11 @@ export class TaskReview extends jspb.Message {
|
|
|
5005
5344
|
clearUserIdsList(): TaskReview;
|
|
5006
5345
|
addUserIds(value: string, index?: number): TaskReview;
|
|
5007
5346
|
|
|
5347
|
+
getUsersList(): Array<User>;
|
|
5348
|
+
setUsersList(value: Array<User>): TaskReview;
|
|
5349
|
+
clearUsersList(): TaskReview;
|
|
5350
|
+
addUsers(value?: User, index?: number): User;
|
|
5351
|
+
|
|
5008
5352
|
getManualStrategyInfo(): TaskReviewManualStrategyInfo | undefined;
|
|
5009
5353
|
setManualStrategyInfo(value?: TaskReviewManualStrategyInfo): TaskReview;
|
|
5010
5354
|
hasManualStrategyInfo(): boolean;
|
|
@@ -5029,6 +5373,7 @@ export namespace TaskReview {
|
|
|
5029
5373
|
export type AsObject = {
|
|
5030
5374
|
strategy: TaskReview.TaskReviewStrategy,
|
|
5031
5375
|
userIdsList: Array<string>,
|
|
5376
|
+
usersList: Array<User.AsObject>,
|
|
5032
5377
|
manualStrategyInfo?: TaskReviewManualStrategyInfo.AsObject,
|
|
5033
5378
|
consensusStrategyInfo?: TaskReviewConsensusStrategyInfo.AsObject,
|
|
5034
5379
|
}
|
|
@@ -5377,6 +5722,52 @@ export namespace StatValueAggregateQuery {
|
|
|
5377
5722
|
}
|
|
5378
5723
|
}
|
|
5379
5724
|
|
|
5725
|
+
export class DatasetInputsSearchAddJob extends jspb.Message {
|
|
5726
|
+
getId(): string;
|
|
5727
|
+
setId(value: string): DatasetInputsSearchAddJob;
|
|
5728
|
+
|
|
5729
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5730
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): DatasetInputsSearchAddJob;
|
|
5731
|
+
hasCreatedAt(): boolean;
|
|
5732
|
+
clearCreatedAt(): DatasetInputsSearchAddJob;
|
|
5733
|
+
|
|
5734
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5735
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): DatasetInputsSearchAddJob;
|
|
5736
|
+
hasModifiedAt(): boolean;
|
|
5737
|
+
clearModifiedAt(): DatasetInputsSearchAddJob;
|
|
5738
|
+
|
|
5739
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
5740
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): DatasetInputsSearchAddJob;
|
|
5741
|
+
hasStatus(): boolean;
|
|
5742
|
+
clearStatus(): DatasetInputsSearchAddJob;
|
|
5743
|
+
|
|
5744
|
+
getDatasetId(): string;
|
|
5745
|
+
setDatasetId(value: string): DatasetInputsSearchAddJob;
|
|
5746
|
+
|
|
5747
|
+
getSearch(): Search | undefined;
|
|
5748
|
+
setSearch(value?: Search): DatasetInputsSearchAddJob;
|
|
5749
|
+
hasSearch(): boolean;
|
|
5750
|
+
clearSearch(): DatasetInputsSearchAddJob;
|
|
5751
|
+
|
|
5752
|
+
serializeBinary(): Uint8Array;
|
|
5753
|
+
toObject(includeInstance?: boolean): DatasetInputsSearchAddJob.AsObject;
|
|
5754
|
+
static toObject(includeInstance: boolean, msg: DatasetInputsSearchAddJob): DatasetInputsSearchAddJob.AsObject;
|
|
5755
|
+
static serializeBinaryToWriter(message: DatasetInputsSearchAddJob, writer: jspb.BinaryWriter): void;
|
|
5756
|
+
static deserializeBinary(bytes: Uint8Array): DatasetInputsSearchAddJob;
|
|
5757
|
+
static deserializeBinaryFromReader(message: DatasetInputsSearchAddJob, reader: jspb.BinaryReader): DatasetInputsSearchAddJob;
|
|
5758
|
+
}
|
|
5759
|
+
|
|
5760
|
+
export namespace DatasetInputsSearchAddJob {
|
|
5761
|
+
export type AsObject = {
|
|
5762
|
+
id: string,
|
|
5763
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5764
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5765
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
5766
|
+
datasetId: string,
|
|
5767
|
+
search?: Search.AsObject,
|
|
5768
|
+
}
|
|
5769
|
+
}
|
|
5770
|
+
|
|
5380
5771
|
export class Visibility extends jspb.Message {
|
|
5381
5772
|
getGettable(): Visibility.Gettable;
|
|
5382
5773
|
setGettable(value: Visibility.Gettable): Visibility;
|
|
@@ -5432,6 +5823,28 @@ export namespace TrendingMetric {
|
|
|
5432
5823
|
}
|
|
5433
5824
|
}
|
|
5434
5825
|
|
|
5826
|
+
export class FullTag extends jspb.Message {
|
|
5827
|
+
getName(): string;
|
|
5828
|
+
setName(value: string): FullTag;
|
|
5829
|
+
|
|
5830
|
+
getId(): string;
|
|
5831
|
+
setId(value: string): FullTag;
|
|
5832
|
+
|
|
5833
|
+
serializeBinary(): Uint8Array;
|
|
5834
|
+
toObject(includeInstance?: boolean): FullTag.AsObject;
|
|
5835
|
+
static toObject(includeInstance: boolean, msg: FullTag): FullTag.AsObject;
|
|
5836
|
+
static serializeBinaryToWriter(message: FullTag, writer: jspb.BinaryWriter): void;
|
|
5837
|
+
static deserializeBinary(bytes: Uint8Array): FullTag;
|
|
5838
|
+
static deserializeBinaryFromReader(message: FullTag, reader: jspb.BinaryReader): FullTag;
|
|
5839
|
+
}
|
|
5840
|
+
|
|
5841
|
+
export namespace FullTag {
|
|
5842
|
+
export type AsObject = {
|
|
5843
|
+
name: string,
|
|
5844
|
+
id: string,
|
|
5845
|
+
}
|
|
5846
|
+
}
|
|
5847
|
+
|
|
5435
5848
|
export class TimeSegment extends jspb.Message {
|
|
5436
5849
|
getId(): string;
|
|
5437
5850
|
setId(value: string): TimeSegment;
|
|
@@ -5488,6 +5901,700 @@ export namespace TimeInfo {
|
|
|
5488
5901
|
}
|
|
5489
5902
|
}
|
|
5490
5903
|
|
|
5904
|
+
export class Module extends jspb.Message {
|
|
5905
|
+
getId(): string;
|
|
5906
|
+
setId(value: string): Module;
|
|
5907
|
+
|
|
5908
|
+
getDescription(): string;
|
|
5909
|
+
setDescription(value: string): Module;
|
|
5910
|
+
|
|
5911
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5912
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Module;
|
|
5913
|
+
hasCreatedAt(): boolean;
|
|
5914
|
+
clearCreatedAt(): Module;
|
|
5915
|
+
|
|
5916
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5917
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Module;
|
|
5918
|
+
hasModifiedAt(): boolean;
|
|
5919
|
+
clearModifiedAt(): Module;
|
|
5920
|
+
|
|
5921
|
+
getVisibility(): Visibility | undefined;
|
|
5922
|
+
setVisibility(value?: Visibility): Module;
|
|
5923
|
+
hasVisibility(): boolean;
|
|
5924
|
+
clearVisibility(): Module;
|
|
5925
|
+
|
|
5926
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
5927
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Module;
|
|
5928
|
+
hasMetadata(): boolean;
|
|
5929
|
+
clearMetadata(): Module;
|
|
5930
|
+
|
|
5931
|
+
getUserId(): string;
|
|
5932
|
+
setUserId(value: string): Module;
|
|
5933
|
+
|
|
5934
|
+
getAppId(): string;
|
|
5935
|
+
setAppId(value: string): Module;
|
|
5936
|
+
|
|
5937
|
+
serializeBinary(): Uint8Array;
|
|
5938
|
+
toObject(includeInstance?: boolean): Module.AsObject;
|
|
5939
|
+
static toObject(includeInstance: boolean, msg: Module): Module.AsObject;
|
|
5940
|
+
static serializeBinaryToWriter(message: Module, writer: jspb.BinaryWriter): void;
|
|
5941
|
+
static deserializeBinary(bytes: Uint8Array): Module;
|
|
5942
|
+
static deserializeBinaryFromReader(message: Module, reader: jspb.BinaryReader): Module;
|
|
5943
|
+
}
|
|
5944
|
+
|
|
5945
|
+
export namespace Module {
|
|
5946
|
+
export type AsObject = {
|
|
5947
|
+
id: string,
|
|
5948
|
+
description: string,
|
|
5949
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5950
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5951
|
+
visibility?: Visibility.AsObject,
|
|
5952
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
5953
|
+
userId: string,
|
|
5954
|
+
appId: string,
|
|
5955
|
+
}
|
|
5956
|
+
}
|
|
5957
|
+
|
|
5958
|
+
export class ModuleVersion extends jspb.Message {
|
|
5959
|
+
getId(): string;
|
|
5960
|
+
setId(value: string): ModuleVersion;
|
|
5961
|
+
|
|
5962
|
+
getModuleId(): string;
|
|
5963
|
+
setModuleId(value: string): ModuleVersion;
|
|
5964
|
+
|
|
5965
|
+
getAppId(): string;
|
|
5966
|
+
setAppId(value: string): ModuleVersion;
|
|
5967
|
+
|
|
5968
|
+
getUserId(): string;
|
|
5969
|
+
setUserId(value: string): ModuleVersion;
|
|
5970
|
+
|
|
5971
|
+
getDescription(): string;
|
|
5972
|
+
setDescription(value: string): ModuleVersion;
|
|
5973
|
+
|
|
5974
|
+
getNotes(): string;
|
|
5975
|
+
setNotes(value: string): ModuleVersion;
|
|
5976
|
+
|
|
5977
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5978
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): ModuleVersion;
|
|
5979
|
+
hasCreatedAt(): boolean;
|
|
5980
|
+
clearCreatedAt(): ModuleVersion;
|
|
5981
|
+
|
|
5982
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5983
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): ModuleVersion;
|
|
5984
|
+
hasModifiedAt(): boolean;
|
|
5985
|
+
clearModifiedAt(): ModuleVersion;
|
|
5986
|
+
|
|
5987
|
+
getGitCommitUrl(): string;
|
|
5988
|
+
setGitCommitUrl(value: string): ModuleVersion;
|
|
5989
|
+
|
|
5990
|
+
getModuleNav(): ModuleVersion.ModuleNav | undefined;
|
|
5991
|
+
setModuleNav(value?: ModuleVersion.ModuleNav): ModuleVersion;
|
|
5992
|
+
hasModuleNav(): boolean;
|
|
5993
|
+
clearModuleNav(): ModuleVersion;
|
|
5994
|
+
|
|
5995
|
+
getApproved(): boolean;
|
|
5996
|
+
setApproved(value: boolean): ModuleVersion;
|
|
5997
|
+
|
|
5998
|
+
getVisibility(): Visibility | undefined;
|
|
5999
|
+
setVisibility(value?: Visibility): ModuleVersion;
|
|
6000
|
+
hasVisibility(): boolean;
|
|
6001
|
+
clearVisibility(): ModuleVersion;
|
|
6002
|
+
|
|
6003
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
6004
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): ModuleVersion;
|
|
6005
|
+
hasMetadata(): boolean;
|
|
6006
|
+
clearMetadata(): ModuleVersion;
|
|
6007
|
+
|
|
6008
|
+
serializeBinary(): Uint8Array;
|
|
6009
|
+
toObject(includeInstance?: boolean): ModuleVersion.AsObject;
|
|
6010
|
+
static toObject(includeInstance: boolean, msg: ModuleVersion): ModuleVersion.AsObject;
|
|
6011
|
+
static serializeBinaryToWriter(message: ModuleVersion, writer: jspb.BinaryWriter): void;
|
|
6012
|
+
static deserializeBinary(bytes: Uint8Array): ModuleVersion;
|
|
6013
|
+
static deserializeBinaryFromReader(message: ModuleVersion, reader: jspb.BinaryReader): ModuleVersion;
|
|
6014
|
+
}
|
|
6015
|
+
|
|
6016
|
+
export namespace ModuleVersion {
|
|
6017
|
+
export type AsObject = {
|
|
6018
|
+
id: string,
|
|
6019
|
+
moduleId: string,
|
|
6020
|
+
appId: string,
|
|
6021
|
+
userId: string,
|
|
6022
|
+
description: string,
|
|
6023
|
+
notes: string,
|
|
6024
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6025
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6026
|
+
gitCommitUrl: string,
|
|
6027
|
+
moduleNav?: ModuleVersion.ModuleNav.AsObject,
|
|
6028
|
+
approved: boolean,
|
|
6029
|
+
visibility?: Visibility.AsObject,
|
|
6030
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
6031
|
+
}
|
|
6032
|
+
|
|
6033
|
+
export class ModuleSubNav extends jspb.Message {
|
|
6034
|
+
getTitle(): string;
|
|
6035
|
+
setTitle(value: string): ModuleSubNav;
|
|
6036
|
+
|
|
6037
|
+
getQueryKey(): string;
|
|
6038
|
+
setQueryKey(value: string): ModuleSubNav;
|
|
6039
|
+
|
|
6040
|
+
getQueryValue(): string;
|
|
6041
|
+
setQueryValue(value: string): ModuleSubNav;
|
|
6042
|
+
|
|
6043
|
+
serializeBinary(): Uint8Array;
|
|
6044
|
+
toObject(includeInstance?: boolean): ModuleSubNav.AsObject;
|
|
6045
|
+
static toObject(includeInstance: boolean, msg: ModuleSubNav): ModuleSubNav.AsObject;
|
|
6046
|
+
static serializeBinaryToWriter(message: ModuleSubNav, writer: jspb.BinaryWriter): void;
|
|
6047
|
+
static deserializeBinary(bytes: Uint8Array): ModuleSubNav;
|
|
6048
|
+
static deserializeBinaryFromReader(message: ModuleSubNav, reader: jspb.BinaryReader): ModuleSubNav;
|
|
6049
|
+
}
|
|
6050
|
+
|
|
6051
|
+
export namespace ModuleSubNav {
|
|
6052
|
+
export type AsObject = {
|
|
6053
|
+
title: string,
|
|
6054
|
+
queryKey: string,
|
|
6055
|
+
queryValue: string,
|
|
6056
|
+
}
|
|
6057
|
+
}
|
|
6058
|
+
|
|
6059
|
+
|
|
6060
|
+
export class ModuleNav extends jspb.Message {
|
|
6061
|
+
getTitle(): string;
|
|
6062
|
+
setTitle(value: string): ModuleNav;
|
|
6063
|
+
|
|
6064
|
+
getModuleSubNavsList(): Array<ModuleVersion.ModuleSubNav>;
|
|
6065
|
+
setModuleSubNavsList(value: Array<ModuleVersion.ModuleSubNav>): ModuleNav;
|
|
6066
|
+
clearModuleSubNavsList(): ModuleNav;
|
|
6067
|
+
addModuleSubNavs(value?: ModuleVersion.ModuleSubNav, index?: number): ModuleVersion.ModuleSubNav;
|
|
6068
|
+
|
|
6069
|
+
serializeBinary(): Uint8Array;
|
|
6070
|
+
toObject(includeInstance?: boolean): ModuleNav.AsObject;
|
|
6071
|
+
static toObject(includeInstance: boolean, msg: ModuleNav): ModuleNav.AsObject;
|
|
6072
|
+
static serializeBinaryToWriter(message: ModuleNav, writer: jspb.BinaryWriter): void;
|
|
6073
|
+
static deserializeBinary(bytes: Uint8Array): ModuleNav;
|
|
6074
|
+
static deserializeBinaryFromReader(message: ModuleNav, reader: jspb.BinaryReader): ModuleNav;
|
|
6075
|
+
}
|
|
6076
|
+
|
|
6077
|
+
export namespace ModuleNav {
|
|
6078
|
+
export type AsObject = {
|
|
6079
|
+
title: string,
|
|
6080
|
+
moduleSubNavsList: Array<ModuleVersion.ModuleSubNav.AsObject>,
|
|
6081
|
+
}
|
|
6082
|
+
}
|
|
6083
|
+
|
|
6084
|
+
}
|
|
6085
|
+
|
|
6086
|
+
export class InstalledModuleVersion extends jspb.Message {
|
|
6087
|
+
getId(): string;
|
|
6088
|
+
setId(value: string): InstalledModuleVersion;
|
|
6089
|
+
|
|
6090
|
+
getModuleVersion(): ModuleVersion | undefined;
|
|
6091
|
+
setModuleVersion(value?: ModuleVersion): InstalledModuleVersion;
|
|
6092
|
+
hasModuleVersion(): boolean;
|
|
6093
|
+
clearModuleVersion(): InstalledModuleVersion;
|
|
6094
|
+
|
|
6095
|
+
getAppId(): string;
|
|
6096
|
+
setAppId(value: string): InstalledModuleVersion;
|
|
6097
|
+
|
|
6098
|
+
getUserId(): string;
|
|
6099
|
+
setUserId(value: string): InstalledModuleVersion;
|
|
6100
|
+
|
|
6101
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6102
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): InstalledModuleVersion;
|
|
6103
|
+
hasCreatedAt(): boolean;
|
|
6104
|
+
clearCreatedAt(): InstalledModuleVersion;
|
|
6105
|
+
|
|
6106
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6107
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): InstalledModuleVersion;
|
|
6108
|
+
hasModifiedAt(): boolean;
|
|
6109
|
+
clearModifiedAt(): InstalledModuleVersion;
|
|
6110
|
+
|
|
6111
|
+
getDeployUrl(): string;
|
|
6112
|
+
setDeployUrl(value: string): InstalledModuleVersion;
|
|
6113
|
+
|
|
6114
|
+
getVisibility(): Visibility | undefined;
|
|
6115
|
+
setVisibility(value?: Visibility): InstalledModuleVersion;
|
|
6116
|
+
hasVisibility(): boolean;
|
|
6117
|
+
clearVisibility(): InstalledModuleVersion;
|
|
6118
|
+
|
|
6119
|
+
getKeyId(): string;
|
|
6120
|
+
setKeyId(value: string): InstalledModuleVersion;
|
|
6121
|
+
|
|
6122
|
+
serializeBinary(): Uint8Array;
|
|
6123
|
+
toObject(includeInstance?: boolean): InstalledModuleVersion.AsObject;
|
|
6124
|
+
static toObject(includeInstance: boolean, msg: InstalledModuleVersion): InstalledModuleVersion.AsObject;
|
|
6125
|
+
static serializeBinaryToWriter(message: InstalledModuleVersion, writer: jspb.BinaryWriter): void;
|
|
6126
|
+
static deserializeBinary(bytes: Uint8Array): InstalledModuleVersion;
|
|
6127
|
+
static deserializeBinaryFromReader(message: InstalledModuleVersion, reader: jspb.BinaryReader): InstalledModuleVersion;
|
|
6128
|
+
}
|
|
6129
|
+
|
|
6130
|
+
export namespace InstalledModuleVersion {
|
|
6131
|
+
export type AsObject = {
|
|
6132
|
+
id: string,
|
|
6133
|
+
moduleVersion?: ModuleVersion.AsObject,
|
|
6134
|
+
appId: string,
|
|
6135
|
+
userId: string,
|
|
6136
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6137
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6138
|
+
deployUrl: string,
|
|
6139
|
+
visibility?: Visibility.AsObject,
|
|
6140
|
+
keyId: string,
|
|
6141
|
+
}
|
|
6142
|
+
}
|
|
6143
|
+
|
|
6144
|
+
export class BulkOperation extends jspb.Message {
|
|
6145
|
+
getId(): string;
|
|
6146
|
+
setId(value: string): BulkOperation;
|
|
6147
|
+
|
|
6148
|
+
getInputIds(): InputIDs | undefined;
|
|
6149
|
+
setInputIds(value?: InputIDs): BulkOperation;
|
|
6150
|
+
hasInputIds(): boolean;
|
|
6151
|
+
clearInputIds(): BulkOperation;
|
|
6152
|
+
|
|
6153
|
+
getSearch(): Search | undefined;
|
|
6154
|
+
setSearch(value?: Search): BulkOperation;
|
|
6155
|
+
hasSearch(): boolean;
|
|
6156
|
+
clearSearch(): BulkOperation;
|
|
6157
|
+
|
|
6158
|
+
getOperation(): Operation | undefined;
|
|
6159
|
+
setOperation(value?: Operation): BulkOperation;
|
|
6160
|
+
hasOperation(): boolean;
|
|
6161
|
+
clearOperation(): BulkOperation;
|
|
6162
|
+
|
|
6163
|
+
getAppId(): string;
|
|
6164
|
+
setAppId(value: string): BulkOperation;
|
|
6165
|
+
|
|
6166
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
6167
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): BulkOperation;
|
|
6168
|
+
hasStatus(): boolean;
|
|
6169
|
+
clearStatus(): BulkOperation;
|
|
6170
|
+
|
|
6171
|
+
getProgress(): Progress | undefined;
|
|
6172
|
+
setProgress(value?: Progress): BulkOperation;
|
|
6173
|
+
hasProgress(): boolean;
|
|
6174
|
+
clearProgress(): BulkOperation;
|
|
6175
|
+
|
|
6176
|
+
getCreatedBy(): string;
|
|
6177
|
+
setCreatedBy(value: string): BulkOperation;
|
|
6178
|
+
|
|
6179
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6180
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): BulkOperation;
|
|
6181
|
+
hasCreatedAt(): boolean;
|
|
6182
|
+
clearCreatedAt(): BulkOperation;
|
|
6183
|
+
|
|
6184
|
+
getLastModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6185
|
+
setLastModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): BulkOperation;
|
|
6186
|
+
hasLastModifiedAt(): boolean;
|
|
6187
|
+
clearLastModifiedAt(): BulkOperation;
|
|
6188
|
+
|
|
6189
|
+
getInputSourceCase(): BulkOperation.InputSourceCase;
|
|
6190
|
+
|
|
6191
|
+
serializeBinary(): Uint8Array;
|
|
6192
|
+
toObject(includeInstance?: boolean): BulkOperation.AsObject;
|
|
6193
|
+
static toObject(includeInstance: boolean, msg: BulkOperation): BulkOperation.AsObject;
|
|
6194
|
+
static serializeBinaryToWriter(message: BulkOperation, writer: jspb.BinaryWriter): void;
|
|
6195
|
+
static deserializeBinary(bytes: Uint8Array): BulkOperation;
|
|
6196
|
+
static deserializeBinaryFromReader(message: BulkOperation, reader: jspb.BinaryReader): BulkOperation;
|
|
6197
|
+
}
|
|
6198
|
+
|
|
6199
|
+
export namespace BulkOperation {
|
|
6200
|
+
export type AsObject = {
|
|
6201
|
+
id: string,
|
|
6202
|
+
inputIds?: InputIDs.AsObject,
|
|
6203
|
+
search?: Search.AsObject,
|
|
6204
|
+
operation?: Operation.AsObject,
|
|
6205
|
+
appId: string,
|
|
6206
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
6207
|
+
progress?: Progress.AsObject,
|
|
6208
|
+
createdBy: string,
|
|
6209
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6210
|
+
lastModifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6211
|
+
}
|
|
6212
|
+
|
|
6213
|
+
export enum InputSourceCase {
|
|
6214
|
+
INPUT_SOURCE_NOT_SET = 0,
|
|
6215
|
+
INPUT_IDS = 2,
|
|
6216
|
+
SEARCH = 10,
|
|
6217
|
+
}
|
|
6218
|
+
}
|
|
6219
|
+
|
|
6220
|
+
export class InputIDs extends jspb.Message {
|
|
6221
|
+
getInputIdsList(): Array<string>;
|
|
6222
|
+
setInputIdsList(value: Array<string>): InputIDs;
|
|
6223
|
+
clearInputIdsList(): InputIDs;
|
|
6224
|
+
addInputIds(value: string, index?: number): InputIDs;
|
|
6225
|
+
|
|
6226
|
+
serializeBinary(): Uint8Array;
|
|
6227
|
+
toObject(includeInstance?: boolean): InputIDs.AsObject;
|
|
6228
|
+
static toObject(includeInstance: boolean, msg: InputIDs): InputIDs.AsObject;
|
|
6229
|
+
static serializeBinaryToWriter(message: InputIDs, writer: jspb.BinaryWriter): void;
|
|
6230
|
+
static deserializeBinary(bytes: Uint8Array): InputIDs;
|
|
6231
|
+
static deserializeBinaryFromReader(message: InputIDs, reader: jspb.BinaryReader): InputIDs;
|
|
6232
|
+
}
|
|
6233
|
+
|
|
6234
|
+
export namespace InputIDs {
|
|
6235
|
+
export type AsObject = {
|
|
6236
|
+
inputIdsList: Array<string>,
|
|
6237
|
+
}
|
|
6238
|
+
}
|
|
6239
|
+
|
|
6240
|
+
export class Progress extends jspb.Message {
|
|
6241
|
+
getProcessed(): number;
|
|
6242
|
+
setProcessed(value: number): Progress;
|
|
6243
|
+
|
|
6244
|
+
getLastProcessedId(): string;
|
|
6245
|
+
setLastProcessedId(value: string): Progress;
|
|
6246
|
+
|
|
6247
|
+
serializeBinary(): Uint8Array;
|
|
6248
|
+
toObject(includeInstance?: boolean): Progress.AsObject;
|
|
6249
|
+
static toObject(includeInstance: boolean, msg: Progress): Progress.AsObject;
|
|
6250
|
+
static serializeBinaryToWriter(message: Progress, writer: jspb.BinaryWriter): void;
|
|
6251
|
+
static deserializeBinary(bytes: Uint8Array): Progress;
|
|
6252
|
+
static deserializeBinaryFromReader(message: Progress, reader: jspb.BinaryReader): Progress;
|
|
6253
|
+
}
|
|
6254
|
+
|
|
6255
|
+
export namespace Progress {
|
|
6256
|
+
export type AsObject = {
|
|
6257
|
+
processed: number,
|
|
6258
|
+
lastProcessedId: string,
|
|
6259
|
+
}
|
|
6260
|
+
}
|
|
6261
|
+
|
|
6262
|
+
export class Operation extends jspb.Message {
|
|
6263
|
+
getAddConcepts(): AddConcepts | undefined;
|
|
6264
|
+
setAddConcepts(value?: AddConcepts): Operation;
|
|
6265
|
+
hasAddConcepts(): boolean;
|
|
6266
|
+
clearAddConcepts(): Operation;
|
|
6267
|
+
|
|
6268
|
+
getDeleteConcepts(): DeleteConcepts | undefined;
|
|
6269
|
+
setDeleteConcepts(value?: DeleteConcepts): Operation;
|
|
6270
|
+
hasDeleteConcepts(): boolean;
|
|
6271
|
+
clearDeleteConcepts(): Operation;
|
|
6272
|
+
|
|
6273
|
+
getAddMetadata(): AddMetadata | undefined;
|
|
6274
|
+
setAddMetadata(value?: AddMetadata): Operation;
|
|
6275
|
+
hasAddMetadata(): boolean;
|
|
6276
|
+
clearAddMetadata(): Operation;
|
|
6277
|
+
|
|
6278
|
+
getDeleteMetadata(): DeleteMetadata | undefined;
|
|
6279
|
+
setDeleteMetadata(value?: DeleteMetadata): Operation;
|
|
6280
|
+
hasDeleteMetadata(): boolean;
|
|
6281
|
+
clearDeleteMetadata(): Operation;
|
|
6282
|
+
|
|
6283
|
+
getOverwriteGeo(): OverwriteGeo | undefined;
|
|
6284
|
+
setOverwriteGeo(value?: OverwriteGeo): Operation;
|
|
6285
|
+
hasOverwriteGeo(): boolean;
|
|
6286
|
+
clearOverwriteGeo(): Operation;
|
|
6287
|
+
|
|
6288
|
+
getDeleteGeo(): DeleteGeo | undefined;
|
|
6289
|
+
setDeleteGeo(value?: DeleteGeo): Operation;
|
|
6290
|
+
hasDeleteGeo(): boolean;
|
|
6291
|
+
clearDeleteGeo(): Operation;
|
|
6292
|
+
|
|
6293
|
+
getOperationCase(): Operation.OperationCase;
|
|
6294
|
+
|
|
6295
|
+
serializeBinary(): Uint8Array;
|
|
6296
|
+
toObject(includeInstance?: boolean): Operation.AsObject;
|
|
6297
|
+
static toObject(includeInstance: boolean, msg: Operation): Operation.AsObject;
|
|
6298
|
+
static serializeBinaryToWriter(message: Operation, writer: jspb.BinaryWriter): void;
|
|
6299
|
+
static deserializeBinary(bytes: Uint8Array): Operation;
|
|
6300
|
+
static deserializeBinaryFromReader(message: Operation, reader: jspb.BinaryReader): Operation;
|
|
6301
|
+
}
|
|
6302
|
+
|
|
6303
|
+
export namespace Operation {
|
|
6304
|
+
export type AsObject = {
|
|
6305
|
+
addConcepts?: AddConcepts.AsObject,
|
|
6306
|
+
deleteConcepts?: DeleteConcepts.AsObject,
|
|
6307
|
+
addMetadata?: AddMetadata.AsObject,
|
|
6308
|
+
deleteMetadata?: DeleteMetadata.AsObject,
|
|
6309
|
+
overwriteGeo?: OverwriteGeo.AsObject,
|
|
6310
|
+
deleteGeo?: DeleteGeo.AsObject,
|
|
6311
|
+
}
|
|
6312
|
+
|
|
6313
|
+
export enum OperationCase {
|
|
6314
|
+
OPERATION_NOT_SET = 0,
|
|
6315
|
+
ADD_CONCEPTS = 1,
|
|
6316
|
+
DELETE_CONCEPTS = 2,
|
|
6317
|
+
ADD_METADATA = 3,
|
|
6318
|
+
DELETE_METADATA = 4,
|
|
6319
|
+
OVERWRITE_GEO = 5,
|
|
6320
|
+
DELETE_GEO = 6,
|
|
6321
|
+
}
|
|
6322
|
+
}
|
|
6323
|
+
|
|
6324
|
+
export class AddConcepts extends jspb.Message {
|
|
6325
|
+
getConceptsList(): Array<Concept>;
|
|
6326
|
+
setConceptsList(value: Array<Concept>): AddConcepts;
|
|
6327
|
+
clearConceptsList(): AddConcepts;
|
|
6328
|
+
addConcepts(value?: Concept, index?: number): Concept;
|
|
6329
|
+
|
|
6330
|
+
serializeBinary(): Uint8Array;
|
|
6331
|
+
toObject(includeInstance?: boolean): AddConcepts.AsObject;
|
|
6332
|
+
static toObject(includeInstance: boolean, msg: AddConcepts): AddConcepts.AsObject;
|
|
6333
|
+
static serializeBinaryToWriter(message: AddConcepts, writer: jspb.BinaryWriter): void;
|
|
6334
|
+
static deserializeBinary(bytes: Uint8Array): AddConcepts;
|
|
6335
|
+
static deserializeBinaryFromReader(message: AddConcepts, reader: jspb.BinaryReader): AddConcepts;
|
|
6336
|
+
}
|
|
6337
|
+
|
|
6338
|
+
export namespace AddConcepts {
|
|
6339
|
+
export type AsObject = {
|
|
6340
|
+
conceptsList: Array<Concept.AsObject>,
|
|
6341
|
+
}
|
|
6342
|
+
}
|
|
6343
|
+
|
|
6344
|
+
export class DeleteConcepts extends jspb.Message {
|
|
6345
|
+
getConceptsList(): Array<Concept>;
|
|
6346
|
+
setConceptsList(value: Array<Concept>): DeleteConcepts;
|
|
6347
|
+
clearConceptsList(): DeleteConcepts;
|
|
6348
|
+
addConcepts(value?: Concept, index?: number): Concept;
|
|
6349
|
+
|
|
6350
|
+
serializeBinary(): Uint8Array;
|
|
6351
|
+
toObject(includeInstance?: boolean): DeleteConcepts.AsObject;
|
|
6352
|
+
static toObject(includeInstance: boolean, msg: DeleteConcepts): DeleteConcepts.AsObject;
|
|
6353
|
+
static serializeBinaryToWriter(message: DeleteConcepts, writer: jspb.BinaryWriter): void;
|
|
6354
|
+
static deserializeBinary(bytes: Uint8Array): DeleteConcepts;
|
|
6355
|
+
static deserializeBinaryFromReader(message: DeleteConcepts, reader: jspb.BinaryReader): DeleteConcepts;
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6358
|
+
export namespace DeleteConcepts {
|
|
6359
|
+
export type AsObject = {
|
|
6360
|
+
conceptsList: Array<Concept.AsObject>,
|
|
6361
|
+
}
|
|
6362
|
+
}
|
|
6363
|
+
|
|
6364
|
+
export class AddMetadata extends jspb.Message {
|
|
6365
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
6366
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): AddMetadata;
|
|
6367
|
+
hasMetadata(): boolean;
|
|
6368
|
+
clearMetadata(): AddMetadata;
|
|
6369
|
+
|
|
6370
|
+
serializeBinary(): Uint8Array;
|
|
6371
|
+
toObject(includeInstance?: boolean): AddMetadata.AsObject;
|
|
6372
|
+
static toObject(includeInstance: boolean, msg: AddMetadata): AddMetadata.AsObject;
|
|
6373
|
+
static serializeBinaryToWriter(message: AddMetadata, writer: jspb.BinaryWriter): void;
|
|
6374
|
+
static deserializeBinary(bytes: Uint8Array): AddMetadata;
|
|
6375
|
+
static deserializeBinaryFromReader(message: AddMetadata, reader: jspb.BinaryReader): AddMetadata;
|
|
6376
|
+
}
|
|
6377
|
+
|
|
6378
|
+
export namespace AddMetadata {
|
|
6379
|
+
export type AsObject = {
|
|
6380
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
6381
|
+
}
|
|
6382
|
+
}
|
|
6383
|
+
|
|
6384
|
+
export class DeleteMetadata extends jspb.Message {
|
|
6385
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
6386
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): DeleteMetadata;
|
|
6387
|
+
hasMetadata(): boolean;
|
|
6388
|
+
clearMetadata(): DeleteMetadata;
|
|
6389
|
+
|
|
6390
|
+
serializeBinary(): Uint8Array;
|
|
6391
|
+
toObject(includeInstance?: boolean): DeleteMetadata.AsObject;
|
|
6392
|
+
static toObject(includeInstance: boolean, msg: DeleteMetadata): DeleteMetadata.AsObject;
|
|
6393
|
+
static serializeBinaryToWriter(message: DeleteMetadata, writer: jspb.BinaryWriter): void;
|
|
6394
|
+
static deserializeBinary(bytes: Uint8Array): DeleteMetadata;
|
|
6395
|
+
static deserializeBinaryFromReader(message: DeleteMetadata, reader: jspb.BinaryReader): DeleteMetadata;
|
|
6396
|
+
}
|
|
6397
|
+
|
|
6398
|
+
export namespace DeleteMetadata {
|
|
6399
|
+
export type AsObject = {
|
|
6400
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
6401
|
+
}
|
|
6402
|
+
}
|
|
6403
|
+
|
|
6404
|
+
export class OverwriteGeo extends jspb.Message {
|
|
6405
|
+
getGeo(): Geo | undefined;
|
|
6406
|
+
setGeo(value?: Geo): OverwriteGeo;
|
|
6407
|
+
hasGeo(): boolean;
|
|
6408
|
+
clearGeo(): OverwriteGeo;
|
|
6409
|
+
|
|
6410
|
+
serializeBinary(): Uint8Array;
|
|
6411
|
+
toObject(includeInstance?: boolean): OverwriteGeo.AsObject;
|
|
6412
|
+
static toObject(includeInstance: boolean, msg: OverwriteGeo): OverwriteGeo.AsObject;
|
|
6413
|
+
static serializeBinaryToWriter(message: OverwriteGeo, writer: jspb.BinaryWriter): void;
|
|
6414
|
+
static deserializeBinary(bytes: Uint8Array): OverwriteGeo;
|
|
6415
|
+
static deserializeBinaryFromReader(message: OverwriteGeo, reader: jspb.BinaryReader): OverwriteGeo;
|
|
6416
|
+
}
|
|
6417
|
+
|
|
6418
|
+
export namespace OverwriteGeo {
|
|
6419
|
+
export type AsObject = {
|
|
6420
|
+
geo?: Geo.AsObject,
|
|
6421
|
+
}
|
|
6422
|
+
}
|
|
6423
|
+
|
|
6424
|
+
export class DeleteGeo extends jspb.Message {
|
|
6425
|
+
serializeBinary(): Uint8Array;
|
|
6426
|
+
toObject(includeInstance?: boolean): DeleteGeo.AsObject;
|
|
6427
|
+
static toObject(includeInstance: boolean, msg: DeleteGeo): DeleteGeo.AsObject;
|
|
6428
|
+
static serializeBinaryToWriter(message: DeleteGeo, writer: jspb.BinaryWriter): void;
|
|
6429
|
+
static deserializeBinary(bytes: Uint8Array): DeleteGeo;
|
|
6430
|
+
static deserializeBinaryFromReader(message: DeleteGeo, reader: jspb.BinaryReader): DeleteGeo;
|
|
6431
|
+
}
|
|
6432
|
+
|
|
6433
|
+
export namespace DeleteGeo {
|
|
6434
|
+
export type AsObject = {
|
|
6435
|
+
}
|
|
6436
|
+
}
|
|
6437
|
+
|
|
6438
|
+
export class InputsAddJob extends jspb.Message {
|
|
6439
|
+
getId(): string;
|
|
6440
|
+
setId(value: string): InputsAddJob;
|
|
6441
|
+
|
|
6442
|
+
getCloudStorageUrl(): string;
|
|
6443
|
+
setCloudStorageUrl(value: string): InputsAddJob;
|
|
6444
|
+
|
|
6445
|
+
getCallBackUrl(): string;
|
|
6446
|
+
setCallBackUrl(value: string): InputsAddJob;
|
|
6447
|
+
|
|
6448
|
+
getAppPat(): string;
|
|
6449
|
+
setAppPat(value: string): InputsAddJob;
|
|
6450
|
+
|
|
6451
|
+
getProgress(): InputsAddJobProgress | undefined;
|
|
6452
|
+
setProgress(value?: InputsAddJobProgress): InputsAddJob;
|
|
6453
|
+
hasProgress(): boolean;
|
|
6454
|
+
clearProgress(): InputsAddJob;
|
|
6455
|
+
|
|
6456
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6457
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): InputsAddJob;
|
|
6458
|
+
hasCreatedAt(): boolean;
|
|
6459
|
+
clearCreatedAt(): InputsAddJob;
|
|
6460
|
+
|
|
6461
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6462
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): InputsAddJob;
|
|
6463
|
+
hasModifiedAt(): boolean;
|
|
6464
|
+
clearModifiedAt(): InputsAddJob;
|
|
6465
|
+
|
|
6466
|
+
serializeBinary(): Uint8Array;
|
|
6467
|
+
toObject(includeInstance?: boolean): InputsAddJob.AsObject;
|
|
6468
|
+
static toObject(includeInstance: boolean, msg: InputsAddJob): InputsAddJob.AsObject;
|
|
6469
|
+
static serializeBinaryToWriter(message: InputsAddJob, writer: jspb.BinaryWriter): void;
|
|
6470
|
+
static deserializeBinary(bytes: Uint8Array): InputsAddJob;
|
|
6471
|
+
static deserializeBinaryFromReader(message: InputsAddJob, reader: jspb.BinaryReader): InputsAddJob;
|
|
6472
|
+
}
|
|
6473
|
+
|
|
6474
|
+
export namespace InputsAddJob {
|
|
6475
|
+
export type AsObject = {
|
|
6476
|
+
id: string,
|
|
6477
|
+
cloudStorageUrl: string,
|
|
6478
|
+
callBackUrl: string,
|
|
6479
|
+
appPat: string,
|
|
6480
|
+
progress?: InputsAddJobProgress.AsObject,
|
|
6481
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6482
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6483
|
+
}
|
|
6484
|
+
}
|
|
6485
|
+
|
|
6486
|
+
export class InputsAddJobProgress extends jspb.Message {
|
|
6487
|
+
getPendingCount(): number;
|
|
6488
|
+
setPendingCount(value: number): InputsAddJobProgress;
|
|
6489
|
+
|
|
6490
|
+
getInProgressCount(): number;
|
|
6491
|
+
setInProgressCount(value: number): InputsAddJobProgress;
|
|
6492
|
+
|
|
6493
|
+
getSuccessCount(): number;
|
|
6494
|
+
setSuccessCount(value: number): InputsAddJobProgress;
|
|
6495
|
+
|
|
6496
|
+
getFailedCount(): number;
|
|
6497
|
+
setFailedCount(value: number): InputsAddJobProgress;
|
|
6498
|
+
|
|
6499
|
+
serializeBinary(): Uint8Array;
|
|
6500
|
+
toObject(includeInstance?: boolean): InputsAddJobProgress.AsObject;
|
|
6501
|
+
static toObject(includeInstance: boolean, msg: InputsAddJobProgress): InputsAddJobProgress.AsObject;
|
|
6502
|
+
static serializeBinaryToWriter(message: InputsAddJobProgress, writer: jspb.BinaryWriter): void;
|
|
6503
|
+
static deserializeBinary(bytes: Uint8Array): InputsAddJobProgress;
|
|
6504
|
+
static deserializeBinaryFromReader(message: InputsAddJobProgress, reader: jspb.BinaryReader): InputsAddJobProgress;
|
|
6505
|
+
}
|
|
6506
|
+
|
|
6507
|
+
export namespace InputsAddJobProgress {
|
|
6508
|
+
export type AsObject = {
|
|
6509
|
+
pendingCount: number,
|
|
6510
|
+
inProgressCount: number,
|
|
6511
|
+
successCount: number,
|
|
6512
|
+
failedCount: number,
|
|
6513
|
+
}
|
|
6514
|
+
}
|
|
6515
|
+
|
|
6516
|
+
export class Upload extends jspb.Message {
|
|
6517
|
+
getId(): string;
|
|
6518
|
+
setId(value: string): Upload;
|
|
6519
|
+
|
|
6520
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6521
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Upload;
|
|
6522
|
+
hasCreatedAt(): boolean;
|
|
6523
|
+
clearCreatedAt(): Upload;
|
|
6524
|
+
|
|
6525
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6526
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Upload;
|
|
6527
|
+
hasModifiedAt(): boolean;
|
|
6528
|
+
clearModifiedAt(): Upload;
|
|
6529
|
+
|
|
6530
|
+
getExpiresAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
6531
|
+
setExpiresAt(value?: google_protobuf_timestamp_pb.Timestamp): Upload;
|
|
6532
|
+
hasExpiresAt(): boolean;
|
|
6533
|
+
clearExpiresAt(): Upload;
|
|
6534
|
+
|
|
6535
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
6536
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): Upload;
|
|
6537
|
+
hasStatus(): boolean;
|
|
6538
|
+
clearStatus(): Upload;
|
|
6539
|
+
|
|
6540
|
+
getContentName(): string;
|
|
6541
|
+
setContentName(value: string): Upload;
|
|
6542
|
+
|
|
6543
|
+
getContentLength(): number;
|
|
6544
|
+
setContentLength(value: number): Upload;
|
|
6545
|
+
|
|
6546
|
+
getContentUrl(): string;
|
|
6547
|
+
setContentUrl(value: string): Upload;
|
|
6548
|
+
|
|
6549
|
+
serializeBinary(): Uint8Array;
|
|
6550
|
+
toObject(includeInstance?: boolean): Upload.AsObject;
|
|
6551
|
+
static toObject(includeInstance: boolean, msg: Upload): Upload.AsObject;
|
|
6552
|
+
static serializeBinaryToWriter(message: Upload, writer: jspb.BinaryWriter): void;
|
|
6553
|
+
static deserializeBinary(bytes: Uint8Array): Upload;
|
|
6554
|
+
static deserializeBinaryFromReader(message: Upload, reader: jspb.BinaryReader): Upload;
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
export namespace Upload {
|
|
6558
|
+
export type AsObject = {
|
|
6559
|
+
id: string,
|
|
6560
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6561
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6562
|
+
expiresAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
6563
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
6564
|
+
contentName: string,
|
|
6565
|
+
contentLength: number,
|
|
6566
|
+
contentUrl: string,
|
|
6567
|
+
}
|
|
6568
|
+
}
|
|
6569
|
+
|
|
6570
|
+
export class UploadContentPart extends jspb.Message {
|
|
6571
|
+
getRangeStart(): number;
|
|
6572
|
+
setRangeStart(value: number): UploadContentPart;
|
|
6573
|
+
|
|
6574
|
+
getPartNumber(): number;
|
|
6575
|
+
setPartNumber(value: number): UploadContentPart;
|
|
6576
|
+
|
|
6577
|
+
getData(): Uint8Array | string;
|
|
6578
|
+
getData_asU8(): Uint8Array;
|
|
6579
|
+
getData_asB64(): string;
|
|
6580
|
+
setData(value: Uint8Array | string): UploadContentPart;
|
|
6581
|
+
|
|
6582
|
+
serializeBinary(): Uint8Array;
|
|
6583
|
+
toObject(includeInstance?: boolean): UploadContentPart.AsObject;
|
|
6584
|
+
static toObject(includeInstance: boolean, msg: UploadContentPart): UploadContentPart.AsObject;
|
|
6585
|
+
static serializeBinaryToWriter(message: UploadContentPart, writer: jspb.BinaryWriter): void;
|
|
6586
|
+
static deserializeBinary(bytes: Uint8Array): UploadContentPart;
|
|
6587
|
+
static deserializeBinaryFromReader(message: UploadContentPart, reader: jspb.BinaryReader): UploadContentPart;
|
|
6588
|
+
}
|
|
6589
|
+
|
|
6590
|
+
export namespace UploadContentPart {
|
|
6591
|
+
export type AsObject = {
|
|
6592
|
+
rangeStart: number,
|
|
6593
|
+
partNumber: number,
|
|
6594
|
+
data: Uint8Array | string,
|
|
6595
|
+
}
|
|
6596
|
+
}
|
|
6597
|
+
|
|
5491
6598
|
export enum DatasetVersionMetricsGroupType {
|
|
5492
6599
|
DATASET_VERSION_METRICS_GROUP_TYPE_NOT_SET = 0,
|
|
5493
6600
|
INPUT_TYPE = 2,
|
|
@@ -5500,6 +6607,12 @@ export enum DatasetVersionMetricsGroupType {
|
|
|
5500
6607
|
PIXELS_COUNT = 30,
|
|
5501
6608
|
ASPECT_RATIO = 31,
|
|
5502
6609
|
}
|
|
6610
|
+
export enum DatasetVersionExportFormat {
|
|
6611
|
+
DATASET_VERSION_EXPORT_FORMAT_NOT_SET = 0,
|
|
6612
|
+
CLARIFAI_DATA_PROTOBUF = 1,
|
|
6613
|
+
CLARIFAI_DATA_JSON = 3,
|
|
6614
|
+
COCO = 2,
|
|
6615
|
+
}
|
|
5503
6616
|
export enum ExpirationAction {
|
|
5504
6617
|
EXPIRATION_ACTION_NOT_SET = 0,
|
|
5505
6618
|
DELAY = 1,
|
|
@@ -5511,6 +6624,14 @@ export enum LicenseScope {
|
|
|
5511
6624
|
TRAIN = 2,
|
|
5512
6625
|
SEARCH = 3,
|
|
5513
6626
|
}
|
|
6627
|
+
export enum DataType {
|
|
6628
|
+
UNDEFINED = 0,
|
|
6629
|
+
STRING = 1,
|
|
6630
|
+
UINT8 = 2,
|
|
6631
|
+
INT32 = 3,
|
|
6632
|
+
INT64 = 4,
|
|
6633
|
+
FP32 = 5,
|
|
6634
|
+
}
|
|
5514
6635
|
export enum ValueComparator {
|
|
5515
6636
|
CONCEPT_THRESHOLD_NOT_SET = 0,
|
|
5516
6637
|
GREATER_THAN = 1,
|