clarifai-web-grpc 9.6.1 → 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 +25 -17
- package/README.md +1 -1
- package/VERSION +1 -1
- package/dist/cjs/google/api/annotations_pb.d.ts +1 -0
- package/dist/cjs/google/api/annotations_pb.js +32 -0
- package/dist/cjs/google/api/http_pb.d.ts +1 -0
- package/dist/cjs/google/api/http_pb.js +813 -0
- package/dist/cjs/index.d.ts +7 -0
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/resources_pb.js +51179 -0
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.d.ts +5 -0
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +9103 -0
- package/dist/cjs/proto/clarifai/api/service_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +67405 -0
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +376 -0
- package/dist/cjs/proto/clarifai/api/status/status_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/status/status_pb.js +717 -0
- package/dist/cjs/proto/clarifai/api/utils/extensions_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/utils/extensions_pb.js +60 -0
- package/dist/cjs/proto/clarifai/api/utils/matrix_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/utils/matrix_pb.js +197 -0
- package/dist/cjs/proto/clarifai/api/utils/test_proto_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/api/utils/test_proto_pb.js +529 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +332 -0
- package/dist/cjs/proto/clarifai/auth/types/types_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/auth/types/types_pb.js +34 -0
- package/dist/cjs/proto/clarifai/auth/util/extension_pb.d.ts +1 -0
- package/dist/cjs/proto/clarifai/auth/util/extension_pb.js +88 -0
- package/dist/cjs/resources.d.ts +1 -0
- package/dist/cjs/resources.js +13 -0
- package/dist/cjs/service.d.ts +1 -0
- package/dist/cjs/service.js +13 -0
- package/dist/esm/google/api/annotations_pb.d.ts +1 -0
- package/dist/esm/google/api/annotations_pb.js +32 -0
- package/dist/esm/google/api/http_pb.d.ts +1 -0
- package/dist/esm/google/api/http_pb.js +813 -0
- package/dist/esm/index.d.ts +7 -0
- package/dist/esm/index.js +10 -0
- package/dist/esm/proto/clarifai/api/resources_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +51179 -0
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.d.ts +5 -0
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +9103 -0
- package/dist/esm/proto/clarifai/api/service_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +67405 -0
- package/dist/esm/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +376 -0
- package/dist/esm/proto/clarifai/api/status/status_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/status/status_pb.js +717 -0
- package/dist/esm/proto/clarifai/api/utils/extensions_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/utils/extensions_pb.js +60 -0
- package/dist/esm/proto/clarifai/api/utils/matrix_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/utils/matrix_pb.js +197 -0
- package/dist/esm/proto/clarifai/api/utils/test_proto_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/utils/test_proto_pb.js +529 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +332 -0
- package/dist/esm/proto/clarifai/auth/types/types_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/auth/types/types_pb.js +34 -0
- package/dist/esm/proto/clarifai/auth/util/extension_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/auth/util/extension_pb.js +88 -0
- package/dist/esm/resources.d.ts +1 -0
- package/dist/esm/resources.js +1 -0
- package/dist/esm/service.d.ts +1 -0
- package/dist/esm/service.js +1 -0
- package/index.ts +2 -1
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +352 -27
- package/proto/clarifai/api/resources_pb.js +2840 -232
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +96 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +488 -0
- package/proto/clarifai/api/service_pb.d.ts +742 -46
- package/proto/clarifai/api/service_pb.js +12437 -6437
- package/proto/clarifai/api/status/status_code_pb.d.ts +7 -1
- package/proto/clarifai/api/status/status_code_pb.js +7 -1
- package/proto/clarifai/auth/scope/scope_pb.d.ts +5 -0
- package/proto/clarifai/auth/scope/scope_pb.js +6 -1
|
@@ -65,6 +65,9 @@ export class Annotation extends jspb.Message {
|
|
|
65
65
|
getTaskId(): string;
|
|
66
66
|
setTaskId(value: string): Annotation;
|
|
67
67
|
|
|
68
|
+
getWorkflowVersionId(): string;
|
|
69
|
+
setWorkflowVersionId(value: string): Annotation;
|
|
70
|
+
|
|
68
71
|
serializeBinary(): Uint8Array;
|
|
69
72
|
toObject(includeInstance?: boolean): Annotation.AsObject;
|
|
70
73
|
static toObject(includeInstance: boolean, msg: Annotation): Annotation.AsObject;
|
|
@@ -89,6 +92,48 @@ export namespace Annotation {
|
|
|
89
92
|
inputLevel: boolean,
|
|
90
93
|
consensusInfo?: google_protobuf_struct_pb.Struct.AsObject,
|
|
91
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,
|
|
92
137
|
}
|
|
93
138
|
}
|
|
94
139
|
|
|
@@ -159,6 +204,16 @@ export class App extends jspb.Message {
|
|
|
159
204
|
hasImage(): boolean;
|
|
160
205
|
clearImage(): App;
|
|
161
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
|
+
|
|
162
217
|
serializeBinary(): Uint8Array;
|
|
163
218
|
toObject(includeInstance?: boolean): App.AsObject;
|
|
164
219
|
static toObject(includeInstance: boolean, msg: App): App.AsObject;
|
|
@@ -187,6 +242,26 @@ export namespace App {
|
|
|
187
242
|
starCount: number,
|
|
188
243
|
notes: string,
|
|
189
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,
|
|
190
265
|
}
|
|
191
266
|
}
|
|
192
267
|
|
|
@@ -592,6 +667,11 @@ export class Concept extends jspb.Message {
|
|
|
592
667
|
hasKeypointInfo(): boolean;
|
|
593
668
|
clearKeypointInfo(): Concept;
|
|
594
669
|
|
|
670
|
+
getExtraInfo(): ConceptExtraInfo | undefined;
|
|
671
|
+
setExtraInfo(value?: ConceptExtraInfo): Concept;
|
|
672
|
+
hasExtraInfo(): boolean;
|
|
673
|
+
clearExtraInfo(): Concept;
|
|
674
|
+
|
|
595
675
|
serializeBinary(): Uint8Array;
|
|
596
676
|
toObject(includeInstance?: boolean): Concept.AsObject;
|
|
597
677
|
static toObject(includeInstance: boolean, msg: Concept): Concept.AsObject;
|
|
@@ -613,6 +693,7 @@ export namespace Concept {
|
|
|
613
693
|
visibility?: Visibility.AsObject,
|
|
614
694
|
userId: string,
|
|
615
695
|
keypointInfo?: KeypointInfo.AsObject,
|
|
696
|
+
extraInfo?: ConceptExtraInfo.AsObject,
|
|
616
697
|
}
|
|
617
698
|
}
|
|
618
699
|
|
|
@@ -664,6 +745,24 @@ export namespace KeypointEdge {
|
|
|
664
745
|
}
|
|
665
746
|
}
|
|
666
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
|
+
|
|
667
766
|
export class ConceptCount extends jspb.Message {
|
|
668
767
|
getId(): string;
|
|
669
768
|
setId(value: string): ConceptCount;
|
|
@@ -1701,6 +1800,11 @@ export class Dataset extends jspb.Message {
|
|
|
1701
1800
|
hasDefaultAnnotationFilter(): boolean;
|
|
1702
1801
|
clearDefaultAnnotationFilter(): Dataset;
|
|
1703
1802
|
|
|
1803
|
+
getDefaultProcessingInfo(): DatasetVersionProcessingInfo | undefined;
|
|
1804
|
+
setDefaultProcessingInfo(value?: DatasetVersionProcessingInfo): Dataset;
|
|
1805
|
+
hasDefaultProcessingInfo(): boolean;
|
|
1806
|
+
clearDefaultProcessingInfo(): Dataset;
|
|
1807
|
+
|
|
1704
1808
|
getNotes(): string;
|
|
1705
1809
|
setNotes(value: string): Dataset;
|
|
1706
1810
|
|
|
@@ -1715,6 +1819,16 @@ export class Dataset extends jspb.Message {
|
|
|
1715
1819
|
getStarCount(): number;
|
|
1716
1820
|
setStarCount(value: number): Dataset;
|
|
1717
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
|
+
|
|
1718
1832
|
serializeBinary(): Uint8Array;
|
|
1719
1833
|
toObject(includeInstance?: boolean): Dataset.AsObject;
|
|
1720
1834
|
static toObject(includeInstance: boolean, msg: Dataset): Dataset.AsObject;
|
|
@@ -1734,10 +1848,13 @@ export namespace Dataset {
|
|
|
1734
1848
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1735
1849
|
visibility?: Visibility.AsObject,
|
|
1736
1850
|
defaultAnnotationFilter?: AnnotationFilter.AsObject,
|
|
1851
|
+
defaultProcessingInfo?: DatasetVersionProcessingInfo.AsObject,
|
|
1737
1852
|
notes: string,
|
|
1738
1853
|
version?: DatasetVersion.AsObject,
|
|
1739
1854
|
isStarred: boolean,
|
|
1740
1855
|
starCount: number,
|
|
1856
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
1857
|
+
image?: Image.AsObject,
|
|
1741
1858
|
}
|
|
1742
1859
|
}
|
|
1743
1860
|
|
|
@@ -1761,10 +1878,10 @@ export class AnnotationFilter extends jspb.Message {
|
|
|
1761
1878
|
getAppId(): string;
|
|
1762
1879
|
setAppId(value: string): AnnotationFilter;
|
|
1763
1880
|
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1881
|
+
getSearch(): Search | undefined;
|
|
1882
|
+
setSearch(value?: Search): AnnotationFilter;
|
|
1883
|
+
hasSearch(): boolean;
|
|
1884
|
+
clearSearch(): AnnotationFilter;
|
|
1768
1885
|
|
|
1769
1886
|
serializeBinary(): Uint8Array;
|
|
1770
1887
|
toObject(includeInstance?: boolean): AnnotationFilter.AsObject;
|
|
@@ -1781,7 +1898,7 @@ export namespace AnnotationFilter {
|
|
|
1781
1898
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1782
1899
|
userId: string,
|
|
1783
1900
|
appId: string,
|
|
1784
|
-
|
|
1901
|
+
search?: Search.AsObject,
|
|
1785
1902
|
}
|
|
1786
1903
|
}
|
|
1787
1904
|
|
|
@@ -2347,16 +2464,6 @@ export class Model extends jspb.Message {
|
|
|
2347
2464
|
getUserId(): string;
|
|
2348
2465
|
setUserId(value: string): Model;
|
|
2349
2466
|
|
|
2350
|
-
getInputInfo(): InputInfo | undefined;
|
|
2351
|
-
setInputInfo(value?: InputInfo): Model;
|
|
2352
|
-
hasInputInfo(): boolean;
|
|
2353
|
-
clearInputInfo(): Model;
|
|
2354
|
-
|
|
2355
|
-
getTrainInfo(): TrainInfo | undefined;
|
|
2356
|
-
setTrainInfo(value?: TrainInfo): Model;
|
|
2357
|
-
hasTrainInfo(): boolean;
|
|
2358
|
-
clearTrainInfo(): Model;
|
|
2359
|
-
|
|
2360
2467
|
getDefaultEvalInfo(): EvalInfo | undefined;
|
|
2361
2468
|
setDefaultEvalInfo(value?: EvalInfo): Model;
|
|
2362
2469
|
hasDefaultEvalInfo(): boolean;
|
|
@@ -2420,16 +2527,21 @@ export class Model extends jspb.Message {
|
|
|
2420
2527
|
getStarCount(): number;
|
|
2421
2528
|
setStarCount(value: number): Model;
|
|
2422
2529
|
|
|
2423
|
-
getImportInfo(): ImportInfo | undefined;
|
|
2424
|
-
setImportInfo(value?: ImportInfo): Model;
|
|
2425
|
-
hasImportInfo(): boolean;
|
|
2426
|
-
clearImportInfo(): Model;
|
|
2427
|
-
|
|
2428
2530
|
getWorkflowRecommended(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
2429
2531
|
setWorkflowRecommended(value?: google_protobuf_wrappers_pb.BoolValue): Model;
|
|
2430
2532
|
hasWorkflowRecommended(): boolean;
|
|
2431
2533
|
clearWorkflowRecommended(): Model;
|
|
2432
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
|
+
|
|
2433
2545
|
serializeBinary(): Uint8Array;
|
|
2434
2546
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
2435
2547
|
static toObject(includeInstance: boolean, msg: Model): Model.AsObject;
|
|
@@ -2449,8 +2561,6 @@ export namespace Model {
|
|
|
2449
2561
|
modelVersion?: ModelVersion.AsObject,
|
|
2450
2562
|
displayName: string,
|
|
2451
2563
|
userId: string,
|
|
2452
|
-
inputInfo?: InputInfo.AsObject,
|
|
2453
|
-
trainInfo?: TrainInfo.AsObject,
|
|
2454
2564
|
defaultEvalInfo?: EvalInfo.AsObject,
|
|
2455
2565
|
modelTypeId: string,
|
|
2456
2566
|
task: string,
|
|
@@ -2466,8 +2576,9 @@ export namespace Model {
|
|
|
2466
2576
|
checkConsentsList: Array<string>,
|
|
2467
2577
|
isStarred: boolean,
|
|
2468
2578
|
starCount: number,
|
|
2469
|
-
importInfo?: ImportInfo.AsObject,
|
|
2470
2579
|
workflowRecommended?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
2580
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
2581
|
+
image?: Image.AsObject,
|
|
2471
2582
|
}
|
|
2472
2583
|
}
|
|
2473
2584
|
|
|
@@ -2571,6 +2682,11 @@ export class OutputInfo extends jspb.Message {
|
|
|
2571
2682
|
hasParams(): boolean;
|
|
2572
2683
|
clearParams(): OutputInfo;
|
|
2573
2684
|
|
|
2685
|
+
getParamsSpecsList(): Array<ModelTypeField>;
|
|
2686
|
+
setParamsSpecsList(value: Array<ModelTypeField>): OutputInfo;
|
|
2687
|
+
clearParamsSpecsList(): OutputInfo;
|
|
2688
|
+
addParamsSpecs(value?: ModelTypeField, index?: number): ModelTypeField;
|
|
2689
|
+
|
|
2574
2690
|
serializeBinary(): Uint8Array;
|
|
2575
2691
|
toObject(includeInstance?: boolean): OutputInfo.AsObject;
|
|
2576
2692
|
static toObject(includeInstance: boolean, msg: OutputInfo): OutputInfo.AsObject;
|
|
@@ -2586,6 +2702,7 @@ export namespace OutputInfo {
|
|
|
2586
2702
|
message: string,
|
|
2587
2703
|
fieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2588
2704
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2705
|
+
paramsSpecsList: Array<ModelTypeField.AsObject>,
|
|
2589
2706
|
}
|
|
2590
2707
|
}
|
|
2591
2708
|
|
|
@@ -2600,6 +2717,11 @@ export class InputInfo extends jspb.Message {
|
|
|
2600
2717
|
hasParams(): boolean;
|
|
2601
2718
|
clearParams(): InputInfo;
|
|
2602
2719
|
|
|
2720
|
+
getBaseEmbedModel(): Model | undefined;
|
|
2721
|
+
setBaseEmbedModel(value?: Model): InputInfo;
|
|
2722
|
+
hasBaseEmbedModel(): boolean;
|
|
2723
|
+
clearBaseEmbedModel(): InputInfo;
|
|
2724
|
+
|
|
2603
2725
|
serializeBinary(): Uint8Array;
|
|
2604
2726
|
toObject(includeInstance?: boolean): InputInfo.AsObject;
|
|
2605
2727
|
static toObject(includeInstance: boolean, msg: InputInfo): InputInfo.AsObject;
|
|
@@ -2612,6 +2734,7 @@ export namespace InputInfo {
|
|
|
2612
2734
|
export type AsObject = {
|
|
2613
2735
|
fieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2614
2736
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2737
|
+
baseEmbedModel?: Model.AsObject,
|
|
2615
2738
|
}
|
|
2616
2739
|
}
|
|
2617
2740
|
|
|
@@ -2621,6 +2744,11 @@ export class TrainInfo extends jspb.Message {
|
|
|
2621
2744
|
hasParams(): boolean;
|
|
2622
2745
|
clearParams(): TrainInfo;
|
|
2623
2746
|
|
|
2747
|
+
getDataset(): Dataset | undefined;
|
|
2748
|
+
setDataset(value?: Dataset): TrainInfo;
|
|
2749
|
+
hasDataset(): boolean;
|
|
2750
|
+
clearDataset(): TrainInfo;
|
|
2751
|
+
|
|
2624
2752
|
serializeBinary(): Uint8Array;
|
|
2625
2753
|
toObject(includeInstance?: boolean): TrainInfo.AsObject;
|
|
2626
2754
|
static toObject(includeInstance: boolean, msg: TrainInfo): TrainInfo.AsObject;
|
|
@@ -2632,6 +2760,7 @@ export class TrainInfo extends jspb.Message {
|
|
|
2632
2760
|
export namespace TrainInfo {
|
|
2633
2761
|
export type AsObject = {
|
|
2634
2762
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2763
|
+
dataset?: Dataset.AsObject,
|
|
2635
2764
|
}
|
|
2636
2765
|
}
|
|
2637
2766
|
|
|
@@ -2984,6 +3113,10 @@ export namespace ModelTypeField {
|
|
|
2984
3113
|
PYTHON_CODE = 15,
|
|
2985
3114
|
DATASET_ID = 16,
|
|
2986
3115
|
DATASET_VERSION_ID = 17,
|
|
3116
|
+
ARRAY_OF_MODEL_CONCEPTS = 18,
|
|
3117
|
+
DATASET = 19,
|
|
3118
|
+
DATASET_VERSION = 20,
|
|
3119
|
+
ENCRYPTED_STRING = 21,
|
|
2987
3120
|
}
|
|
2988
3121
|
}
|
|
2989
3122
|
|
|
@@ -3300,6 +3433,11 @@ export class LabelCount extends jspb.Message {
|
|
|
3300
3433
|
getCount(): number;
|
|
3301
3434
|
setCount(value: number): LabelCount;
|
|
3302
3435
|
|
|
3436
|
+
getConcept(): Concept | undefined;
|
|
3437
|
+
setConcept(value?: Concept): LabelCount;
|
|
3438
|
+
hasConcept(): boolean;
|
|
3439
|
+
clearConcept(): LabelCount;
|
|
3440
|
+
|
|
3303
3441
|
serializeBinary(): Uint8Array;
|
|
3304
3442
|
toObject(includeInstance?: boolean): LabelCount.AsObject;
|
|
3305
3443
|
static toObject(includeInstance: boolean, msg: LabelCount): LabelCount.AsObject;
|
|
@@ -3312,6 +3450,7 @@ export namespace LabelCount {
|
|
|
3312
3450
|
export type AsObject = {
|
|
3313
3451
|
conceptName: string,
|
|
3314
3452
|
count: number,
|
|
3453
|
+
concept?: Concept.AsObject,
|
|
3315
3454
|
}
|
|
3316
3455
|
}
|
|
3317
3456
|
|
|
@@ -3397,6 +3536,16 @@ export class ConfusionMatrixEntry extends jspb.Message {
|
|
|
3397
3536
|
getValue(): number;
|
|
3398
3537
|
setValue(value: number): ConfusionMatrixEntry;
|
|
3399
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
|
+
|
|
3400
3549
|
serializeBinary(): Uint8Array;
|
|
3401
3550
|
toObject(includeInstance?: boolean): ConfusionMatrixEntry.AsObject;
|
|
3402
3551
|
static toObject(includeInstance: boolean, msg: ConfusionMatrixEntry): ConfusionMatrixEntry.AsObject;
|
|
@@ -3410,6 +3559,8 @@ export namespace ConfusionMatrixEntry {
|
|
|
3410
3559
|
predicted: string,
|
|
3411
3560
|
actual: string,
|
|
3412
3561
|
value: number,
|
|
3562
|
+
predictedConcept?: Concept.AsObject,
|
|
3563
|
+
actualConcept?: Concept.AsObject,
|
|
3413
3564
|
}
|
|
3414
3565
|
}
|
|
3415
3566
|
|
|
@@ -3836,6 +3987,11 @@ export class EvalMetrics extends jspb.Message {
|
|
|
3836
3987
|
hasEvalInfo(): boolean;
|
|
3837
3988
|
clearEvalInfo(): EvalMetrics;
|
|
3838
3989
|
|
|
3990
|
+
getExtendedMetrics(): ExtendedMetrics | undefined;
|
|
3991
|
+
setExtendedMetrics(value?: ExtendedMetrics): EvalMetrics;
|
|
3992
|
+
hasExtendedMetrics(): boolean;
|
|
3993
|
+
clearExtendedMetrics(): EvalMetrics;
|
|
3994
|
+
|
|
3839
3995
|
serializeBinary(): Uint8Array;
|
|
3840
3996
|
toObject(includeInstance?: boolean): EvalMetrics.AsObject;
|
|
3841
3997
|
static toObject(includeInstance: boolean, msg: EvalMetrics): EvalMetrics.AsObject;
|
|
@@ -3862,6 +4018,27 @@ export namespace EvalMetrics {
|
|
|
3862
4018
|
metricsByClassList: Array<BinaryMetrics.AsObject>,
|
|
3863
4019
|
trackerMetricsList: Array<TrackerMetrics.AsObject>,
|
|
3864
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,
|
|
3865
4042
|
}
|
|
3866
4043
|
}
|
|
3867
4044
|
|
|
@@ -4429,6 +4606,9 @@ export class User extends jspb.Message {
|
|
|
4429
4606
|
getJobRole(): string;
|
|
4430
4607
|
setJobRole(value: string): User;
|
|
4431
4608
|
|
|
4609
|
+
getIntention(): string;
|
|
4610
|
+
setIntention(value: string): User;
|
|
4611
|
+
|
|
4432
4612
|
getBillType(): string;
|
|
4433
4613
|
setBillType(value: string): User;
|
|
4434
4614
|
|
|
@@ -4506,6 +4686,7 @@ export namespace User {
|
|
|
4506
4686
|
companyName: string,
|
|
4507
4687
|
jobTitle: string,
|
|
4508
4688
|
jobRole: string,
|
|
4689
|
+
intention: string,
|
|
4509
4690
|
billType: string,
|
|
4510
4691
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4511
4692
|
dateGdprConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
@@ -4731,6 +4912,11 @@ export class Video extends jspb.Message {
|
|
|
4731
4912
|
hasHosted(): boolean;
|
|
4732
4913
|
clearHosted(): Video;
|
|
4733
4914
|
|
|
4915
|
+
getHostedThumbnail(): HostedURL | undefined;
|
|
4916
|
+
setHostedThumbnail(value?: HostedURL): Video;
|
|
4917
|
+
hasHostedThumbnail(): boolean;
|
|
4918
|
+
clearHostedThumbnail(): Video;
|
|
4919
|
+
|
|
4734
4920
|
getVideoInfo(): VideoInfo | undefined;
|
|
4735
4921
|
setVideoInfo(value?: VideoInfo): Video;
|
|
4736
4922
|
hasVideoInfo(): boolean;
|
|
@@ -4751,6 +4937,7 @@ export namespace Video {
|
|
|
4751
4937
|
allowDuplicateUrl: boolean,
|
|
4752
4938
|
thumbnailUrl: string,
|
|
4753
4939
|
hosted?: HostedURL.AsObject,
|
|
4940
|
+
hostedThumbnail?: HostedURL.AsObject,
|
|
4754
4941
|
videoInfo?: VideoInfo.AsObject,
|
|
4755
4942
|
}
|
|
4756
4943
|
}
|
|
@@ -4859,6 +5046,16 @@ export class Workflow extends jspb.Message {
|
|
|
4859
5046
|
clearCheckConsentsList(): Workflow;
|
|
4860
5047
|
addCheckConsents(value: string, index?: number): Workflow;
|
|
4861
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
|
+
|
|
4862
5059
|
serializeBinary(): Uint8Array;
|
|
4863
5060
|
toObject(includeInstance?: boolean): Workflow.AsObject;
|
|
4864
5061
|
static toObject(includeInstance: boolean, msg: Workflow): Workflow.AsObject;
|
|
@@ -4884,6 +5081,8 @@ export namespace Workflow {
|
|
|
4884
5081
|
notes: string,
|
|
4885
5082
|
useCasesList: Array<string>,
|
|
4886
5083
|
checkConsentsList: Array<string>,
|
|
5084
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
5085
|
+
image?: Image.AsObject,
|
|
4887
5086
|
}
|
|
4888
5087
|
}
|
|
4889
5088
|
|
|
@@ -5087,12 +5286,18 @@ export class AppDuplication extends jspb.Message {
|
|
|
5087
5286
|
getId(): string;
|
|
5088
5287
|
setId(value: string): AppDuplication;
|
|
5089
5288
|
|
|
5289
|
+
getExistingAppId(): string;
|
|
5290
|
+
setExistingAppId(value: string): AppDuplication;
|
|
5291
|
+
|
|
5090
5292
|
getNewAppId(): string;
|
|
5091
5293
|
setNewAppId(value: string): AppDuplication;
|
|
5092
5294
|
|
|
5093
5295
|
getNewAppName(): string;
|
|
5094
5296
|
setNewAppName(value: string): AppDuplication;
|
|
5095
5297
|
|
|
5298
|
+
getNewAppDescription(): string;
|
|
5299
|
+
setNewAppDescription(value: string): AppDuplication;
|
|
5300
|
+
|
|
5096
5301
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
5097
5302
|
setStatus(value?: proto_clarifai_api_status_status_pb.Status): AppDuplication;
|
|
5098
5303
|
hasStatus(): boolean;
|
|
@@ -5113,9 +5318,6 @@ export class AppDuplication extends jspb.Message {
|
|
|
5113
5318
|
hasFilter(): boolean;
|
|
5114
5319
|
clearFilter(): AppDuplication;
|
|
5115
5320
|
|
|
5116
|
-
getExistingAppId(): string;
|
|
5117
|
-
setExistingAppId(value: string): AppDuplication;
|
|
5118
|
-
|
|
5119
5321
|
getProgressList(): Array<AppCopyProgress>;
|
|
5120
5322
|
setProgressList(value: Array<AppCopyProgress>): AppDuplication;
|
|
5121
5323
|
clearProgressList(): AppDuplication;
|
|
@@ -5132,13 +5334,14 @@ export class AppDuplication extends jspb.Message {
|
|
|
5132
5334
|
export namespace AppDuplication {
|
|
5133
5335
|
export type AsObject = {
|
|
5134
5336
|
id: string,
|
|
5337
|
+
existingAppId: string,
|
|
5135
5338
|
newAppId: string,
|
|
5136
5339
|
newAppName: string,
|
|
5340
|
+
newAppDescription: string,
|
|
5137
5341
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
5138
5342
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5139
5343
|
lastModifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5140
5344
|
filter?: AppDuplicationFilters.AsObject,
|
|
5141
|
-
existingAppId: string,
|
|
5142
5345
|
progressList: Array<AppCopyProgress.AsObject>,
|
|
5143
5346
|
}
|
|
5144
5347
|
}
|
|
@@ -5857,6 +6060,9 @@ export class APIPostModelOutputsCollectorSource extends jspb.Message {
|
|
|
5857
6060
|
getPostInputsKeyId(): string;
|
|
5858
6061
|
setPostInputsKeyId(value: string): APIPostModelOutputsCollectorSource;
|
|
5859
6062
|
|
|
6063
|
+
getCallerUserId(): string;
|
|
6064
|
+
setCallerUserId(value: string): APIPostModelOutputsCollectorSource;
|
|
6065
|
+
|
|
5860
6066
|
serializeBinary(): Uint8Array;
|
|
5861
6067
|
toObject(includeInstance?: boolean): APIPostModelOutputsCollectorSource.AsObject;
|
|
5862
6068
|
static toObject(includeInstance: boolean, msg: APIPostModelOutputsCollectorSource): APIPostModelOutputsCollectorSource.AsObject;
|
|
@@ -5872,6 +6078,7 @@ export namespace APIPostModelOutputsCollectorSource {
|
|
|
5872
6078
|
modelId: string,
|
|
5873
6079
|
modelVersionId: string,
|
|
5874
6080
|
postInputsKeyId: string,
|
|
6081
|
+
callerUserId: string,
|
|
5875
6082
|
}
|
|
5876
6083
|
}
|
|
5877
6084
|
|
|
@@ -6316,6 +6523,16 @@ export class Module extends jspb.Message {
|
|
|
6316
6523
|
getStarCount(): number;
|
|
6317
6524
|
setStarCount(value: number): Module;
|
|
6318
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
|
+
|
|
6319
6536
|
serializeBinary(): Uint8Array;
|
|
6320
6537
|
toObject(includeInstance?: boolean): Module.AsObject;
|
|
6321
6538
|
static toObject(includeInstance: boolean, msg: Module): Module.AsObject;
|
|
@@ -6337,6 +6554,8 @@ export namespace Module {
|
|
|
6337
6554
|
moduleVersion?: ModuleVersion.AsObject,
|
|
6338
6555
|
isStarred: boolean,
|
|
6339
6556
|
starCount: number,
|
|
6557
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
6558
|
+
image?: Image.AsObject,
|
|
6340
6559
|
}
|
|
6341
6560
|
}
|
|
6342
6561
|
|
|
@@ -7180,6 +7399,11 @@ export class InputsExtractionJob extends jspb.Message {
|
|
|
7180
7399
|
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7181
7400
|
setInputIdConflictResolution(value: InputIDConflictResolution): InputsExtractionJob;
|
|
7182
7401
|
|
|
7402
|
+
getInputTemplate(): Input | undefined;
|
|
7403
|
+
setInputTemplate(value?: Input): InputsExtractionJob;
|
|
7404
|
+
hasInputTemplate(): boolean;
|
|
7405
|
+
clearInputTemplate(): InputsExtractionJob;
|
|
7406
|
+
|
|
7183
7407
|
serializeBinary(): Uint8Array;
|
|
7184
7408
|
toObject(includeInstance?: boolean): InputsExtractionJob.AsObject;
|
|
7185
7409
|
static toObject(includeInstance: boolean, msg: InputsExtractionJob): InputsExtractionJob.AsObject;
|
|
@@ -7197,6 +7421,7 @@ export namespace InputsExtractionJob {
|
|
|
7197
7421
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7198
7422
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7199
7423
|
inputIdConflictResolution: InputIDConflictResolution,
|
|
7424
|
+
inputTemplate?: Input.AsObject,
|
|
7200
7425
|
}
|
|
7201
7426
|
}
|
|
7202
7427
|
|
|
@@ -7258,6 +7483,11 @@ export class InputsDataSource extends jspb.Message {
|
|
|
7258
7483
|
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7259
7484
|
setInputIdConflictResolution(value: InputIDConflictResolution): InputsDataSource;
|
|
7260
7485
|
|
|
7486
|
+
getInputTemplate(): Input | undefined;
|
|
7487
|
+
setInputTemplate(value?: Input): InputsDataSource;
|
|
7488
|
+
hasInputTemplate(): boolean;
|
|
7489
|
+
clearInputTemplate(): InputsDataSource;
|
|
7490
|
+
|
|
7261
7491
|
serializeBinary(): Uint8Array;
|
|
7262
7492
|
toObject(includeInstance?: boolean): InputsDataSource.AsObject;
|
|
7263
7493
|
static toObject(includeInstance: boolean, msg: InputsDataSource): InputsDataSource.AsObject;
|
|
@@ -7271,6 +7501,7 @@ export namespace InputsDataSource {
|
|
|
7271
7501
|
inputsAddJobId: string,
|
|
7272
7502
|
url?: DataSourceURL.AsObject,
|
|
7273
7503
|
inputIdConflictResolution: InputIDConflictResolution,
|
|
7504
|
+
inputTemplate?: Input.AsObject,
|
|
7274
7505
|
}
|
|
7275
7506
|
}
|
|
7276
7507
|
|
|
@@ -7406,6 +7637,11 @@ export class InputsUpload extends jspb.Message {
|
|
|
7406
7637
|
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7407
7638
|
setInputIdConflictResolution(value: InputIDConflictResolution): InputsUpload;
|
|
7408
7639
|
|
|
7640
|
+
getInputTemplate(): Input | undefined;
|
|
7641
|
+
setInputTemplate(value?: Input): InputsUpload;
|
|
7642
|
+
hasInputTemplate(): boolean;
|
|
7643
|
+
clearInputTemplate(): InputsUpload;
|
|
7644
|
+
|
|
7409
7645
|
serializeBinary(): Uint8Array;
|
|
7410
7646
|
toObject(includeInstance?: boolean): InputsUpload.AsObject;
|
|
7411
7647
|
static toObject(includeInstance: boolean, msg: InputsUpload): InputsUpload.AsObject;
|
|
@@ -7420,6 +7656,95 @@ export namespace InputsUpload {
|
|
|
7420
7656
|
appPat: string,
|
|
7421
7657
|
upload?: Upload.AsObject,
|
|
7422
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>,
|
|
7423
7748
|
}
|
|
7424
7749
|
}
|
|
7425
7750
|
|