clarifai-web-grpc 9.6.1 → 9.10.5
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 +51218 -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 +67552 -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 +51218 -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 +67552 -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 +359 -27
- package/proto/clarifai/api/resources_pb.js +2892 -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 +770 -50
- package/proto/clarifai/api/service_pb.js +29397 -23205
- 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,16 @@ 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
|
+
|
|
2752
|
+
getResumeFromModel(): Model | undefined;
|
|
2753
|
+
setResumeFromModel(value?: Model): TrainInfo;
|
|
2754
|
+
hasResumeFromModel(): boolean;
|
|
2755
|
+
clearResumeFromModel(): TrainInfo;
|
|
2756
|
+
|
|
2624
2757
|
serializeBinary(): Uint8Array;
|
|
2625
2758
|
toObject(includeInstance?: boolean): TrainInfo.AsObject;
|
|
2626
2759
|
static toObject(includeInstance: boolean, msg: TrainInfo): TrainInfo.AsObject;
|
|
@@ -2632,6 +2765,8 @@ export class TrainInfo extends jspb.Message {
|
|
|
2632
2765
|
export namespace TrainInfo {
|
|
2633
2766
|
export type AsObject = {
|
|
2634
2767
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2768
|
+
dataset?: Dataset.AsObject,
|
|
2769
|
+
resumeFromModel?: Model.AsObject,
|
|
2635
2770
|
}
|
|
2636
2771
|
}
|
|
2637
2772
|
|
|
@@ -2984,6 +3119,11 @@ export namespace ModelTypeField {
|
|
|
2984
3119
|
PYTHON_CODE = 15,
|
|
2985
3120
|
DATASET_ID = 16,
|
|
2986
3121
|
DATASET_VERSION_ID = 17,
|
|
3122
|
+
ARRAY_OF_MODEL_CONCEPTS = 18,
|
|
3123
|
+
DATASET = 19,
|
|
3124
|
+
DATASET_VERSION = 20,
|
|
3125
|
+
ENCRYPTED_STRING = 21,
|
|
3126
|
+
CHECKPOINT_MODEL = 22,
|
|
2987
3127
|
}
|
|
2988
3128
|
}
|
|
2989
3129
|
|
|
@@ -3300,6 +3440,11 @@ export class LabelCount extends jspb.Message {
|
|
|
3300
3440
|
getCount(): number;
|
|
3301
3441
|
setCount(value: number): LabelCount;
|
|
3302
3442
|
|
|
3443
|
+
getConcept(): Concept | undefined;
|
|
3444
|
+
setConcept(value?: Concept): LabelCount;
|
|
3445
|
+
hasConcept(): boolean;
|
|
3446
|
+
clearConcept(): LabelCount;
|
|
3447
|
+
|
|
3303
3448
|
serializeBinary(): Uint8Array;
|
|
3304
3449
|
toObject(includeInstance?: boolean): LabelCount.AsObject;
|
|
3305
3450
|
static toObject(includeInstance: boolean, msg: LabelCount): LabelCount.AsObject;
|
|
@@ -3312,6 +3457,7 @@ export namespace LabelCount {
|
|
|
3312
3457
|
export type AsObject = {
|
|
3313
3458
|
conceptName: string,
|
|
3314
3459
|
count: number,
|
|
3460
|
+
concept?: Concept.AsObject,
|
|
3315
3461
|
}
|
|
3316
3462
|
}
|
|
3317
3463
|
|
|
@@ -3397,6 +3543,16 @@ export class ConfusionMatrixEntry extends jspb.Message {
|
|
|
3397
3543
|
getValue(): number;
|
|
3398
3544
|
setValue(value: number): ConfusionMatrixEntry;
|
|
3399
3545
|
|
|
3546
|
+
getPredictedConcept(): Concept | undefined;
|
|
3547
|
+
setPredictedConcept(value?: Concept): ConfusionMatrixEntry;
|
|
3548
|
+
hasPredictedConcept(): boolean;
|
|
3549
|
+
clearPredictedConcept(): ConfusionMatrixEntry;
|
|
3550
|
+
|
|
3551
|
+
getActualConcept(): Concept | undefined;
|
|
3552
|
+
setActualConcept(value?: Concept): ConfusionMatrixEntry;
|
|
3553
|
+
hasActualConcept(): boolean;
|
|
3554
|
+
clearActualConcept(): ConfusionMatrixEntry;
|
|
3555
|
+
|
|
3400
3556
|
serializeBinary(): Uint8Array;
|
|
3401
3557
|
toObject(includeInstance?: boolean): ConfusionMatrixEntry.AsObject;
|
|
3402
3558
|
static toObject(includeInstance: boolean, msg: ConfusionMatrixEntry): ConfusionMatrixEntry.AsObject;
|
|
@@ -3410,6 +3566,8 @@ export namespace ConfusionMatrixEntry {
|
|
|
3410
3566
|
predicted: string,
|
|
3411
3567
|
actual: string,
|
|
3412
3568
|
value: number,
|
|
3569
|
+
predictedConcept?: Concept.AsObject,
|
|
3570
|
+
actualConcept?: Concept.AsObject,
|
|
3413
3571
|
}
|
|
3414
3572
|
}
|
|
3415
3573
|
|
|
@@ -3836,6 +3994,11 @@ export class EvalMetrics extends jspb.Message {
|
|
|
3836
3994
|
hasEvalInfo(): boolean;
|
|
3837
3995
|
clearEvalInfo(): EvalMetrics;
|
|
3838
3996
|
|
|
3997
|
+
getExtendedMetrics(): ExtendedMetrics | undefined;
|
|
3998
|
+
setExtendedMetrics(value?: ExtendedMetrics): EvalMetrics;
|
|
3999
|
+
hasExtendedMetrics(): boolean;
|
|
4000
|
+
clearExtendedMetrics(): EvalMetrics;
|
|
4001
|
+
|
|
3839
4002
|
serializeBinary(): Uint8Array;
|
|
3840
4003
|
toObject(includeInstance?: boolean): EvalMetrics.AsObject;
|
|
3841
4004
|
static toObject(includeInstance: boolean, msg: EvalMetrics): EvalMetrics.AsObject;
|
|
@@ -3862,6 +4025,27 @@ export namespace EvalMetrics {
|
|
|
3862
4025
|
metricsByClassList: Array<BinaryMetrics.AsObject>,
|
|
3863
4026
|
trackerMetricsList: Array<TrackerMetrics.AsObject>,
|
|
3864
4027
|
evalInfo?: EvalInfo.AsObject,
|
|
4028
|
+
extendedMetrics?: ExtendedMetrics.AsObject,
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
|
|
4032
|
+
export class ExtendedMetrics extends jspb.Message {
|
|
4033
|
+
getUserMetrics(): google_protobuf_struct_pb.Struct | undefined;
|
|
4034
|
+
setUserMetrics(value?: google_protobuf_struct_pb.Struct): ExtendedMetrics;
|
|
4035
|
+
hasUserMetrics(): boolean;
|
|
4036
|
+
clearUserMetrics(): ExtendedMetrics;
|
|
4037
|
+
|
|
4038
|
+
serializeBinary(): Uint8Array;
|
|
4039
|
+
toObject(includeInstance?: boolean): ExtendedMetrics.AsObject;
|
|
4040
|
+
static toObject(includeInstance: boolean, msg: ExtendedMetrics): ExtendedMetrics.AsObject;
|
|
4041
|
+
static serializeBinaryToWriter(message: ExtendedMetrics, writer: jspb.BinaryWriter): void;
|
|
4042
|
+
static deserializeBinary(bytes: Uint8Array): ExtendedMetrics;
|
|
4043
|
+
static deserializeBinaryFromReader(message: ExtendedMetrics, reader: jspb.BinaryReader): ExtendedMetrics;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
export namespace ExtendedMetrics {
|
|
4047
|
+
export type AsObject = {
|
|
4048
|
+
userMetrics?: google_protobuf_struct_pb.Struct.AsObject,
|
|
3865
4049
|
}
|
|
3866
4050
|
}
|
|
3867
4051
|
|
|
@@ -4429,6 +4613,9 @@ export class User extends jspb.Message {
|
|
|
4429
4613
|
getJobRole(): string;
|
|
4430
4614
|
setJobRole(value: string): User;
|
|
4431
4615
|
|
|
4616
|
+
getIntention(): string;
|
|
4617
|
+
setIntention(value: string): User;
|
|
4618
|
+
|
|
4432
4619
|
getBillType(): string;
|
|
4433
4620
|
setBillType(value: string): User;
|
|
4434
4621
|
|
|
@@ -4506,6 +4693,7 @@ export namespace User {
|
|
|
4506
4693
|
companyName: string,
|
|
4507
4694
|
jobTitle: string,
|
|
4508
4695
|
jobRole: string,
|
|
4696
|
+
intention: string,
|
|
4509
4697
|
billType: string,
|
|
4510
4698
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4511
4699
|
dateGdprConsent?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
@@ -4731,6 +4919,11 @@ export class Video extends jspb.Message {
|
|
|
4731
4919
|
hasHosted(): boolean;
|
|
4732
4920
|
clearHosted(): Video;
|
|
4733
4921
|
|
|
4922
|
+
getHostedThumbnail(): HostedURL | undefined;
|
|
4923
|
+
setHostedThumbnail(value?: HostedURL): Video;
|
|
4924
|
+
hasHostedThumbnail(): boolean;
|
|
4925
|
+
clearHostedThumbnail(): Video;
|
|
4926
|
+
|
|
4734
4927
|
getVideoInfo(): VideoInfo | undefined;
|
|
4735
4928
|
setVideoInfo(value?: VideoInfo): Video;
|
|
4736
4929
|
hasVideoInfo(): boolean;
|
|
@@ -4751,6 +4944,7 @@ export namespace Video {
|
|
|
4751
4944
|
allowDuplicateUrl: boolean,
|
|
4752
4945
|
thumbnailUrl: string,
|
|
4753
4946
|
hosted?: HostedURL.AsObject,
|
|
4947
|
+
hostedThumbnail?: HostedURL.AsObject,
|
|
4754
4948
|
videoInfo?: VideoInfo.AsObject,
|
|
4755
4949
|
}
|
|
4756
4950
|
}
|
|
@@ -4859,6 +5053,16 @@ export class Workflow extends jspb.Message {
|
|
|
4859
5053
|
clearCheckConsentsList(): Workflow;
|
|
4860
5054
|
addCheckConsents(value: string, index?: number): Workflow;
|
|
4861
5055
|
|
|
5056
|
+
getBookmarkOrigin(): BookmarkOrigin | undefined;
|
|
5057
|
+
setBookmarkOrigin(value?: BookmarkOrigin): Workflow;
|
|
5058
|
+
hasBookmarkOrigin(): boolean;
|
|
5059
|
+
clearBookmarkOrigin(): Workflow;
|
|
5060
|
+
|
|
5061
|
+
getImage(): Image | undefined;
|
|
5062
|
+
setImage(value?: Image): Workflow;
|
|
5063
|
+
hasImage(): boolean;
|
|
5064
|
+
clearImage(): Workflow;
|
|
5065
|
+
|
|
4862
5066
|
serializeBinary(): Uint8Array;
|
|
4863
5067
|
toObject(includeInstance?: boolean): Workflow.AsObject;
|
|
4864
5068
|
static toObject(includeInstance: boolean, msg: Workflow): Workflow.AsObject;
|
|
@@ -4884,6 +5088,8 @@ export namespace Workflow {
|
|
|
4884
5088
|
notes: string,
|
|
4885
5089
|
useCasesList: Array<string>,
|
|
4886
5090
|
checkConsentsList: Array<string>,
|
|
5091
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
5092
|
+
image?: Image.AsObject,
|
|
4887
5093
|
}
|
|
4888
5094
|
}
|
|
4889
5095
|
|
|
@@ -5087,12 +5293,18 @@ export class AppDuplication extends jspb.Message {
|
|
|
5087
5293
|
getId(): string;
|
|
5088
5294
|
setId(value: string): AppDuplication;
|
|
5089
5295
|
|
|
5296
|
+
getExistingAppId(): string;
|
|
5297
|
+
setExistingAppId(value: string): AppDuplication;
|
|
5298
|
+
|
|
5090
5299
|
getNewAppId(): string;
|
|
5091
5300
|
setNewAppId(value: string): AppDuplication;
|
|
5092
5301
|
|
|
5093
5302
|
getNewAppName(): string;
|
|
5094
5303
|
setNewAppName(value: string): AppDuplication;
|
|
5095
5304
|
|
|
5305
|
+
getNewAppDescription(): string;
|
|
5306
|
+
setNewAppDescription(value: string): AppDuplication;
|
|
5307
|
+
|
|
5096
5308
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
5097
5309
|
setStatus(value?: proto_clarifai_api_status_status_pb.Status): AppDuplication;
|
|
5098
5310
|
hasStatus(): boolean;
|
|
@@ -5113,9 +5325,6 @@ export class AppDuplication extends jspb.Message {
|
|
|
5113
5325
|
hasFilter(): boolean;
|
|
5114
5326
|
clearFilter(): AppDuplication;
|
|
5115
5327
|
|
|
5116
|
-
getExistingAppId(): string;
|
|
5117
|
-
setExistingAppId(value: string): AppDuplication;
|
|
5118
|
-
|
|
5119
5328
|
getProgressList(): Array<AppCopyProgress>;
|
|
5120
5329
|
setProgressList(value: Array<AppCopyProgress>): AppDuplication;
|
|
5121
5330
|
clearProgressList(): AppDuplication;
|
|
@@ -5132,13 +5341,14 @@ export class AppDuplication extends jspb.Message {
|
|
|
5132
5341
|
export namespace AppDuplication {
|
|
5133
5342
|
export type AsObject = {
|
|
5134
5343
|
id: string,
|
|
5344
|
+
existingAppId: string,
|
|
5135
5345
|
newAppId: string,
|
|
5136
5346
|
newAppName: string,
|
|
5347
|
+
newAppDescription: string,
|
|
5137
5348
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
5138
5349
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5139
5350
|
lastModifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5140
5351
|
filter?: AppDuplicationFilters.AsObject,
|
|
5141
|
-
existingAppId: string,
|
|
5142
5352
|
progressList: Array<AppCopyProgress.AsObject>,
|
|
5143
5353
|
}
|
|
5144
5354
|
}
|
|
@@ -5857,6 +6067,9 @@ export class APIPostModelOutputsCollectorSource extends jspb.Message {
|
|
|
5857
6067
|
getPostInputsKeyId(): string;
|
|
5858
6068
|
setPostInputsKeyId(value: string): APIPostModelOutputsCollectorSource;
|
|
5859
6069
|
|
|
6070
|
+
getCallerUserId(): string;
|
|
6071
|
+
setCallerUserId(value: string): APIPostModelOutputsCollectorSource;
|
|
6072
|
+
|
|
5860
6073
|
serializeBinary(): Uint8Array;
|
|
5861
6074
|
toObject(includeInstance?: boolean): APIPostModelOutputsCollectorSource.AsObject;
|
|
5862
6075
|
static toObject(includeInstance: boolean, msg: APIPostModelOutputsCollectorSource): APIPostModelOutputsCollectorSource.AsObject;
|
|
@@ -5872,6 +6085,7 @@ export namespace APIPostModelOutputsCollectorSource {
|
|
|
5872
6085
|
modelId: string,
|
|
5873
6086
|
modelVersionId: string,
|
|
5874
6087
|
postInputsKeyId: string,
|
|
6088
|
+
callerUserId: string,
|
|
5875
6089
|
}
|
|
5876
6090
|
}
|
|
5877
6091
|
|
|
@@ -6316,6 +6530,16 @@ export class Module extends jspb.Message {
|
|
|
6316
6530
|
getStarCount(): number;
|
|
6317
6531
|
setStarCount(value: number): Module;
|
|
6318
6532
|
|
|
6533
|
+
getBookmarkOrigin(): BookmarkOrigin | undefined;
|
|
6534
|
+
setBookmarkOrigin(value?: BookmarkOrigin): Module;
|
|
6535
|
+
hasBookmarkOrigin(): boolean;
|
|
6536
|
+
clearBookmarkOrigin(): Module;
|
|
6537
|
+
|
|
6538
|
+
getImage(): Image | undefined;
|
|
6539
|
+
setImage(value?: Image): Module;
|
|
6540
|
+
hasImage(): boolean;
|
|
6541
|
+
clearImage(): Module;
|
|
6542
|
+
|
|
6319
6543
|
serializeBinary(): Uint8Array;
|
|
6320
6544
|
toObject(includeInstance?: boolean): Module.AsObject;
|
|
6321
6545
|
static toObject(includeInstance: boolean, msg: Module): Module.AsObject;
|
|
@@ -6337,6 +6561,8 @@ export namespace Module {
|
|
|
6337
6561
|
moduleVersion?: ModuleVersion.AsObject,
|
|
6338
6562
|
isStarred: boolean,
|
|
6339
6563
|
starCount: number,
|
|
6564
|
+
bookmarkOrigin?: BookmarkOrigin.AsObject,
|
|
6565
|
+
image?: Image.AsObject,
|
|
6340
6566
|
}
|
|
6341
6567
|
}
|
|
6342
6568
|
|
|
@@ -7180,6 +7406,11 @@ export class InputsExtractionJob extends jspb.Message {
|
|
|
7180
7406
|
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7181
7407
|
setInputIdConflictResolution(value: InputIDConflictResolution): InputsExtractionJob;
|
|
7182
7408
|
|
|
7409
|
+
getInputTemplate(): Input | undefined;
|
|
7410
|
+
setInputTemplate(value?: Input): InputsExtractionJob;
|
|
7411
|
+
hasInputTemplate(): boolean;
|
|
7412
|
+
clearInputTemplate(): InputsExtractionJob;
|
|
7413
|
+
|
|
7183
7414
|
serializeBinary(): Uint8Array;
|
|
7184
7415
|
toObject(includeInstance?: boolean): InputsExtractionJob.AsObject;
|
|
7185
7416
|
static toObject(includeInstance: boolean, msg: InputsExtractionJob): InputsExtractionJob.AsObject;
|
|
@@ -7197,6 +7428,7 @@ export namespace InputsExtractionJob {
|
|
|
7197
7428
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7198
7429
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7199
7430
|
inputIdConflictResolution: InputIDConflictResolution,
|
|
7431
|
+
inputTemplate?: Input.AsObject,
|
|
7200
7432
|
}
|
|
7201
7433
|
}
|
|
7202
7434
|
|
|
@@ -7258,6 +7490,11 @@ export class InputsDataSource extends jspb.Message {
|
|
|
7258
7490
|
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7259
7491
|
setInputIdConflictResolution(value: InputIDConflictResolution): InputsDataSource;
|
|
7260
7492
|
|
|
7493
|
+
getInputTemplate(): Input | undefined;
|
|
7494
|
+
setInputTemplate(value?: Input): InputsDataSource;
|
|
7495
|
+
hasInputTemplate(): boolean;
|
|
7496
|
+
clearInputTemplate(): InputsDataSource;
|
|
7497
|
+
|
|
7261
7498
|
serializeBinary(): Uint8Array;
|
|
7262
7499
|
toObject(includeInstance?: boolean): InputsDataSource.AsObject;
|
|
7263
7500
|
static toObject(includeInstance: boolean, msg: InputsDataSource): InputsDataSource.AsObject;
|
|
@@ -7271,6 +7508,7 @@ export namespace InputsDataSource {
|
|
|
7271
7508
|
inputsAddJobId: string,
|
|
7272
7509
|
url?: DataSourceURL.AsObject,
|
|
7273
7510
|
inputIdConflictResolution: InputIDConflictResolution,
|
|
7511
|
+
inputTemplate?: Input.AsObject,
|
|
7274
7512
|
}
|
|
7275
7513
|
}
|
|
7276
7514
|
|
|
@@ -7406,6 +7644,11 @@ export class InputsUpload extends jspb.Message {
|
|
|
7406
7644
|
getInputIdConflictResolution(): InputIDConflictResolution;
|
|
7407
7645
|
setInputIdConflictResolution(value: InputIDConflictResolution): InputsUpload;
|
|
7408
7646
|
|
|
7647
|
+
getInputTemplate(): Input | undefined;
|
|
7648
|
+
setInputTemplate(value?: Input): InputsUpload;
|
|
7649
|
+
hasInputTemplate(): boolean;
|
|
7650
|
+
clearInputTemplate(): InputsUpload;
|
|
7651
|
+
|
|
7409
7652
|
serializeBinary(): Uint8Array;
|
|
7410
7653
|
toObject(includeInstance?: boolean): InputsUpload.AsObject;
|
|
7411
7654
|
static toObject(includeInstance: boolean, msg: InputsUpload): InputsUpload.AsObject;
|
|
@@ -7420,6 +7663,95 @@ export namespace InputsUpload {
|
|
|
7420
7663
|
appPat: string,
|
|
7421
7664
|
upload?: Upload.AsObject,
|
|
7422
7665
|
inputIdConflictResolution: InputIDConflictResolution,
|
|
7666
|
+
inputTemplate?: Input.AsObject,
|
|
7667
|
+
}
|
|
7668
|
+
}
|
|
7669
|
+
|
|
7670
|
+
export class BookmarkOrigin extends jspb.Message {
|
|
7671
|
+
getId(): string;
|
|
7672
|
+
setId(value: string): BookmarkOrigin;
|
|
7673
|
+
|
|
7674
|
+
getAppId(): string;
|
|
7675
|
+
setAppId(value: string): BookmarkOrigin;
|
|
7676
|
+
|
|
7677
|
+
getUserId(): string;
|
|
7678
|
+
setUserId(value: string): BookmarkOrigin;
|
|
7679
|
+
|
|
7680
|
+
getResourceType(): BookmarkOrigin.BookmarkType;
|
|
7681
|
+
setResourceType(value: BookmarkOrigin.BookmarkType): BookmarkOrigin;
|
|
7682
|
+
|
|
7683
|
+
serializeBinary(): Uint8Array;
|
|
7684
|
+
toObject(includeInstance?: boolean): BookmarkOrigin.AsObject;
|
|
7685
|
+
static toObject(includeInstance: boolean, msg: BookmarkOrigin): BookmarkOrigin.AsObject;
|
|
7686
|
+
static serializeBinaryToWriter(message: BookmarkOrigin, writer: jspb.BinaryWriter): void;
|
|
7687
|
+
static deserializeBinary(bytes: Uint8Array): BookmarkOrigin;
|
|
7688
|
+
static deserializeBinaryFromReader(message: BookmarkOrigin, reader: jspb.BinaryReader): BookmarkOrigin;
|
|
7689
|
+
}
|
|
7690
|
+
|
|
7691
|
+
export namespace BookmarkOrigin {
|
|
7692
|
+
export type AsObject = {
|
|
7693
|
+
id: string,
|
|
7694
|
+
appId: string,
|
|
7695
|
+
userId: string,
|
|
7696
|
+
resourceType: BookmarkOrigin.BookmarkType,
|
|
7697
|
+
}
|
|
7698
|
+
|
|
7699
|
+
export enum BookmarkType {
|
|
7700
|
+
UNKNOWN = 0,
|
|
7701
|
+
MODEL = 1,
|
|
7702
|
+
WORKFLOW = 2,
|
|
7703
|
+
DATASET = 3,
|
|
7704
|
+
MODULE = 4,
|
|
7705
|
+
}
|
|
7706
|
+
}
|
|
7707
|
+
|
|
7708
|
+
export class Runner extends jspb.Message {
|
|
7709
|
+
getId(): string;
|
|
7710
|
+
setId(value: string): Runner;
|
|
7711
|
+
|
|
7712
|
+
getDescription(): string;
|
|
7713
|
+
setDescription(value: string): Runner;
|
|
7714
|
+
|
|
7715
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
7716
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Runner;
|
|
7717
|
+
hasCreatedAt(): boolean;
|
|
7718
|
+
clearCreatedAt(): Runner;
|
|
7719
|
+
|
|
7720
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
7721
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Runner;
|
|
7722
|
+
hasModifiedAt(): boolean;
|
|
7723
|
+
clearModifiedAt(): Runner;
|
|
7724
|
+
|
|
7725
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
7726
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Runner;
|
|
7727
|
+
hasMetadata(): boolean;
|
|
7728
|
+
clearMetadata(): Runner;
|
|
7729
|
+
|
|
7730
|
+
getUserId(): string;
|
|
7731
|
+
setUserId(value: string): Runner;
|
|
7732
|
+
|
|
7733
|
+
getLabelsList(): Array<string>;
|
|
7734
|
+
setLabelsList(value: Array<string>): Runner;
|
|
7735
|
+
clearLabelsList(): Runner;
|
|
7736
|
+
addLabels(value: string, index?: number): Runner;
|
|
7737
|
+
|
|
7738
|
+
serializeBinary(): Uint8Array;
|
|
7739
|
+
toObject(includeInstance?: boolean): Runner.AsObject;
|
|
7740
|
+
static toObject(includeInstance: boolean, msg: Runner): Runner.AsObject;
|
|
7741
|
+
static serializeBinaryToWriter(message: Runner, writer: jspb.BinaryWriter): void;
|
|
7742
|
+
static deserializeBinary(bytes: Uint8Array): Runner;
|
|
7743
|
+
static deserializeBinaryFromReader(message: Runner, reader: jspb.BinaryReader): Runner;
|
|
7744
|
+
}
|
|
7745
|
+
|
|
7746
|
+
export namespace Runner {
|
|
7747
|
+
export type AsObject = {
|
|
7748
|
+
id: string,
|
|
7749
|
+
description: string,
|
|
7750
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7751
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
7752
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
7753
|
+
userId: string,
|
|
7754
|
+
labelsList: Array<string>,
|
|
7423
7755
|
}
|
|
7424
7756
|
}
|
|
7425
7757
|
|