clarifai-web-grpc 2.0.1 → 4.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/ci.yml +4 -0
- package/.mocharc.yml +5 -0
- package/CHANGELOG.md +8 -3
- package/README.md +2 -2
- package/VERSION +1 -1
- package/{lib → dist/cjs}/google/api/annotations_pb.d.ts +0 -0
- package/{lib → dist/cjs}/google/api/annotations_pb.js +0 -0
- package/{lib → dist/cjs}/google/api/http_pb.d.ts +0 -0
- package/{lib → dist/cjs}/google/api/http_pb.js +0 -0
- package/dist/cjs/index.d.ts +7 -0
- package/dist/cjs/index.js +16 -0
- package/{lib → dist/cjs}/proto/clarifai/api/resources_pb.d.ts +0 -0
- package/{lib → dist/cjs}/proto/clarifai/api/resources_pb.js +3595 -302
- 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 +6663 -0
- package/{lib → dist/cjs}/proto/clarifai/api/service_pb.d.ts +0 -0
- package/{lib → dist/cjs}/proto/clarifai/api/service_pb.js +16838 -7904
- package/{lib → dist/cjs}/proto/clarifai/api/status/status_code_pb.d.ts +0 -0
- package/{lib → dist/cjs}/proto/clarifai/api/status/status_code_pb.js +23 -1
- package/{lib → dist/cjs}/proto/clarifai/api/status/status_pb.d.ts +0 -0
- package/{lib → dist/cjs}/proto/clarifai/api/status/status_pb.js +18 -1
- package/{lib → dist/cjs}/proto/clarifai/api/utils/extensions_pb.d.ts +0 -0
- package/{lib → dist/cjs}/proto/clarifai/api/utils/extensions_pb.js +18 -1
- package/{lib/proto/clarifai/api/utils/test_proto_pb.d.ts → dist/cjs/proto/clarifai/api/utils/matrix_pb.d.ts} +0 -0
- package/dist/cjs/proto/clarifai/api/utils/matrix_pb.js +206 -0
- package/{lib/proto/clarifai/auth/scope/scope_pb.d.ts → dist/cjs/proto/clarifai/api/utils/test_proto_pb.d.ts} +0 -0
- package/{lib → dist/cjs}/proto/clarifai/api/utils/test_proto_pb.js +18 -1
- package/{lib/proto/clarifai/auth/types/types_pb.d.ts → dist/cjs/proto/clarifai/auth/scope/scope_pb.d.ts} +0 -0
- package/{lib → dist/cjs}/proto/clarifai/auth/scope/scope_pb.js +37 -5
- package/{lib/proto/clarifai/auth/util/extension_pb.d.ts → dist/cjs/proto/clarifai/auth/types/types_pb.d.ts} +0 -0
- package/{lib → dist/cjs}/proto/clarifai/auth/types/types_pb.js +18 -1
- package/dist/cjs/proto/clarifai/auth/util/extension_pb.d.ts +1 -0
- package/{lib → dist/cjs}/proto/clarifai/auth/util/extension_pb.js +18 -1
- 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 +9 -0
- package/dist/esm/proto/clarifai/api/resources_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +36250 -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 +6663 -0
- package/dist/esm/proto/clarifai/api/service_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +47725 -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 +334 -0
- package/dist/esm/proto/clarifai/api/status/status_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/status/status_pb.js +490 -0
- package/dist/esm/proto/clarifai/api/utils/extensions_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/utils/extensions_pb.js +69 -0
- package/dist/esm/proto/clarifai/api/utils/matrix_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/api/utils/matrix_pb.js +206 -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 +538 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +326 -0
- package/dist/esm/proto/clarifai/auth/types/types_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/auth/types/types_pb.js +43 -0
- package/dist/esm/proto/clarifai/auth/util/extension_pb.d.ts +1 -0
- package/dist/esm/proto/clarifai/auth/util/extension_pb.js +97 -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 +11 -0
- package/package.json +12 -18
- package/proto/clarifai/api/resources_pb.d.ts +1522 -1014
- package/proto/clarifai/api/resources_pb.js +7122 -2949
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +1904 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +9672 -0
- package/proto/clarifai/api/service_pb.d.ts +2235 -962
- package/proto/clarifai/api/service_pb.js +20033 -9036
- package/proto/clarifai/api/status/status_code_pb.d.ts +8 -1
- package/proto/clarifai/api/status/status_code_pb.js +15 -1
- package/proto/clarifai/api/status/status_pb.d.ts +14 -13
- package/proto/clarifai/api/status/status_pb.js +10 -1
- package/proto/clarifai/api/utils/extensions_pb.d.ts +2 -1
- package/proto/clarifai/api/utils/extensions_pb.js +10 -1
- package/proto/clarifai/api/utils/matrix_pb.d.ts +28 -0
- package/proto/clarifai/api/utils/matrix_pb.js +234 -0
- package/proto/clarifai/api/utils/test_proto_pb.d.ts +12 -11
- package/proto/clarifai/api/utils/test_proto_pb.js +10 -1
- package/proto/clarifai/auth/scope/scope_pb.d.ts +22 -8
- package/proto/clarifai/auth/scope/scope_pb.js +29 -5
- package/proto/clarifai/auth/types/types_pb.d.ts +3 -1
- package/proto/clarifai/auth/types/types_pb.js +10 -1
- package/proto/clarifai/auth/util/extension_pb.d.ts +2 -1
- package/proto/clarifai/auth/util/extension_pb.js +10 -1
- package/resources.ts +1 -0
- package/service.ts +1 -0
- package/tsconfig.cjs.json +7 -0
- package/tsconfig.json +11 -3
- package/.eslintrc.yml +0 -12
- package/lib/proto/clarifai/api/serviceServiceClientPb.d.ts +0 -275
- package/lib/proto/clarifai/api/serviceServiceClientPb.js +0 -904
- package/proto/clarifai/api/serviceServiceClientPb.ts +0 -3002
|
@@ -1,65 +1,68 @@
|
|
|
1
|
-
import * as jspb from
|
|
1
|
+
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
3
|
import * as proto_clarifai_api_status_status_pb from '../../../proto/clarifai/api/status/status_pb';
|
|
4
4
|
import * as proto_clarifai_api_utils_extensions_pb from '../../../proto/clarifai/api/utils/extensions_pb';
|
|
5
|
+
import * as proto_clarifai_api_utils_matrix_pb from '../../../proto/clarifai/api/utils/matrix_pb';
|
|
5
6
|
import * as proto_clarifai_auth_util_extension_pb from '../../../proto/clarifai/auth/util/extension_pb';
|
|
6
7
|
import * as google_protobuf_struct_pb from 'google-protobuf/google/protobuf/struct_pb';
|
|
7
8
|
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
|
|
9
|
+
import * as google_protobuf_wrappers_pb from 'google-protobuf/google/protobuf/wrappers_pb';
|
|
10
|
+
|
|
8
11
|
|
|
9
12
|
export class Annotation extends jspb.Message {
|
|
10
13
|
getId(): string;
|
|
11
|
-
setId(value: string):
|
|
14
|
+
setId(value: string): Annotation;
|
|
12
15
|
|
|
13
16
|
getInputId(): string;
|
|
14
|
-
setInputId(value: string):
|
|
17
|
+
setInputId(value: string): Annotation;
|
|
15
18
|
|
|
16
19
|
getData(): Data | undefined;
|
|
17
|
-
setData(value?: Data):
|
|
20
|
+
setData(value?: Data): Annotation;
|
|
18
21
|
hasData(): boolean;
|
|
19
|
-
clearData():
|
|
22
|
+
clearData(): Annotation;
|
|
20
23
|
|
|
21
24
|
getAnnotationInfo(): google_protobuf_struct_pb.Struct | undefined;
|
|
22
|
-
setAnnotationInfo(value?: google_protobuf_struct_pb.Struct):
|
|
25
|
+
setAnnotationInfo(value?: google_protobuf_struct_pb.Struct): Annotation;
|
|
23
26
|
hasAnnotationInfo(): boolean;
|
|
24
|
-
clearAnnotationInfo():
|
|
27
|
+
clearAnnotationInfo(): Annotation;
|
|
25
28
|
|
|
26
29
|
getUserId(): string;
|
|
27
|
-
setUserId(value: string):
|
|
30
|
+
setUserId(value: string): Annotation;
|
|
28
31
|
|
|
29
32
|
getModelVersionId(): string;
|
|
30
|
-
setModelVersionId(value: string):
|
|
33
|
+
setModelVersionId(value: string): Annotation;
|
|
31
34
|
|
|
32
35
|
getEmbedModelVersionId(): string;
|
|
33
|
-
setEmbedModelVersionId(value: string):
|
|
36
|
+
setEmbedModelVersionId(value: string): Annotation;
|
|
34
37
|
|
|
35
38
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
36
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
39
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): Annotation;
|
|
37
40
|
hasStatus(): boolean;
|
|
38
|
-
clearStatus():
|
|
41
|
+
clearStatus(): Annotation;
|
|
39
42
|
|
|
40
43
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
41
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
44
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Annotation;
|
|
42
45
|
hasCreatedAt(): boolean;
|
|
43
|
-
clearCreatedAt():
|
|
46
|
+
clearCreatedAt(): Annotation;
|
|
44
47
|
|
|
45
48
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
46
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
49
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Annotation;
|
|
47
50
|
hasModifiedAt(): boolean;
|
|
48
|
-
clearModifiedAt():
|
|
51
|
+
clearModifiedAt(): Annotation;
|
|
49
52
|
|
|
50
53
|
getTrusted(): boolean;
|
|
51
|
-
setTrusted(value: boolean):
|
|
54
|
+
setTrusted(value: boolean): Annotation;
|
|
52
55
|
|
|
53
56
|
getInputLevel(): boolean;
|
|
54
|
-
setInputLevel(value: boolean):
|
|
57
|
+
setInputLevel(value: boolean): Annotation;
|
|
55
58
|
|
|
56
59
|
getConsensusInfo(): google_protobuf_struct_pb.Struct | undefined;
|
|
57
|
-
setConsensusInfo(value?: google_protobuf_struct_pb.Struct):
|
|
60
|
+
setConsensusInfo(value?: google_protobuf_struct_pb.Struct): Annotation;
|
|
58
61
|
hasConsensusInfo(): boolean;
|
|
59
|
-
clearConsensusInfo():
|
|
62
|
+
clearConsensusInfo(): Annotation;
|
|
60
63
|
|
|
61
64
|
getTaskId(): string;
|
|
62
|
-
setTaskId(value: string):
|
|
65
|
+
setTaskId(value: string): Annotation;
|
|
63
66
|
|
|
64
67
|
serializeBinary(): Uint8Array;
|
|
65
68
|
toObject(includeInstance?: boolean): Annotation.AsObject;
|
|
@@ -90,57 +93,60 @@ export namespace Annotation {
|
|
|
90
93
|
|
|
91
94
|
export class App extends jspb.Message {
|
|
92
95
|
getId(): string;
|
|
93
|
-
setId(value: string):
|
|
96
|
+
setId(value: string): App;
|
|
94
97
|
|
|
95
98
|
getName(): string;
|
|
96
|
-
setName(value: string):
|
|
99
|
+
setName(value: string): App;
|
|
97
100
|
|
|
98
101
|
getDefaultLanguage(): string;
|
|
99
|
-
setDefaultLanguage(value: string):
|
|
102
|
+
setDefaultLanguage(value: string): App;
|
|
100
103
|
|
|
101
104
|
getDefaultWorkflowId(): string;
|
|
102
|
-
setDefaultWorkflowId(value: string):
|
|
105
|
+
setDefaultWorkflowId(value: string): App;
|
|
103
106
|
|
|
104
107
|
getUserId(): string;
|
|
105
|
-
setUserId(value: string):
|
|
108
|
+
setUserId(value: string): App;
|
|
106
109
|
|
|
107
110
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
108
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
111
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): App;
|
|
109
112
|
hasCreatedAt(): boolean;
|
|
110
|
-
clearCreatedAt():
|
|
113
|
+
clearCreatedAt(): App;
|
|
111
114
|
|
|
112
115
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
113
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
116
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): App;
|
|
114
117
|
hasModifiedAt(): boolean;
|
|
115
|
-
clearModifiedAt():
|
|
118
|
+
clearModifiedAt(): App;
|
|
116
119
|
|
|
117
120
|
getLegalConsentStatus(): number;
|
|
118
|
-
setLegalConsentStatus(value: number):
|
|
121
|
+
setLegalConsentStatus(value: number): App;
|
|
119
122
|
|
|
120
123
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
121
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
124
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): App;
|
|
122
125
|
hasMetadata(): boolean;
|
|
123
|
-
clearMetadata():
|
|
126
|
+
clearMetadata(): App;
|
|
124
127
|
|
|
125
128
|
getDescription(): string;
|
|
126
|
-
setDescription(value: string):
|
|
129
|
+
setDescription(value: string): App;
|
|
127
130
|
|
|
128
131
|
getSampleMs(): number;
|
|
129
|
-
setSampleMs(value: number):
|
|
132
|
+
setSampleMs(value: number): App;
|
|
130
133
|
|
|
131
134
|
getVisibility(): Visibility | undefined;
|
|
132
|
-
setVisibility(value?: Visibility):
|
|
135
|
+
setVisibility(value?: Visibility): App;
|
|
133
136
|
hasVisibility(): boolean;
|
|
134
|
-
clearVisibility():
|
|
137
|
+
clearVisibility(): App;
|
|
135
138
|
|
|
136
139
|
getDataTierId(): string;
|
|
137
|
-
setDataTierId(value: string):
|
|
140
|
+
setDataTierId(value: string): App;
|
|
138
141
|
|
|
139
142
|
getIsStarred(): boolean;
|
|
140
|
-
setIsStarred(value: boolean):
|
|
143
|
+
setIsStarred(value: boolean): App;
|
|
141
144
|
|
|
142
145
|
getStarCount(): number;
|
|
143
|
-
setStarCount(value: number):
|
|
146
|
+
setStarCount(value: number): App;
|
|
147
|
+
|
|
148
|
+
getNotes(): string;
|
|
149
|
+
setNotes(value: string): App;
|
|
144
150
|
|
|
145
151
|
serializeBinary(): Uint8Array;
|
|
146
152
|
toObject(includeInstance?: boolean): App.AsObject;
|
|
@@ -167,12 +173,13 @@ export namespace App {
|
|
|
167
173
|
dataTierId: string,
|
|
168
174
|
isStarred: boolean,
|
|
169
175
|
starCount: number,
|
|
176
|
+
notes: string,
|
|
170
177
|
}
|
|
171
178
|
}
|
|
172
179
|
|
|
173
180
|
export class AppQuery extends jspb.Message {
|
|
174
181
|
getName(): string;
|
|
175
|
-
setName(value: string):
|
|
182
|
+
setName(value: string): AppQuery;
|
|
176
183
|
|
|
177
184
|
serializeBinary(): Uint8Array;
|
|
178
185
|
toObject(includeInstance?: boolean): AppQuery.AsObject;
|
|
@@ -190,42 +197,42 @@ export namespace AppQuery {
|
|
|
190
197
|
|
|
191
198
|
export class Collaborator extends jspb.Message {
|
|
192
199
|
getId(): string;
|
|
193
|
-
setId(value: string):
|
|
200
|
+
setId(value: string): Collaborator;
|
|
194
201
|
|
|
195
202
|
getApp(): App | undefined;
|
|
196
|
-
setApp(value?: App):
|
|
203
|
+
setApp(value?: App): Collaborator;
|
|
197
204
|
hasApp(): boolean;
|
|
198
|
-
clearApp():
|
|
205
|
+
clearApp(): Collaborator;
|
|
199
206
|
|
|
200
207
|
getUser(): User | undefined;
|
|
201
|
-
setUser(value?: User):
|
|
208
|
+
setUser(value?: User): Collaborator;
|
|
202
209
|
hasUser(): boolean;
|
|
203
|
-
clearUser():
|
|
210
|
+
clearUser(): Collaborator;
|
|
204
211
|
|
|
205
212
|
getScopesList(): Array<string>;
|
|
206
|
-
setScopesList(value: Array<string>):
|
|
207
|
-
clearScopesList():
|
|
208
|
-
addScopes(value: string, index?: number):
|
|
213
|
+
setScopesList(value: Array<string>): Collaborator;
|
|
214
|
+
clearScopesList(): Collaborator;
|
|
215
|
+
addScopes(value: string, index?: number): Collaborator;
|
|
209
216
|
|
|
210
217
|
getEndpointsList(): Array<string>;
|
|
211
|
-
setEndpointsList(value: Array<string>):
|
|
212
|
-
clearEndpointsList():
|
|
213
|
-
addEndpoints(value: string, index?: number):
|
|
218
|
+
setEndpointsList(value: Array<string>): Collaborator;
|
|
219
|
+
clearEndpointsList(): Collaborator;
|
|
220
|
+
addEndpoints(value: string, index?: number): Collaborator;
|
|
214
221
|
|
|
215
222
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
216
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
223
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Collaborator;
|
|
217
224
|
hasCreatedAt(): boolean;
|
|
218
|
-
clearCreatedAt():
|
|
225
|
+
clearCreatedAt(): Collaborator;
|
|
219
226
|
|
|
220
227
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
221
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
228
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Collaborator;
|
|
222
229
|
hasModifiedAt(): boolean;
|
|
223
|
-
clearModifiedAt():
|
|
230
|
+
clearModifiedAt(): Collaborator;
|
|
224
231
|
|
|
225
232
|
getDeletedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
226
|
-
setDeletedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
233
|
+
setDeletedAt(value?: google_protobuf_timestamp_pb.Timestamp): Collaborator;
|
|
227
234
|
hasDeletedAt(): boolean;
|
|
228
|
-
clearDeletedAt():
|
|
235
|
+
clearDeletedAt(): Collaborator;
|
|
229
236
|
|
|
230
237
|
serializeBinary(): Uint8Array;
|
|
231
238
|
toObject(includeInstance?: boolean): Collaborator.AsObject;
|
|
@@ -250,29 +257,29 @@ export namespace Collaborator {
|
|
|
250
257
|
|
|
251
258
|
export class Collaboration extends jspb.Message {
|
|
252
259
|
getApp(): App | undefined;
|
|
253
|
-
setApp(value?: App):
|
|
260
|
+
setApp(value?: App): Collaboration;
|
|
254
261
|
hasApp(): boolean;
|
|
255
|
-
clearApp():
|
|
262
|
+
clearApp(): Collaboration;
|
|
256
263
|
|
|
257
264
|
getAppOwner(): User | undefined;
|
|
258
|
-
setAppOwner(value?: User):
|
|
265
|
+
setAppOwner(value?: User): Collaboration;
|
|
259
266
|
hasAppOwner(): boolean;
|
|
260
|
-
clearAppOwner():
|
|
267
|
+
clearAppOwner(): Collaboration;
|
|
261
268
|
|
|
262
269
|
getScopesList(): Array<string>;
|
|
263
|
-
setScopesList(value: Array<string>):
|
|
264
|
-
clearScopesList():
|
|
265
|
-
addScopes(value: string, index?: number):
|
|
270
|
+
setScopesList(value: Array<string>): Collaboration;
|
|
271
|
+
clearScopesList(): Collaboration;
|
|
272
|
+
addScopes(value: string, index?: number): Collaboration;
|
|
266
273
|
|
|
267
274
|
getEndpointsList(): Array<string>;
|
|
268
|
-
setEndpointsList(value: Array<string>):
|
|
269
|
-
clearEndpointsList():
|
|
270
|
-
addEndpoints(value: string, index?: number):
|
|
275
|
+
setEndpointsList(value: Array<string>): Collaboration;
|
|
276
|
+
clearEndpointsList(): Collaboration;
|
|
277
|
+
addEndpoints(value: string, index?: number): Collaboration;
|
|
271
278
|
|
|
272
279
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
273
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
280
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Collaboration;
|
|
274
281
|
hasCreatedAt(): boolean;
|
|
275
|
-
clearCreatedAt():
|
|
282
|
+
clearCreatedAt(): Collaboration;
|
|
276
283
|
|
|
277
284
|
serializeBinary(): Uint8Array;
|
|
278
285
|
toObject(includeInstance?: boolean): Collaboration.AsObject;
|
|
@@ -294,25 +301,25 @@ export namespace Collaboration {
|
|
|
294
301
|
|
|
295
302
|
export class Audio extends jspb.Message {
|
|
296
303
|
getUrl(): string;
|
|
297
|
-
setUrl(value: string):
|
|
304
|
+
setUrl(value: string): Audio;
|
|
298
305
|
|
|
299
306
|
getBase64(): Uint8Array | string;
|
|
300
307
|
getBase64_asU8(): Uint8Array;
|
|
301
308
|
getBase64_asB64(): string;
|
|
302
|
-
setBase64(value: Uint8Array | string):
|
|
309
|
+
setBase64(value: Uint8Array | string): Audio;
|
|
303
310
|
|
|
304
311
|
getAllowDuplicateUrl(): boolean;
|
|
305
|
-
setAllowDuplicateUrl(value: boolean):
|
|
312
|
+
setAllowDuplicateUrl(value: boolean): Audio;
|
|
306
313
|
|
|
307
314
|
getHosted(): HostedURL | undefined;
|
|
308
|
-
setHosted(value?: HostedURL):
|
|
315
|
+
setHosted(value?: HostedURL): Audio;
|
|
309
316
|
hasHosted(): boolean;
|
|
310
|
-
clearHosted():
|
|
317
|
+
clearHosted(): Audio;
|
|
311
318
|
|
|
312
319
|
getAudioInfo(): AudioInfo | undefined;
|
|
313
|
-
setAudioInfo(value?: AudioInfo):
|
|
320
|
+
setAudioInfo(value?: AudioInfo): Audio;
|
|
314
321
|
hasAudioInfo(): boolean;
|
|
315
|
-
clearAudioInfo():
|
|
322
|
+
clearAudioInfo(): Audio;
|
|
316
323
|
|
|
317
324
|
serializeBinary(): Uint8Array;
|
|
318
325
|
toObject(includeInstance?: boolean): Audio.AsObject;
|
|
@@ -334,16 +341,16 @@ export namespace Audio {
|
|
|
334
341
|
|
|
335
342
|
export class AudioInfo extends jspb.Message {
|
|
336
343
|
getAudioFormat(): string;
|
|
337
|
-
setAudioFormat(value: string):
|
|
344
|
+
setAudioFormat(value: string): AudioInfo;
|
|
338
345
|
|
|
339
346
|
getSampleRate(): number;
|
|
340
|
-
setSampleRate(value: number):
|
|
347
|
+
setSampleRate(value: number): AudioInfo;
|
|
341
348
|
|
|
342
349
|
getDurationSeconds(): number;
|
|
343
|
-
setDurationSeconds(value: number):
|
|
350
|
+
setDurationSeconds(value: number): AudioInfo;
|
|
344
351
|
|
|
345
352
|
getBitRate(): number;
|
|
346
|
-
setBitRate(value: number):
|
|
353
|
+
setBitRate(value: number): AudioInfo;
|
|
347
354
|
|
|
348
355
|
serializeBinary(): Uint8Array;
|
|
349
356
|
toObject(includeInstance?: boolean): AudioInfo.AsObject;
|
|
@@ -364,20 +371,20 @@ export namespace AudioInfo {
|
|
|
364
371
|
|
|
365
372
|
export class Track extends jspb.Message {
|
|
366
373
|
getId(): string;
|
|
367
|
-
setId(value: string):
|
|
374
|
+
setId(value: string): Track;
|
|
368
375
|
|
|
369
376
|
getData(): Data | undefined;
|
|
370
|
-
setData(value?: Data):
|
|
377
|
+
setData(value?: Data): Track;
|
|
371
378
|
hasData(): boolean;
|
|
372
|
-
clearData():
|
|
379
|
+
clearData(): Track;
|
|
373
380
|
|
|
374
381
|
getTimeInfo(): TimeInfo | undefined;
|
|
375
|
-
setTimeInfo(value?: TimeInfo):
|
|
382
|
+
setTimeInfo(value?: TimeInfo): Track;
|
|
376
383
|
hasTimeInfo(): boolean;
|
|
377
|
-
clearTimeInfo():
|
|
384
|
+
clearTimeInfo(): Track;
|
|
378
385
|
|
|
379
386
|
getQuality(): number;
|
|
380
|
-
setQuality(value: number):
|
|
387
|
+
setQuality(value: number): Track;
|
|
381
388
|
|
|
382
389
|
serializeBinary(): Uint8Array;
|
|
383
390
|
toObject(includeInstance?: boolean): Track.AsObject;
|
|
@@ -398,23 +405,23 @@ export namespace Track {
|
|
|
398
405
|
|
|
399
406
|
export class Cluster extends jspb.Message {
|
|
400
407
|
getId(): string;
|
|
401
|
-
setId(value: string):
|
|
408
|
+
setId(value: string): Cluster;
|
|
402
409
|
|
|
403
410
|
getCount(): number;
|
|
404
|
-
setCount(value: number):
|
|
411
|
+
setCount(value: number): Cluster;
|
|
405
412
|
|
|
406
413
|
getScore(): number;
|
|
407
|
-
setScore(value: number):
|
|
414
|
+
setScore(value: number): Cluster;
|
|
408
415
|
|
|
409
416
|
getHitsList(): Array<Hit>;
|
|
410
|
-
setHitsList(value: Array<Hit>):
|
|
411
|
-
clearHitsList():
|
|
417
|
+
setHitsList(value: Array<Hit>): Cluster;
|
|
418
|
+
clearHitsList(): Cluster;
|
|
412
419
|
addHits(value?: Hit, index?: number): Hit;
|
|
413
420
|
|
|
414
421
|
getProjectionList(): Array<number>;
|
|
415
|
-
setProjectionList(value: Array<number>):
|
|
416
|
-
clearProjectionList():
|
|
417
|
-
addProjection(value: number, index?: number):
|
|
422
|
+
setProjectionList(value: Array<number>): Cluster;
|
|
423
|
+
clearProjectionList(): Cluster;
|
|
424
|
+
addProjection(value: number, index?: number): Cluster;
|
|
418
425
|
|
|
419
426
|
serializeBinary(): Uint8Array;
|
|
420
427
|
toObject(includeInstance?: boolean): Cluster.AsObject;
|
|
@@ -436,15 +443,15 @@ export namespace Cluster {
|
|
|
436
443
|
|
|
437
444
|
export class Color extends jspb.Message {
|
|
438
445
|
getRawHex(): string;
|
|
439
|
-
setRawHex(value: string):
|
|
446
|
+
setRawHex(value: string): Color;
|
|
440
447
|
|
|
441
448
|
getW3c(): W3C | undefined;
|
|
442
|
-
setW3c(value?: W3C):
|
|
449
|
+
setW3c(value?: W3C): Color;
|
|
443
450
|
hasW3c(): boolean;
|
|
444
|
-
clearW3c():
|
|
451
|
+
clearW3c(): Color;
|
|
445
452
|
|
|
446
453
|
getValue(): number;
|
|
447
|
-
setValue(value: number):
|
|
454
|
+
setValue(value: number): Color;
|
|
448
455
|
|
|
449
456
|
serializeBinary(): Uint8Array;
|
|
450
457
|
toObject(includeInstance?: boolean): Color.AsObject;
|
|
@@ -464,10 +471,10 @@ export namespace Color {
|
|
|
464
471
|
|
|
465
472
|
export class W3C extends jspb.Message {
|
|
466
473
|
getHex(): string;
|
|
467
|
-
setHex(value: string):
|
|
474
|
+
setHex(value: string): W3C;
|
|
468
475
|
|
|
469
476
|
getName(): string;
|
|
470
|
-
setName(value: string):
|
|
477
|
+
setName(value: string): W3C;
|
|
471
478
|
|
|
472
479
|
serializeBinary(): Uint8Array;
|
|
473
480
|
toObject(includeInstance?: boolean): W3C.AsObject;
|
|
@@ -486,10 +493,10 @@ export namespace W3C {
|
|
|
486
493
|
|
|
487
494
|
export class UserAppIDSet extends jspb.Message {
|
|
488
495
|
getUserId(): string;
|
|
489
|
-
setUserId(value: string):
|
|
496
|
+
setUserId(value: string): UserAppIDSet;
|
|
490
497
|
|
|
491
498
|
getAppId(): string;
|
|
492
|
-
setAppId(value: string):
|
|
499
|
+
setAppId(value: string): UserAppIDSet;
|
|
493
500
|
|
|
494
501
|
serializeBinary(): Uint8Array;
|
|
495
502
|
toObject(includeInstance?: boolean): UserAppIDSet.AsObject;
|
|
@@ -508,13 +515,13 @@ export namespace UserAppIDSet {
|
|
|
508
515
|
|
|
509
516
|
export class PatchAction extends jspb.Message {
|
|
510
517
|
getOp(): string;
|
|
511
|
-
setOp(value: string):
|
|
518
|
+
setOp(value: string): PatchAction;
|
|
512
519
|
|
|
513
520
|
getMergeConflictResolution(): string;
|
|
514
|
-
setMergeConflictResolution(value: string):
|
|
521
|
+
setMergeConflictResolution(value: string): PatchAction;
|
|
515
522
|
|
|
516
523
|
getPath(): string;
|
|
517
|
-
setPath(value: string):
|
|
524
|
+
setPath(value: string): PatchAction;
|
|
518
525
|
|
|
519
526
|
serializeBinary(): Uint8Array;
|
|
520
527
|
toObject(includeInstance?: boolean): PatchAction.AsObject;
|
|
@@ -534,38 +541,38 @@ export namespace PatchAction {
|
|
|
534
541
|
|
|
535
542
|
export class Concept extends jspb.Message {
|
|
536
543
|
getId(): string;
|
|
537
|
-
setId(value: string):
|
|
544
|
+
setId(value: string): Concept;
|
|
538
545
|
|
|
539
546
|
getName(): string;
|
|
540
|
-
setName(value: string):
|
|
547
|
+
setName(value: string): Concept;
|
|
541
548
|
|
|
542
549
|
getValue(): number;
|
|
543
|
-
setValue(value: number):
|
|
550
|
+
setValue(value: number): Concept;
|
|
544
551
|
|
|
545
552
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
546
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
553
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Concept;
|
|
547
554
|
hasCreatedAt(): boolean;
|
|
548
|
-
clearCreatedAt():
|
|
555
|
+
clearCreatedAt(): Concept;
|
|
549
556
|
|
|
550
557
|
getLanguage(): string;
|
|
551
|
-
setLanguage(value: string):
|
|
558
|
+
setLanguage(value: string): Concept;
|
|
552
559
|
|
|
553
560
|
getAppId(): string;
|
|
554
|
-
setAppId(value: string):
|
|
561
|
+
setAppId(value: string): Concept;
|
|
555
562
|
|
|
556
563
|
getDefinition(): string;
|
|
557
|
-
setDefinition(value: string):
|
|
564
|
+
setDefinition(value: string): Concept;
|
|
558
565
|
|
|
559
566
|
getVocabId(): string;
|
|
560
|
-
setVocabId(value: string):
|
|
567
|
+
setVocabId(value: string): Concept;
|
|
561
568
|
|
|
562
569
|
getVisibility(): Visibility | undefined;
|
|
563
|
-
setVisibility(value?: Visibility):
|
|
570
|
+
setVisibility(value?: Visibility): Concept;
|
|
564
571
|
hasVisibility(): boolean;
|
|
565
|
-
clearVisibility():
|
|
572
|
+
clearVisibility(): Concept;
|
|
566
573
|
|
|
567
574
|
getUserId(): string;
|
|
568
|
-
setUserId(value: string):
|
|
575
|
+
setUserId(value: string): Concept;
|
|
569
576
|
|
|
570
577
|
serializeBinary(): Uint8Array;
|
|
571
578
|
toObject(includeInstance?: boolean): Concept.AsObject;
|
|
@@ -592,20 +599,20 @@ export namespace Concept {
|
|
|
592
599
|
|
|
593
600
|
export class ConceptCount extends jspb.Message {
|
|
594
601
|
getId(): string;
|
|
595
|
-
setId(value: string):
|
|
602
|
+
setId(value: string): ConceptCount;
|
|
596
603
|
|
|
597
604
|
getName(): string;
|
|
598
|
-
setName(value: string):
|
|
605
|
+
setName(value: string): ConceptCount;
|
|
599
606
|
|
|
600
607
|
getConceptTypeCount(): ConceptTypeCount | undefined;
|
|
601
|
-
setConceptTypeCount(value?: ConceptTypeCount):
|
|
608
|
+
setConceptTypeCount(value?: ConceptTypeCount): ConceptCount;
|
|
602
609
|
hasConceptTypeCount(): boolean;
|
|
603
|
-
clearConceptTypeCount():
|
|
610
|
+
clearConceptTypeCount(): ConceptCount;
|
|
604
611
|
|
|
605
612
|
getDetailConceptCount(): DetailConceptCount | undefined;
|
|
606
|
-
setDetailConceptCount(value?: DetailConceptCount):
|
|
613
|
+
setDetailConceptCount(value?: DetailConceptCount): ConceptCount;
|
|
607
614
|
hasDetailConceptCount(): boolean;
|
|
608
|
-
clearDetailConceptCount():
|
|
615
|
+
clearDetailConceptCount(): ConceptCount;
|
|
609
616
|
|
|
610
617
|
serializeBinary(): Uint8Array;
|
|
611
618
|
toObject(includeInstance?: boolean): ConceptCount.AsObject;
|
|
@@ -626,10 +633,10 @@ export namespace ConceptCount {
|
|
|
626
633
|
|
|
627
634
|
export class ConceptTypeCount extends jspb.Message {
|
|
628
635
|
getPositive(): number;
|
|
629
|
-
setPositive(value: number):
|
|
636
|
+
setPositive(value: number): ConceptTypeCount;
|
|
630
637
|
|
|
631
638
|
getNegative(): number;
|
|
632
|
-
setNegative(value: number):
|
|
639
|
+
setNegative(value: number): ConceptTypeCount;
|
|
633
640
|
|
|
634
641
|
serializeBinary(): Uint8Array;
|
|
635
642
|
toObject(includeInstance?: boolean): ConceptTypeCount.AsObject;
|
|
@@ -648,24 +655,24 @@ export namespace ConceptTypeCount {
|
|
|
648
655
|
|
|
649
656
|
export class DetailConceptCount extends jspb.Message {
|
|
650
657
|
getProcessed(): ConceptTypeCount | undefined;
|
|
651
|
-
setProcessed(value?: ConceptTypeCount):
|
|
658
|
+
setProcessed(value?: ConceptTypeCount): DetailConceptCount;
|
|
652
659
|
hasProcessed(): boolean;
|
|
653
|
-
clearProcessed():
|
|
660
|
+
clearProcessed(): DetailConceptCount;
|
|
654
661
|
|
|
655
662
|
getToProcess(): ConceptTypeCount | undefined;
|
|
656
|
-
setToProcess(value?: ConceptTypeCount):
|
|
663
|
+
setToProcess(value?: ConceptTypeCount): DetailConceptCount;
|
|
657
664
|
hasToProcess(): boolean;
|
|
658
|
-
clearToProcess():
|
|
665
|
+
clearToProcess(): DetailConceptCount;
|
|
659
666
|
|
|
660
667
|
getErrors(): ConceptTypeCount | undefined;
|
|
661
|
-
setErrors(value?: ConceptTypeCount):
|
|
668
|
+
setErrors(value?: ConceptTypeCount): DetailConceptCount;
|
|
662
669
|
hasErrors(): boolean;
|
|
663
|
-
clearErrors():
|
|
670
|
+
clearErrors(): DetailConceptCount;
|
|
664
671
|
|
|
665
672
|
getProcessing(): ConceptTypeCount | undefined;
|
|
666
|
-
setProcessing(value?: ConceptTypeCount):
|
|
673
|
+
setProcessing(value?: ConceptTypeCount): DetailConceptCount;
|
|
667
674
|
hasProcessing(): boolean;
|
|
668
|
-
clearProcessing():
|
|
675
|
+
clearProcessing(): DetailConceptCount;
|
|
669
676
|
|
|
670
677
|
serializeBinary(): Uint8Array;
|
|
671
678
|
toObject(includeInstance?: boolean): DetailConceptCount.AsObject;
|
|
@@ -686,13 +693,13 @@ export namespace DetailConceptCount {
|
|
|
686
693
|
|
|
687
694
|
export class ConceptQuery extends jspb.Message {
|
|
688
695
|
getName(): string;
|
|
689
|
-
setName(value: string):
|
|
696
|
+
setName(value: string): ConceptQuery;
|
|
690
697
|
|
|
691
698
|
getLanguage(): string;
|
|
692
|
-
setLanguage(value: string):
|
|
699
|
+
setLanguage(value: string): ConceptQuery;
|
|
693
700
|
|
|
694
701
|
getWorkflowId(): string;
|
|
695
|
-
setWorkflowId(value: string):
|
|
702
|
+
setWorkflowId(value: string): ConceptQuery;
|
|
696
703
|
|
|
697
704
|
serializeBinary(): Uint8Array;
|
|
698
705
|
toObject(includeInstance?: boolean): ConceptQuery.AsObject;
|
|
@@ -712,28 +719,28 @@ export namespace ConceptQuery {
|
|
|
712
719
|
|
|
713
720
|
export class ConceptRelation extends jspb.Message {
|
|
714
721
|
getId(): string;
|
|
715
|
-
setId(value: string):
|
|
722
|
+
setId(value: string): ConceptRelation;
|
|
716
723
|
|
|
717
724
|
getSubjectConcept(): Concept | undefined;
|
|
718
|
-
setSubjectConcept(value?: Concept):
|
|
725
|
+
setSubjectConcept(value?: Concept): ConceptRelation;
|
|
719
726
|
hasSubjectConcept(): boolean;
|
|
720
|
-
clearSubjectConcept():
|
|
727
|
+
clearSubjectConcept(): ConceptRelation;
|
|
721
728
|
|
|
722
729
|
getObjectConcept(): Concept | undefined;
|
|
723
|
-
setObjectConcept(value?: Concept):
|
|
730
|
+
setObjectConcept(value?: Concept): ConceptRelation;
|
|
724
731
|
hasObjectConcept(): boolean;
|
|
725
|
-
clearObjectConcept():
|
|
732
|
+
clearObjectConcept(): ConceptRelation;
|
|
726
733
|
|
|
727
734
|
getPredicate(): string;
|
|
728
|
-
setPredicate(value: string):
|
|
735
|
+
setPredicate(value: string): ConceptRelation;
|
|
729
736
|
|
|
730
737
|
getKnowledgeGraphId(): string;
|
|
731
|
-
setKnowledgeGraphId(value: string):
|
|
738
|
+
setKnowledgeGraphId(value: string): ConceptRelation;
|
|
732
739
|
|
|
733
740
|
getVisibility(): Visibility | undefined;
|
|
734
|
-
setVisibility(value?: Visibility):
|
|
741
|
+
setVisibility(value?: Visibility): ConceptRelation;
|
|
735
742
|
hasVisibility(): boolean;
|
|
736
|
-
clearVisibility():
|
|
743
|
+
clearVisibility(): ConceptRelation;
|
|
737
744
|
|
|
738
745
|
serializeBinary(): Uint8Array;
|
|
739
746
|
toObject(includeInstance?: boolean): ConceptRelation.AsObject;
|
|
@@ -756,19 +763,19 @@ export namespace ConceptRelation {
|
|
|
756
763
|
|
|
757
764
|
export class KnowledgeGraph extends jspb.Message {
|
|
758
765
|
getId(): string;
|
|
759
|
-
setId(value: string):
|
|
766
|
+
setId(value: string): KnowledgeGraph;
|
|
760
767
|
|
|
761
768
|
getName(): string;
|
|
762
|
-
setName(value: string):
|
|
769
|
+
setName(value: string): KnowledgeGraph;
|
|
763
770
|
|
|
764
771
|
getDescription(): string;
|
|
765
|
-
setDescription(value: string):
|
|
772
|
+
setDescription(value: string): KnowledgeGraph;
|
|
766
773
|
|
|
767
774
|
getExamplesAppId(): string;
|
|
768
|
-
setExamplesAppId(value: string):
|
|
775
|
+
setExamplesAppId(value: string): KnowledgeGraph;
|
|
769
776
|
|
|
770
777
|
getSampledExamplesAppId(): string;
|
|
771
|
-
setSampledExamplesAppId(value: string):
|
|
778
|
+
setSampledExamplesAppId(value: string): KnowledgeGraph;
|
|
772
779
|
|
|
773
780
|
serializeBinary(): Uint8Array;
|
|
774
781
|
toObject(includeInstance?: boolean): KnowledgeGraph.AsObject;
|
|
@@ -790,12 +797,12 @@ export namespace KnowledgeGraph {
|
|
|
790
797
|
|
|
791
798
|
export class ConceptMappingJob extends jspb.Message {
|
|
792
799
|
getKnowledgeGraphId(): string;
|
|
793
|
-
setKnowledgeGraphId(value: string):
|
|
800
|
+
setKnowledgeGraphId(value: string): ConceptMappingJob;
|
|
794
801
|
|
|
795
802
|
getConceptIdsList(): Array<string>;
|
|
796
|
-
setConceptIdsList(value: Array<string>):
|
|
797
|
-
clearConceptIdsList():
|
|
798
|
-
addConceptIds(value: string, index?: number):
|
|
803
|
+
setConceptIdsList(value: Array<string>): ConceptMappingJob;
|
|
804
|
+
clearConceptIdsList(): ConceptMappingJob;
|
|
805
|
+
addConceptIds(value: string, index?: number): ConceptMappingJob;
|
|
799
806
|
|
|
800
807
|
serializeBinary(): Uint8Array;
|
|
801
808
|
toObject(includeInstance?: boolean): ConceptMappingJob.AsObject;
|
|
@@ -814,13 +821,13 @@ export namespace ConceptMappingJob {
|
|
|
814
821
|
|
|
815
822
|
export class ConceptLanguage extends jspb.Message {
|
|
816
823
|
getId(): string;
|
|
817
|
-
setId(value: string):
|
|
824
|
+
setId(value: string): ConceptLanguage;
|
|
818
825
|
|
|
819
826
|
getName(): string;
|
|
820
|
-
setName(value: string):
|
|
827
|
+
setName(value: string): ConceptLanguage;
|
|
821
828
|
|
|
822
829
|
getDefinition(): string;
|
|
823
|
-
setDefinition(value: string):
|
|
830
|
+
setDefinition(value: string): ConceptLanguage;
|
|
824
831
|
|
|
825
832
|
serializeBinary(): Uint8Array;
|
|
826
833
|
toObject(includeInstance?: boolean): ConceptLanguage.AsObject;
|
|
@@ -840,75 +847,80 @@ export namespace ConceptLanguage {
|
|
|
840
847
|
|
|
841
848
|
export class Data extends jspb.Message {
|
|
842
849
|
getImage(): Image | undefined;
|
|
843
|
-
setImage(value?: Image):
|
|
850
|
+
setImage(value?: Image): Data;
|
|
844
851
|
hasImage(): boolean;
|
|
845
|
-
clearImage():
|
|
852
|
+
clearImage(): Data;
|
|
846
853
|
|
|
847
854
|
getVideo(): Video | undefined;
|
|
848
|
-
setVideo(value?: Video):
|
|
855
|
+
setVideo(value?: Video): Data;
|
|
849
856
|
hasVideo(): boolean;
|
|
850
|
-
clearVideo():
|
|
857
|
+
clearVideo(): Data;
|
|
851
858
|
|
|
852
859
|
getConceptsList(): Array<Concept>;
|
|
853
|
-
setConceptsList(value: Array<Concept>):
|
|
854
|
-
clearConceptsList():
|
|
860
|
+
setConceptsList(value: Array<Concept>): Data;
|
|
861
|
+
clearConceptsList(): Data;
|
|
855
862
|
addConcepts(value?: Concept, index?: number): Concept;
|
|
856
863
|
|
|
857
864
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
858
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
865
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Data;
|
|
859
866
|
hasMetadata(): boolean;
|
|
860
|
-
clearMetadata():
|
|
867
|
+
clearMetadata(): Data;
|
|
861
868
|
|
|
862
869
|
getGeo(): Geo | undefined;
|
|
863
|
-
setGeo(value?: Geo):
|
|
870
|
+
setGeo(value?: Geo): Data;
|
|
864
871
|
hasGeo(): boolean;
|
|
865
|
-
clearGeo():
|
|
872
|
+
clearGeo(): Data;
|
|
866
873
|
|
|
867
874
|
getColorsList(): Array<Color>;
|
|
868
|
-
setColorsList(value: Array<Color>):
|
|
869
|
-
clearColorsList():
|
|
875
|
+
setColorsList(value: Array<Color>): Data;
|
|
876
|
+
clearColorsList(): Data;
|
|
870
877
|
addColors(value?: Color, index?: number): Color;
|
|
871
878
|
|
|
872
879
|
getClustersList(): Array<Cluster>;
|
|
873
|
-
setClustersList(value: Array<Cluster>):
|
|
874
|
-
clearClustersList():
|
|
880
|
+
setClustersList(value: Array<Cluster>): Data;
|
|
881
|
+
clearClustersList(): Data;
|
|
875
882
|
addClusters(value?: Cluster, index?: number): Cluster;
|
|
876
883
|
|
|
877
884
|
getEmbeddingsList(): Array<Embedding>;
|
|
878
|
-
setEmbeddingsList(value: Array<Embedding>):
|
|
879
|
-
clearEmbeddingsList():
|
|
885
|
+
setEmbeddingsList(value: Array<Embedding>): Data;
|
|
886
|
+
clearEmbeddingsList(): Data;
|
|
880
887
|
addEmbeddings(value?: Embedding, index?: number): Embedding;
|
|
881
888
|
|
|
882
889
|
getRegionsList(): Array<Region>;
|
|
883
|
-
setRegionsList(value: Array<Region>):
|
|
884
|
-
clearRegionsList():
|
|
890
|
+
setRegionsList(value: Array<Region>): Data;
|
|
891
|
+
clearRegionsList(): Data;
|
|
885
892
|
addRegions(value?: Region, index?: number): Region;
|
|
886
893
|
|
|
887
894
|
getFramesList(): Array<Frame>;
|
|
888
|
-
setFramesList(value: Array<Frame>):
|
|
889
|
-
clearFramesList():
|
|
895
|
+
setFramesList(value: Array<Frame>): Data;
|
|
896
|
+
clearFramesList(): Data;
|
|
890
897
|
addFrames(value?: Frame, index?: number): Frame;
|
|
891
898
|
|
|
892
899
|
getText(): Text | undefined;
|
|
893
|
-
setText(value?: Text):
|
|
900
|
+
setText(value?: Text): Data;
|
|
894
901
|
hasText(): boolean;
|
|
895
|
-
clearText():
|
|
902
|
+
clearText(): Data;
|
|
896
903
|
|
|
897
904
|
getAudio(): Audio | undefined;
|
|
898
|
-
setAudio(value?: Audio):
|
|
905
|
+
setAudio(value?: Audio): Data;
|
|
899
906
|
hasAudio(): boolean;
|
|
900
|
-
clearAudio():
|
|
907
|
+
clearAudio(): Data;
|
|
901
908
|
|
|
902
909
|
getTracksList(): Array<Track>;
|
|
903
|
-
setTracksList(value: Array<Track>):
|
|
904
|
-
clearTracksList():
|
|
910
|
+
setTracksList(value: Array<Track>): Data;
|
|
911
|
+
clearTracksList(): Data;
|
|
905
912
|
addTracks(value?: Track, index?: number): Track;
|
|
906
913
|
|
|
907
914
|
getTimeSegmentsList(): Array<TimeSegment>;
|
|
908
|
-
setTimeSegmentsList(value: Array<TimeSegment>):
|
|
909
|
-
clearTimeSegmentsList():
|
|
915
|
+
setTimeSegmentsList(value: Array<TimeSegment>): Data;
|
|
916
|
+
clearTimeSegmentsList(): Data;
|
|
910
917
|
addTimeSegments(value?: TimeSegment, index?: number): TimeSegment;
|
|
911
918
|
|
|
919
|
+
getHitsList(): Array<Hit>;
|
|
920
|
+
setHitsList(value: Array<Hit>): Data;
|
|
921
|
+
clearHitsList(): Data;
|
|
922
|
+
addHits(value?: Hit, index?: number): Hit;
|
|
923
|
+
|
|
912
924
|
serializeBinary(): Uint8Array;
|
|
913
925
|
toObject(includeInstance?: boolean): Data.AsObject;
|
|
914
926
|
static toObject(includeInstance: boolean, msg: Data): Data.AsObject;
|
|
@@ -933,28 +945,29 @@ export namespace Data {
|
|
|
933
945
|
audio?: Audio.AsObject,
|
|
934
946
|
tracksList: Array<Track.AsObject>,
|
|
935
947
|
timeSegmentsList: Array<TimeSegment.AsObject>,
|
|
948
|
+
hitsList: Array<Hit.AsObject>,
|
|
936
949
|
}
|
|
937
950
|
}
|
|
938
951
|
|
|
939
952
|
export class Region extends jspb.Message {
|
|
940
953
|
getId(): string;
|
|
941
|
-
setId(value: string):
|
|
954
|
+
setId(value: string): Region;
|
|
942
955
|
|
|
943
956
|
getRegionInfo(): RegionInfo | undefined;
|
|
944
|
-
setRegionInfo(value?: RegionInfo):
|
|
957
|
+
setRegionInfo(value?: RegionInfo): Region;
|
|
945
958
|
hasRegionInfo(): boolean;
|
|
946
|
-
clearRegionInfo():
|
|
959
|
+
clearRegionInfo(): Region;
|
|
947
960
|
|
|
948
961
|
getData(): Data | undefined;
|
|
949
|
-
setData(value?: Data):
|
|
962
|
+
setData(value?: Data): Region;
|
|
950
963
|
hasData(): boolean;
|
|
951
|
-
clearData():
|
|
964
|
+
clearData(): Region;
|
|
952
965
|
|
|
953
966
|
getValue(): number;
|
|
954
|
-
setValue(value: number):
|
|
967
|
+
setValue(value: number): Region;
|
|
955
968
|
|
|
956
969
|
getTrackId(): string;
|
|
957
|
-
setTrackId(value: string):
|
|
970
|
+
setTrackId(value: string): Region;
|
|
958
971
|
|
|
959
972
|
serializeBinary(): Uint8Array;
|
|
960
973
|
toObject(includeInstance?: boolean): Region.AsObject;
|
|
@@ -976,24 +989,34 @@ export namespace Region {
|
|
|
976
989
|
|
|
977
990
|
export class RegionInfo extends jspb.Message {
|
|
978
991
|
getBoundingBox(): BoundingBox | undefined;
|
|
979
|
-
setBoundingBox(value?: BoundingBox):
|
|
992
|
+
setBoundingBox(value?: BoundingBox): RegionInfo;
|
|
980
993
|
hasBoundingBox(): boolean;
|
|
981
|
-
clearBoundingBox():
|
|
994
|
+
clearBoundingBox(): RegionInfo;
|
|
982
995
|
|
|
983
996
|
getMask(): Mask | undefined;
|
|
984
|
-
setMask(value?: Mask):
|
|
997
|
+
setMask(value?: Mask): RegionInfo;
|
|
985
998
|
hasMask(): boolean;
|
|
986
|
-
clearMask():
|
|
999
|
+
clearMask(): RegionInfo;
|
|
987
1000
|
|
|
988
1001
|
getPolygon(): Polygon | undefined;
|
|
989
|
-
setPolygon(value?: Polygon):
|
|
1002
|
+
setPolygon(value?: Polygon): RegionInfo;
|
|
990
1003
|
hasPolygon(): boolean;
|
|
991
|
-
clearPolygon():
|
|
1004
|
+
clearPolygon(): RegionInfo;
|
|
992
1005
|
|
|
993
1006
|
getPoint(): Point | undefined;
|
|
994
|
-
setPoint(value?: Point):
|
|
1007
|
+
setPoint(value?: Point): RegionInfo;
|
|
995
1008
|
hasPoint(): boolean;
|
|
996
|
-
clearPoint():
|
|
1009
|
+
clearPoint(): RegionInfo;
|
|
1010
|
+
|
|
1011
|
+
getSpan(): Span | undefined;
|
|
1012
|
+
setSpan(value?: Span): RegionInfo;
|
|
1013
|
+
hasSpan(): boolean;
|
|
1014
|
+
clearSpan(): RegionInfo;
|
|
1015
|
+
|
|
1016
|
+
getToken(): Token | undefined;
|
|
1017
|
+
setToken(value?: Token): RegionInfo;
|
|
1018
|
+
hasToken(): boolean;
|
|
1019
|
+
clearToken(): RegionInfo;
|
|
997
1020
|
|
|
998
1021
|
serializeBinary(): Uint8Array;
|
|
999
1022
|
toObject(includeInstance?: boolean): RegionInfo.AsObject;
|
|
@@ -1009,21 +1032,23 @@ export namespace RegionInfo {
|
|
|
1009
1032
|
mask?: Mask.AsObject,
|
|
1010
1033
|
polygon?: Polygon.AsObject,
|
|
1011
1034
|
point?: Point.AsObject,
|
|
1035
|
+
span?: Span.AsObject,
|
|
1036
|
+
token?: Token.AsObject,
|
|
1012
1037
|
}
|
|
1013
1038
|
}
|
|
1014
1039
|
|
|
1015
1040
|
export class BoundingBox extends jspb.Message {
|
|
1016
1041
|
getTopRow(): number;
|
|
1017
|
-
setTopRow(value: number):
|
|
1042
|
+
setTopRow(value: number): BoundingBox;
|
|
1018
1043
|
|
|
1019
1044
|
getLeftCol(): number;
|
|
1020
|
-
setLeftCol(value: number):
|
|
1045
|
+
setLeftCol(value: number): BoundingBox;
|
|
1021
1046
|
|
|
1022
1047
|
getBottomRow(): number;
|
|
1023
|
-
setBottomRow(value: number):
|
|
1048
|
+
setBottomRow(value: number): BoundingBox;
|
|
1024
1049
|
|
|
1025
1050
|
getRightCol(): number;
|
|
1026
|
-
setRightCol(value: number):
|
|
1051
|
+
setRightCol(value: number): BoundingBox;
|
|
1027
1052
|
|
|
1028
1053
|
serializeBinary(): Uint8Array;
|
|
1029
1054
|
toObject(includeInstance?: boolean): BoundingBox.AsObject;
|
|
@@ -1044,10 +1069,10 @@ export namespace BoundingBox {
|
|
|
1044
1069
|
|
|
1045
1070
|
export class FrameInfo extends jspb.Message {
|
|
1046
1071
|
getIndex(): number;
|
|
1047
|
-
setIndex(value: number):
|
|
1072
|
+
setIndex(value: number): FrameInfo;
|
|
1048
1073
|
|
|
1049
1074
|
getTime(): number;
|
|
1050
|
-
setTime(value: number):
|
|
1075
|
+
setTime(value: number): FrameInfo;
|
|
1051
1076
|
|
|
1052
1077
|
serializeBinary(): Uint8Array;
|
|
1053
1078
|
toObject(includeInstance?: boolean): FrameInfo.AsObject;
|
|
@@ -1066,17 +1091,17 @@ export namespace FrameInfo {
|
|
|
1066
1091
|
|
|
1067
1092
|
export class Frame extends jspb.Message {
|
|
1068
1093
|
getFrameInfo(): FrameInfo | undefined;
|
|
1069
|
-
setFrameInfo(value?: FrameInfo):
|
|
1094
|
+
setFrameInfo(value?: FrameInfo): Frame;
|
|
1070
1095
|
hasFrameInfo(): boolean;
|
|
1071
|
-
clearFrameInfo():
|
|
1096
|
+
clearFrameInfo(): Frame;
|
|
1072
1097
|
|
|
1073
1098
|
getData(): Data | undefined;
|
|
1074
|
-
setData(value?: Data):
|
|
1099
|
+
setData(value?: Data): Frame;
|
|
1075
1100
|
hasData(): boolean;
|
|
1076
|
-
clearData():
|
|
1101
|
+
clearData(): Frame;
|
|
1077
1102
|
|
|
1078
1103
|
getId(): string;
|
|
1079
|
-
setId(value: string):
|
|
1104
|
+
setId(value: string): Frame;
|
|
1080
1105
|
|
|
1081
1106
|
serializeBinary(): Uint8Array;
|
|
1082
1107
|
toObject(includeInstance?: boolean): Frame.AsObject;
|
|
@@ -1096,9 +1121,9 @@ export namespace Frame {
|
|
|
1096
1121
|
|
|
1097
1122
|
export class Mask extends jspb.Message {
|
|
1098
1123
|
getImage(): Image | undefined;
|
|
1099
|
-
setImage(value?: Image):
|
|
1124
|
+
setImage(value?: Image): Mask;
|
|
1100
1125
|
hasImage(): boolean;
|
|
1101
|
-
clearImage():
|
|
1126
|
+
clearImage(): Mask;
|
|
1102
1127
|
|
|
1103
1128
|
serializeBinary(): Uint8Array;
|
|
1104
1129
|
toObject(includeInstance?: boolean): Mask.AsObject;
|
|
@@ -1116,8 +1141,8 @@ export namespace Mask {
|
|
|
1116
1141
|
|
|
1117
1142
|
export class Polygon extends jspb.Message {
|
|
1118
1143
|
getPointsList(): Array<Point>;
|
|
1119
|
-
setPointsList(value: Array<Point>):
|
|
1120
|
-
clearPointsList():
|
|
1144
|
+
setPointsList(value: Array<Point>): Polygon;
|
|
1145
|
+
clearPointsList(): Polygon;
|
|
1121
1146
|
addPoints(value?: Point, index?: number): Point;
|
|
1122
1147
|
|
|
1123
1148
|
serializeBinary(): Uint8Array;
|
|
@@ -1136,13 +1161,13 @@ export namespace Polygon {
|
|
|
1136
1161
|
|
|
1137
1162
|
export class Point extends jspb.Message {
|
|
1138
1163
|
getRow(): number;
|
|
1139
|
-
setRow(value: number):
|
|
1164
|
+
setRow(value: number): Point;
|
|
1140
1165
|
|
|
1141
1166
|
getCol(): number;
|
|
1142
|
-
setCol(value: number):
|
|
1167
|
+
setCol(value: number): Point;
|
|
1143
1168
|
|
|
1144
1169
|
getZ(): number;
|
|
1145
|
-
setZ(value: number):
|
|
1170
|
+
setZ(value: number): Point;
|
|
1146
1171
|
|
|
1147
1172
|
serializeBinary(): Uint8Array;
|
|
1148
1173
|
toObject(includeInstance?: boolean): Point.AsObject;
|
|
@@ -1160,14 +1185,66 @@ export namespace Point {
|
|
|
1160
1185
|
}
|
|
1161
1186
|
}
|
|
1162
1187
|
|
|
1188
|
+
export class Span extends jspb.Message {
|
|
1189
|
+
getCharStart(): number;
|
|
1190
|
+
setCharStart(value: number): Span;
|
|
1191
|
+
|
|
1192
|
+
getCharEnd(): number;
|
|
1193
|
+
setCharEnd(value: number): Span;
|
|
1194
|
+
|
|
1195
|
+
getRawText(): string;
|
|
1196
|
+
setRawText(value: string): Span;
|
|
1197
|
+
|
|
1198
|
+
serializeBinary(): Uint8Array;
|
|
1199
|
+
toObject(includeInstance?: boolean): Span.AsObject;
|
|
1200
|
+
static toObject(includeInstance: boolean, msg: Span): Span.AsObject;
|
|
1201
|
+
static serializeBinaryToWriter(message: Span, writer: jspb.BinaryWriter): void;
|
|
1202
|
+
static deserializeBinary(bytes: Uint8Array): Span;
|
|
1203
|
+
static deserializeBinaryFromReader(message: Span, reader: jspb.BinaryReader): Span;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
export namespace Span {
|
|
1207
|
+
export type AsObject = {
|
|
1208
|
+
charStart: number,
|
|
1209
|
+
charEnd: number,
|
|
1210
|
+
rawText: string,
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
export class Token extends jspb.Message {
|
|
1215
|
+
getCharStart(): number;
|
|
1216
|
+
setCharStart(value: number): Token;
|
|
1217
|
+
|
|
1218
|
+
getCharEnd(): number;
|
|
1219
|
+
setCharEnd(value: number): Token;
|
|
1220
|
+
|
|
1221
|
+
getRawText(): string;
|
|
1222
|
+
setRawText(value: string): Token;
|
|
1223
|
+
|
|
1224
|
+
serializeBinary(): Uint8Array;
|
|
1225
|
+
toObject(includeInstance?: boolean): Token.AsObject;
|
|
1226
|
+
static toObject(includeInstance: boolean, msg: Token): Token.AsObject;
|
|
1227
|
+
static serializeBinaryToWriter(message: Token, writer: jspb.BinaryWriter): void;
|
|
1228
|
+
static deserializeBinary(bytes: Uint8Array): Token;
|
|
1229
|
+
static deserializeBinaryFromReader(message: Token, reader: jspb.BinaryReader): Token;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
export namespace Token {
|
|
1233
|
+
export type AsObject = {
|
|
1234
|
+
charStart: number,
|
|
1235
|
+
charEnd: number,
|
|
1236
|
+
rawText: string,
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1163
1240
|
export class Embedding extends jspb.Message {
|
|
1164
1241
|
getVectorList(): Array<number>;
|
|
1165
|
-
setVectorList(value: Array<number>):
|
|
1166
|
-
clearVectorList():
|
|
1167
|
-
addVector(value: number, index?: number):
|
|
1242
|
+
setVectorList(value: Array<number>): Embedding;
|
|
1243
|
+
clearVectorList(): Embedding;
|
|
1244
|
+
addVector(value: number, index?: number): Embedding;
|
|
1168
1245
|
|
|
1169
1246
|
getNumDimensions(): number;
|
|
1170
|
-
setNumDimensions(value: number):
|
|
1247
|
+
setNumDimensions(value: number): Embedding;
|
|
1171
1248
|
|
|
1172
1249
|
serializeBinary(): Uint8Array;
|
|
1173
1250
|
toObject(includeInstance?: boolean): Embedding.AsObject;
|
|
@@ -1186,10 +1263,10 @@ export namespace Embedding {
|
|
|
1186
1263
|
|
|
1187
1264
|
export class GeoPoint extends jspb.Message {
|
|
1188
1265
|
getLongitude(): number;
|
|
1189
|
-
setLongitude(value: number):
|
|
1266
|
+
setLongitude(value: number): GeoPoint;
|
|
1190
1267
|
|
|
1191
1268
|
getLatitude(): number;
|
|
1192
|
-
setLatitude(value: number):
|
|
1269
|
+
setLatitude(value: number): GeoPoint;
|
|
1193
1270
|
|
|
1194
1271
|
serializeBinary(): Uint8Array;
|
|
1195
1272
|
toObject(includeInstance?: boolean): GeoPoint.AsObject;
|
|
@@ -1208,10 +1285,10 @@ export namespace GeoPoint {
|
|
|
1208
1285
|
|
|
1209
1286
|
export class GeoLimit extends jspb.Message {
|
|
1210
1287
|
getType(): string;
|
|
1211
|
-
setType(value: string):
|
|
1288
|
+
setType(value: string): GeoLimit;
|
|
1212
1289
|
|
|
1213
1290
|
getValue(): number;
|
|
1214
|
-
setValue(value: number):
|
|
1291
|
+
setValue(value: number): GeoLimit;
|
|
1215
1292
|
|
|
1216
1293
|
serializeBinary(): Uint8Array;
|
|
1217
1294
|
toObject(includeInstance?: boolean): GeoLimit.AsObject;
|
|
@@ -1230,9 +1307,9 @@ export namespace GeoLimit {
|
|
|
1230
1307
|
|
|
1231
1308
|
export class GeoBoxedPoint extends jspb.Message {
|
|
1232
1309
|
getGeoPoint(): GeoPoint | undefined;
|
|
1233
|
-
setGeoPoint(value?: GeoPoint):
|
|
1310
|
+
setGeoPoint(value?: GeoPoint): GeoBoxedPoint;
|
|
1234
1311
|
hasGeoPoint(): boolean;
|
|
1235
|
-
clearGeoPoint():
|
|
1312
|
+
clearGeoPoint(): GeoBoxedPoint;
|
|
1236
1313
|
|
|
1237
1314
|
serializeBinary(): Uint8Array;
|
|
1238
1315
|
toObject(includeInstance?: boolean): GeoBoxedPoint.AsObject;
|
|
@@ -1250,18 +1327,18 @@ export namespace GeoBoxedPoint {
|
|
|
1250
1327
|
|
|
1251
1328
|
export class Geo extends jspb.Message {
|
|
1252
1329
|
getGeoPoint(): GeoPoint | undefined;
|
|
1253
|
-
setGeoPoint(value?: GeoPoint):
|
|
1330
|
+
setGeoPoint(value?: GeoPoint): Geo;
|
|
1254
1331
|
hasGeoPoint(): boolean;
|
|
1255
|
-
clearGeoPoint():
|
|
1332
|
+
clearGeoPoint(): Geo;
|
|
1256
1333
|
|
|
1257
1334
|
getGeoLimit(): GeoLimit | undefined;
|
|
1258
|
-
setGeoLimit(value?: GeoLimit):
|
|
1335
|
+
setGeoLimit(value?: GeoLimit): Geo;
|
|
1259
1336
|
hasGeoLimit(): boolean;
|
|
1260
|
-
clearGeoLimit():
|
|
1337
|
+
clearGeoLimit(): Geo;
|
|
1261
1338
|
|
|
1262
1339
|
getGeoBoxList(): Array<GeoBoxedPoint>;
|
|
1263
|
-
setGeoBoxList(value: Array<GeoBoxedPoint>):
|
|
1264
|
-
clearGeoBoxList():
|
|
1340
|
+
setGeoBoxList(value: Array<GeoBoxedPoint>): Geo;
|
|
1341
|
+
clearGeoBoxList(): Geo;
|
|
1265
1342
|
addGeoBox(value?: GeoBoxedPoint, index?: number): GeoBoxedPoint;
|
|
1266
1343
|
|
|
1267
1344
|
serializeBinary(): Uint8Array;
|
|
@@ -1282,25 +1359,25 @@ export namespace Geo {
|
|
|
1282
1359
|
|
|
1283
1360
|
export class Image extends jspb.Message {
|
|
1284
1361
|
getUrl(): string;
|
|
1285
|
-
setUrl(value: string):
|
|
1362
|
+
setUrl(value: string): Image;
|
|
1286
1363
|
|
|
1287
1364
|
getBase64(): Uint8Array | string;
|
|
1288
1365
|
getBase64_asU8(): Uint8Array;
|
|
1289
1366
|
getBase64_asB64(): string;
|
|
1290
|
-
setBase64(value: Uint8Array | string):
|
|
1367
|
+
setBase64(value: Uint8Array | string): Image;
|
|
1291
1368
|
|
|
1292
1369
|
getAllowDuplicateUrl(): boolean;
|
|
1293
|
-
setAllowDuplicateUrl(value: boolean):
|
|
1370
|
+
setAllowDuplicateUrl(value: boolean): Image;
|
|
1294
1371
|
|
|
1295
1372
|
getHosted(): HostedURL | undefined;
|
|
1296
|
-
setHosted(value?: HostedURL):
|
|
1373
|
+
setHosted(value?: HostedURL): Image;
|
|
1297
1374
|
hasHosted(): boolean;
|
|
1298
|
-
clearHosted():
|
|
1375
|
+
clearHosted(): Image;
|
|
1299
1376
|
|
|
1300
1377
|
getImageInfo(): ImageInfo | undefined;
|
|
1301
|
-
setImageInfo(value?: ImageInfo):
|
|
1378
|
+
setImageInfo(value?: ImageInfo): Image;
|
|
1302
1379
|
hasImageInfo(): boolean;
|
|
1303
|
-
clearImageInfo():
|
|
1380
|
+
clearImageInfo(): Image;
|
|
1304
1381
|
|
|
1305
1382
|
serializeBinary(): Uint8Array;
|
|
1306
1383
|
toObject(includeInstance?: boolean): Image.AsObject;
|
|
@@ -1322,16 +1399,16 @@ export namespace Image {
|
|
|
1322
1399
|
|
|
1323
1400
|
export class ImageInfo extends jspb.Message {
|
|
1324
1401
|
getWidth(): number;
|
|
1325
|
-
setWidth(value: number):
|
|
1402
|
+
setWidth(value: number): ImageInfo;
|
|
1326
1403
|
|
|
1327
1404
|
getHeight(): number;
|
|
1328
|
-
setHeight(value: number):
|
|
1405
|
+
setHeight(value: number): ImageInfo;
|
|
1329
1406
|
|
|
1330
1407
|
getFormat(): string;
|
|
1331
|
-
setFormat(value: string):
|
|
1408
|
+
setFormat(value: string): ImageInfo;
|
|
1332
1409
|
|
|
1333
1410
|
getColorMode(): string;
|
|
1334
|
-
setColorMode(value: string):
|
|
1411
|
+
setColorMode(value: string): ImageInfo;
|
|
1335
1412
|
|
|
1336
1413
|
serializeBinary(): Uint8Array;
|
|
1337
1414
|
toObject(includeInstance?: boolean): ImageInfo.AsObject;
|
|
@@ -1352,18 +1429,18 @@ export namespace ImageInfo {
|
|
|
1352
1429
|
|
|
1353
1430
|
export class HostedURL extends jspb.Message {
|
|
1354
1431
|
getPrefix(): string;
|
|
1355
|
-
setPrefix(value: string):
|
|
1432
|
+
setPrefix(value: string): HostedURL;
|
|
1356
1433
|
|
|
1357
1434
|
getSuffix(): string;
|
|
1358
|
-
setSuffix(value: string):
|
|
1435
|
+
setSuffix(value: string): HostedURL;
|
|
1359
1436
|
|
|
1360
1437
|
getSizesList(): Array<string>;
|
|
1361
|
-
setSizesList(value: Array<string>):
|
|
1362
|
-
clearSizesList():
|
|
1363
|
-
addSizes(value: string, index?: number):
|
|
1438
|
+
setSizesList(value: Array<string>): HostedURL;
|
|
1439
|
+
clearSizesList(): HostedURL;
|
|
1440
|
+
addSizes(value: string, index?: number): HostedURL;
|
|
1364
1441
|
|
|
1365
1442
|
getCrossorigin(): string;
|
|
1366
|
-
setCrossorigin(value: string):
|
|
1443
|
+
setCrossorigin(value: string): HostedURL;
|
|
1367
1444
|
|
|
1368
1445
|
serializeBinary(): Uint8Array;
|
|
1369
1446
|
toObject(includeInstance?: boolean): HostedURL.AsObject;
|
|
@@ -1384,32 +1461,32 @@ export namespace HostedURL {
|
|
|
1384
1461
|
|
|
1385
1462
|
export class Input extends jspb.Message {
|
|
1386
1463
|
getId(): string;
|
|
1387
|
-
setId(value: string):
|
|
1464
|
+
setId(value: string): Input;
|
|
1388
1465
|
|
|
1389
1466
|
getData(): Data | undefined;
|
|
1390
|
-
setData(value?: Data):
|
|
1467
|
+
setData(value?: Data): Input;
|
|
1391
1468
|
hasData(): boolean;
|
|
1392
|
-
clearData():
|
|
1469
|
+
clearData(): Input;
|
|
1393
1470
|
|
|
1394
1471
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1395
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
1472
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Input;
|
|
1396
1473
|
hasCreatedAt(): boolean;
|
|
1397
|
-
clearCreatedAt():
|
|
1474
|
+
clearCreatedAt(): Input;
|
|
1398
1475
|
|
|
1399
1476
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1400
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
1477
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Input;
|
|
1401
1478
|
hasModifiedAt(): boolean;
|
|
1402
|
-
clearModifiedAt():
|
|
1479
|
+
clearModifiedAt(): Input;
|
|
1403
1480
|
|
|
1404
1481
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
1405
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
1482
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): Input;
|
|
1406
1483
|
hasStatus(): boolean;
|
|
1407
|
-
clearStatus():
|
|
1484
|
+
clearStatus(): Input;
|
|
1408
1485
|
|
|
1409
1486
|
getDatasetIdsList(): Array<string>;
|
|
1410
|
-
setDatasetIdsList(value: Array<string>):
|
|
1411
|
-
clearDatasetIdsList():
|
|
1412
|
-
addDatasetIds(value: string, index?: number):
|
|
1487
|
+
setDatasetIdsList(value: Array<string>): Input;
|
|
1488
|
+
clearDatasetIdsList(): Input;
|
|
1489
|
+
addDatasetIds(value: string, index?: number): Input;
|
|
1413
1490
|
|
|
1414
1491
|
serializeBinary(): Uint8Array;
|
|
1415
1492
|
toObject(includeInstance?: boolean): Input.AsObject;
|
|
@@ -1432,28 +1509,28 @@ export namespace Input {
|
|
|
1432
1509
|
|
|
1433
1510
|
export class InputCount extends jspb.Message {
|
|
1434
1511
|
getProcessed(): number;
|
|
1435
|
-
setProcessed(value: number):
|
|
1512
|
+
setProcessed(value: number): InputCount;
|
|
1436
1513
|
|
|
1437
1514
|
getToProcess(): number;
|
|
1438
|
-
setToProcess(value: number):
|
|
1515
|
+
setToProcess(value: number): InputCount;
|
|
1439
1516
|
|
|
1440
1517
|
getErrors(): number;
|
|
1441
|
-
setErrors(value: number):
|
|
1518
|
+
setErrors(value: number): InputCount;
|
|
1442
1519
|
|
|
1443
1520
|
getProcessing(): number;
|
|
1444
|
-
setProcessing(value: number):
|
|
1521
|
+
setProcessing(value: number): InputCount;
|
|
1445
1522
|
|
|
1446
1523
|
getReindexed(): number;
|
|
1447
|
-
setReindexed(value: number):
|
|
1524
|
+
setReindexed(value: number): InputCount;
|
|
1448
1525
|
|
|
1449
1526
|
getToReindex(): number;
|
|
1450
|
-
setToReindex(value: number):
|
|
1527
|
+
setToReindex(value: number): InputCount;
|
|
1451
1528
|
|
|
1452
1529
|
getReindexErrors(): number;
|
|
1453
|
-
setReindexErrors(value: number):
|
|
1530
|
+
setReindexErrors(value: number): InputCount;
|
|
1454
1531
|
|
|
1455
1532
|
getReindexing(): number;
|
|
1456
|
-
setReindexing(value: number):
|
|
1533
|
+
setReindexing(value: number): InputCount;
|
|
1457
1534
|
|
|
1458
1535
|
serializeBinary(): Uint8Array;
|
|
1459
1536
|
toObject(includeInstance?: boolean): InputCount.AsObject;
|
|
@@ -1476,109 +1553,201 @@ export namespace InputCount {
|
|
|
1476
1553
|
}
|
|
1477
1554
|
}
|
|
1478
1555
|
|
|
1479
|
-
export class
|
|
1556
|
+
export class Dataset extends jspb.Message {
|
|
1480
1557
|
getId(): string;
|
|
1481
|
-
setId(value: string):
|
|
1558
|
+
setId(value: string): Dataset;
|
|
1482
1559
|
|
|
1483
1560
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1484
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
1561
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Dataset;
|
|
1485
1562
|
hasCreatedAt(): boolean;
|
|
1486
|
-
clearCreatedAt():
|
|
1563
|
+
clearCreatedAt(): Dataset;
|
|
1487
1564
|
|
|
1488
1565
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1489
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
1566
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Dataset;
|
|
1490
1567
|
hasModifiedAt(): boolean;
|
|
1491
|
-
clearModifiedAt():
|
|
1568
|
+
clearModifiedAt(): Dataset;
|
|
1569
|
+
|
|
1570
|
+
getAppId(): string;
|
|
1571
|
+
setAppId(value: string): Dataset;
|
|
1492
1572
|
|
|
1493
1573
|
getUserId(): string;
|
|
1494
|
-
setUserId(value: string):
|
|
1574
|
+
setUserId(value: string): Dataset;
|
|
1495
1575
|
|
|
1496
|
-
|
|
1497
|
-
|
|
1576
|
+
getDescription(): string;
|
|
1577
|
+
setDescription(value: string): Dataset;
|
|
1498
1578
|
|
|
1499
|
-
|
|
1500
|
-
|
|
1579
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
1580
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Dataset;
|
|
1581
|
+
hasMetadata(): boolean;
|
|
1582
|
+
clearMetadata(): Dataset;
|
|
1583
|
+
|
|
1584
|
+
getVisibility(): Visibility | undefined;
|
|
1585
|
+
setVisibility(value?: Visibility): Dataset;
|
|
1586
|
+
hasVisibility(): boolean;
|
|
1587
|
+
clearVisibility(): Dataset;
|
|
1588
|
+
|
|
1589
|
+
getDefaultAnnotationFilter(): AnnotationFilter | undefined;
|
|
1590
|
+
setDefaultAnnotationFilter(value?: AnnotationFilter): Dataset;
|
|
1591
|
+
hasDefaultAnnotationFilter(): boolean;
|
|
1592
|
+
clearDefaultAnnotationFilter(): Dataset;
|
|
1593
|
+
|
|
1594
|
+
getNotes(): string;
|
|
1595
|
+
setNotes(value: string): Dataset;
|
|
1596
|
+
|
|
1597
|
+
getVersion(): DatasetVersion | undefined;
|
|
1598
|
+
setVersion(value?: DatasetVersion): Dataset;
|
|
1599
|
+
hasVersion(): boolean;
|
|
1600
|
+
clearVersion(): Dataset;
|
|
1601
|
+
|
|
1602
|
+
serializeBinary(): Uint8Array;
|
|
1603
|
+
toObject(includeInstance?: boolean): Dataset.AsObject;
|
|
1604
|
+
static toObject(includeInstance: boolean, msg: Dataset): Dataset.AsObject;
|
|
1605
|
+
static serializeBinaryToWriter(message: Dataset, writer: jspb.BinaryWriter): void;
|
|
1606
|
+
static deserializeBinary(bytes: Uint8Array): Dataset;
|
|
1607
|
+
static deserializeBinaryFromReader(message: Dataset, reader: jspb.BinaryReader): Dataset;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
export namespace Dataset {
|
|
1611
|
+
export type AsObject = {
|
|
1612
|
+
id: string,
|
|
1613
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1614
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1615
|
+
appId: string,
|
|
1616
|
+
userId: string,
|
|
1617
|
+
description: string,
|
|
1618
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1619
|
+
visibility?: Visibility.AsObject,
|
|
1620
|
+
defaultAnnotationFilter?: AnnotationFilter.AsObject,
|
|
1621
|
+
notes: string,
|
|
1622
|
+
version?: DatasetVersion.AsObject,
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
export class AnnotationFilter extends jspb.Message {
|
|
1627
|
+
getId(): string;
|
|
1628
|
+
setId(value: string): AnnotationFilter;
|
|
1629
|
+
|
|
1630
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1631
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): AnnotationFilter;
|
|
1632
|
+
hasCreatedAt(): boolean;
|
|
1633
|
+
clearCreatedAt(): AnnotationFilter;
|
|
1634
|
+
|
|
1635
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1636
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): AnnotationFilter;
|
|
1637
|
+
hasModifiedAt(): boolean;
|
|
1638
|
+
clearModifiedAt(): AnnotationFilter;
|
|
1639
|
+
|
|
1640
|
+
getUserId(): string;
|
|
1641
|
+
setUserId(value: string): AnnotationFilter;
|
|
1642
|
+
|
|
1643
|
+
getAppId(): string;
|
|
1644
|
+
setAppId(value: string): AnnotationFilter;
|
|
1501
1645
|
|
|
1502
1646
|
getSavedSearch(): Search | undefined;
|
|
1503
|
-
setSavedSearch(value?: Search):
|
|
1647
|
+
setSavedSearch(value?: Search): AnnotationFilter;
|
|
1504
1648
|
hasSavedSearch(): boolean;
|
|
1505
|
-
clearSavedSearch():
|
|
1649
|
+
clearSavedSearch(): AnnotationFilter;
|
|
1506
1650
|
|
|
1507
1651
|
serializeBinary(): Uint8Array;
|
|
1508
|
-
toObject(includeInstance?: boolean):
|
|
1509
|
-
static toObject(includeInstance: boolean, msg:
|
|
1510
|
-
static serializeBinaryToWriter(message:
|
|
1511
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
1512
|
-
static deserializeBinaryFromReader(message:
|
|
1652
|
+
toObject(includeInstance?: boolean): AnnotationFilter.AsObject;
|
|
1653
|
+
static toObject(includeInstance: boolean, msg: AnnotationFilter): AnnotationFilter.AsObject;
|
|
1654
|
+
static serializeBinaryToWriter(message: AnnotationFilter, writer: jspb.BinaryWriter): void;
|
|
1655
|
+
static deserializeBinary(bytes: Uint8Array): AnnotationFilter;
|
|
1656
|
+
static deserializeBinaryFromReader(message: AnnotationFilter, reader: jspb.BinaryReader): AnnotationFilter;
|
|
1513
1657
|
}
|
|
1514
1658
|
|
|
1515
|
-
export namespace
|
|
1659
|
+
export namespace AnnotationFilter {
|
|
1516
1660
|
export type AsObject = {
|
|
1517
1661
|
id: string,
|
|
1518
1662
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1519
1663
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1520
1664
|
userId: string,
|
|
1521
1665
|
appId: string,
|
|
1522
|
-
datasetId: string,
|
|
1523
1666
|
savedSearch?: Search.AsObject,
|
|
1524
1667
|
}
|
|
1525
1668
|
}
|
|
1526
1669
|
|
|
1670
|
+
export class DatasetInput extends jspb.Message {
|
|
1671
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1672
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): DatasetInput;
|
|
1673
|
+
hasCreatedAt(): boolean;
|
|
1674
|
+
clearCreatedAt(): DatasetInput;
|
|
1675
|
+
|
|
1676
|
+
getInput(): Input | undefined;
|
|
1677
|
+
setInput(value?: Input): DatasetInput;
|
|
1678
|
+
hasInput(): boolean;
|
|
1679
|
+
clearInput(): DatasetInput;
|
|
1680
|
+
|
|
1681
|
+
serializeBinary(): Uint8Array;
|
|
1682
|
+
toObject(includeInstance?: boolean): DatasetInput.AsObject;
|
|
1683
|
+
static toObject(includeInstance: boolean, msg: DatasetInput): DatasetInput.AsObject;
|
|
1684
|
+
static serializeBinaryToWriter(message: DatasetInput, writer: jspb.BinaryWriter): void;
|
|
1685
|
+
static deserializeBinary(bytes: Uint8Array): DatasetInput;
|
|
1686
|
+
static deserializeBinaryFromReader(message: DatasetInput, reader: jspb.BinaryReader): DatasetInput;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
export namespace DatasetInput {
|
|
1690
|
+
export type AsObject = {
|
|
1691
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1692
|
+
input?: Input.AsObject,
|
|
1693
|
+
}
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1527
1696
|
export class DatasetVersion extends jspb.Message {
|
|
1528
1697
|
getId(): string;
|
|
1529
|
-
setId(value: string):
|
|
1698
|
+
setId(value: string): DatasetVersion;
|
|
1530
1699
|
|
|
1531
1700
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1532
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
1701
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): DatasetVersion;
|
|
1533
1702
|
hasCreatedAt(): boolean;
|
|
1534
|
-
clearCreatedAt():
|
|
1703
|
+
clearCreatedAt(): DatasetVersion;
|
|
1535
1704
|
|
|
1536
1705
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1537
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
1706
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): DatasetVersion;
|
|
1538
1707
|
hasModifiedAt(): boolean;
|
|
1539
|
-
clearModifiedAt():
|
|
1708
|
+
clearModifiedAt(): DatasetVersion;
|
|
1540
1709
|
|
|
1541
1710
|
getAppId(): string;
|
|
1542
|
-
setAppId(value: string):
|
|
1711
|
+
setAppId(value: string): DatasetVersion;
|
|
1543
1712
|
|
|
1544
1713
|
getUserId(): string;
|
|
1545
|
-
setUserId(value: string):
|
|
1714
|
+
setUserId(value: string): DatasetVersion;
|
|
1546
1715
|
|
|
1547
1716
|
getDatasetId(): string;
|
|
1548
|
-
setDatasetId(value: string):
|
|
1717
|
+
setDatasetId(value: string): DatasetVersion;
|
|
1549
1718
|
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1719
|
+
getAnnotationFilterConfig(): AnnotationFilterConfig | undefined;
|
|
1720
|
+
setAnnotationFilterConfig(value?: AnnotationFilterConfig): DatasetVersion;
|
|
1721
|
+
hasAnnotationFilterConfig(): boolean;
|
|
1722
|
+
clearAnnotationFilterConfig(): DatasetVersion;
|
|
1554
1723
|
|
|
1555
1724
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
1556
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
1725
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): DatasetVersion;
|
|
1557
1726
|
hasStatus(): boolean;
|
|
1558
|
-
clearStatus():
|
|
1727
|
+
clearStatus(): DatasetVersion;
|
|
1559
1728
|
|
|
1560
1729
|
getDescription(): string;
|
|
1561
|
-
setDescription(value: string):
|
|
1730
|
+
setDescription(value: string): DatasetVersion;
|
|
1562
1731
|
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1732
|
+
getMetrics(): DatasetVersionMetrics | undefined;
|
|
1733
|
+
setMetrics(value?: DatasetVersionMetrics): DatasetVersion;
|
|
1734
|
+
hasMetrics(): boolean;
|
|
1735
|
+
clearMetrics(): DatasetVersion;
|
|
1567
1736
|
|
|
1568
1737
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
1569
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
1738
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): DatasetVersion;
|
|
1570
1739
|
hasMetadata(): boolean;
|
|
1571
|
-
clearMetadata():
|
|
1740
|
+
clearMetadata(): DatasetVersion;
|
|
1572
1741
|
|
|
1573
1742
|
getVisibility(): Visibility | undefined;
|
|
1574
|
-
setVisibility(value?: Visibility):
|
|
1743
|
+
setVisibility(value?: Visibility): DatasetVersion;
|
|
1575
1744
|
hasVisibility(): boolean;
|
|
1576
|
-
clearVisibility():
|
|
1745
|
+
clearVisibility(): DatasetVersion;
|
|
1577
1746
|
|
|
1578
1747
|
getEmbedModelVersionIdsList(): Array<string>;
|
|
1579
|
-
setEmbedModelVersionIdsList(value: Array<string>):
|
|
1580
|
-
clearEmbedModelVersionIdsList():
|
|
1581
|
-
addEmbedModelVersionIds(value: string, index?: number):
|
|
1748
|
+
setEmbedModelVersionIdsList(value: Array<string>): DatasetVersion;
|
|
1749
|
+
clearEmbedModelVersionIdsList(): DatasetVersion;
|
|
1750
|
+
addEmbedModelVersionIds(value: string, index?: number): DatasetVersion;
|
|
1582
1751
|
|
|
1583
1752
|
getDataConfigCase(): DatasetVersion.DataConfigCase;
|
|
1584
1753
|
|
|
@@ -1598,10 +1767,10 @@ export namespace DatasetVersion {
|
|
|
1598
1767
|
appId: string,
|
|
1599
1768
|
userId: string,
|
|
1600
1769
|
datasetId: string,
|
|
1601
|
-
|
|
1770
|
+
annotationFilterConfig?: AnnotationFilterConfig.AsObject,
|
|
1602
1771
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
1603
1772
|
description: string,
|
|
1604
|
-
|
|
1773
|
+
metrics?: DatasetVersionMetrics.AsObject,
|
|
1605
1774
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1606
1775
|
visibility?: Visibility.AsObject,
|
|
1607
1776
|
embedModelVersionIdsList: Array<string>,
|
|
@@ -1609,57 +1778,195 @@ export namespace DatasetVersion {
|
|
|
1609
1778
|
|
|
1610
1779
|
export enum DataConfigCase {
|
|
1611
1780
|
DATA_CONFIG_NOT_SET = 0,
|
|
1612
|
-
|
|
1781
|
+
ANNOTATION_FILTER_CONFIG = 15,
|
|
1613
1782
|
}
|
|
1614
1783
|
}
|
|
1615
1784
|
|
|
1616
|
-
export class
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1785
|
+
export class AnnotationFilterConfig extends jspb.Message {
|
|
1786
|
+
getAnnotationFilter(): AnnotationFilter | undefined;
|
|
1787
|
+
setAnnotationFilter(value?: AnnotationFilter): AnnotationFilterConfig;
|
|
1788
|
+
hasAnnotationFilter(): boolean;
|
|
1789
|
+
clearAnnotationFilter(): AnnotationFilterConfig;
|
|
1621
1790
|
|
|
1622
1791
|
serializeBinary(): Uint8Array;
|
|
1623
|
-
toObject(includeInstance?: boolean):
|
|
1624
|
-
static toObject(includeInstance: boolean, msg:
|
|
1625
|
-
static serializeBinaryToWriter(message:
|
|
1626
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
1627
|
-
static deserializeBinaryFromReader(message:
|
|
1792
|
+
toObject(includeInstance?: boolean): AnnotationFilterConfig.AsObject;
|
|
1793
|
+
static toObject(includeInstance: boolean, msg: AnnotationFilterConfig): AnnotationFilterConfig.AsObject;
|
|
1794
|
+
static serializeBinaryToWriter(message: AnnotationFilterConfig, writer: jspb.BinaryWriter): void;
|
|
1795
|
+
static deserializeBinary(bytes: Uint8Array): AnnotationFilterConfig;
|
|
1796
|
+
static deserializeBinaryFromReader(message: AnnotationFilterConfig, reader: jspb.BinaryReader): AnnotationFilterConfig;
|
|
1628
1797
|
}
|
|
1629
1798
|
|
|
1630
|
-
export namespace
|
|
1799
|
+
export namespace AnnotationFilterConfig {
|
|
1631
1800
|
export type AsObject = {
|
|
1632
|
-
|
|
1633
|
-
}
|
|
1801
|
+
annotationFilter?: AnnotationFilter.AsObject,
|
|
1802
|
+
}
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
export class DatasetVersionMetrics extends jspb.Message {
|
|
1806
|
+
getInputsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1807
|
+
setInputsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1808
|
+
hasInputsCount(): boolean;
|
|
1809
|
+
clearInputsCount(): DatasetVersionMetrics;
|
|
1810
|
+
|
|
1811
|
+
getUnlabeledInputsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1812
|
+
setUnlabeledInputsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1813
|
+
hasUnlabeledInputsCount(): boolean;
|
|
1814
|
+
clearUnlabeledInputsCount(): DatasetVersionMetrics;
|
|
1815
|
+
|
|
1816
|
+
getInputsWithMetadataCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1817
|
+
setInputsWithMetadataCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1818
|
+
hasInputsWithMetadataCount(): boolean;
|
|
1819
|
+
clearInputsWithMetadataCount(): DatasetVersionMetrics;
|
|
1820
|
+
|
|
1821
|
+
getInputsWithGeoCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1822
|
+
setInputsWithGeoCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1823
|
+
hasInputsWithGeoCount(): boolean;
|
|
1824
|
+
clearInputsWithGeoCount(): DatasetVersionMetrics;
|
|
1825
|
+
|
|
1826
|
+
getRegionsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1827
|
+
setRegionsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1828
|
+
hasRegionsCount(): boolean;
|
|
1829
|
+
clearRegionsCount(): DatasetVersionMetrics;
|
|
1830
|
+
|
|
1831
|
+
getRegionLocationMatrix(): proto_clarifai_api_utils_matrix_pb.MatrixUint64 | undefined;
|
|
1832
|
+
setRegionLocationMatrix(value?: proto_clarifai_api_utils_matrix_pb.MatrixUint64): DatasetVersionMetrics;
|
|
1833
|
+
hasRegionLocationMatrix(): boolean;
|
|
1834
|
+
clearRegionLocationMatrix(): DatasetVersionMetrics;
|
|
1835
|
+
|
|
1836
|
+
getBoundingBoxesCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1837
|
+
setBoundingBoxesCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1838
|
+
hasBoundingBoxesCount(): boolean;
|
|
1839
|
+
clearBoundingBoxesCount(): DatasetVersionMetrics;
|
|
1840
|
+
|
|
1841
|
+
getPolygonsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1842
|
+
setPolygonsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1843
|
+
hasPolygonsCount(): boolean;
|
|
1844
|
+
clearPolygonsCount(): DatasetVersionMetrics;
|
|
1845
|
+
|
|
1846
|
+
getPointsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1847
|
+
setPointsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1848
|
+
hasPointsCount(): boolean;
|
|
1849
|
+
clearPointsCount(): DatasetVersionMetrics;
|
|
1850
|
+
|
|
1851
|
+
getMasksCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1852
|
+
setMasksCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1853
|
+
hasMasksCount(): boolean;
|
|
1854
|
+
clearMasksCount(): DatasetVersionMetrics;
|
|
1855
|
+
|
|
1856
|
+
getRegionInputsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1857
|
+
setRegionInputsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1858
|
+
hasRegionInputsCount(): boolean;
|
|
1859
|
+
clearRegionInputsCount(): DatasetVersionMetrics;
|
|
1860
|
+
|
|
1861
|
+
getRegionFramesCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1862
|
+
setRegionFramesCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1863
|
+
hasRegionFramesCount(): boolean;
|
|
1864
|
+
clearRegionFramesCount(): DatasetVersionMetrics;
|
|
1865
|
+
|
|
1866
|
+
getFramesCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1867
|
+
setFramesCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1868
|
+
hasFramesCount(): boolean;
|
|
1869
|
+
clearFramesCount(): DatasetVersionMetrics;
|
|
1870
|
+
|
|
1871
|
+
getFrameInputsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1872
|
+
setFrameInputsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1873
|
+
hasFrameInputsCount(): boolean;
|
|
1874
|
+
clearFrameInputsCount(): DatasetVersionMetrics;
|
|
1875
|
+
|
|
1876
|
+
getEmbeddingsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1877
|
+
setEmbeddingsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1878
|
+
hasEmbeddingsCount(): boolean;
|
|
1879
|
+
clearEmbeddingsCount(): DatasetVersionMetrics;
|
|
1880
|
+
|
|
1881
|
+
getPositiveInputTagsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1882
|
+
setPositiveInputTagsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1883
|
+
hasPositiveInputTagsCount(): boolean;
|
|
1884
|
+
clearPositiveInputTagsCount(): DatasetVersionMetrics;
|
|
1885
|
+
|
|
1886
|
+
getPositiveRegionTagsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1887
|
+
setPositiveRegionTagsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1888
|
+
hasPositiveRegionTagsCount(): boolean;
|
|
1889
|
+
clearPositiveRegionTagsCount(): DatasetVersionMetrics;
|
|
1890
|
+
|
|
1891
|
+
getPositiveFrameTagsCount(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
1892
|
+
setPositiveFrameTagsCount(value?: google_protobuf_wrappers_pb.UInt64Value): DatasetVersionMetrics;
|
|
1893
|
+
hasPositiveFrameTagsCount(): boolean;
|
|
1894
|
+
clearPositiveFrameTagsCount(): DatasetVersionMetrics;
|
|
1895
|
+
|
|
1896
|
+
serializeBinary(): Uint8Array;
|
|
1897
|
+
toObject(includeInstance?: boolean): DatasetVersionMetrics.AsObject;
|
|
1898
|
+
static toObject(includeInstance: boolean, msg: DatasetVersionMetrics): DatasetVersionMetrics.AsObject;
|
|
1899
|
+
static serializeBinaryToWriter(message: DatasetVersionMetrics, writer: jspb.BinaryWriter): void;
|
|
1900
|
+
static deserializeBinary(bytes: Uint8Array): DatasetVersionMetrics;
|
|
1901
|
+
static deserializeBinaryFromReader(message: DatasetVersionMetrics, reader: jspb.BinaryReader): DatasetVersionMetrics;
|
|
1634
1902
|
}
|
|
1635
1903
|
|
|
1636
|
-
export
|
|
1637
|
-
|
|
1638
|
-
|
|
1904
|
+
export namespace DatasetVersionMetrics {
|
|
1905
|
+
export type AsObject = {
|
|
1906
|
+
inputsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1907
|
+
unlabeledInputsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1908
|
+
inputsWithMetadataCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1909
|
+
inputsWithGeoCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1910
|
+
regionsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1911
|
+
regionLocationMatrix?: proto_clarifai_api_utils_matrix_pb.MatrixUint64.AsObject,
|
|
1912
|
+
boundingBoxesCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1913
|
+
polygonsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1914
|
+
pointsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1915
|
+
masksCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1916
|
+
regionInputsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1917
|
+
regionFramesCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1918
|
+
framesCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1919
|
+
frameInputsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1920
|
+
embeddingsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1921
|
+
positiveInputTagsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1922
|
+
positiveRegionTagsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1923
|
+
positiveFrameTagsCount?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
export class DatasetVersionMetricsGroup extends jspb.Message {
|
|
1928
|
+
getParentPath(): string;
|
|
1929
|
+
setParentPath(value: string): DatasetVersionMetricsGroup;
|
|
1930
|
+
|
|
1931
|
+
getType(): DatasetVersionMetricsGroupType;
|
|
1932
|
+
setType(value: DatasetVersionMetricsGroupType): DatasetVersionMetricsGroup;
|
|
1933
|
+
|
|
1934
|
+
getValue(): google_protobuf_struct_pb.Value | undefined;
|
|
1935
|
+
setValue(value?: google_protobuf_struct_pb.Value): DatasetVersionMetricsGroup;
|
|
1936
|
+
hasValue(): boolean;
|
|
1937
|
+
clearValue(): DatasetVersionMetricsGroup;
|
|
1938
|
+
|
|
1939
|
+
getMetrics(): DatasetVersionMetrics | undefined;
|
|
1940
|
+
setMetrics(value?: DatasetVersionMetrics): DatasetVersionMetricsGroup;
|
|
1941
|
+
hasMetrics(): boolean;
|
|
1942
|
+
clearMetrics(): DatasetVersionMetricsGroup;
|
|
1639
1943
|
|
|
1640
1944
|
serializeBinary(): Uint8Array;
|
|
1641
|
-
toObject(includeInstance?: boolean):
|
|
1642
|
-
static toObject(includeInstance: boolean, msg:
|
|
1643
|
-
static serializeBinaryToWriter(message:
|
|
1644
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
1645
|
-
static deserializeBinaryFromReader(message:
|
|
1945
|
+
toObject(includeInstance?: boolean): DatasetVersionMetricsGroup.AsObject;
|
|
1946
|
+
static toObject(includeInstance: boolean, msg: DatasetVersionMetricsGroup): DatasetVersionMetricsGroup.AsObject;
|
|
1947
|
+
static serializeBinaryToWriter(message: DatasetVersionMetricsGroup, writer: jspb.BinaryWriter): void;
|
|
1948
|
+
static deserializeBinary(bytes: Uint8Array): DatasetVersionMetricsGroup;
|
|
1949
|
+
static deserializeBinaryFromReader(message: DatasetVersionMetricsGroup, reader: jspb.BinaryReader): DatasetVersionMetricsGroup;
|
|
1646
1950
|
}
|
|
1647
1951
|
|
|
1648
|
-
export namespace
|
|
1952
|
+
export namespace DatasetVersionMetricsGroup {
|
|
1649
1953
|
export type AsObject = {
|
|
1650
|
-
|
|
1954
|
+
parentPath: string,
|
|
1955
|
+
type: DatasetVersionMetricsGroupType,
|
|
1956
|
+
value?: google_protobuf_struct_pb.Value.AsObject,
|
|
1957
|
+
metrics?: DatasetVersionMetrics.AsObject,
|
|
1651
1958
|
}
|
|
1652
1959
|
}
|
|
1653
1960
|
|
|
1654
1961
|
export class WorkflowResultsSimilarity extends jspb.Message {
|
|
1655
1962
|
getProbeInput(): Input | undefined;
|
|
1656
|
-
setProbeInput(value?: Input):
|
|
1963
|
+
setProbeInput(value?: Input): WorkflowResultsSimilarity;
|
|
1657
1964
|
hasProbeInput(): boolean;
|
|
1658
|
-
clearProbeInput():
|
|
1965
|
+
clearProbeInput(): WorkflowResultsSimilarity;
|
|
1659
1966
|
|
|
1660
1967
|
getPoolResultsList(): Array<Hit>;
|
|
1661
|
-
setPoolResultsList(value: Array<Hit>):
|
|
1662
|
-
clearPoolResultsList():
|
|
1968
|
+
setPoolResultsList(value: Array<Hit>): WorkflowResultsSimilarity;
|
|
1969
|
+
clearPoolResultsList(): WorkflowResultsSimilarity;
|
|
1663
1970
|
addPoolResults(value?: Hit, index?: number): Hit;
|
|
1664
1971
|
|
|
1665
1972
|
serializeBinary(): Uint8Array;
|
|
@@ -1679,43 +1986,43 @@ export namespace WorkflowResultsSimilarity {
|
|
|
1679
1986
|
|
|
1680
1987
|
export class Key extends jspb.Message {
|
|
1681
1988
|
getId(): string;
|
|
1682
|
-
setId(value: string):
|
|
1989
|
+
setId(value: string): Key;
|
|
1683
1990
|
|
|
1684
1991
|
getType(): string;
|
|
1685
|
-
setType(value: string):
|
|
1992
|
+
setType(value: string): Key;
|
|
1686
1993
|
|
|
1687
1994
|
getDescription(): string;
|
|
1688
|
-
setDescription(value: string):
|
|
1995
|
+
setDescription(value: string): Key;
|
|
1689
1996
|
|
|
1690
1997
|
getScopesList(): Array<string>;
|
|
1691
|
-
setScopesList(value: Array<string>):
|
|
1692
|
-
clearScopesList():
|
|
1693
|
-
addScopes(value: string, index?: number):
|
|
1998
|
+
setScopesList(value: Array<string>): Key;
|
|
1999
|
+
clearScopesList(): Key;
|
|
2000
|
+
addScopes(value: string, index?: number): Key;
|
|
1694
2001
|
|
|
1695
2002
|
getEndpointsList(): Array<string>;
|
|
1696
|
-
setEndpointsList(value: Array<string>):
|
|
1697
|
-
clearEndpointsList():
|
|
1698
|
-
addEndpoints(value: string, index?: number):
|
|
2003
|
+
setEndpointsList(value: Array<string>): Key;
|
|
2004
|
+
clearEndpointsList(): Key;
|
|
2005
|
+
addEndpoints(value: string, index?: number): Key;
|
|
1699
2006
|
|
|
1700
2007
|
getAppsList(): Array<App>;
|
|
1701
|
-
setAppsList(value: Array<App>):
|
|
1702
|
-
clearAppsList():
|
|
2008
|
+
setAppsList(value: Array<App>): Key;
|
|
2009
|
+
clearAppsList(): Key;
|
|
1703
2010
|
addApps(value?: App, index?: number): App;
|
|
1704
2011
|
|
|
1705
2012
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1706
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2013
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Key;
|
|
1707
2014
|
hasCreatedAt(): boolean;
|
|
1708
|
-
clearCreatedAt():
|
|
2015
|
+
clearCreatedAt(): Key;
|
|
1709
2016
|
|
|
1710
2017
|
getExpiresAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1711
|
-
setExpiresAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2018
|
+
setExpiresAt(value?: google_protobuf_timestamp_pb.Timestamp): Key;
|
|
1712
2019
|
hasExpiresAt(): boolean;
|
|
1713
|
-
clearExpiresAt():
|
|
2020
|
+
clearExpiresAt(): Key;
|
|
1714
2021
|
|
|
1715
2022
|
getAuthorizedIdpIdsList(): Array<string>;
|
|
1716
|
-
setAuthorizedIdpIdsList(value: Array<string>):
|
|
1717
|
-
clearAuthorizedIdpIdsList():
|
|
1718
|
-
addAuthorizedIdpIds(value: string, index?: number):
|
|
2023
|
+
setAuthorizedIdpIdsList(value: Array<string>): Key;
|
|
2024
|
+
clearAuthorizedIdpIdsList(): Key;
|
|
2025
|
+
addAuthorizedIdpIds(value: string, index?: number): Key;
|
|
1719
2026
|
|
|
1720
2027
|
serializeBinary(): Uint8Array;
|
|
1721
2028
|
toObject(includeInstance?: boolean): Key.AsObject;
|
|
@@ -1741,94 +2048,97 @@ export namespace Key {
|
|
|
1741
2048
|
|
|
1742
2049
|
export class Model extends jspb.Message {
|
|
1743
2050
|
getId(): string;
|
|
1744
|
-
setId(value: string):
|
|
2051
|
+
setId(value: string): Model;
|
|
1745
2052
|
|
|
1746
2053
|
getName(): string;
|
|
1747
|
-
setName(value: string):
|
|
2054
|
+
setName(value: string): Model;
|
|
1748
2055
|
|
|
1749
2056
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1750
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2057
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Model;
|
|
1751
2058
|
hasCreatedAt(): boolean;
|
|
1752
|
-
clearCreatedAt():
|
|
2059
|
+
clearCreatedAt(): Model;
|
|
1753
2060
|
|
|
1754
2061
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1755
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2062
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Model;
|
|
1756
2063
|
hasModifiedAt(): boolean;
|
|
1757
|
-
clearModifiedAt():
|
|
2064
|
+
clearModifiedAt(): Model;
|
|
1758
2065
|
|
|
1759
2066
|
getAppId(): string;
|
|
1760
|
-
setAppId(value: string):
|
|
2067
|
+
setAppId(value: string): Model;
|
|
1761
2068
|
|
|
1762
2069
|
getOutputInfo(): OutputInfo | undefined;
|
|
1763
|
-
setOutputInfo(value?: OutputInfo):
|
|
2070
|
+
setOutputInfo(value?: OutputInfo): Model;
|
|
1764
2071
|
hasOutputInfo(): boolean;
|
|
1765
|
-
clearOutputInfo():
|
|
2072
|
+
clearOutputInfo(): Model;
|
|
1766
2073
|
|
|
1767
2074
|
getModelVersion(): ModelVersion | undefined;
|
|
1768
|
-
setModelVersion(value?: ModelVersion):
|
|
2075
|
+
setModelVersion(value?: ModelVersion): Model;
|
|
1769
2076
|
hasModelVersion(): boolean;
|
|
1770
|
-
clearModelVersion():
|
|
2077
|
+
clearModelVersion(): Model;
|
|
1771
2078
|
|
|
1772
2079
|
getDisplayName(): string;
|
|
1773
|
-
setDisplayName(value: string):
|
|
2080
|
+
setDisplayName(value: string): Model;
|
|
1774
2081
|
|
|
1775
2082
|
getUserId(): string;
|
|
1776
|
-
setUserId(value: string):
|
|
2083
|
+
setUserId(value: string): Model;
|
|
1777
2084
|
|
|
1778
2085
|
getInputInfo(): InputInfo | undefined;
|
|
1779
|
-
setInputInfo(value?: InputInfo):
|
|
2086
|
+
setInputInfo(value?: InputInfo): Model;
|
|
1780
2087
|
hasInputInfo(): boolean;
|
|
1781
|
-
clearInputInfo():
|
|
2088
|
+
clearInputInfo(): Model;
|
|
1782
2089
|
|
|
1783
2090
|
getTrainInfo(): TrainInfo | undefined;
|
|
1784
|
-
setTrainInfo(value?: TrainInfo):
|
|
2091
|
+
setTrainInfo(value?: TrainInfo): Model;
|
|
1785
2092
|
hasTrainInfo(): boolean;
|
|
1786
|
-
clearTrainInfo():
|
|
2093
|
+
clearTrainInfo(): Model;
|
|
1787
2094
|
|
|
1788
2095
|
getModelTypeId(): string;
|
|
1789
|
-
setModelTypeId(value: string):
|
|
2096
|
+
setModelTypeId(value: string): Model;
|
|
2097
|
+
|
|
2098
|
+
getTask(): string;
|
|
2099
|
+
setTask(value: string): Model;
|
|
1790
2100
|
|
|
1791
2101
|
getVisibility(): Visibility | undefined;
|
|
1792
|
-
setVisibility(value?: Visibility):
|
|
2102
|
+
setVisibility(value?: Visibility): Model;
|
|
1793
2103
|
hasVisibility(): boolean;
|
|
1794
|
-
clearVisibility():
|
|
2104
|
+
clearVisibility(): Model;
|
|
1795
2105
|
|
|
1796
2106
|
getDescription(): string;
|
|
1797
|
-
setDescription(value: string):
|
|
2107
|
+
setDescription(value: string): Model;
|
|
1798
2108
|
|
|
1799
2109
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
1800
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
2110
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Model;
|
|
1801
2111
|
hasMetadata(): boolean;
|
|
1802
|
-
clearMetadata():
|
|
2112
|
+
clearMetadata(): Model;
|
|
1803
2113
|
|
|
1804
2114
|
getNotes(): string;
|
|
1805
|
-
setNotes(value: string):
|
|
2115
|
+
setNotes(value: string): Model;
|
|
1806
2116
|
|
|
1807
2117
|
getToolkitsList(): Array<string>;
|
|
1808
|
-
setToolkitsList(value: Array<string>):
|
|
1809
|
-
clearToolkitsList():
|
|
1810
|
-
addToolkits(value: string, index?: number):
|
|
2118
|
+
setToolkitsList(value: Array<string>): Model;
|
|
2119
|
+
clearToolkitsList(): Model;
|
|
2120
|
+
addToolkits(value: string, index?: number): Model;
|
|
1811
2121
|
|
|
1812
2122
|
getUseCasesList(): Array<string>;
|
|
1813
|
-
setUseCasesList(value: Array<string>):
|
|
1814
|
-
clearUseCasesList():
|
|
1815
|
-
addUseCases(value: string, index?: number):
|
|
2123
|
+
setUseCasesList(value: Array<string>): Model;
|
|
2124
|
+
clearUseCasesList(): Model;
|
|
2125
|
+
addUseCases(value: string, index?: number): Model;
|
|
1816
2126
|
|
|
1817
2127
|
getLanguagesList(): Array<string>;
|
|
1818
|
-
setLanguagesList(value: Array<string>):
|
|
1819
|
-
clearLanguagesList():
|
|
1820
|
-
addLanguages(value: string, index?: number):
|
|
2128
|
+
setLanguagesList(value: Array<string>): Model;
|
|
2129
|
+
clearLanguagesList(): Model;
|
|
2130
|
+
addLanguages(value: string, index?: number): Model;
|
|
1821
2131
|
|
|
1822
2132
|
getIsStarred(): boolean;
|
|
1823
|
-
setIsStarred(value: boolean):
|
|
2133
|
+
setIsStarred(value: boolean): Model;
|
|
1824
2134
|
|
|
1825
2135
|
getStarCount(): number;
|
|
1826
|
-
setStarCount(value: number):
|
|
2136
|
+
setStarCount(value: number): Model;
|
|
1827
2137
|
|
|
1828
2138
|
getImportInfo(): ImportInfo | undefined;
|
|
1829
|
-
setImportInfo(value?: ImportInfo):
|
|
2139
|
+
setImportInfo(value?: ImportInfo): Model;
|
|
1830
2140
|
hasImportInfo(): boolean;
|
|
1831
|
-
clearImportInfo():
|
|
2141
|
+
clearImportInfo(): Model;
|
|
1832
2142
|
|
|
1833
2143
|
serializeBinary(): Uint8Array;
|
|
1834
2144
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
@@ -1852,6 +2162,7 @@ export namespace Model {
|
|
|
1852
2162
|
inputInfo?: InputInfo.AsObject,
|
|
1853
2163
|
trainInfo?: TrainInfo.AsObject,
|
|
1854
2164
|
modelTypeId: string,
|
|
2165
|
+
task: string,
|
|
1855
2166
|
visibility?: Visibility.AsObject,
|
|
1856
2167
|
description: string,
|
|
1857
2168
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
@@ -1867,21 +2178,21 @@ export namespace Model {
|
|
|
1867
2178
|
|
|
1868
2179
|
export class ModelReference extends jspb.Message {
|
|
1869
2180
|
getId(): string;
|
|
1870
|
-
setId(value: string):
|
|
2181
|
+
setId(value: string): ModelReference;
|
|
1871
2182
|
|
|
1872
2183
|
getModelId(): string;
|
|
1873
|
-
setModelId(value: string):
|
|
2184
|
+
setModelId(value: string): ModelReference;
|
|
1874
2185
|
|
|
1875
2186
|
getUrl(): string;
|
|
1876
|
-
setUrl(value: string):
|
|
2187
|
+
setUrl(value: string): ModelReference;
|
|
1877
2188
|
|
|
1878
2189
|
getName(): string;
|
|
1879
|
-
setName(value: string):
|
|
2190
|
+
setName(value: string): ModelReference;
|
|
1880
2191
|
|
|
1881
2192
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
1882
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
2193
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): ModelReference;
|
|
1883
2194
|
hasMetadata(): boolean;
|
|
1884
|
-
clearMetadata():
|
|
2195
|
+
clearMetadata(): ModelReference;
|
|
1885
2196
|
|
|
1886
2197
|
serializeBinary(): Uint8Array;
|
|
1887
2198
|
toObject(includeInstance?: boolean): ModelReference.AsObject;
|
|
@@ -1903,24 +2214,24 @@ export namespace ModelReference {
|
|
|
1903
2214
|
|
|
1904
2215
|
export class ModelVersionInputExample extends jspb.Message {
|
|
1905
2216
|
getId(): string;
|
|
1906
|
-
setId(value: string):
|
|
2217
|
+
setId(value: string): ModelVersionInputExample;
|
|
1907
2218
|
|
|
1908
2219
|
getModelId(): string;
|
|
1909
|
-
setModelId(value: string):
|
|
2220
|
+
setModelId(value: string): ModelVersionInputExample;
|
|
1910
2221
|
|
|
1911
2222
|
getModelVersionId(): string;
|
|
1912
|
-
setModelVersionId(value: string):
|
|
2223
|
+
setModelVersionId(value: string): ModelVersionInputExample;
|
|
1913
2224
|
|
|
1914
2225
|
getData(): Data | undefined;
|
|
1915
|
-
setData(value?: Data):
|
|
2226
|
+
setData(value?: Data): ModelVersionInputExample;
|
|
1916
2227
|
hasData(): boolean;
|
|
1917
|
-
clearData():
|
|
2228
|
+
clearData(): ModelVersionInputExample;
|
|
1918
2229
|
|
|
1919
2230
|
getName(): string;
|
|
1920
|
-
setName(value: string):
|
|
2231
|
+
setName(value: string): ModelVersionInputExample;
|
|
1921
2232
|
|
|
1922
2233
|
getDescription(): string;
|
|
1923
|
-
setDescription(value: string):
|
|
2234
|
+
setDescription(value: string): ModelVersionInputExample;
|
|
1924
2235
|
|
|
1925
2236
|
serializeBinary(): Uint8Array;
|
|
1926
2237
|
toObject(includeInstance?: boolean): ModelVersionInputExample.AsObject;
|
|
@@ -1943,33 +2254,27 @@ export namespace ModelVersionInputExample {
|
|
|
1943
2254
|
|
|
1944
2255
|
export class OutputInfo extends jspb.Message {
|
|
1945
2256
|
getData(): Data | undefined;
|
|
1946
|
-
setData(value?: Data):
|
|
2257
|
+
setData(value?: Data): OutputInfo;
|
|
1947
2258
|
hasData(): boolean;
|
|
1948
|
-
clearData():
|
|
2259
|
+
clearData(): OutputInfo;
|
|
1949
2260
|
|
|
1950
2261
|
getOutputConfig(): OutputConfig | undefined;
|
|
1951
|
-
setOutputConfig(value?: OutputConfig):
|
|
2262
|
+
setOutputConfig(value?: OutputConfig): OutputInfo;
|
|
1952
2263
|
hasOutputConfig(): boolean;
|
|
1953
|
-
clearOutputConfig():
|
|
2264
|
+
clearOutputConfig(): OutputInfo;
|
|
1954
2265
|
|
|
1955
2266
|
getMessage(): string;
|
|
1956
|
-
setMessage(value: string):
|
|
1957
|
-
|
|
1958
|
-
getType(): string;
|
|
1959
|
-
setType(value: string): void;
|
|
1960
|
-
|
|
1961
|
-
getTypeExt(): string;
|
|
1962
|
-
setTypeExt(value: string): void;
|
|
2267
|
+
setMessage(value: string): OutputInfo;
|
|
1963
2268
|
|
|
1964
2269
|
getFieldsMap(): google_protobuf_struct_pb.Struct | undefined;
|
|
1965
|
-
setFieldsMap(value?: google_protobuf_struct_pb.Struct):
|
|
2270
|
+
setFieldsMap(value?: google_protobuf_struct_pb.Struct): OutputInfo;
|
|
1966
2271
|
hasFieldsMap(): boolean;
|
|
1967
|
-
clearFieldsMap():
|
|
2272
|
+
clearFieldsMap(): OutputInfo;
|
|
1968
2273
|
|
|
1969
2274
|
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
1970
|
-
setParams(value?: google_protobuf_struct_pb.Struct):
|
|
2275
|
+
setParams(value?: google_protobuf_struct_pb.Struct): OutputInfo;
|
|
1971
2276
|
hasParams(): boolean;
|
|
1972
|
-
clearParams():
|
|
2277
|
+
clearParams(): OutputInfo;
|
|
1973
2278
|
|
|
1974
2279
|
serializeBinary(): Uint8Array;
|
|
1975
2280
|
toObject(includeInstance?: boolean): OutputInfo.AsObject;
|
|
@@ -1984,8 +2289,6 @@ export namespace OutputInfo {
|
|
|
1984
2289
|
data?: Data.AsObject,
|
|
1985
2290
|
outputConfig?: OutputConfig.AsObject,
|
|
1986
2291
|
message: string,
|
|
1987
|
-
type: string,
|
|
1988
|
-
typeExt: string,
|
|
1989
2292
|
fieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1990
2293
|
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
1991
2294
|
}
|
|
@@ -1993,14 +2296,14 @@ export namespace OutputInfo {
|
|
|
1993
2296
|
|
|
1994
2297
|
export class InputInfo extends jspb.Message {
|
|
1995
2298
|
getFieldsMap(): google_protobuf_struct_pb.Struct | undefined;
|
|
1996
|
-
setFieldsMap(value?: google_protobuf_struct_pb.Struct):
|
|
2299
|
+
setFieldsMap(value?: google_protobuf_struct_pb.Struct): InputInfo;
|
|
1997
2300
|
hasFieldsMap(): boolean;
|
|
1998
|
-
clearFieldsMap():
|
|
2301
|
+
clearFieldsMap(): InputInfo;
|
|
1999
2302
|
|
|
2000
2303
|
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2001
|
-
setParams(value?: google_protobuf_struct_pb.Struct):
|
|
2304
|
+
setParams(value?: google_protobuf_struct_pb.Struct): InputInfo;
|
|
2002
2305
|
hasParams(): boolean;
|
|
2003
|
-
clearParams():
|
|
2306
|
+
clearParams(): InputInfo;
|
|
2004
2307
|
|
|
2005
2308
|
serializeBinary(): Uint8Array;
|
|
2006
2309
|
toObject(includeInstance?: boolean): InputInfo.AsObject;
|
|
@@ -2019,9 +2322,9 @@ export namespace InputInfo {
|
|
|
2019
2322
|
|
|
2020
2323
|
export class TrainInfo extends jspb.Message {
|
|
2021
2324
|
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2022
|
-
setParams(value?: google_protobuf_struct_pb.Struct):
|
|
2325
|
+
setParams(value?: google_protobuf_struct_pb.Struct): TrainInfo;
|
|
2023
2326
|
hasParams(): boolean;
|
|
2024
|
-
clearParams():
|
|
2327
|
+
clearParams(): TrainInfo;
|
|
2025
2328
|
|
|
2026
2329
|
serializeBinary(): Uint8Array;
|
|
2027
2330
|
toObject(includeInstance?: boolean): TrainInfo.AsObject;
|
|
@@ -2039,9 +2342,9 @@ export namespace TrainInfo {
|
|
|
2039
2342
|
|
|
2040
2343
|
export class ImportInfo extends jspb.Message {
|
|
2041
2344
|
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2042
|
-
setParams(value?: google_protobuf_struct_pb.Struct):
|
|
2345
|
+
setParams(value?: google_protobuf_struct_pb.Struct): ImportInfo;
|
|
2043
2346
|
hasParams(): boolean;
|
|
2044
|
-
clearParams():
|
|
2347
|
+
clearParams(): ImportInfo;
|
|
2045
2348
|
|
|
2046
2349
|
serializeBinary(): Uint8Array;
|
|
2047
2350
|
toObject(includeInstance?: boolean): ImportInfo.AsObject;
|
|
@@ -2059,52 +2362,52 @@ export namespace ImportInfo {
|
|
|
2059
2362
|
|
|
2060
2363
|
export class OutputConfig extends jspb.Message {
|
|
2061
2364
|
getConceptsMutuallyExclusive(): boolean;
|
|
2062
|
-
setConceptsMutuallyExclusive(value: boolean):
|
|
2365
|
+
setConceptsMutuallyExclusive(value: boolean): OutputConfig;
|
|
2063
2366
|
|
|
2064
2367
|
getClosedEnvironment(): boolean;
|
|
2065
|
-
setClosedEnvironment(value: boolean):
|
|
2368
|
+
setClosedEnvironment(value: boolean): OutputConfig;
|
|
2066
2369
|
|
|
2067
2370
|
getExistingModelId(): string;
|
|
2068
|
-
setExistingModelId(value: string):
|
|
2371
|
+
setExistingModelId(value: string): OutputConfig;
|
|
2069
2372
|
|
|
2070
2373
|
getLanguage(): string;
|
|
2071
|
-
setLanguage(value: string):
|
|
2374
|
+
setLanguage(value: string): OutputConfig;
|
|
2072
2375
|
|
|
2073
2376
|
getHyperParameters(): string;
|
|
2074
|
-
setHyperParameters(value: string):
|
|
2377
|
+
setHyperParameters(value: string): OutputConfig;
|
|
2075
2378
|
|
|
2076
2379
|
getMaxConcepts(): number;
|
|
2077
|
-
setMaxConcepts(value: number):
|
|
2380
|
+
setMaxConcepts(value: number): OutputConfig;
|
|
2078
2381
|
|
|
2079
2382
|
getMinValue(): number;
|
|
2080
|
-
setMinValue(value: number):
|
|
2383
|
+
setMinValue(value: number): OutputConfig;
|
|
2081
2384
|
|
|
2082
2385
|
getSelectConceptsList(): Array<Concept>;
|
|
2083
|
-
setSelectConceptsList(value: Array<Concept>):
|
|
2084
|
-
clearSelectConceptsList():
|
|
2386
|
+
setSelectConceptsList(value: Array<Concept>): OutputConfig;
|
|
2387
|
+
clearSelectConceptsList(): OutputConfig;
|
|
2085
2388
|
addSelectConcepts(value?: Concept, index?: number): Concept;
|
|
2086
2389
|
|
|
2087
2390
|
getTrainingTimeout(): number;
|
|
2088
|
-
setTrainingTimeout(value: number):
|
|
2391
|
+
setTrainingTimeout(value: number): OutputConfig;
|
|
2089
2392
|
|
|
2090
2393
|
getSampleMs(): number;
|
|
2091
|
-
setSampleMs(value: number):
|
|
2394
|
+
setSampleMs(value: number): OutputConfig;
|
|
2092
2395
|
|
|
2093
2396
|
getHyperParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2094
|
-
setHyperParams(value?: google_protobuf_struct_pb.Struct):
|
|
2397
|
+
setHyperParams(value?: google_protobuf_struct_pb.Struct): OutputConfig;
|
|
2095
2398
|
hasHyperParams(): boolean;
|
|
2096
|
-
clearHyperParams():
|
|
2399
|
+
clearHyperParams(): OutputConfig;
|
|
2097
2400
|
|
|
2098
2401
|
getEmbedModelVersionId(): string;
|
|
2099
|
-
setEmbedModelVersionId(value: string):
|
|
2402
|
+
setEmbedModelVersionId(value: string): OutputConfig;
|
|
2100
2403
|
|
|
2101
2404
|
getFailOnMissingPositiveExamples(): boolean;
|
|
2102
|
-
setFailOnMissingPositiveExamples(value: boolean):
|
|
2405
|
+
setFailOnMissingPositiveExamples(value: boolean): OutputConfig;
|
|
2103
2406
|
|
|
2104
2407
|
getModelMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
2105
|
-
setModelMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
2408
|
+
setModelMetadata(value?: google_protobuf_struct_pb.Struct): OutputConfig;
|
|
2106
2409
|
hasModelMetadata(): boolean;
|
|
2107
|
-
clearModelMetadata():
|
|
2410
|
+
clearModelMetadata(): OutputConfig;
|
|
2108
2411
|
|
|
2109
2412
|
serializeBinary(): Uint8Array;
|
|
2110
2413
|
toObject(includeInstance?: boolean): OutputConfig.AsObject;
|
|
@@ -2135,56 +2438,53 @@ export namespace OutputConfig {
|
|
|
2135
2438
|
|
|
2136
2439
|
export class ModelType extends jspb.Message {
|
|
2137
2440
|
getId(): string;
|
|
2138
|
-
setId(value: string):
|
|
2441
|
+
setId(value: string): ModelType;
|
|
2139
2442
|
|
|
2140
2443
|
getTitle(): string;
|
|
2141
|
-
setTitle(value: string):
|
|
2444
|
+
setTitle(value: string): ModelType;
|
|
2142
2445
|
|
|
2143
2446
|
getDescription(): string;
|
|
2144
|
-
setDescription(value: string):
|
|
2145
|
-
|
|
2146
|
-
getType(): string;
|
|
2147
|
-
setType(value: string): void;
|
|
2447
|
+
setDescription(value: string): ModelType;
|
|
2148
2448
|
|
|
2149
2449
|
getInputFieldsList(): Array<string>;
|
|
2150
|
-
setInputFieldsList(value: Array<string>):
|
|
2151
|
-
clearInputFieldsList():
|
|
2152
|
-
addInputFields(value: string, index?: number):
|
|
2450
|
+
setInputFieldsList(value: Array<string>): ModelType;
|
|
2451
|
+
clearInputFieldsList(): ModelType;
|
|
2452
|
+
addInputFields(value: string, index?: number): ModelType;
|
|
2153
2453
|
|
|
2154
2454
|
getOutputFieldsList(): Array<string>;
|
|
2155
|
-
setOutputFieldsList(value: Array<string>):
|
|
2156
|
-
clearOutputFieldsList():
|
|
2157
|
-
addOutputFields(value: string, index?: number):
|
|
2455
|
+
setOutputFieldsList(value: Array<string>): ModelType;
|
|
2456
|
+
clearOutputFieldsList(): ModelType;
|
|
2457
|
+
addOutputFields(value: string, index?: number): ModelType;
|
|
2158
2458
|
|
|
2159
2459
|
getTrainable(): boolean;
|
|
2160
|
-
setTrainable(value: boolean):
|
|
2460
|
+
setTrainable(value: boolean): ModelType;
|
|
2161
2461
|
|
|
2162
2462
|
getCreatable(): boolean;
|
|
2163
|
-
setCreatable(value: boolean):
|
|
2463
|
+
setCreatable(value: boolean): ModelType;
|
|
2164
2464
|
|
|
2165
2465
|
getInternalOnly(): boolean;
|
|
2166
|
-
setInternalOnly(value: boolean):
|
|
2466
|
+
setInternalOnly(value: boolean): ModelType;
|
|
2167
2467
|
|
|
2168
2468
|
getModelTypeFieldsList(): Array<ModelTypeField>;
|
|
2169
|
-
setModelTypeFieldsList(value: Array<ModelTypeField>):
|
|
2170
|
-
clearModelTypeFieldsList():
|
|
2469
|
+
setModelTypeFieldsList(value: Array<ModelTypeField>): ModelType;
|
|
2470
|
+
clearModelTypeFieldsList(): ModelType;
|
|
2171
2471
|
addModelTypeFields(value?: ModelTypeField, index?: number): ModelTypeField;
|
|
2172
2472
|
|
|
2173
2473
|
getRequiresSequentialFrames(): boolean;
|
|
2174
|
-
setRequiresSequentialFrames(value: boolean):
|
|
2474
|
+
setRequiresSequentialFrames(value: boolean): ModelType;
|
|
2175
2475
|
|
|
2176
2476
|
getEvaluable(): boolean;
|
|
2177
|
-
setEvaluable(value: boolean):
|
|
2477
|
+
setEvaluable(value: boolean): ModelType;
|
|
2178
2478
|
|
|
2179
2479
|
getExpectedPretrainedInputFields(): google_protobuf_struct_pb.Struct | undefined;
|
|
2180
|
-
setExpectedPretrainedInputFields(value?: google_protobuf_struct_pb.Struct):
|
|
2480
|
+
setExpectedPretrainedInputFields(value?: google_protobuf_struct_pb.Struct): ModelType;
|
|
2181
2481
|
hasExpectedPretrainedInputFields(): boolean;
|
|
2182
|
-
clearExpectedPretrainedInputFields():
|
|
2482
|
+
clearExpectedPretrainedInputFields(): ModelType;
|
|
2183
2483
|
|
|
2184
2484
|
getExpectedPretrainedOutputFields(): google_protobuf_struct_pb.Struct | undefined;
|
|
2185
|
-
setExpectedPretrainedOutputFields(value?: google_protobuf_struct_pb.Struct):
|
|
2485
|
+
setExpectedPretrainedOutputFields(value?: google_protobuf_struct_pb.Struct): ModelType;
|
|
2186
2486
|
hasExpectedPretrainedOutputFields(): boolean;
|
|
2187
|
-
clearExpectedPretrainedOutputFields():
|
|
2487
|
+
clearExpectedPretrainedOutputFields(): ModelType;
|
|
2188
2488
|
|
|
2189
2489
|
serializeBinary(): Uint8Array;
|
|
2190
2490
|
toObject(includeInstance?: boolean): ModelType.AsObject;
|
|
@@ -2199,7 +2499,6 @@ export namespace ModelType {
|
|
|
2199
2499
|
id: string,
|
|
2200
2500
|
title: string,
|
|
2201
2501
|
description: string,
|
|
2202
|
-
type: string,
|
|
2203
2502
|
inputFieldsList: Array<string>,
|
|
2204
2503
|
outputFieldsList: Array<string>,
|
|
2205
2504
|
trainable: boolean,
|
|
@@ -2215,37 +2514,37 @@ export namespace ModelType {
|
|
|
2215
2514
|
|
|
2216
2515
|
export class ModelTypeField extends jspb.Message {
|
|
2217
2516
|
getPath(): string;
|
|
2218
|
-
setPath(value: string):
|
|
2517
|
+
setPath(value: string): ModelTypeField;
|
|
2219
2518
|
|
|
2220
2519
|
getFieldType(): ModelTypeField.ModelTypeFieldType;
|
|
2221
|
-
setFieldType(value: ModelTypeField.ModelTypeFieldType):
|
|
2520
|
+
setFieldType(value: ModelTypeField.ModelTypeFieldType): ModelTypeField;
|
|
2222
2521
|
|
|
2223
2522
|
getDefaultValue(): google_protobuf_struct_pb.Value | undefined;
|
|
2224
|
-
setDefaultValue(value?: google_protobuf_struct_pb.Value):
|
|
2523
|
+
setDefaultValue(value?: google_protobuf_struct_pb.Value): ModelTypeField;
|
|
2225
2524
|
hasDefaultValue(): boolean;
|
|
2226
|
-
clearDefaultValue():
|
|
2525
|
+
clearDefaultValue(): ModelTypeField;
|
|
2227
2526
|
|
|
2228
2527
|
getDescription(): string;
|
|
2229
|
-
setDescription(value: string):
|
|
2528
|
+
setDescription(value: string): ModelTypeField;
|
|
2230
2529
|
|
|
2231
2530
|
getPlaceholder(): string;
|
|
2232
|
-
setPlaceholder(value: string):
|
|
2531
|
+
setPlaceholder(value: string): ModelTypeField;
|
|
2233
2532
|
|
|
2234
2533
|
getModelTypeEnumOptionsList(): Array<ModelTypeEnumOption>;
|
|
2235
|
-
setModelTypeEnumOptionsList(value: Array<ModelTypeEnumOption>):
|
|
2236
|
-
clearModelTypeEnumOptionsList():
|
|
2534
|
+
setModelTypeEnumOptionsList(value: Array<ModelTypeEnumOption>): ModelTypeField;
|
|
2535
|
+
clearModelTypeEnumOptionsList(): ModelTypeField;
|
|
2237
2536
|
addModelTypeEnumOptions(value?: ModelTypeEnumOption, index?: number): ModelTypeEnumOption;
|
|
2238
2537
|
|
|
2239
2538
|
getInternalOnly(): boolean;
|
|
2240
|
-
setInternalOnly(value: boolean):
|
|
2539
|
+
setInternalOnly(value: boolean): ModelTypeField;
|
|
2241
2540
|
|
|
2242
2541
|
getRequired(): boolean;
|
|
2243
|
-
setRequired(value: boolean):
|
|
2542
|
+
setRequired(value: boolean): ModelTypeField;
|
|
2244
2543
|
|
|
2245
2544
|
getModelTypeRangeInfo(): ModelTypeRangeInfo | undefined;
|
|
2246
|
-
setModelTypeRangeInfo(value?: ModelTypeRangeInfo):
|
|
2545
|
+
setModelTypeRangeInfo(value?: ModelTypeRangeInfo): ModelTypeField;
|
|
2247
2546
|
hasModelTypeRangeInfo(): boolean;
|
|
2248
|
-
clearModelTypeRangeInfo():
|
|
2547
|
+
clearModelTypeRangeInfo(): ModelTypeField;
|
|
2249
2548
|
|
|
2250
2549
|
serializeBinary(): Uint8Array;
|
|
2251
2550
|
toObject(includeInstance?: boolean): ModelTypeField.AsObject;
|
|
@@ -2288,13 +2587,13 @@ export namespace ModelTypeField {
|
|
|
2288
2587
|
|
|
2289
2588
|
export class ModelTypeRangeInfo extends jspb.Message {
|
|
2290
2589
|
getMin(): number;
|
|
2291
|
-
setMin(value: number):
|
|
2590
|
+
setMin(value: number): ModelTypeRangeInfo;
|
|
2292
2591
|
|
|
2293
2592
|
getMax(): number;
|
|
2294
|
-
setMax(value: number):
|
|
2593
|
+
setMax(value: number): ModelTypeRangeInfo;
|
|
2295
2594
|
|
|
2296
2595
|
getStep(): number;
|
|
2297
|
-
setStep(value: number):
|
|
2596
|
+
setStep(value: number): ModelTypeRangeInfo;
|
|
2298
2597
|
|
|
2299
2598
|
serializeBinary(): Uint8Array;
|
|
2300
2599
|
toObject(includeInstance?: boolean): ModelTypeRangeInfo.AsObject;
|
|
@@ -2314,18 +2613,23 @@ export namespace ModelTypeRangeInfo {
|
|
|
2314
2613
|
|
|
2315
2614
|
export class ModelTypeEnumOption extends jspb.Message {
|
|
2316
2615
|
getId(): string;
|
|
2317
|
-
setId(value: string):
|
|
2616
|
+
setId(value: string): ModelTypeEnumOption;
|
|
2617
|
+
|
|
2618
|
+
getAliasesList(): Array<ModelTypeEnumOptionAlias>;
|
|
2619
|
+
setAliasesList(value: Array<ModelTypeEnumOptionAlias>): ModelTypeEnumOption;
|
|
2620
|
+
clearAliasesList(): ModelTypeEnumOption;
|
|
2621
|
+
addAliases(value?: ModelTypeEnumOptionAlias, index?: number): ModelTypeEnumOptionAlias;
|
|
2318
2622
|
|
|
2319
2623
|
getDescription(): string;
|
|
2320
|
-
setDescription(value: string):
|
|
2624
|
+
setDescription(value: string): ModelTypeEnumOption;
|
|
2321
2625
|
|
|
2322
2626
|
getModelTypeFieldsList(): Array<ModelTypeField>;
|
|
2323
|
-
setModelTypeFieldsList(value: Array<ModelTypeField>):
|
|
2324
|
-
clearModelTypeFieldsList():
|
|
2627
|
+
setModelTypeFieldsList(value: Array<ModelTypeField>): ModelTypeEnumOption;
|
|
2628
|
+
clearModelTypeFieldsList(): ModelTypeEnumOption;
|
|
2325
2629
|
addModelTypeFields(value?: ModelTypeField, index?: number): ModelTypeField;
|
|
2326
2630
|
|
|
2327
2631
|
getInternalOnly(): boolean;
|
|
2328
|
-
setInternalOnly(value: boolean):
|
|
2632
|
+
setInternalOnly(value: boolean): ModelTypeEnumOption;
|
|
2329
2633
|
|
|
2330
2634
|
serializeBinary(): Uint8Array;
|
|
2331
2635
|
toObject(includeInstance?: boolean): ModelTypeEnumOption.AsObject;
|
|
@@ -2338,21 +2642,37 @@ export class ModelTypeEnumOption extends jspb.Message {
|
|
|
2338
2642
|
export namespace ModelTypeEnumOption {
|
|
2339
2643
|
export type AsObject = {
|
|
2340
2644
|
id: string,
|
|
2645
|
+
aliasesList: Array<ModelTypeEnumOptionAlias.AsObject>,
|
|
2341
2646
|
description: string,
|
|
2342
2647
|
modelTypeFieldsList: Array<ModelTypeField.AsObject>,
|
|
2343
2648
|
internalOnly: boolean,
|
|
2344
2649
|
}
|
|
2345
2650
|
}
|
|
2346
2651
|
|
|
2652
|
+
export class ModelTypeEnumOptionAlias extends jspb.Message {
|
|
2653
|
+
getIdInt(): number;
|
|
2654
|
+
setIdInt(value: number): ModelTypeEnumOptionAlias;
|
|
2655
|
+
|
|
2656
|
+
serializeBinary(): Uint8Array;
|
|
2657
|
+
toObject(includeInstance?: boolean): ModelTypeEnumOptionAlias.AsObject;
|
|
2658
|
+
static toObject(includeInstance: boolean, msg: ModelTypeEnumOptionAlias): ModelTypeEnumOptionAlias.AsObject;
|
|
2659
|
+
static serializeBinaryToWriter(message: ModelTypeEnumOptionAlias, writer: jspb.BinaryWriter): void;
|
|
2660
|
+
static deserializeBinary(bytes: Uint8Array): ModelTypeEnumOptionAlias;
|
|
2661
|
+
static deserializeBinaryFromReader(message: ModelTypeEnumOptionAlias, reader: jspb.BinaryReader): ModelTypeEnumOptionAlias;
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
export namespace ModelTypeEnumOptionAlias {
|
|
2665
|
+
export type AsObject = {
|
|
2666
|
+
idInt: number,
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2347
2670
|
export class ModelQuery extends jspb.Message {
|
|
2348
2671
|
getName(): string;
|
|
2349
|
-
setName(value: string):
|
|
2350
|
-
|
|
2351
|
-
getType(): string;
|
|
2352
|
-
setType(value: string): void;
|
|
2672
|
+
setName(value: string): ModelQuery;
|
|
2353
2673
|
|
|
2354
2674
|
getModelTypeId(): string;
|
|
2355
|
-
setModelTypeId(value: string):
|
|
2675
|
+
setModelTypeId(value: string): ModelQuery;
|
|
2356
2676
|
|
|
2357
2677
|
serializeBinary(): Uint8Array;
|
|
2358
2678
|
toObject(includeInstance?: boolean): ModelQuery.AsObject;
|
|
@@ -2365,67 +2685,71 @@ export class ModelQuery extends jspb.Message {
|
|
|
2365
2685
|
export namespace ModelQuery {
|
|
2366
2686
|
export type AsObject = {
|
|
2367
2687
|
name: string,
|
|
2368
|
-
type: string,
|
|
2369
2688
|
modelTypeId: string,
|
|
2370
2689
|
}
|
|
2371
2690
|
}
|
|
2372
2691
|
|
|
2373
2692
|
export class ModelVersion extends jspb.Message {
|
|
2374
2693
|
getId(): string;
|
|
2375
|
-
setId(value: string):
|
|
2694
|
+
setId(value: string): ModelVersion;
|
|
2376
2695
|
|
|
2377
2696
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
2378
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2697
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): ModelVersion;
|
|
2379
2698
|
hasCreatedAt(): boolean;
|
|
2380
|
-
clearCreatedAt():
|
|
2699
|
+
clearCreatedAt(): ModelVersion;
|
|
2381
2700
|
|
|
2382
2701
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
2383
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
2702
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): ModelVersion;
|
|
2384
2703
|
hasStatus(): boolean;
|
|
2385
|
-
clearStatus():
|
|
2704
|
+
clearStatus(): ModelVersion;
|
|
2386
2705
|
|
|
2387
2706
|
getActiveConceptCount(): number;
|
|
2388
|
-
setActiveConceptCount(value: number):
|
|
2707
|
+
setActiveConceptCount(value: number): ModelVersion;
|
|
2389
2708
|
|
|
2390
2709
|
getMetrics(): EvalMetrics | undefined;
|
|
2391
|
-
setMetrics(value?: EvalMetrics):
|
|
2710
|
+
setMetrics(value?: EvalMetrics): ModelVersion;
|
|
2392
2711
|
hasMetrics(): boolean;
|
|
2393
|
-
clearMetrics():
|
|
2712
|
+
clearMetrics(): ModelVersion;
|
|
2394
2713
|
|
|
2395
2714
|
getTotalInputCount(): number;
|
|
2396
|
-
setTotalInputCount(value: number):
|
|
2715
|
+
setTotalInputCount(value: number): ModelVersion;
|
|
2397
2716
|
|
|
2398
2717
|
getCompletedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
2399
|
-
setCompletedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2718
|
+
setCompletedAt(value?: google_protobuf_timestamp_pb.Timestamp): ModelVersion;
|
|
2400
2719
|
hasCompletedAt(): boolean;
|
|
2401
|
-
clearCompletedAt():
|
|
2720
|
+
clearCompletedAt(): ModelVersion;
|
|
2402
2721
|
|
|
2403
2722
|
getDescription(): string;
|
|
2404
|
-
setDescription(value: string):
|
|
2723
|
+
setDescription(value: string): ModelVersion;
|
|
2405
2724
|
|
|
2406
2725
|
getVisibility(): Visibility | undefined;
|
|
2407
|
-
setVisibility(value?: Visibility):
|
|
2726
|
+
setVisibility(value?: Visibility): ModelVersion;
|
|
2408
2727
|
hasVisibility(): boolean;
|
|
2409
|
-
clearVisibility():
|
|
2728
|
+
clearVisibility(): ModelVersion;
|
|
2410
2729
|
|
|
2411
2730
|
getAppId(): string;
|
|
2412
|
-
setAppId(value: string):
|
|
2731
|
+
setAppId(value: string): ModelVersion;
|
|
2413
2732
|
|
|
2414
2733
|
getUserId(): string;
|
|
2415
|
-
setUserId(value: string):
|
|
2734
|
+
setUserId(value: string): ModelVersion;
|
|
2416
2735
|
|
|
2417
2736
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
2418
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
2737
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): ModelVersion;
|
|
2419
2738
|
hasModifiedAt(): boolean;
|
|
2420
|
-
clearModifiedAt():
|
|
2739
|
+
clearModifiedAt(): ModelVersion;
|
|
2421
2740
|
|
|
2422
2741
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
2423
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
2742
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): ModelVersion;
|
|
2424
2743
|
hasMetadata(): boolean;
|
|
2425
|
-
clearMetadata():
|
|
2744
|
+
clearMetadata(): ModelVersion;
|
|
2426
2745
|
|
|
2427
2746
|
getLicense(): string;
|
|
2428
|
-
setLicense(value: string):
|
|
2747
|
+
setLicense(value: string): ModelVersion;
|
|
2748
|
+
|
|
2749
|
+
getDatasetVersion(): DatasetVersion | undefined;
|
|
2750
|
+
setDatasetVersion(value?: DatasetVersion): ModelVersion;
|
|
2751
|
+
hasDatasetVersion(): boolean;
|
|
2752
|
+
clearDatasetVersion(): ModelVersion;
|
|
2429
2753
|
|
|
2430
2754
|
serializeBinary(): Uint8Array;
|
|
2431
2755
|
toObject(includeInstance?: boolean): ModelVersion.AsObject;
|
|
@@ -2451,15 +2775,108 @@ export namespace ModelVersion {
|
|
|
2451
2775
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2452
2776
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2453
2777
|
license: string,
|
|
2778
|
+
datasetVersion?: DatasetVersion.AsObject,
|
|
2779
|
+
}
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2782
|
+
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
|
+
getInputFieldsMap(): google_protobuf_struct_pb.Struct | undefined;
|
|
2790
|
+
setInputFieldsMap(value?: google_protobuf_struct_pb.Struct): PretrainedModelConfig;
|
|
2791
|
+
hasInputFieldsMap(): boolean;
|
|
2792
|
+
clearInputFieldsMap(): PretrainedModelConfig;
|
|
2793
|
+
|
|
2794
|
+
getOutputFieldsMap(): google_protobuf_struct_pb.Struct | undefined;
|
|
2795
|
+
setOutputFieldsMap(value?: google_protobuf_struct_pb.Struct): PretrainedModelConfig;
|
|
2796
|
+
hasOutputFieldsMap(): boolean;
|
|
2797
|
+
clearOutputFieldsMap(): PretrainedModelConfig;
|
|
2798
|
+
|
|
2799
|
+
getDataProviderParams(): string;
|
|
2800
|
+
setDataProviderParams(value: string): PretrainedModelConfig;
|
|
2801
|
+
|
|
2802
|
+
getModelZipUrl(): string;
|
|
2803
|
+
setModelZipUrl(value: string): PretrainedModelConfig;
|
|
2804
|
+
|
|
2805
|
+
getOverwrite(): boolean;
|
|
2806
|
+
setOverwrite(value: boolean): PretrainedModelConfig;
|
|
2807
|
+
|
|
2808
|
+
serializeBinary(): Uint8Array;
|
|
2809
|
+
toObject(includeInstance?: boolean): PretrainedModelConfig.AsObject;
|
|
2810
|
+
static toObject(includeInstance: boolean, msg: PretrainedModelConfig): PretrainedModelConfig.AsObject;
|
|
2811
|
+
static serializeBinaryToWriter(message: PretrainedModelConfig, writer: jspb.BinaryWriter): void;
|
|
2812
|
+
static deserializeBinary(bytes: Uint8Array): PretrainedModelConfig;
|
|
2813
|
+
static deserializeBinaryFromReader(message: PretrainedModelConfig, reader: jspb.BinaryReader): PretrainedModelConfig;
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
export namespace PretrainedModelConfig {
|
|
2817
|
+
export type AsObject = {
|
|
2818
|
+
id: string,
|
|
2819
|
+
type: string,
|
|
2820
|
+
inputFieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2821
|
+
outputFieldsMap?: google_protobuf_struct_pb.Struct.AsObject,
|
|
2822
|
+
dataProviderParams: string,
|
|
2823
|
+
modelZipUrl: string,
|
|
2824
|
+
overwrite: boolean,
|
|
2825
|
+
}
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
export class TrainStats extends jspb.Message {
|
|
2829
|
+
getLossCurveList(): Array<LossCurveEntry>;
|
|
2830
|
+
setLossCurveList(value: Array<LossCurveEntry>): TrainStats;
|
|
2831
|
+
clearLossCurveList(): TrainStats;
|
|
2832
|
+
addLossCurve(value?: LossCurveEntry, index?: number): LossCurveEntry;
|
|
2833
|
+
|
|
2834
|
+
serializeBinary(): Uint8Array;
|
|
2835
|
+
toObject(includeInstance?: boolean): TrainStats.AsObject;
|
|
2836
|
+
static toObject(includeInstance: boolean, msg: TrainStats): TrainStats.AsObject;
|
|
2837
|
+
static serializeBinaryToWriter(message: TrainStats, writer: jspb.BinaryWriter): void;
|
|
2838
|
+
static deserializeBinary(bytes: Uint8Array): TrainStats;
|
|
2839
|
+
static deserializeBinaryFromReader(message: TrainStats, reader: jspb.BinaryReader): TrainStats;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
export namespace TrainStats {
|
|
2843
|
+
export type AsObject = {
|
|
2844
|
+
lossCurveList: Array<LossCurveEntry.AsObject>,
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
export class LossCurveEntry extends jspb.Message {
|
|
2849
|
+
getEpoch(): number;
|
|
2850
|
+
setEpoch(value: number): LossCurveEntry;
|
|
2851
|
+
|
|
2852
|
+
getGlobalStep(): number;
|
|
2853
|
+
setGlobalStep(value: number): LossCurveEntry;
|
|
2854
|
+
|
|
2855
|
+
getCost(): number;
|
|
2856
|
+
setCost(value: number): LossCurveEntry;
|
|
2857
|
+
|
|
2858
|
+
serializeBinary(): Uint8Array;
|
|
2859
|
+
toObject(includeInstance?: boolean): LossCurveEntry.AsObject;
|
|
2860
|
+
static toObject(includeInstance: boolean, msg: LossCurveEntry): LossCurveEntry.AsObject;
|
|
2861
|
+
static serializeBinaryToWriter(message: LossCurveEntry, writer: jspb.BinaryWriter): void;
|
|
2862
|
+
static deserializeBinary(bytes: Uint8Array): LossCurveEntry;
|
|
2863
|
+
static deserializeBinaryFromReader(message: LossCurveEntry, reader: jspb.BinaryReader): LossCurveEntry;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
export namespace LossCurveEntry {
|
|
2867
|
+
export type AsObject = {
|
|
2868
|
+
epoch: number,
|
|
2869
|
+
globalStep: number,
|
|
2870
|
+
cost: number,
|
|
2454
2871
|
}
|
|
2455
2872
|
}
|
|
2456
2873
|
|
|
2457
2874
|
export class LabelCount extends jspb.Message {
|
|
2458
2875
|
getConceptName(): string;
|
|
2459
|
-
setConceptName(value: string):
|
|
2876
|
+
setConceptName(value: string): LabelCount;
|
|
2460
2877
|
|
|
2461
2878
|
getCount(): number;
|
|
2462
|
-
setCount(value: number):
|
|
2879
|
+
setCount(value: number): LabelCount;
|
|
2463
2880
|
|
|
2464
2881
|
serializeBinary(): Uint8Array;
|
|
2465
2882
|
toObject(includeInstance?: boolean): LabelCount.AsObject;
|
|
@@ -2478,8 +2895,8 @@ export namespace LabelCount {
|
|
|
2478
2895
|
|
|
2479
2896
|
export class LabelDistribution extends jspb.Message {
|
|
2480
2897
|
getPositiveLabelCountsList(): Array<LabelCount>;
|
|
2481
|
-
setPositiveLabelCountsList(value: Array<LabelCount>):
|
|
2482
|
-
clearPositiveLabelCountsList():
|
|
2898
|
+
setPositiveLabelCountsList(value: Array<LabelCount>): LabelDistribution;
|
|
2899
|
+
clearPositiveLabelCountsList(): LabelDistribution;
|
|
2483
2900
|
addPositiveLabelCounts(value?: LabelCount, index?: number): LabelCount;
|
|
2484
2901
|
|
|
2485
2902
|
serializeBinary(): Uint8Array;
|
|
@@ -2498,13 +2915,13 @@ export namespace LabelDistribution {
|
|
|
2498
2915
|
|
|
2499
2916
|
export class CooccurrenceMatrixEntry extends jspb.Message {
|
|
2500
2917
|
getRow(): string;
|
|
2501
|
-
setRow(value: string):
|
|
2918
|
+
setRow(value: string): CooccurrenceMatrixEntry;
|
|
2502
2919
|
|
|
2503
2920
|
getCol(): string;
|
|
2504
|
-
setCol(value: string):
|
|
2921
|
+
setCol(value: string): CooccurrenceMatrixEntry;
|
|
2505
2922
|
|
|
2506
2923
|
getCount(): number;
|
|
2507
|
-
setCount(value: number):
|
|
2924
|
+
setCount(value: number): CooccurrenceMatrixEntry;
|
|
2508
2925
|
|
|
2509
2926
|
serializeBinary(): Uint8Array;
|
|
2510
2927
|
toObject(includeInstance?: boolean): CooccurrenceMatrixEntry.AsObject;
|
|
@@ -2524,14 +2941,14 @@ export namespace CooccurrenceMatrixEntry {
|
|
|
2524
2941
|
|
|
2525
2942
|
export class CooccurrenceMatrix extends jspb.Message {
|
|
2526
2943
|
getMatrixList(): Array<CooccurrenceMatrixEntry>;
|
|
2527
|
-
setMatrixList(value: Array<CooccurrenceMatrixEntry>):
|
|
2528
|
-
clearMatrixList():
|
|
2944
|
+
setMatrixList(value: Array<CooccurrenceMatrixEntry>): CooccurrenceMatrix;
|
|
2945
|
+
clearMatrixList(): CooccurrenceMatrix;
|
|
2529
2946
|
addMatrix(value?: CooccurrenceMatrixEntry, index?: number): CooccurrenceMatrixEntry;
|
|
2530
2947
|
|
|
2531
2948
|
getConceptIdsList(): Array<string>;
|
|
2532
|
-
setConceptIdsList(value: Array<string>):
|
|
2533
|
-
clearConceptIdsList():
|
|
2534
|
-
addConceptIds(value: string, index?: number):
|
|
2949
|
+
setConceptIdsList(value: Array<string>): CooccurrenceMatrix;
|
|
2950
|
+
clearConceptIdsList(): CooccurrenceMatrix;
|
|
2951
|
+
addConceptIds(value: string, index?: number): CooccurrenceMatrix;
|
|
2535
2952
|
|
|
2536
2953
|
serializeBinary(): Uint8Array;
|
|
2537
2954
|
toObject(includeInstance?: boolean): CooccurrenceMatrix.AsObject;
|
|
@@ -2550,13 +2967,13 @@ export namespace CooccurrenceMatrix {
|
|
|
2550
2967
|
|
|
2551
2968
|
export class ConfusionMatrixEntry extends jspb.Message {
|
|
2552
2969
|
getPredicted(): string;
|
|
2553
|
-
setPredicted(value: string):
|
|
2970
|
+
setPredicted(value: string): ConfusionMatrixEntry;
|
|
2554
2971
|
|
|
2555
2972
|
getActual(): string;
|
|
2556
|
-
setActual(value: string):
|
|
2973
|
+
setActual(value: string): ConfusionMatrixEntry;
|
|
2557
2974
|
|
|
2558
2975
|
getValue(): number;
|
|
2559
|
-
setValue(value: number):
|
|
2976
|
+
setValue(value: number): ConfusionMatrixEntry;
|
|
2560
2977
|
|
|
2561
2978
|
serializeBinary(): Uint8Array;
|
|
2562
2979
|
toObject(includeInstance?: boolean): ConfusionMatrixEntry.AsObject;
|
|
@@ -2576,14 +2993,14 @@ export namespace ConfusionMatrixEntry {
|
|
|
2576
2993
|
|
|
2577
2994
|
export class ConfusionMatrix extends jspb.Message {
|
|
2578
2995
|
getMatrixList(): Array<ConfusionMatrixEntry>;
|
|
2579
|
-
setMatrixList(value: Array<ConfusionMatrixEntry>):
|
|
2580
|
-
clearMatrixList():
|
|
2996
|
+
setMatrixList(value: Array<ConfusionMatrixEntry>): ConfusionMatrix;
|
|
2997
|
+
clearMatrixList(): ConfusionMatrix;
|
|
2581
2998
|
addMatrix(value?: ConfusionMatrixEntry, index?: number): ConfusionMatrixEntry;
|
|
2582
2999
|
|
|
2583
3000
|
getConceptIdsList(): Array<string>;
|
|
2584
|
-
setConceptIdsList(value: Array<string>):
|
|
2585
|
-
clearConceptIdsList():
|
|
2586
|
-
addConceptIds(value: string, index?: number):
|
|
3001
|
+
setConceptIdsList(value: Array<string>): ConfusionMatrix;
|
|
3002
|
+
clearConceptIdsList(): ConfusionMatrix;
|
|
3003
|
+
addConceptIds(value: string, index?: number): ConfusionMatrix;
|
|
2587
3004
|
|
|
2588
3005
|
serializeBinary(): Uint8Array;
|
|
2589
3006
|
toObject(includeInstance?: boolean): ConfusionMatrix.AsObject;
|
|
@@ -2602,29 +3019,29 @@ export namespace ConfusionMatrix {
|
|
|
2602
3019
|
|
|
2603
3020
|
export class ROC extends jspb.Message {
|
|
2604
3021
|
getFprList(): Array<number>;
|
|
2605
|
-
setFprList(value: Array<number>):
|
|
2606
|
-
clearFprList():
|
|
2607
|
-
addFpr(value: number, index?: number):
|
|
3022
|
+
setFprList(value: Array<number>): ROC;
|
|
3023
|
+
clearFprList(): ROC;
|
|
3024
|
+
addFpr(value: number, index?: number): ROC;
|
|
2608
3025
|
|
|
2609
3026
|
getTprList(): Array<number>;
|
|
2610
|
-
setTprList(value: Array<number>):
|
|
2611
|
-
clearTprList():
|
|
2612
|
-
addTpr(value: number, index?: number):
|
|
3027
|
+
setTprList(value: Array<number>): ROC;
|
|
3028
|
+
clearTprList(): ROC;
|
|
3029
|
+
addTpr(value: number, index?: number): ROC;
|
|
2613
3030
|
|
|
2614
3031
|
getThresholdsList(): Array<number>;
|
|
2615
|
-
setThresholdsList(value: Array<number>):
|
|
2616
|
-
clearThresholdsList():
|
|
2617
|
-
addThresholds(value: number, index?: number):
|
|
3032
|
+
setThresholdsList(value: Array<number>): ROC;
|
|
3033
|
+
clearThresholdsList(): ROC;
|
|
3034
|
+
addThresholds(value: number, index?: number): ROC;
|
|
2618
3035
|
|
|
2619
3036
|
getFprPerImageList(): Array<number>;
|
|
2620
|
-
setFprPerImageList(value: Array<number>):
|
|
2621
|
-
clearFprPerImageList():
|
|
2622
|
-
addFprPerImage(value: number, index?: number):
|
|
3037
|
+
setFprPerImageList(value: Array<number>): ROC;
|
|
3038
|
+
clearFprPerImageList(): ROC;
|
|
3039
|
+
addFprPerImage(value: number, index?: number): ROC;
|
|
2623
3040
|
|
|
2624
3041
|
getFprPerObjectList(): Array<number>;
|
|
2625
|
-
setFprPerObjectList(value: Array<number>):
|
|
2626
|
-
clearFprPerObjectList():
|
|
2627
|
-
addFprPerObject(value: number, index?: number):
|
|
3042
|
+
setFprPerObjectList(value: Array<number>): ROC;
|
|
3043
|
+
clearFprPerObjectList(): ROC;
|
|
3044
|
+
addFprPerObject(value: number, index?: number): ROC;
|
|
2628
3045
|
|
|
2629
3046
|
serializeBinary(): Uint8Array;
|
|
2630
3047
|
toObject(includeInstance?: boolean): ROC.AsObject;
|
|
@@ -2646,19 +3063,19 @@ export namespace ROC {
|
|
|
2646
3063
|
|
|
2647
3064
|
export class PrecisionRecallCurve extends jspb.Message {
|
|
2648
3065
|
getRecallList(): Array<number>;
|
|
2649
|
-
setRecallList(value: Array<number>):
|
|
2650
|
-
clearRecallList():
|
|
2651
|
-
addRecall(value: number, index?: number):
|
|
3066
|
+
setRecallList(value: Array<number>): PrecisionRecallCurve;
|
|
3067
|
+
clearRecallList(): PrecisionRecallCurve;
|
|
3068
|
+
addRecall(value: number, index?: number): PrecisionRecallCurve;
|
|
2652
3069
|
|
|
2653
3070
|
getPrecisionList(): Array<number>;
|
|
2654
|
-
setPrecisionList(value: Array<number>):
|
|
2655
|
-
clearPrecisionList():
|
|
2656
|
-
addPrecision(value: number, index?: number):
|
|
3071
|
+
setPrecisionList(value: Array<number>): PrecisionRecallCurve;
|
|
3072
|
+
clearPrecisionList(): PrecisionRecallCurve;
|
|
3073
|
+
addPrecision(value: number, index?: number): PrecisionRecallCurve;
|
|
2657
3074
|
|
|
2658
3075
|
getThresholdsList(): Array<number>;
|
|
2659
|
-
setThresholdsList(value: Array<number>):
|
|
2660
|
-
clearThresholdsList():
|
|
2661
|
-
addThresholds(value: number, index?: number):
|
|
3076
|
+
setThresholdsList(value: Array<number>): PrecisionRecallCurve;
|
|
3077
|
+
clearThresholdsList(): PrecisionRecallCurve;
|
|
3078
|
+
addThresholds(value: number, index?: number): PrecisionRecallCurve;
|
|
2662
3079
|
|
|
2663
3080
|
serializeBinary(): Uint8Array;
|
|
2664
3081
|
toObject(includeInstance?: boolean): PrecisionRecallCurve.AsObject;
|
|
@@ -2678,49 +3095,49 @@ export namespace PrecisionRecallCurve {
|
|
|
2678
3095
|
|
|
2679
3096
|
export class BinaryMetrics extends jspb.Message {
|
|
2680
3097
|
getNumPos(): number;
|
|
2681
|
-
setNumPos(value: number):
|
|
3098
|
+
setNumPos(value: number): BinaryMetrics;
|
|
2682
3099
|
|
|
2683
3100
|
getNumNeg(): number;
|
|
2684
|
-
setNumNeg(value: number):
|
|
3101
|
+
setNumNeg(value: number): BinaryMetrics;
|
|
2685
3102
|
|
|
2686
3103
|
getNumTot(): number;
|
|
2687
|
-
setNumTot(value: number):
|
|
3104
|
+
setNumTot(value: number): BinaryMetrics;
|
|
2688
3105
|
|
|
2689
3106
|
getRocAuc(): number;
|
|
2690
|
-
setRocAuc(value: number):
|
|
3107
|
+
setRocAuc(value: number): BinaryMetrics;
|
|
2691
3108
|
|
|
2692
3109
|
getF1(): number;
|
|
2693
|
-
setF1(value: number):
|
|
3110
|
+
setF1(value: number): BinaryMetrics;
|
|
2694
3111
|
|
|
2695
3112
|
getConcept(): Concept | undefined;
|
|
2696
|
-
setConcept(value?: Concept):
|
|
3113
|
+
setConcept(value?: Concept): BinaryMetrics;
|
|
2697
3114
|
hasConcept(): boolean;
|
|
2698
|
-
clearConcept():
|
|
3115
|
+
clearConcept(): BinaryMetrics;
|
|
2699
3116
|
|
|
2700
3117
|
getRocCurve(): ROC | undefined;
|
|
2701
|
-
setRocCurve(value?: ROC):
|
|
3118
|
+
setRocCurve(value?: ROC): BinaryMetrics;
|
|
2702
3119
|
hasRocCurve(): boolean;
|
|
2703
|
-
clearRocCurve():
|
|
3120
|
+
clearRocCurve(): BinaryMetrics;
|
|
2704
3121
|
|
|
2705
3122
|
getPrecisionRecallCurve(): PrecisionRecallCurve | undefined;
|
|
2706
|
-
setPrecisionRecallCurve(value?: PrecisionRecallCurve):
|
|
3123
|
+
setPrecisionRecallCurve(value?: PrecisionRecallCurve): BinaryMetrics;
|
|
2707
3124
|
hasPrecisionRecallCurve(): boolean;
|
|
2708
|
-
clearPrecisionRecallCurve():
|
|
3125
|
+
clearPrecisionRecallCurve(): BinaryMetrics;
|
|
2709
3126
|
|
|
2710
3127
|
getAvgPrecision(): number;
|
|
2711
|
-
setAvgPrecision(value: number):
|
|
3128
|
+
setAvgPrecision(value: number): BinaryMetrics;
|
|
2712
3129
|
|
|
2713
3130
|
getAreaName(): string;
|
|
2714
|
-
setAreaName(value: string):
|
|
3131
|
+
setAreaName(value: string): BinaryMetrics;
|
|
2715
3132
|
|
|
2716
3133
|
getAreaMin(): number;
|
|
2717
|
-
setAreaMin(value: number):
|
|
3134
|
+
setAreaMin(value: number): BinaryMetrics;
|
|
2718
3135
|
|
|
2719
3136
|
getAreaMax(): number;
|
|
2720
|
-
setAreaMax(value: number):
|
|
3137
|
+
setAreaMax(value: number): BinaryMetrics;
|
|
2721
3138
|
|
|
2722
3139
|
getIou(): number;
|
|
2723
|
-
setIou(value: number):
|
|
3140
|
+
setIou(value: number): BinaryMetrics;
|
|
2724
3141
|
|
|
2725
3142
|
serializeBinary(): Uint8Array;
|
|
2726
3143
|
toObject(includeInstance?: boolean): BinaryMetrics.AsObject;
|
|
@@ -2750,22 +3167,22 @@ export namespace BinaryMetrics {
|
|
|
2750
3167
|
|
|
2751
3168
|
export class TrackerMetrics extends jspb.Message {
|
|
2752
3169
|
getMotMota(): number;
|
|
2753
|
-
setMotMota(value: number):
|
|
3170
|
+
setMotMota(value: number): TrackerMetrics;
|
|
2754
3171
|
|
|
2755
3172
|
getMotNumSwitches(): number;
|
|
2756
|
-
setMotNumSwitches(value: number):
|
|
3173
|
+
setMotNumSwitches(value: number): TrackerMetrics;
|
|
2757
3174
|
|
|
2758
3175
|
getMorseFrag(): number;
|
|
2759
|
-
setMorseFrag(value: number):
|
|
3176
|
+
setMorseFrag(value: number): TrackerMetrics;
|
|
2760
3177
|
|
|
2761
3178
|
getAvgPrecision(): number;
|
|
2762
|
-
setAvgPrecision(value: number):
|
|
3179
|
+
setAvgPrecision(value: number): TrackerMetrics;
|
|
2763
3180
|
|
|
2764
3181
|
getAiid(): string;
|
|
2765
|
-
setAiid(value: string):
|
|
3182
|
+
setAiid(value: string): TrackerMetrics;
|
|
2766
3183
|
|
|
2767
3184
|
getUniqueSwitchRate(): number;
|
|
2768
|
-
setUniqueSwitchRate(value: number):
|
|
3185
|
+
setUniqueSwitchRate(value: number): TrackerMetrics;
|
|
2769
3186
|
|
|
2770
3187
|
serializeBinary(): Uint8Array;
|
|
2771
3188
|
toObject(includeInstance?: boolean): TrackerMetrics.AsObject;
|
|
@@ -2788,30 +3205,30 @@ export namespace TrackerMetrics {
|
|
|
2788
3205
|
|
|
2789
3206
|
export class EvalTestSetEntry extends jspb.Message {
|
|
2790
3207
|
getId(): string;
|
|
2791
|
-
setId(value: string):
|
|
3208
|
+
setId(value: string): EvalTestSetEntry;
|
|
2792
3209
|
|
|
2793
3210
|
getUrl(): string;
|
|
2794
|
-
setUrl(value: string):
|
|
3211
|
+
setUrl(value: string): EvalTestSetEntry;
|
|
2795
3212
|
|
|
2796
3213
|
getInput(): Input | undefined;
|
|
2797
|
-
setInput(value?: Input):
|
|
3214
|
+
setInput(value?: Input): EvalTestSetEntry;
|
|
2798
3215
|
hasInput(): boolean;
|
|
2799
|
-
clearInput():
|
|
3216
|
+
clearInput(): EvalTestSetEntry;
|
|
2800
3217
|
|
|
2801
3218
|
getPredictedConceptsList(): Array<Concept>;
|
|
2802
|
-
setPredictedConceptsList(value: Array<Concept>):
|
|
2803
|
-
clearPredictedConceptsList():
|
|
3219
|
+
setPredictedConceptsList(value: Array<Concept>): EvalTestSetEntry;
|
|
3220
|
+
clearPredictedConceptsList(): EvalTestSetEntry;
|
|
2804
3221
|
addPredictedConcepts(value?: Concept, index?: number): Concept;
|
|
2805
3222
|
|
|
2806
3223
|
getGroundTruthConceptsList(): Array<Concept>;
|
|
2807
|
-
setGroundTruthConceptsList(value: Array<Concept>):
|
|
2808
|
-
clearGroundTruthConceptsList():
|
|
3224
|
+
setGroundTruthConceptsList(value: Array<Concept>): EvalTestSetEntry;
|
|
3225
|
+
clearGroundTruthConceptsList(): EvalTestSetEntry;
|
|
2809
3226
|
addGroundTruthConcepts(value?: Concept, index?: number): Concept;
|
|
2810
3227
|
|
|
2811
3228
|
getAnnotation(): Annotation | undefined;
|
|
2812
|
-
setAnnotation(value?: Annotation):
|
|
3229
|
+
setAnnotation(value?: Annotation): EvalTestSetEntry;
|
|
2813
3230
|
hasAnnotation(): boolean;
|
|
2814
|
-
clearAnnotation():
|
|
3231
|
+
clearAnnotation(): EvalTestSetEntry;
|
|
2815
3232
|
|
|
2816
3233
|
serializeBinary(): Uint8Array;
|
|
2817
3234
|
toObject(includeInstance?: boolean): EvalTestSetEntry.AsObject;
|
|
@@ -2834,22 +3251,22 @@ export namespace EvalTestSetEntry {
|
|
|
2834
3251
|
|
|
2835
3252
|
export class LOPQEvalResult extends jspb.Message {
|
|
2836
3253
|
getK(): number;
|
|
2837
|
-
setK(value: number):
|
|
3254
|
+
setK(value: number): LOPQEvalResult;
|
|
2838
3255
|
|
|
2839
3256
|
getRecallVsBruteForce(): number;
|
|
2840
|
-
setRecallVsBruteForce(value: number):
|
|
3257
|
+
setRecallVsBruteForce(value: number): LOPQEvalResult;
|
|
2841
3258
|
|
|
2842
3259
|
getKendallTauVsBruteForce(): number;
|
|
2843
|
-
setKendallTauVsBruteForce(value: number):
|
|
3260
|
+
setKendallTauVsBruteForce(value: number): LOPQEvalResult;
|
|
2844
3261
|
|
|
2845
3262
|
getMostFrequentCodePercent(): number;
|
|
2846
|
-
setMostFrequentCodePercent(value: number):
|
|
3263
|
+
setMostFrequentCodePercent(value: number): LOPQEvalResult;
|
|
2847
3264
|
|
|
2848
3265
|
getLopqNdcg(): number;
|
|
2849
|
-
setLopqNdcg(value: number):
|
|
3266
|
+
setLopqNdcg(value: number): LOPQEvalResult;
|
|
2850
3267
|
|
|
2851
3268
|
getBruteForceNdcg(): number;
|
|
2852
|
-
setBruteForceNdcg(value: number):
|
|
3269
|
+
setBruteForceNdcg(value: number): LOPQEvalResult;
|
|
2853
3270
|
|
|
2854
3271
|
serializeBinary(): Uint8Array;
|
|
2855
3272
|
toObject(includeInstance?: boolean): LOPQEvalResult.AsObject;
|
|
@@ -2872,38 +3289,38 @@ export namespace LOPQEvalResult {
|
|
|
2872
3289
|
|
|
2873
3290
|
export class MetricsSummary extends jspb.Message {
|
|
2874
3291
|
getTop1Accuracy(): number;
|
|
2875
|
-
setTop1Accuracy(value: number):
|
|
3292
|
+
setTop1Accuracy(value: number): MetricsSummary;
|
|
2876
3293
|
|
|
2877
3294
|
getTop5Accuracy(): number;
|
|
2878
|
-
setTop5Accuracy(value: number):
|
|
3295
|
+
setTop5Accuracy(value: number): MetricsSummary;
|
|
2879
3296
|
|
|
2880
3297
|
getMacroAvgRocAuc(): number;
|
|
2881
|
-
setMacroAvgRocAuc(value: number):
|
|
3298
|
+
setMacroAvgRocAuc(value: number): MetricsSummary;
|
|
2882
3299
|
|
|
2883
3300
|
getMacroStdRocAuc(): number;
|
|
2884
|
-
setMacroStdRocAuc(value: number):
|
|
3301
|
+
setMacroStdRocAuc(value: number): MetricsSummary;
|
|
2885
3302
|
|
|
2886
3303
|
getMacroAvgF1Score(): number;
|
|
2887
|
-
setMacroAvgF1Score(value: number):
|
|
3304
|
+
setMacroAvgF1Score(value: number): MetricsSummary;
|
|
2888
3305
|
|
|
2889
3306
|
getMacroStdF1Score(): number;
|
|
2890
|
-
setMacroStdF1Score(value: number):
|
|
3307
|
+
setMacroStdF1Score(value: number): MetricsSummary;
|
|
2891
3308
|
|
|
2892
3309
|
getMacroAvgPrecision(): number;
|
|
2893
|
-
setMacroAvgPrecision(value: number):
|
|
3310
|
+
setMacroAvgPrecision(value: number): MetricsSummary;
|
|
2894
3311
|
|
|
2895
3312
|
getMacroAvgRecall(): number;
|
|
2896
|
-
setMacroAvgRecall(value: number):
|
|
3313
|
+
setMacroAvgRecall(value: number): MetricsSummary;
|
|
2897
3314
|
|
|
2898
3315
|
getMeanAvgPrecisionIou50(): number;
|
|
2899
|
-
setMeanAvgPrecisionIou50(value: number):
|
|
3316
|
+
setMeanAvgPrecisionIou50(value: number): MetricsSummary;
|
|
2900
3317
|
|
|
2901
3318
|
getMeanAvgPrecisionIouRange(): number;
|
|
2902
|
-
setMeanAvgPrecisionIouRange(value: number):
|
|
3319
|
+
setMeanAvgPrecisionIouRange(value: number): MetricsSummary;
|
|
2903
3320
|
|
|
2904
3321
|
getLopqMetricsList(): Array<LOPQEvalResult>;
|
|
2905
|
-
setLopqMetricsList(value: Array<LOPQEvalResult>):
|
|
2906
|
-
clearLopqMetricsList():
|
|
3322
|
+
setLopqMetricsList(value: Array<LOPQEvalResult>): MetricsSummary;
|
|
3323
|
+
clearLopqMetricsList(): MetricsSummary;
|
|
2907
3324
|
addLopqMetrics(value?: LOPQEvalResult, index?: number): LOPQEvalResult;
|
|
2908
3325
|
|
|
2909
3326
|
serializeBinary(): Uint8Array;
|
|
@@ -2932,56 +3349,56 @@ export namespace MetricsSummary {
|
|
|
2932
3349
|
|
|
2933
3350
|
export class EvalMetrics extends jspb.Message {
|
|
2934
3351
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
2935
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
3352
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): EvalMetrics;
|
|
2936
3353
|
hasStatus(): boolean;
|
|
2937
|
-
clearStatus():
|
|
3354
|
+
clearStatus(): EvalMetrics;
|
|
2938
3355
|
|
|
2939
3356
|
getId(): string;
|
|
2940
|
-
setId(value: string):
|
|
3357
|
+
setId(value: string): EvalMetrics;
|
|
2941
3358
|
|
|
2942
3359
|
getSummary(): MetricsSummary | undefined;
|
|
2943
|
-
setSummary(value?: MetricsSummary):
|
|
3360
|
+
setSummary(value?: MetricsSummary): EvalMetrics;
|
|
2944
3361
|
hasSummary(): boolean;
|
|
2945
|
-
clearSummary():
|
|
3362
|
+
clearSummary(): EvalMetrics;
|
|
2946
3363
|
|
|
2947
3364
|
getConfusionMatrix(): ConfusionMatrix | undefined;
|
|
2948
|
-
setConfusionMatrix(value?: ConfusionMatrix):
|
|
3365
|
+
setConfusionMatrix(value?: ConfusionMatrix): EvalMetrics;
|
|
2949
3366
|
hasConfusionMatrix(): boolean;
|
|
2950
|
-
clearConfusionMatrix():
|
|
3367
|
+
clearConfusionMatrix(): EvalMetrics;
|
|
2951
3368
|
|
|
2952
3369
|
getCooccurrenceMatrix(): CooccurrenceMatrix | undefined;
|
|
2953
|
-
setCooccurrenceMatrix(value?: CooccurrenceMatrix):
|
|
3370
|
+
setCooccurrenceMatrix(value?: CooccurrenceMatrix): EvalMetrics;
|
|
2954
3371
|
hasCooccurrenceMatrix(): boolean;
|
|
2955
|
-
clearCooccurrenceMatrix():
|
|
3372
|
+
clearCooccurrenceMatrix(): EvalMetrics;
|
|
2956
3373
|
|
|
2957
3374
|
getLabelCounts(): LabelDistribution | undefined;
|
|
2958
|
-
setLabelCounts(value?: LabelDistribution):
|
|
3375
|
+
setLabelCounts(value?: LabelDistribution): EvalMetrics;
|
|
2959
3376
|
hasLabelCounts(): boolean;
|
|
2960
|
-
clearLabelCounts():
|
|
3377
|
+
clearLabelCounts(): EvalMetrics;
|
|
2961
3378
|
|
|
2962
3379
|
getBinaryMetricsList(): Array<BinaryMetrics>;
|
|
2963
|
-
setBinaryMetricsList(value: Array<BinaryMetrics>):
|
|
2964
|
-
clearBinaryMetricsList():
|
|
3380
|
+
setBinaryMetricsList(value: Array<BinaryMetrics>): EvalMetrics;
|
|
3381
|
+
clearBinaryMetricsList(): EvalMetrics;
|
|
2965
3382
|
addBinaryMetrics(value?: BinaryMetrics, index?: number): BinaryMetrics;
|
|
2966
3383
|
|
|
2967
3384
|
getTestSetList(): Array<EvalTestSetEntry>;
|
|
2968
|
-
setTestSetList(value: Array<EvalTestSetEntry>):
|
|
2969
|
-
clearTestSetList():
|
|
3385
|
+
setTestSetList(value: Array<EvalTestSetEntry>): EvalMetrics;
|
|
3386
|
+
clearTestSetList(): EvalMetrics;
|
|
2970
3387
|
addTestSet(value?: EvalTestSetEntry, index?: number): EvalTestSetEntry;
|
|
2971
3388
|
|
|
2972
3389
|
getMetricsByAreaList(): Array<BinaryMetrics>;
|
|
2973
|
-
setMetricsByAreaList(value: Array<BinaryMetrics>):
|
|
2974
|
-
clearMetricsByAreaList():
|
|
3390
|
+
setMetricsByAreaList(value: Array<BinaryMetrics>): EvalMetrics;
|
|
3391
|
+
clearMetricsByAreaList(): EvalMetrics;
|
|
2975
3392
|
addMetricsByArea(value?: BinaryMetrics, index?: number): BinaryMetrics;
|
|
2976
3393
|
|
|
2977
3394
|
getMetricsByClassList(): Array<BinaryMetrics>;
|
|
2978
|
-
setMetricsByClassList(value: Array<BinaryMetrics>):
|
|
2979
|
-
clearMetricsByClassList():
|
|
3395
|
+
setMetricsByClassList(value: Array<BinaryMetrics>): EvalMetrics;
|
|
3396
|
+
clearMetricsByClassList(): EvalMetrics;
|
|
2980
3397
|
addMetricsByClass(value?: BinaryMetrics, index?: number): BinaryMetrics;
|
|
2981
3398
|
|
|
2982
3399
|
getTrackerMetricsList(): Array<TrackerMetrics>;
|
|
2983
|
-
setTrackerMetricsList(value: Array<TrackerMetrics>):
|
|
2984
|
-
clearTrackerMetricsList():
|
|
3400
|
+
setTrackerMetricsList(value: Array<TrackerMetrics>): EvalMetrics;
|
|
3401
|
+
clearTrackerMetricsList(): EvalMetrics;
|
|
2985
3402
|
addTrackerMetrics(value?: TrackerMetrics, index?: number): TrackerMetrics;
|
|
2986
3403
|
|
|
2987
3404
|
serializeBinary(): Uint8Array;
|
|
@@ -3010,25 +3427,25 @@ export namespace EvalMetrics {
|
|
|
3010
3427
|
|
|
3011
3428
|
export class FieldsValue extends jspb.Message {
|
|
3012
3429
|
getConfusionMatrix(): boolean;
|
|
3013
|
-
setConfusionMatrix(value: boolean):
|
|
3430
|
+
setConfusionMatrix(value: boolean): FieldsValue;
|
|
3014
3431
|
|
|
3015
3432
|
getCooccurrenceMatrix(): boolean;
|
|
3016
|
-
setCooccurrenceMatrix(value: boolean):
|
|
3433
|
+
setCooccurrenceMatrix(value: boolean): FieldsValue;
|
|
3017
3434
|
|
|
3018
3435
|
getLabelCounts(): boolean;
|
|
3019
|
-
setLabelCounts(value: boolean):
|
|
3436
|
+
setLabelCounts(value: boolean): FieldsValue;
|
|
3020
3437
|
|
|
3021
3438
|
getBinaryMetrics(): boolean;
|
|
3022
|
-
setBinaryMetrics(value: boolean):
|
|
3439
|
+
setBinaryMetrics(value: boolean): FieldsValue;
|
|
3023
3440
|
|
|
3024
3441
|
getTestSet(): boolean;
|
|
3025
|
-
setTestSet(value: boolean):
|
|
3442
|
+
setTestSet(value: boolean): FieldsValue;
|
|
3026
3443
|
|
|
3027
3444
|
getMetricsByArea(): boolean;
|
|
3028
|
-
setMetricsByArea(value: boolean):
|
|
3445
|
+
setMetricsByArea(value: boolean): FieldsValue;
|
|
3029
3446
|
|
|
3030
3447
|
getMetricsByClass(): boolean;
|
|
3031
|
-
setMetricsByClass(value: boolean):
|
|
3448
|
+
setMetricsByClass(value: boolean): FieldsValue;
|
|
3032
3449
|
|
|
3033
3450
|
serializeBinary(): Uint8Array;
|
|
3034
3451
|
toObject(includeInstance?: boolean): FieldsValue.AsObject;
|
|
@@ -3052,32 +3469,32 @@ export namespace FieldsValue {
|
|
|
3052
3469
|
|
|
3053
3470
|
export class Output extends jspb.Message {
|
|
3054
3471
|
getId(): string;
|
|
3055
|
-
setId(value: string):
|
|
3472
|
+
setId(value: string): Output;
|
|
3056
3473
|
|
|
3057
3474
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
3058
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
3475
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): Output;
|
|
3059
3476
|
hasStatus(): boolean;
|
|
3060
|
-
clearStatus():
|
|
3477
|
+
clearStatus(): Output;
|
|
3061
3478
|
|
|
3062
3479
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3063
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3480
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Output;
|
|
3064
3481
|
hasCreatedAt(): boolean;
|
|
3065
|
-
clearCreatedAt():
|
|
3482
|
+
clearCreatedAt(): Output;
|
|
3066
3483
|
|
|
3067
3484
|
getModel(): Model | undefined;
|
|
3068
|
-
setModel(value?: Model):
|
|
3485
|
+
setModel(value?: Model): Output;
|
|
3069
3486
|
hasModel(): boolean;
|
|
3070
|
-
clearModel():
|
|
3487
|
+
clearModel(): Output;
|
|
3071
3488
|
|
|
3072
3489
|
getInput(): Input | undefined;
|
|
3073
|
-
setInput(value?: Input):
|
|
3490
|
+
setInput(value?: Input): Output;
|
|
3074
3491
|
hasInput(): boolean;
|
|
3075
|
-
clearInput():
|
|
3492
|
+
clearInput(): Output;
|
|
3076
3493
|
|
|
3077
3494
|
getData(): Data | undefined;
|
|
3078
|
-
setData(value?: Data):
|
|
3495
|
+
setData(value?: Data): Output;
|
|
3079
3496
|
hasData(): boolean;
|
|
3080
|
-
clearData():
|
|
3497
|
+
clearData(): Output;
|
|
3081
3498
|
|
|
3082
3499
|
serializeBinary(): Uint8Array;
|
|
3083
3500
|
toObject(includeInstance?: boolean): Output.AsObject;
|
|
@@ -3100,12 +3517,12 @@ export namespace Output {
|
|
|
3100
3517
|
|
|
3101
3518
|
export class ScopeDeps extends jspb.Message {
|
|
3102
3519
|
getScope(): string;
|
|
3103
|
-
setScope(value: string):
|
|
3520
|
+
setScope(value: string): ScopeDeps;
|
|
3104
3521
|
|
|
3105
3522
|
getDependingScopesList(): Array<string>;
|
|
3106
|
-
setDependingScopesList(value: Array<string>):
|
|
3107
|
-
clearDependingScopesList():
|
|
3108
|
-
addDependingScopes(value: string, index?: number):
|
|
3523
|
+
setDependingScopesList(value: Array<string>): ScopeDeps;
|
|
3524
|
+
clearDependingScopesList(): ScopeDeps;
|
|
3525
|
+
addDependingScopes(value: string, index?: number): ScopeDeps;
|
|
3109
3526
|
|
|
3110
3527
|
serializeBinary(): Uint8Array;
|
|
3111
3528
|
toObject(includeInstance?: boolean): ScopeDeps.AsObject;
|
|
@@ -3124,12 +3541,12 @@ export namespace ScopeDeps {
|
|
|
3124
3541
|
|
|
3125
3542
|
export class EndpointDeps extends jspb.Message {
|
|
3126
3543
|
getEndpoint(): string;
|
|
3127
|
-
setEndpoint(value: string):
|
|
3544
|
+
setEndpoint(value: string): EndpointDeps;
|
|
3128
3545
|
|
|
3129
3546
|
getDependingScopesList(): Array<string>;
|
|
3130
|
-
setDependingScopesList(value: Array<string>):
|
|
3131
|
-
clearDependingScopesList():
|
|
3132
|
-
addDependingScopes(value: string, index?: number):
|
|
3547
|
+
setDependingScopesList(value: Array<string>): EndpointDeps;
|
|
3548
|
+
clearDependingScopesList(): EndpointDeps;
|
|
3549
|
+
addDependingScopes(value: string, index?: number): EndpointDeps;
|
|
3133
3550
|
|
|
3134
3551
|
serializeBinary(): Uint8Array;
|
|
3135
3552
|
toObject(includeInstance?: boolean): EndpointDeps.AsObject;
|
|
@@ -3148,17 +3565,23 @@ export namespace EndpointDeps {
|
|
|
3148
3565
|
|
|
3149
3566
|
export class Hit extends jspb.Message {
|
|
3150
3567
|
getScore(): number;
|
|
3151
|
-
setScore(value: number):
|
|
3568
|
+
setScore(value: number): Hit;
|
|
3152
3569
|
|
|
3153
3570
|
getInput(): Input | undefined;
|
|
3154
|
-
setInput(value?: Input):
|
|
3571
|
+
setInput(value?: Input): Hit;
|
|
3155
3572
|
hasInput(): boolean;
|
|
3156
|
-
clearInput():
|
|
3573
|
+
clearInput(): Hit;
|
|
3157
3574
|
|
|
3158
3575
|
getAnnotation(): Annotation | undefined;
|
|
3159
|
-
setAnnotation(value?: Annotation):
|
|
3576
|
+
setAnnotation(value?: Annotation): Hit;
|
|
3160
3577
|
hasAnnotation(): boolean;
|
|
3161
|
-
clearAnnotation():
|
|
3578
|
+
clearAnnotation(): Hit;
|
|
3579
|
+
|
|
3580
|
+
getUserId(): string;
|
|
3581
|
+
setUserId(value: string): Hit;
|
|
3582
|
+
|
|
3583
|
+
getAppId(): string;
|
|
3584
|
+
setAppId(value: string): Hit;
|
|
3162
3585
|
|
|
3163
3586
|
serializeBinary(): Uint8Array;
|
|
3164
3587
|
toObject(includeInstance?: boolean): Hit.AsObject;
|
|
@@ -3173,27 +3596,29 @@ export namespace Hit {
|
|
|
3173
3596
|
score: number,
|
|
3174
3597
|
input?: Input.AsObject,
|
|
3175
3598
|
annotation?: Annotation.AsObject,
|
|
3599
|
+
userId: string,
|
|
3600
|
+
appId: string,
|
|
3176
3601
|
}
|
|
3177
3602
|
}
|
|
3178
3603
|
|
|
3179
3604
|
export class And extends jspb.Message {
|
|
3180
3605
|
getInput(): Input | undefined;
|
|
3181
|
-
setInput(value?: Input):
|
|
3606
|
+
setInput(value?: Input): And;
|
|
3182
3607
|
hasInput(): boolean;
|
|
3183
|
-
clearInput():
|
|
3608
|
+
clearInput(): And;
|
|
3184
3609
|
|
|
3185
3610
|
getOutput(): Output | undefined;
|
|
3186
|
-
setOutput(value?: Output):
|
|
3611
|
+
setOutput(value?: Output): And;
|
|
3187
3612
|
hasOutput(): boolean;
|
|
3188
|
-
clearOutput():
|
|
3613
|
+
clearOutput(): And;
|
|
3189
3614
|
|
|
3190
3615
|
getNegate(): boolean;
|
|
3191
|
-
setNegate(value: boolean):
|
|
3616
|
+
setNegate(value: boolean): And;
|
|
3192
3617
|
|
|
3193
3618
|
getAnnotation(): Annotation | undefined;
|
|
3194
|
-
setAnnotation(value?: Annotation):
|
|
3619
|
+
setAnnotation(value?: Annotation): And;
|
|
3195
3620
|
hasAnnotation(): boolean;
|
|
3196
|
-
clearAnnotation():
|
|
3621
|
+
clearAnnotation(): And;
|
|
3197
3622
|
|
|
3198
3623
|
serializeBinary(): Uint8Array;
|
|
3199
3624
|
toObject(includeInstance?: boolean): And.AsObject;
|
|
@@ -3214,21 +3639,21 @@ export namespace And {
|
|
|
3214
3639
|
|
|
3215
3640
|
export class Query extends jspb.Message {
|
|
3216
3641
|
getAndsList(): Array<And>;
|
|
3217
|
-
setAndsList(value: Array<And>):
|
|
3218
|
-
clearAndsList():
|
|
3642
|
+
setAndsList(value: Array<And>): Query;
|
|
3643
|
+
clearAndsList(): Query;
|
|
3219
3644
|
addAnds(value?: And, index?: number): And;
|
|
3220
3645
|
|
|
3221
3646
|
getLanguage(): string;
|
|
3222
|
-
setLanguage(value: string):
|
|
3647
|
+
setLanguage(value: string): Query;
|
|
3223
3648
|
|
|
3224
3649
|
getFiltersList(): Array<Filter>;
|
|
3225
|
-
setFiltersList(value: Array<Filter>):
|
|
3226
|
-
clearFiltersList():
|
|
3650
|
+
setFiltersList(value: Array<Filter>): Query;
|
|
3651
|
+
clearFiltersList(): Query;
|
|
3227
3652
|
addFilters(value?: Filter, index?: number): Filter;
|
|
3228
3653
|
|
|
3229
3654
|
getRanksList(): Array<Rank>;
|
|
3230
|
-
setRanksList(value: Array<Rank>):
|
|
3231
|
-
clearRanksList():
|
|
3655
|
+
setRanksList(value: Array<Rank>): Query;
|
|
3656
|
+
clearRanksList(): Query;
|
|
3232
3657
|
addRanks(value?: Rank, index?: number): Rank;
|
|
3233
3658
|
|
|
3234
3659
|
serializeBinary(): Uint8Array;
|
|
@@ -3250,50 +3675,50 @@ export namespace Query {
|
|
|
3250
3675
|
|
|
3251
3676
|
export class Search extends jspb.Message {
|
|
3252
3677
|
getQuery(): Query | undefined;
|
|
3253
|
-
setQuery(value?: Query):
|
|
3678
|
+
setQuery(value?: Query): Search;
|
|
3254
3679
|
hasQuery(): boolean;
|
|
3255
|
-
clearQuery():
|
|
3680
|
+
clearQuery(): Search;
|
|
3256
3681
|
|
|
3257
3682
|
getId(): string;
|
|
3258
|
-
setId(value: string):
|
|
3683
|
+
setId(value: string): Search;
|
|
3259
3684
|
|
|
3260
3685
|
getApplicationId(): string;
|
|
3261
|
-
setApplicationId(value: string):
|
|
3686
|
+
setApplicationId(value: string): Search;
|
|
3262
3687
|
|
|
3263
3688
|
getName(): string;
|
|
3264
|
-
setName(value: string):
|
|
3689
|
+
setName(value: string): Search;
|
|
3265
3690
|
|
|
3266
3691
|
getAsOf(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3267
|
-
setAsOf(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3692
|
+
setAsOf(value?: google_protobuf_timestamp_pb.Timestamp): Search;
|
|
3268
3693
|
hasAsOf(): boolean;
|
|
3269
|
-
clearAsOf():
|
|
3694
|
+
clearAsOf(): Search;
|
|
3270
3695
|
|
|
3271
3696
|
getGitHash(): string;
|
|
3272
|
-
setGitHash(value: string):
|
|
3697
|
+
setGitHash(value: string): Search;
|
|
3273
3698
|
|
|
3274
3699
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3275
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3700
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Search;
|
|
3276
3701
|
hasCreatedAt(): boolean;
|
|
3277
|
-
clearCreatedAt():
|
|
3702
|
+
clearCreatedAt(): Search;
|
|
3278
3703
|
|
|
3279
3704
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3280
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3705
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Search;
|
|
3281
3706
|
hasModifiedAt(): boolean;
|
|
3282
|
-
clearModifiedAt():
|
|
3707
|
+
clearModifiedAt(): Search;
|
|
3283
3708
|
|
|
3284
3709
|
getAlgorithm(): string;
|
|
3285
|
-
setAlgorithm(value: string):
|
|
3710
|
+
setAlgorithm(value: string): Search;
|
|
3286
3711
|
|
|
3287
3712
|
getSave(): boolean;
|
|
3288
|
-
setSave(value: boolean):
|
|
3713
|
+
setSave(value: boolean): Search;
|
|
3289
3714
|
|
|
3290
3715
|
getMinValue(): number;
|
|
3291
|
-
setMinValue(value: number):
|
|
3716
|
+
setMinValue(value: number): Search;
|
|
3292
3717
|
|
|
3293
3718
|
getVisibility(): Visibility | undefined;
|
|
3294
|
-
setVisibility(value?: Visibility):
|
|
3719
|
+
setVisibility(value?: Visibility): Search;
|
|
3295
3720
|
hasVisibility(): boolean;
|
|
3296
|
-
clearVisibility():
|
|
3721
|
+
clearVisibility(): Search;
|
|
3297
3722
|
|
|
3298
3723
|
serializeBinary(): Uint8Array;
|
|
3299
3724
|
toObject(includeInstance?: boolean): Search.AsObject;
|
|
@@ -3322,22 +3747,22 @@ export namespace Search {
|
|
|
3322
3747
|
|
|
3323
3748
|
export class Filter extends jspb.Message {
|
|
3324
3749
|
getNegate(): boolean;
|
|
3325
|
-
setNegate(value: boolean):
|
|
3750
|
+
setNegate(value: boolean): Filter;
|
|
3326
3751
|
|
|
3327
3752
|
getAnnotation(): Annotation | undefined;
|
|
3328
|
-
setAnnotation(value?: Annotation):
|
|
3753
|
+
setAnnotation(value?: Annotation): Filter;
|
|
3329
3754
|
hasAnnotation(): boolean;
|
|
3330
|
-
clearAnnotation():
|
|
3755
|
+
clearAnnotation(): Filter;
|
|
3331
3756
|
|
|
3332
3757
|
getInput(): Input | undefined;
|
|
3333
|
-
setInput(value?: Input):
|
|
3758
|
+
setInput(value?: Input): Filter;
|
|
3334
3759
|
hasInput(): boolean;
|
|
3335
|
-
clearInput():
|
|
3760
|
+
clearInput(): Filter;
|
|
3336
3761
|
|
|
3337
3762
|
getLastUpdatedTimeRange(): TimeRange | undefined;
|
|
3338
|
-
setLastUpdatedTimeRange(value?: TimeRange):
|
|
3763
|
+
setLastUpdatedTimeRange(value?: TimeRange): Filter;
|
|
3339
3764
|
hasLastUpdatedTimeRange(): boolean;
|
|
3340
|
-
clearLastUpdatedTimeRange():
|
|
3765
|
+
clearLastUpdatedTimeRange(): Filter;
|
|
3341
3766
|
|
|
3342
3767
|
serializeBinary(): Uint8Array;
|
|
3343
3768
|
toObject(includeInstance?: boolean): Filter.AsObject;
|
|
@@ -3358,14 +3783,14 @@ export namespace Filter {
|
|
|
3358
3783
|
|
|
3359
3784
|
export class TimeRange extends jspb.Message {
|
|
3360
3785
|
getStartTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3361
|
-
setStartTime(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3786
|
+
setStartTime(value?: google_protobuf_timestamp_pb.Timestamp): TimeRange;
|
|
3362
3787
|
hasStartTime(): boolean;
|
|
3363
|
-
clearStartTime():
|
|
3788
|
+
clearStartTime(): TimeRange;
|
|
3364
3789
|
|
|
3365
3790
|
getEndTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3366
|
-
setEndTime(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3791
|
+
setEndTime(value?: google_protobuf_timestamp_pb.Timestamp): TimeRange;
|
|
3367
3792
|
hasEndTime(): boolean;
|
|
3368
|
-
clearEndTime():
|
|
3793
|
+
clearEndTime(): TimeRange;
|
|
3369
3794
|
|
|
3370
3795
|
serializeBinary(): Uint8Array;
|
|
3371
3796
|
toObject(includeInstance?: boolean): TimeRange.AsObject;
|
|
@@ -3384,12 +3809,12 @@ export namespace TimeRange {
|
|
|
3384
3809
|
|
|
3385
3810
|
export class Rank extends jspb.Message {
|
|
3386
3811
|
getNegate(): boolean;
|
|
3387
|
-
setNegate(value: boolean):
|
|
3812
|
+
setNegate(value: boolean): Rank;
|
|
3388
3813
|
|
|
3389
3814
|
getAnnotation(): Annotation | undefined;
|
|
3390
|
-
setAnnotation(value?: Annotation):
|
|
3815
|
+
setAnnotation(value?: Annotation): Rank;
|
|
3391
3816
|
hasAnnotation(): boolean;
|
|
3392
|
-
clearAnnotation():
|
|
3817
|
+
clearAnnotation(): Rank;
|
|
3393
3818
|
|
|
3394
3819
|
serializeBinary(): Uint8Array;
|
|
3395
3820
|
toObject(includeInstance?: boolean): Rank.AsObject;
|
|
@@ -3408,32 +3833,32 @@ export namespace Rank {
|
|
|
3408
3833
|
|
|
3409
3834
|
export class AnnotationSearchMetrics extends jspb.Message {
|
|
3410
3835
|
getGroundTruth(): Search | undefined;
|
|
3411
|
-
setGroundTruth(value?: Search):
|
|
3836
|
+
setGroundTruth(value?: Search): AnnotationSearchMetrics;
|
|
3412
3837
|
hasGroundTruth(): boolean;
|
|
3413
|
-
clearGroundTruth():
|
|
3838
|
+
clearGroundTruth(): AnnotationSearchMetrics;
|
|
3414
3839
|
|
|
3415
3840
|
getSearchToEval(): Search | undefined;
|
|
3416
|
-
setSearchToEval(value?: Search):
|
|
3841
|
+
setSearchToEval(value?: Search): AnnotationSearchMetrics;
|
|
3417
3842
|
hasSearchToEval(): boolean;
|
|
3418
|
-
clearSearchToEval():
|
|
3843
|
+
clearSearchToEval(): AnnotationSearchMetrics;
|
|
3419
3844
|
|
|
3420
3845
|
getMetrics(): EvalMetrics | undefined;
|
|
3421
|
-
setMetrics(value?: EvalMetrics):
|
|
3846
|
+
setMetrics(value?: EvalMetrics): AnnotationSearchMetrics;
|
|
3422
3847
|
hasMetrics(): boolean;
|
|
3423
|
-
clearMetrics():
|
|
3848
|
+
clearMetrics(): AnnotationSearchMetrics;
|
|
3424
3849
|
|
|
3425
3850
|
getData(): Data | undefined;
|
|
3426
|
-
setData(value?: Data):
|
|
3851
|
+
setData(value?: Data): AnnotationSearchMetrics;
|
|
3427
3852
|
hasData(): boolean;
|
|
3428
|
-
clearData():
|
|
3853
|
+
clearData(): AnnotationSearchMetrics;
|
|
3429
3854
|
|
|
3430
3855
|
getActiveConceptCount(): number;
|
|
3431
|
-
setActiveConceptCount(value: number):
|
|
3856
|
+
setActiveConceptCount(value: number): AnnotationSearchMetrics;
|
|
3432
3857
|
|
|
3433
3858
|
getVisibility(): Visibility | undefined;
|
|
3434
|
-
setVisibility(value?: Visibility):
|
|
3859
|
+
setVisibility(value?: Visibility): AnnotationSearchMetrics;
|
|
3435
3860
|
hasVisibility(): boolean;
|
|
3436
|
-
clearVisibility():
|
|
3861
|
+
clearVisibility(): AnnotationSearchMetrics;
|
|
3437
3862
|
|
|
3438
3863
|
serializeBinary(): Uint8Array;
|
|
3439
3864
|
toObject(includeInstance?: boolean): AnnotationSearchMetrics.AsObject;
|
|
@@ -3456,23 +3881,23 @@ export namespace AnnotationSearchMetrics {
|
|
|
3456
3881
|
|
|
3457
3882
|
export class Text extends jspb.Message {
|
|
3458
3883
|
getRaw(): string;
|
|
3459
|
-
setRaw(value: string):
|
|
3884
|
+
setRaw(value: string): Text;
|
|
3460
3885
|
|
|
3461
3886
|
getUrl(): string;
|
|
3462
|
-
setUrl(value: string):
|
|
3887
|
+
setUrl(value: string): Text;
|
|
3463
3888
|
|
|
3464
3889
|
getAllowDuplicateUrl(): boolean;
|
|
3465
|
-
setAllowDuplicateUrl(value: boolean):
|
|
3890
|
+
setAllowDuplicateUrl(value: boolean): Text;
|
|
3466
3891
|
|
|
3467
3892
|
getHosted(): HostedURL | undefined;
|
|
3468
|
-
setHosted(value?: HostedURL):
|
|
3893
|
+
setHosted(value?: HostedURL): Text;
|
|
3469
3894
|
hasHosted(): boolean;
|
|
3470
|
-
clearHosted():
|
|
3895
|
+
clearHosted(): Text;
|
|
3471
3896
|
|
|
3472
3897
|
getTextInfo(): TextInfo | undefined;
|
|
3473
|
-
setTextInfo(value?: TextInfo):
|
|
3898
|
+
setTextInfo(value?: TextInfo): Text;
|
|
3474
3899
|
hasTextInfo(): boolean;
|
|
3475
|
-
clearTextInfo():
|
|
3900
|
+
clearTextInfo(): Text;
|
|
3476
3901
|
|
|
3477
3902
|
serializeBinary(): Uint8Array;
|
|
3478
3903
|
toObject(includeInstance?: boolean): Text.AsObject;
|
|
@@ -3494,10 +3919,10 @@ export namespace Text {
|
|
|
3494
3919
|
|
|
3495
3920
|
export class TextInfo extends jspb.Message {
|
|
3496
3921
|
getCharCount(): number;
|
|
3497
|
-
setCharCount(value: number):
|
|
3922
|
+
setCharCount(value: number): TextInfo;
|
|
3498
3923
|
|
|
3499
3924
|
getEncoding(): string;
|
|
3500
|
-
setEncoding(value: string):
|
|
3925
|
+
setEncoding(value: string): TextInfo;
|
|
3501
3926
|
|
|
3502
3927
|
serializeBinary(): Uint8Array;
|
|
3503
3928
|
toObject(includeInstance?: boolean): TextInfo.AsObject;
|
|
@@ -3516,83 +3941,83 @@ export namespace TextInfo {
|
|
|
3516
3941
|
|
|
3517
3942
|
export class User extends jspb.Message {
|
|
3518
3943
|
getId(): string;
|
|
3519
|
-
setId(value: string):
|
|
3944
|
+
setId(value: string): User;
|
|
3520
3945
|
|
|
3521
3946
|
getPrimaryEmail(): string;
|
|
3522
|
-
setPrimaryEmail(value: string):
|
|
3947
|
+
setPrimaryEmail(value: string): User;
|
|
3523
3948
|
|
|
3524
3949
|
getFirstName(): string;
|
|
3525
|
-
setFirstName(value: string):
|
|
3950
|
+
setFirstName(value: string): User;
|
|
3526
3951
|
|
|
3527
3952
|
getLastName(): string;
|
|
3528
|
-
setLastName(value: string):
|
|
3953
|
+
setLastName(value: string): User;
|
|
3529
3954
|
|
|
3530
3955
|
getCompanyName(): string;
|
|
3531
|
-
setCompanyName(value: string):
|
|
3956
|
+
setCompanyName(value: string): User;
|
|
3532
3957
|
|
|
3533
3958
|
getJobTitle(): string;
|
|
3534
|
-
setJobTitle(value: string):
|
|
3959
|
+
setJobTitle(value: string): User;
|
|
3535
3960
|
|
|
3536
3961
|
getJobRole(): string;
|
|
3537
|
-
setJobRole(value: string):
|
|
3962
|
+
setJobRole(value: string): User;
|
|
3538
3963
|
|
|
3539
3964
|
getBillType(): string;
|
|
3540
|
-
setBillType(value: string):
|
|
3965
|
+
setBillType(value: string): User;
|
|
3541
3966
|
|
|
3542
3967
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3543
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3968
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
3544
3969
|
hasCreatedAt(): boolean;
|
|
3545
|
-
clearCreatedAt():
|
|
3970
|
+
clearCreatedAt(): User;
|
|
3546
3971
|
|
|
3547
3972
|
getDateGdprConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3548
|
-
setDateGdprConsent(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3973
|
+
setDateGdprConsent(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
3549
3974
|
hasDateGdprConsent(): boolean;
|
|
3550
|
-
clearDateGdprConsent():
|
|
3975
|
+
clearDateGdprConsent(): User;
|
|
3551
3976
|
|
|
3552
3977
|
getDateTosConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3553
|
-
setDateTosConsent(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3978
|
+
setDateTosConsent(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
3554
3979
|
hasDateTosConsent(): boolean;
|
|
3555
|
-
clearDateTosConsent():
|
|
3980
|
+
clearDateTosConsent(): User;
|
|
3556
3981
|
|
|
3557
3982
|
getDateMarketingConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3558
|
-
setDateMarketingConsent(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
3983
|
+
setDateMarketingConsent(value?: google_protobuf_timestamp_pb.Timestamp): User;
|
|
3559
3984
|
hasDateMarketingConsent(): boolean;
|
|
3560
|
-
clearDateMarketingConsent():
|
|
3985
|
+
clearDateMarketingConsent(): User;
|
|
3561
3986
|
|
|
3562
3987
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
3563
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
3988
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): User;
|
|
3564
3989
|
hasMetadata(): boolean;
|
|
3565
|
-
clearMetadata():
|
|
3990
|
+
clearMetadata(): User;
|
|
3566
3991
|
|
|
3567
3992
|
getEmailAddressesList(): Array<EmailAddress>;
|
|
3568
|
-
setEmailAddressesList(value: Array<EmailAddress>):
|
|
3569
|
-
clearEmailAddressesList():
|
|
3993
|
+
setEmailAddressesList(value: Array<EmailAddress>): User;
|
|
3994
|
+
clearEmailAddressesList(): User;
|
|
3570
3995
|
addEmailAddresses(value?: EmailAddress, index?: number): EmailAddress;
|
|
3571
3996
|
|
|
3572
3997
|
getIsOrgAdmin(): boolean;
|
|
3573
|
-
setIsOrgAdmin(value: boolean):
|
|
3998
|
+
setIsOrgAdmin(value: boolean): User;
|
|
3574
3999
|
|
|
3575
4000
|
getTwoFactorAuthEnabled(): boolean;
|
|
3576
|
-
setTwoFactorAuthEnabled(value: boolean):
|
|
4001
|
+
setTwoFactorAuthEnabled(value: boolean): User;
|
|
3577
4002
|
|
|
3578
4003
|
getTeamsCount(): number;
|
|
3579
|
-
setTeamsCount(value: number):
|
|
4004
|
+
setTeamsCount(value: number): User;
|
|
3580
4005
|
|
|
3581
4006
|
getIsStarred(): boolean;
|
|
3582
|
-
setIsStarred(value: boolean):
|
|
4007
|
+
setIsStarred(value: boolean): User;
|
|
3583
4008
|
|
|
3584
4009
|
getStarCount(): number;
|
|
3585
|
-
setStarCount(value: number):
|
|
4010
|
+
setStarCount(value: number): User;
|
|
3586
4011
|
|
|
3587
4012
|
getVisibility(): Visibility | undefined;
|
|
3588
|
-
setVisibility(value?: Visibility):
|
|
4013
|
+
setVisibility(value?: Visibility): User;
|
|
3589
4014
|
hasVisibility(): boolean;
|
|
3590
|
-
clearVisibility():
|
|
4015
|
+
clearVisibility(): User;
|
|
3591
4016
|
|
|
3592
4017
|
getUserDetail(): UserDetail | undefined;
|
|
3593
|
-
setUserDetail(value?: UserDetail):
|
|
4018
|
+
setUserDetail(value?: UserDetail): User;
|
|
3594
4019
|
hasUserDetail(): boolean;
|
|
3595
|
-
clearUserDetail():
|
|
4020
|
+
clearUserDetail(): User;
|
|
3596
4021
|
|
|
3597
4022
|
serializeBinary(): Uint8Array;
|
|
3598
4023
|
toObject(includeInstance?: boolean): User.AsObject;
|
|
@@ -3630,50 +4055,50 @@ export namespace User {
|
|
|
3630
4055
|
|
|
3631
4056
|
export class UserDetail extends jspb.Message {
|
|
3632
4057
|
getPrimaryEmail(): string;
|
|
3633
|
-
setPrimaryEmail(value: string):
|
|
4058
|
+
setPrimaryEmail(value: string): UserDetail;
|
|
3634
4059
|
|
|
3635
4060
|
getBillType(): string;
|
|
3636
|
-
setBillType(value: string):
|
|
4061
|
+
setBillType(value: string): UserDetail;
|
|
3637
4062
|
|
|
3638
4063
|
getDateGdprConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3639
|
-
setDateGdprConsent(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4064
|
+
setDateGdprConsent(value?: google_protobuf_timestamp_pb.Timestamp): UserDetail;
|
|
3640
4065
|
hasDateGdprConsent(): boolean;
|
|
3641
|
-
clearDateGdprConsent():
|
|
4066
|
+
clearDateGdprConsent(): UserDetail;
|
|
3642
4067
|
|
|
3643
4068
|
getDateTosConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3644
|
-
setDateTosConsent(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4069
|
+
setDateTosConsent(value?: google_protobuf_timestamp_pb.Timestamp): UserDetail;
|
|
3645
4070
|
hasDateTosConsent(): boolean;
|
|
3646
|
-
clearDateTosConsent():
|
|
4071
|
+
clearDateTosConsent(): UserDetail;
|
|
3647
4072
|
|
|
3648
4073
|
getDateMarketingConsent(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3649
|
-
setDateMarketingConsent(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4074
|
+
setDateMarketingConsent(value?: google_protobuf_timestamp_pb.Timestamp): UserDetail;
|
|
3650
4075
|
hasDateMarketingConsent(): boolean;
|
|
3651
|
-
clearDateMarketingConsent():
|
|
4076
|
+
clearDateMarketingConsent(): UserDetail;
|
|
3652
4077
|
|
|
3653
4078
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
3654
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
4079
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): UserDetail;
|
|
3655
4080
|
hasMetadata(): boolean;
|
|
3656
|
-
clearMetadata():
|
|
4081
|
+
clearMetadata(): UserDetail;
|
|
3657
4082
|
|
|
3658
4083
|
getEmailAddressesList(): Array<EmailAddress>;
|
|
3659
|
-
setEmailAddressesList(value: Array<EmailAddress>):
|
|
3660
|
-
clearEmailAddressesList():
|
|
4084
|
+
setEmailAddressesList(value: Array<EmailAddress>): UserDetail;
|
|
4085
|
+
clearEmailAddressesList(): UserDetail;
|
|
3661
4086
|
addEmailAddresses(value?: EmailAddress, index?: number): EmailAddress;
|
|
3662
4087
|
|
|
3663
4088
|
getIsOrgAdmin(): boolean;
|
|
3664
|
-
setIsOrgAdmin(value: boolean):
|
|
4089
|
+
setIsOrgAdmin(value: boolean): UserDetail;
|
|
3665
4090
|
|
|
3666
4091
|
getTwoFactorAuthEnabled(): boolean;
|
|
3667
|
-
setTwoFactorAuthEnabled(value: boolean):
|
|
4092
|
+
setTwoFactorAuthEnabled(value: boolean): UserDetail;
|
|
3668
4093
|
|
|
3669
4094
|
getTeamsCount(): number;
|
|
3670
|
-
setTeamsCount(value: number):
|
|
4095
|
+
setTeamsCount(value: number): UserDetail;
|
|
3671
4096
|
|
|
3672
4097
|
getCountry(): string;
|
|
3673
|
-
setCountry(value: string):
|
|
4098
|
+
setCountry(value: string): UserDetail;
|
|
3674
4099
|
|
|
3675
4100
|
getState(): string;
|
|
3676
|
-
setState(value: string):
|
|
4101
|
+
setState(value: string): UserDetail;
|
|
3677
4102
|
|
|
3678
4103
|
serializeBinary(): Uint8Array;
|
|
3679
4104
|
toObject(includeInstance?: boolean): UserDetail.AsObject;
|
|
@@ -3702,13 +4127,13 @@ export namespace UserDetail {
|
|
|
3702
4127
|
|
|
3703
4128
|
export class EmailAddress extends jspb.Message {
|
|
3704
4129
|
getEmail(): string;
|
|
3705
|
-
setEmail(value: string):
|
|
4130
|
+
setEmail(value: string): EmailAddress;
|
|
3706
4131
|
|
|
3707
4132
|
getPrimary(): boolean;
|
|
3708
|
-
setPrimary(value: boolean):
|
|
4133
|
+
setPrimary(value: boolean): EmailAddress;
|
|
3709
4134
|
|
|
3710
4135
|
getVerified(): boolean;
|
|
3711
|
-
setVerified(value: boolean):
|
|
4136
|
+
setVerified(value: boolean): EmailAddress;
|
|
3712
4137
|
|
|
3713
4138
|
serializeBinary(): Uint8Array;
|
|
3714
4139
|
toObject(includeInstance?: boolean): EmailAddress.AsObject;
|
|
@@ -3728,7 +4153,7 @@ export namespace EmailAddress {
|
|
|
3728
4153
|
|
|
3729
4154
|
export class Password extends jspb.Message {
|
|
3730
4155
|
getPlaintext(): string;
|
|
3731
|
-
setPlaintext(value: string):
|
|
4156
|
+
setPlaintext(value: string): Password;
|
|
3732
4157
|
|
|
3733
4158
|
serializeBinary(): Uint8Array;
|
|
3734
4159
|
toObject(includeInstance?: boolean): Password.AsObject;
|
|
@@ -3746,46 +4171,46 @@ export namespace Password {
|
|
|
3746
4171
|
|
|
3747
4172
|
export class PasswordViolations extends jspb.Message {
|
|
3748
4173
|
getMinimumLength(): boolean;
|
|
3749
|
-
setMinimumLength(value: boolean):
|
|
4174
|
+
setMinimumLength(value: boolean): PasswordViolations;
|
|
3750
4175
|
|
|
3751
4176
|
getMaximumLength(): boolean;
|
|
3752
|
-
setMaximumLength(value: boolean):
|
|
4177
|
+
setMaximumLength(value: boolean): PasswordViolations;
|
|
3753
4178
|
|
|
3754
4179
|
getUpperCaseNeeded(): boolean;
|
|
3755
|
-
setUpperCaseNeeded(value: boolean):
|
|
4180
|
+
setUpperCaseNeeded(value: boolean): PasswordViolations;
|
|
3756
4181
|
|
|
3757
4182
|
getLowerCaseNeeded(): boolean;
|
|
3758
|
-
setLowerCaseNeeded(value: boolean):
|
|
4183
|
+
setLowerCaseNeeded(value: boolean): PasswordViolations;
|
|
3759
4184
|
|
|
3760
4185
|
getNumericNeeded(): boolean;
|
|
3761
|
-
setNumericNeeded(value: boolean):
|
|
4186
|
+
setNumericNeeded(value: boolean): PasswordViolations;
|
|
3762
4187
|
|
|
3763
4188
|
getNonAlphanumericNeeded(): boolean;
|
|
3764
|
-
setNonAlphanumericNeeded(value: boolean):
|
|
4189
|
+
setNonAlphanumericNeeded(value: boolean): PasswordViolations;
|
|
3765
4190
|
|
|
3766
4191
|
getPasswordReuse(): boolean;
|
|
3767
|
-
setPasswordReuse(value: boolean):
|
|
4192
|
+
setPasswordReuse(value: boolean): PasswordViolations;
|
|
3768
4193
|
|
|
3769
4194
|
getExcludeNames(): boolean;
|
|
3770
|
-
setExcludeNames(value: boolean):
|
|
4195
|
+
setExcludeNames(value: boolean): PasswordViolations;
|
|
3771
4196
|
|
|
3772
4197
|
getExcludeEmail(): boolean;
|
|
3773
|
-
setExcludeEmail(value: boolean):
|
|
4198
|
+
setExcludeEmail(value: boolean): PasswordViolations;
|
|
3774
4199
|
|
|
3775
4200
|
getNoConfusingLetters(): boolean;
|
|
3776
|
-
setNoConfusingLetters(value: boolean):
|
|
4201
|
+
setNoConfusingLetters(value: boolean): PasswordViolations;
|
|
3777
4202
|
|
|
3778
4203
|
getNoSimplePasswords(): boolean;
|
|
3779
|
-
setNoSimplePasswords(value: boolean):
|
|
4204
|
+
setNoSimplePasswords(value: boolean): PasswordViolations;
|
|
3780
4205
|
|
|
3781
4206
|
getNoCommonVocabs(): boolean;
|
|
3782
|
-
setNoCommonVocabs(value: boolean):
|
|
4207
|
+
setNoCommonVocabs(value: boolean): PasswordViolations;
|
|
3783
4208
|
|
|
3784
4209
|
getNoOverlapWithOld(): boolean;
|
|
3785
|
-
setNoOverlapWithOld(value: boolean):
|
|
4210
|
+
setNoOverlapWithOld(value: boolean): PasswordViolations;
|
|
3786
4211
|
|
|
3787
4212
|
getPasswordLifespan(): boolean;
|
|
3788
|
-
setPasswordLifespan(value: boolean):
|
|
4213
|
+
setPasswordLifespan(value: boolean): PasswordViolations;
|
|
3789
4214
|
|
|
3790
4215
|
serializeBinary(): Uint8Array;
|
|
3791
4216
|
toObject(includeInstance?: boolean): PasswordViolations.AsObject;
|
|
@@ -3816,28 +4241,28 @@ export namespace PasswordViolations {
|
|
|
3816
4241
|
|
|
3817
4242
|
export class Video extends jspb.Message {
|
|
3818
4243
|
getUrl(): string;
|
|
3819
|
-
setUrl(value: string):
|
|
4244
|
+
setUrl(value: string): Video;
|
|
3820
4245
|
|
|
3821
4246
|
getBase64(): Uint8Array | string;
|
|
3822
4247
|
getBase64_asU8(): Uint8Array;
|
|
3823
4248
|
getBase64_asB64(): string;
|
|
3824
|
-
setBase64(value: Uint8Array | string):
|
|
4249
|
+
setBase64(value: Uint8Array | string): Video;
|
|
3825
4250
|
|
|
3826
4251
|
getAllowDuplicateUrl(): boolean;
|
|
3827
|
-
setAllowDuplicateUrl(value: boolean):
|
|
4252
|
+
setAllowDuplicateUrl(value: boolean): Video;
|
|
3828
4253
|
|
|
3829
4254
|
getThumbnailUrl(): string;
|
|
3830
|
-
setThumbnailUrl(value: string):
|
|
4255
|
+
setThumbnailUrl(value: string): Video;
|
|
3831
4256
|
|
|
3832
4257
|
getHosted(): HostedURL | undefined;
|
|
3833
|
-
setHosted(value?: HostedURL):
|
|
4258
|
+
setHosted(value?: HostedURL): Video;
|
|
3834
4259
|
hasHosted(): boolean;
|
|
3835
|
-
clearHosted():
|
|
4260
|
+
clearHosted(): Video;
|
|
3836
4261
|
|
|
3837
4262
|
getVideoInfo(): VideoInfo | undefined;
|
|
3838
|
-
setVideoInfo(value?: VideoInfo):
|
|
4263
|
+
setVideoInfo(value?: VideoInfo): Video;
|
|
3839
4264
|
hasVideoInfo(): boolean;
|
|
3840
|
-
clearVideoInfo():
|
|
4265
|
+
clearVideoInfo(): Video;
|
|
3841
4266
|
|
|
3842
4267
|
serializeBinary(): Uint8Array;
|
|
3843
4268
|
toObject(includeInstance?: boolean): Video.AsObject;
|
|
@@ -3860,25 +4285,25 @@ export namespace Video {
|
|
|
3860
4285
|
|
|
3861
4286
|
export class VideoInfo extends jspb.Message {
|
|
3862
4287
|
getWidth(): number;
|
|
3863
|
-
setWidth(value: number):
|
|
4288
|
+
setWidth(value: number): VideoInfo;
|
|
3864
4289
|
|
|
3865
4290
|
getHeight(): number;
|
|
3866
|
-
setHeight(value: number):
|
|
4291
|
+
setHeight(value: number): VideoInfo;
|
|
3867
4292
|
|
|
3868
4293
|
getFps(): number;
|
|
3869
|
-
setFps(value: number):
|
|
4294
|
+
setFps(value: number): VideoInfo;
|
|
3870
4295
|
|
|
3871
4296
|
getVideoFormat(): string;
|
|
3872
|
-
setVideoFormat(value: string):
|
|
4297
|
+
setVideoFormat(value: string): VideoInfo;
|
|
3873
4298
|
|
|
3874
4299
|
getBitRate(): number;
|
|
3875
|
-
setBitRate(value: number):
|
|
4300
|
+
setBitRate(value: number): VideoInfo;
|
|
3876
4301
|
|
|
3877
4302
|
getFrameCount(): number;
|
|
3878
|
-
setFrameCount(value: number):
|
|
4303
|
+
setFrameCount(value: number): VideoInfo;
|
|
3879
4304
|
|
|
3880
4305
|
getDurationSeconds(): number;
|
|
3881
|
-
setDurationSeconds(value: number):
|
|
4306
|
+
setDurationSeconds(value: number): VideoInfo;
|
|
3882
4307
|
|
|
3883
4308
|
serializeBinary(): Uint8Array;
|
|
3884
4309
|
toObject(includeInstance?: boolean): VideoInfo.AsObject;
|
|
@@ -3902,60 +4327,60 @@ export namespace VideoInfo {
|
|
|
3902
4327
|
|
|
3903
4328
|
export class Workflow extends jspb.Message {
|
|
3904
4329
|
getId(): string;
|
|
3905
|
-
setId(value: string):
|
|
4330
|
+
setId(value: string): Workflow;
|
|
3906
4331
|
|
|
3907
4332
|
getAppId(): string;
|
|
3908
|
-
setAppId(value: string):
|
|
4333
|
+
setAppId(value: string): Workflow;
|
|
3909
4334
|
|
|
3910
4335
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3911
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4336
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Workflow;
|
|
3912
4337
|
hasCreatedAt(): boolean;
|
|
3913
|
-
clearCreatedAt():
|
|
4338
|
+
clearCreatedAt(): Workflow;
|
|
3914
4339
|
|
|
3915
4340
|
getNodesList(): Array<WorkflowNode>;
|
|
3916
|
-
setNodesList(value: Array<WorkflowNode>):
|
|
3917
|
-
clearNodesList():
|
|
4341
|
+
setNodesList(value: Array<WorkflowNode>): Workflow;
|
|
4342
|
+
clearNodesList(): Workflow;
|
|
3918
4343
|
addNodes(value?: WorkflowNode, index?: number): WorkflowNode;
|
|
3919
4344
|
|
|
3920
4345
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
3921
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
4346
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Workflow;
|
|
3922
4347
|
hasMetadata(): boolean;
|
|
3923
|
-
clearMetadata():
|
|
4348
|
+
clearMetadata(): Workflow;
|
|
3924
4349
|
|
|
3925
4350
|
getVisibility(): Visibility | undefined;
|
|
3926
|
-
setVisibility(value?: Visibility):
|
|
4351
|
+
setVisibility(value?: Visibility): Workflow;
|
|
3927
4352
|
hasVisibility(): boolean;
|
|
3928
|
-
clearVisibility():
|
|
4353
|
+
clearVisibility(): Workflow;
|
|
3929
4354
|
|
|
3930
4355
|
getUserId(): string;
|
|
3931
|
-
setUserId(value: string):
|
|
4356
|
+
setUserId(value: string): Workflow;
|
|
3932
4357
|
|
|
3933
4358
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3934
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4359
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Workflow;
|
|
3935
4360
|
hasModifiedAt(): boolean;
|
|
3936
|
-
clearModifiedAt():
|
|
4361
|
+
clearModifiedAt(): Workflow;
|
|
3937
4362
|
|
|
3938
4363
|
getVersion(): WorkflowVersion | undefined;
|
|
3939
|
-
setVersion(value?: WorkflowVersion):
|
|
4364
|
+
setVersion(value?: WorkflowVersion): Workflow;
|
|
3940
4365
|
hasVersion(): boolean;
|
|
3941
|
-
clearVersion():
|
|
4366
|
+
clearVersion(): Workflow;
|
|
3942
4367
|
|
|
3943
4368
|
getIsStarred(): boolean;
|
|
3944
|
-
setIsStarred(value: boolean):
|
|
4369
|
+
setIsStarred(value: boolean): Workflow;
|
|
3945
4370
|
|
|
3946
4371
|
getStarCount(): number;
|
|
3947
|
-
setStarCount(value: number):
|
|
4372
|
+
setStarCount(value: number): Workflow;
|
|
3948
4373
|
|
|
3949
4374
|
getDescription(): string;
|
|
3950
|
-
setDescription(value: string):
|
|
4375
|
+
setDescription(value: string): Workflow;
|
|
3951
4376
|
|
|
3952
4377
|
getNotes(): string;
|
|
3953
|
-
setNotes(value: string):
|
|
4378
|
+
setNotes(value: string): Workflow;
|
|
3954
4379
|
|
|
3955
4380
|
getUseCasesList(): Array<string>;
|
|
3956
|
-
setUseCasesList(value: Array<string>):
|
|
3957
|
-
clearUseCasesList():
|
|
3958
|
-
addUseCases(value: string, index?: number):
|
|
4381
|
+
setUseCasesList(value: Array<string>): Workflow;
|
|
4382
|
+
clearUseCasesList(): Workflow;
|
|
4383
|
+
addUseCases(value: string, index?: number): Workflow;
|
|
3959
4384
|
|
|
3960
4385
|
serializeBinary(): Uint8Array;
|
|
3961
4386
|
toObject(includeInstance?: boolean): Workflow.AsObject;
|
|
@@ -3986,47 +4411,47 @@ export namespace Workflow {
|
|
|
3986
4411
|
|
|
3987
4412
|
export class WorkflowVersion extends jspb.Message {
|
|
3988
4413
|
getId(): string;
|
|
3989
|
-
setId(value: string):
|
|
4414
|
+
setId(value: string): WorkflowVersion;
|
|
3990
4415
|
|
|
3991
4416
|
getWorkflowId(): string;
|
|
3992
|
-
setWorkflowId(value: string):
|
|
4417
|
+
setWorkflowId(value: string): WorkflowVersion;
|
|
3993
4418
|
|
|
3994
4419
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3995
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4420
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowVersion;
|
|
3996
4421
|
hasCreatedAt(): boolean;
|
|
3997
|
-
clearCreatedAt():
|
|
4422
|
+
clearCreatedAt(): WorkflowVersion;
|
|
3998
4423
|
|
|
3999
4424
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4000
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4425
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowVersion;
|
|
4001
4426
|
hasModifiedAt(): boolean;
|
|
4002
|
-
clearModifiedAt():
|
|
4427
|
+
clearModifiedAt(): WorkflowVersion;
|
|
4003
4428
|
|
|
4004
4429
|
getVisibility(): Visibility | undefined;
|
|
4005
|
-
setVisibility(value?: Visibility):
|
|
4430
|
+
setVisibility(value?: Visibility): WorkflowVersion;
|
|
4006
4431
|
hasVisibility(): boolean;
|
|
4007
|
-
clearVisibility():
|
|
4432
|
+
clearVisibility(): WorkflowVersion;
|
|
4008
4433
|
|
|
4009
4434
|
getNodesList(): Array<WorkflowNode>;
|
|
4010
|
-
setNodesList(value: Array<WorkflowNode>):
|
|
4011
|
-
clearNodesList():
|
|
4435
|
+
setNodesList(value: Array<WorkflowNode>): WorkflowVersion;
|
|
4436
|
+
clearNodesList(): WorkflowVersion;
|
|
4012
4437
|
addNodes(value?: WorkflowNode, index?: number): WorkflowNode;
|
|
4013
4438
|
|
|
4014
4439
|
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
4015
|
-
setMetadata(value?: google_protobuf_struct_pb.Struct):
|
|
4440
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): WorkflowVersion;
|
|
4016
4441
|
hasMetadata(): boolean;
|
|
4017
|
-
clearMetadata():
|
|
4442
|
+
clearMetadata(): WorkflowVersion;
|
|
4018
4443
|
|
|
4019
4444
|
getAppId(): string;
|
|
4020
|
-
setAppId(value: string):
|
|
4445
|
+
setAppId(value: string): WorkflowVersion;
|
|
4021
4446
|
|
|
4022
4447
|
getUserId(): string;
|
|
4023
|
-
setUserId(value: string):
|
|
4448
|
+
setUserId(value: string): WorkflowVersion;
|
|
4024
4449
|
|
|
4025
4450
|
getDescription(): string;
|
|
4026
|
-
setDescription(value: string):
|
|
4451
|
+
setDescription(value: string): WorkflowVersion;
|
|
4027
4452
|
|
|
4028
4453
|
getLicense(): string;
|
|
4029
|
-
setLicense(value: string):
|
|
4454
|
+
setLicense(value: string): WorkflowVersion;
|
|
4030
4455
|
|
|
4031
4456
|
serializeBinary(): Uint8Array;
|
|
4032
4457
|
toObject(includeInstance?: boolean): WorkflowVersion.AsObject;
|
|
@@ -4054,20 +4479,20 @@ export namespace WorkflowVersion {
|
|
|
4054
4479
|
|
|
4055
4480
|
export class WorkflowNode extends jspb.Message {
|
|
4056
4481
|
getId(): string;
|
|
4057
|
-
setId(value: string):
|
|
4482
|
+
setId(value: string): WorkflowNode;
|
|
4058
4483
|
|
|
4059
4484
|
getModel(): Model | undefined;
|
|
4060
|
-
setModel(value?: Model):
|
|
4485
|
+
setModel(value?: Model): WorkflowNode;
|
|
4061
4486
|
hasModel(): boolean;
|
|
4062
|
-
clearModel():
|
|
4487
|
+
clearModel(): WorkflowNode;
|
|
4063
4488
|
|
|
4064
4489
|
getNodeInputsList(): Array<NodeInput>;
|
|
4065
|
-
setNodeInputsList(value: Array<NodeInput>):
|
|
4066
|
-
clearNodeInputsList():
|
|
4490
|
+
setNodeInputsList(value: Array<NodeInput>): WorkflowNode;
|
|
4491
|
+
clearNodeInputsList(): WorkflowNode;
|
|
4067
4492
|
addNodeInputs(value?: NodeInput, index?: number): NodeInput;
|
|
4068
4493
|
|
|
4069
4494
|
getSuppressOutput(): boolean;
|
|
4070
|
-
setSuppressOutput(value: boolean):
|
|
4495
|
+
setSuppressOutput(value: boolean): WorkflowNode;
|
|
4071
4496
|
|
|
4072
4497
|
serializeBinary(): Uint8Array;
|
|
4073
4498
|
toObject(includeInstance?: boolean): WorkflowNode.AsObject;
|
|
@@ -4088,7 +4513,7 @@ export namespace WorkflowNode {
|
|
|
4088
4513
|
|
|
4089
4514
|
export class NodeInput extends jspb.Message {
|
|
4090
4515
|
getNodeId(): string;
|
|
4091
|
-
setNodeId(value: string):
|
|
4516
|
+
setNodeId(value: string): NodeInput;
|
|
4092
4517
|
|
|
4093
4518
|
serializeBinary(): Uint8Array;
|
|
4094
4519
|
toObject(includeInstance?: boolean): NodeInput.AsObject;
|
|
@@ -4106,35 +4531,35 @@ export namespace NodeInput {
|
|
|
4106
4531
|
|
|
4107
4532
|
export class WorkflowResult extends jspb.Message {
|
|
4108
4533
|
getId(): string;
|
|
4109
|
-
setId(value: string):
|
|
4534
|
+
setId(value: string): WorkflowResult;
|
|
4110
4535
|
|
|
4111
4536
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4112
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
4537
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): WorkflowResult;
|
|
4113
4538
|
hasStatus(): boolean;
|
|
4114
|
-
clearStatus():
|
|
4539
|
+
clearStatus(): WorkflowResult;
|
|
4115
4540
|
|
|
4116
4541
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4117
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4542
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowResult;
|
|
4118
4543
|
hasCreatedAt(): boolean;
|
|
4119
|
-
clearCreatedAt():
|
|
4544
|
+
clearCreatedAt(): WorkflowResult;
|
|
4120
4545
|
|
|
4121
4546
|
getModel(): Model | undefined;
|
|
4122
|
-
setModel(value?: Model):
|
|
4547
|
+
setModel(value?: Model): WorkflowResult;
|
|
4123
4548
|
hasModel(): boolean;
|
|
4124
|
-
clearModel():
|
|
4549
|
+
clearModel(): WorkflowResult;
|
|
4125
4550
|
|
|
4126
4551
|
getInput(): Input | undefined;
|
|
4127
|
-
setInput(value?: Input):
|
|
4552
|
+
setInput(value?: Input): WorkflowResult;
|
|
4128
4553
|
hasInput(): boolean;
|
|
4129
|
-
clearInput():
|
|
4554
|
+
clearInput(): WorkflowResult;
|
|
4130
4555
|
|
|
4131
4556
|
getOutputsList(): Array<Output>;
|
|
4132
|
-
setOutputsList(value: Array<Output>):
|
|
4133
|
-
clearOutputsList():
|
|
4557
|
+
setOutputsList(value: Array<Output>): WorkflowResult;
|
|
4558
|
+
clearOutputsList(): WorkflowResult;
|
|
4134
4559
|
addOutputs(value?: Output, index?: number): Output;
|
|
4135
4560
|
|
|
4136
4561
|
getSuppressOutput(): boolean;
|
|
4137
|
-
setSuppressOutput(value: boolean):
|
|
4562
|
+
setSuppressOutput(value: boolean): WorkflowResult;
|
|
4138
4563
|
|
|
4139
4564
|
serializeBinary(): Uint8Array;
|
|
4140
4565
|
toObject(includeInstance?: boolean): WorkflowResult.AsObject;
|
|
@@ -4158,7 +4583,7 @@ export namespace WorkflowResult {
|
|
|
4158
4583
|
|
|
4159
4584
|
export class WorkflowState extends jspb.Message {
|
|
4160
4585
|
getId(): string;
|
|
4161
|
-
setId(value: string):
|
|
4586
|
+
setId(value: string): WorkflowState;
|
|
4162
4587
|
|
|
4163
4588
|
serializeBinary(): Uint8Array;
|
|
4164
4589
|
toObject(includeInstance?: boolean): WorkflowState.AsObject;
|
|
@@ -4176,33 +4601,36 @@ export namespace WorkflowState {
|
|
|
4176
4601
|
|
|
4177
4602
|
export class AppDuplication extends jspb.Message {
|
|
4178
4603
|
getId(): string;
|
|
4179
|
-
setId(value: string):
|
|
4604
|
+
setId(value: string): AppDuplication;
|
|
4180
4605
|
|
|
4181
4606
|
getNewAppId(): string;
|
|
4182
|
-
setNewAppId(value: string):
|
|
4607
|
+
setNewAppId(value: string): AppDuplication;
|
|
4183
4608
|
|
|
4184
4609
|
getNewAppName(): string;
|
|
4185
|
-
setNewAppName(value: string):
|
|
4610
|
+
setNewAppName(value: string): AppDuplication;
|
|
4186
4611
|
|
|
4187
4612
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4188
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
4613
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): AppDuplication;
|
|
4189
4614
|
hasStatus(): boolean;
|
|
4190
|
-
clearStatus():
|
|
4615
|
+
clearStatus(): AppDuplication;
|
|
4191
4616
|
|
|
4192
4617
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4193
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4618
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): AppDuplication;
|
|
4194
4619
|
hasCreatedAt(): boolean;
|
|
4195
|
-
clearCreatedAt():
|
|
4620
|
+
clearCreatedAt(): AppDuplication;
|
|
4196
4621
|
|
|
4197
4622
|
getLastModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4198
|
-
setLastModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4623
|
+
setLastModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): AppDuplication;
|
|
4199
4624
|
hasLastModifiedAt(): boolean;
|
|
4200
|
-
clearLastModifiedAt():
|
|
4625
|
+
clearLastModifiedAt(): AppDuplication;
|
|
4201
4626
|
|
|
4202
4627
|
getFilter(): AppDuplicationFilters | undefined;
|
|
4203
|
-
setFilter(value?: AppDuplicationFilters):
|
|
4628
|
+
setFilter(value?: AppDuplicationFilters): AppDuplication;
|
|
4204
4629
|
hasFilter(): boolean;
|
|
4205
|
-
clearFilter():
|
|
4630
|
+
clearFilter(): AppDuplication;
|
|
4631
|
+
|
|
4632
|
+
getExistingAppId(): string;
|
|
4633
|
+
setExistingAppId(value: string): AppDuplication;
|
|
4206
4634
|
|
|
4207
4635
|
serializeBinary(): Uint8Array;
|
|
4208
4636
|
toObject(includeInstance?: boolean): AppDuplication.AsObject;
|
|
@@ -4221,24 +4649,25 @@ export namespace AppDuplication {
|
|
|
4221
4649
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4222
4650
|
lastModifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4223
4651
|
filter?: AppDuplicationFilters.AsObject,
|
|
4652
|
+
existingAppId: string,
|
|
4224
4653
|
}
|
|
4225
4654
|
}
|
|
4226
4655
|
|
|
4227
4656
|
export class AppDuplicationFilters extends jspb.Message {
|
|
4228
4657
|
getCopyInputs(): boolean;
|
|
4229
|
-
setCopyInputs(value: boolean):
|
|
4658
|
+
setCopyInputs(value: boolean): AppDuplicationFilters;
|
|
4230
4659
|
|
|
4231
4660
|
getCopyConcepts(): boolean;
|
|
4232
|
-
setCopyConcepts(value: boolean):
|
|
4661
|
+
setCopyConcepts(value: boolean): AppDuplicationFilters;
|
|
4233
4662
|
|
|
4234
4663
|
getCopyAnnotations(): boolean;
|
|
4235
|
-
setCopyAnnotations(value: boolean):
|
|
4664
|
+
setCopyAnnotations(value: boolean): AppDuplicationFilters;
|
|
4236
4665
|
|
|
4237
4666
|
getCopyModels(): boolean;
|
|
4238
|
-
setCopyModels(value: boolean):
|
|
4667
|
+
setCopyModels(value: boolean): AppDuplicationFilters;
|
|
4239
4668
|
|
|
4240
4669
|
getCopyWorkflows(): boolean;
|
|
4241
|
-
setCopyWorkflows(value: boolean):
|
|
4670
|
+
setCopyWorkflows(value: boolean): AppDuplicationFilters;
|
|
4242
4671
|
|
|
4243
4672
|
serializeBinary(): Uint8Array;
|
|
4244
4673
|
toObject(includeInstance?: boolean): AppDuplicationFilters.AsObject;
|
|
@@ -4258,77 +4687,143 @@ export namespace AppDuplicationFilters {
|
|
|
4258
4687
|
}
|
|
4259
4688
|
}
|
|
4260
4689
|
|
|
4690
|
+
export class LabelOrder extends jspb.Message {
|
|
4691
|
+
getId(): string;
|
|
4692
|
+
setId(value: string): LabelOrder;
|
|
4693
|
+
|
|
4694
|
+
getName(): string;
|
|
4695
|
+
setName(value: string): LabelOrder;
|
|
4696
|
+
|
|
4697
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4698
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): LabelOrder;
|
|
4699
|
+
hasStatus(): boolean;
|
|
4700
|
+
clearStatus(): LabelOrder;
|
|
4701
|
+
|
|
4702
|
+
getAutoRelease(): boolean;
|
|
4703
|
+
setAutoRelease(value: boolean): LabelOrder;
|
|
4704
|
+
|
|
4705
|
+
getAllowEmptyTag(): boolean;
|
|
4706
|
+
setAllowEmptyTag(value: boolean): LabelOrder;
|
|
4707
|
+
|
|
4708
|
+
getDesiredFulfillTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4709
|
+
setDesiredFulfillTime(value?: google_protobuf_timestamp_pb.Timestamp): LabelOrder;
|
|
4710
|
+
hasDesiredFulfillTime(): boolean;
|
|
4711
|
+
clearDesiredFulfillTime(): LabelOrder;
|
|
4712
|
+
|
|
4713
|
+
getEstimateFulfillTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4714
|
+
setEstimateFulfillTime(value?: google_protobuf_timestamp_pb.Timestamp): LabelOrder;
|
|
4715
|
+
hasEstimateFulfillTime(): boolean;
|
|
4716
|
+
clearEstimateFulfillTime(): LabelOrder;
|
|
4717
|
+
|
|
4718
|
+
getTask(): Task | undefined;
|
|
4719
|
+
setTask(value?: Task): LabelOrder;
|
|
4720
|
+
hasTask(): boolean;
|
|
4721
|
+
clearTask(): LabelOrder;
|
|
4722
|
+
|
|
4723
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4724
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): LabelOrder;
|
|
4725
|
+
hasCreatedAt(): boolean;
|
|
4726
|
+
clearCreatedAt(): LabelOrder;
|
|
4727
|
+
|
|
4728
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4729
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): LabelOrder;
|
|
4730
|
+
hasModifiedAt(): boolean;
|
|
4731
|
+
clearModifiedAt(): LabelOrder;
|
|
4732
|
+
|
|
4733
|
+
serializeBinary(): Uint8Array;
|
|
4734
|
+
toObject(includeInstance?: boolean): LabelOrder.AsObject;
|
|
4735
|
+
static toObject(includeInstance: boolean, msg: LabelOrder): LabelOrder.AsObject;
|
|
4736
|
+
static serializeBinaryToWriter(message: LabelOrder, writer: jspb.BinaryWriter): void;
|
|
4737
|
+
static deserializeBinary(bytes: Uint8Array): LabelOrder;
|
|
4738
|
+
static deserializeBinaryFromReader(message: LabelOrder, reader: jspb.BinaryReader): LabelOrder;
|
|
4739
|
+
}
|
|
4740
|
+
|
|
4741
|
+
export namespace LabelOrder {
|
|
4742
|
+
export type AsObject = {
|
|
4743
|
+
id: string,
|
|
4744
|
+
name: string,
|
|
4745
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4746
|
+
autoRelease: boolean,
|
|
4747
|
+
allowEmptyTag: boolean,
|
|
4748
|
+
desiredFulfillTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4749
|
+
estimateFulfillTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4750
|
+
task?: Task.AsObject,
|
|
4751
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4752
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4753
|
+
}
|
|
4754
|
+
}
|
|
4755
|
+
|
|
4261
4756
|
export class Task extends jspb.Message {
|
|
4262
4757
|
getId(): string;
|
|
4263
|
-
setId(value: string):
|
|
4758
|
+
setId(value: string): Task;
|
|
4264
4759
|
|
|
4265
4760
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4266
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4761
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Task;
|
|
4267
4762
|
hasCreatedAt(): boolean;
|
|
4268
|
-
clearCreatedAt():
|
|
4763
|
+
clearCreatedAt(): Task;
|
|
4269
4764
|
|
|
4270
4765
|
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4271
|
-
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
4766
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Task;
|
|
4272
4767
|
hasModifiedAt(): boolean;
|
|
4273
|
-
clearModifiedAt():
|
|
4768
|
+
clearModifiedAt(): Task;
|
|
4274
4769
|
|
|
4275
4770
|
getType(): Task.TaskType;
|
|
4276
|
-
setType(value: Task.TaskType):
|
|
4771
|
+
setType(value: Task.TaskType): Task;
|
|
4277
4772
|
|
|
4278
4773
|
getDescription(): string;
|
|
4279
|
-
setDescription(value: string):
|
|
4774
|
+
setDescription(value: string): Task;
|
|
4280
4775
|
|
|
4281
4776
|
getWorker(): TaskWorker | undefined;
|
|
4282
|
-
setWorker(value?: TaskWorker):
|
|
4777
|
+
setWorker(value?: TaskWorker): Task;
|
|
4283
4778
|
hasWorker(): boolean;
|
|
4284
|
-
clearWorker():
|
|
4779
|
+
clearWorker(): Task;
|
|
4285
4780
|
|
|
4286
4781
|
getConceptIdsList(): Array<string>;
|
|
4287
|
-
setConceptIdsList(value: Array<string>):
|
|
4288
|
-
clearConceptIdsList():
|
|
4289
|
-
addConceptIds(value: string, index?: number):
|
|
4782
|
+
setConceptIdsList(value: Array<string>): Task;
|
|
4783
|
+
clearConceptIdsList(): Task;
|
|
4784
|
+
addConceptIds(value: string, index?: number): Task;
|
|
4290
4785
|
|
|
4291
4786
|
getInputSource(): TaskInputSource | undefined;
|
|
4292
|
-
setInputSource(value?: TaskInputSource):
|
|
4787
|
+
setInputSource(value?: TaskInputSource): Task;
|
|
4293
4788
|
hasInputSource(): boolean;
|
|
4294
|
-
clearInputSource():
|
|
4789
|
+
clearInputSource(): Task;
|
|
4295
4790
|
|
|
4296
4791
|
getSampleMs(): number;
|
|
4297
|
-
setSampleMs(value: number):
|
|
4792
|
+
setSampleMs(value: number): Task;
|
|
4298
4793
|
|
|
4299
4794
|
getAiAssistant(): TaskAIAssistant | undefined;
|
|
4300
|
-
setAiAssistant(value?: TaskAIAssistant):
|
|
4795
|
+
setAiAssistant(value?: TaskAIAssistant): Task;
|
|
4301
4796
|
hasAiAssistant(): boolean;
|
|
4302
|
-
clearAiAssistant():
|
|
4797
|
+
clearAiAssistant(): Task;
|
|
4303
4798
|
|
|
4304
4799
|
getReview(): TaskReview | undefined;
|
|
4305
|
-
setReview(value?: TaskReview):
|
|
4800
|
+
setReview(value?: TaskReview): Task;
|
|
4306
4801
|
hasReview(): boolean;
|
|
4307
|
-
clearReview():
|
|
4802
|
+
clearReview(): Task;
|
|
4308
4803
|
|
|
4309
4804
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4310
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
4805
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): Task;
|
|
4311
4806
|
hasStatus(): boolean;
|
|
4312
|
-
clearStatus():
|
|
4807
|
+
clearStatus(): Task;
|
|
4313
4808
|
|
|
4314
4809
|
getName(): string;
|
|
4315
|
-
setName(value: string):
|
|
4810
|
+
setName(value: string): Task;
|
|
4316
4811
|
|
|
4317
4812
|
getAiAssistParams(): AiAssistParameters | undefined;
|
|
4318
|
-
setAiAssistParams(value?: AiAssistParameters):
|
|
4813
|
+
setAiAssistParams(value?: AiAssistParameters): Task;
|
|
4319
4814
|
hasAiAssistParams(): boolean;
|
|
4320
|
-
clearAiAssistParams():
|
|
4815
|
+
clearAiAssistParams(): Task;
|
|
4321
4816
|
|
|
4322
4817
|
getVisibility(): Visibility | undefined;
|
|
4323
|
-
setVisibility(value?: Visibility):
|
|
4818
|
+
setVisibility(value?: Visibility): Task;
|
|
4324
4819
|
hasVisibility(): boolean;
|
|
4325
|
-
clearVisibility():
|
|
4820
|
+
clearVisibility(): Task;
|
|
4326
4821
|
|
|
4327
4822
|
getAppId(): string;
|
|
4328
|
-
setAppId(value: string):
|
|
4823
|
+
setAppId(value: string): Task;
|
|
4329
4824
|
|
|
4330
4825
|
getUserId(): string;
|
|
4331
|
-
setUserId(value: string):
|
|
4826
|
+
setUserId(value: string): Task;
|
|
4332
4827
|
|
|
4333
4828
|
serializeBinary(): Uint8Array;
|
|
4334
4829
|
toObject(includeInstance?: boolean): Task.AsObject;
|
|
@@ -4369,15 +4864,15 @@ export namespace Task {
|
|
|
4369
4864
|
|
|
4370
4865
|
export class AiAssistParameters extends jspb.Message {
|
|
4371
4866
|
getMinThreshold(): number;
|
|
4372
|
-
setMinThreshold(value: number):
|
|
4867
|
+
setMinThreshold(value: number): AiAssistParameters;
|
|
4373
4868
|
|
|
4374
4869
|
getMaxThreshold(): number;
|
|
4375
|
-
setMaxThreshold(value: number):
|
|
4870
|
+
setMaxThreshold(value: number): AiAssistParameters;
|
|
4376
4871
|
|
|
4377
4872
|
getConceptRelationIdsList(): Array<string>;
|
|
4378
|
-
setConceptRelationIdsList(value: Array<string>):
|
|
4379
|
-
clearConceptRelationIdsList():
|
|
4380
|
-
addConceptRelationIds(value: string, index?: number):
|
|
4873
|
+
setConceptRelationIdsList(value: Array<string>): AiAssistParameters;
|
|
4874
|
+
clearConceptRelationIdsList(): AiAssistParameters;
|
|
4875
|
+
addConceptRelationIds(value: string, index?: number): AiAssistParameters;
|
|
4381
4876
|
|
|
4382
4877
|
serializeBinary(): Uint8Array;
|
|
4383
4878
|
toObject(includeInstance?: boolean): AiAssistParameters.AsObject;
|
|
@@ -4397,17 +4892,17 @@ export namespace AiAssistParameters {
|
|
|
4397
4892
|
|
|
4398
4893
|
export class TaskWorker extends jspb.Message {
|
|
4399
4894
|
getStrategy(): TaskWorker.TaskWorkerStrategy;
|
|
4400
|
-
setStrategy(value: TaskWorker.TaskWorkerStrategy):
|
|
4895
|
+
setStrategy(value: TaskWorker.TaskWorkerStrategy): TaskWorker;
|
|
4401
4896
|
|
|
4402
4897
|
getUserIdsList(): Array<string>;
|
|
4403
|
-
setUserIdsList(value: Array<string>):
|
|
4404
|
-
clearUserIdsList():
|
|
4405
|
-
addUserIds(value: string, index?: number):
|
|
4898
|
+
setUserIdsList(value: Array<string>): TaskWorker;
|
|
4899
|
+
clearUserIdsList(): TaskWorker;
|
|
4900
|
+
addUserIds(value: string, index?: number): TaskWorker;
|
|
4406
4901
|
|
|
4407
4902
|
getPartitionedStrategyInfo(): TaskWorkerPartitionedStrategyInfo | undefined;
|
|
4408
|
-
setPartitionedStrategyInfo(value?: TaskWorkerPartitionedStrategyInfo):
|
|
4903
|
+
setPartitionedStrategyInfo(value?: TaskWorkerPartitionedStrategyInfo): TaskWorker;
|
|
4409
4904
|
hasPartitionedStrategyInfo(): boolean;
|
|
4410
|
-
clearPartitionedStrategyInfo():
|
|
4905
|
+
clearPartitionedStrategyInfo(): TaskWorker;
|
|
4411
4906
|
|
|
4412
4907
|
getStrategyInfoCase(): TaskWorker.StrategyInfoCase;
|
|
4413
4908
|
|
|
@@ -4440,15 +4935,15 @@ export namespace TaskWorker {
|
|
|
4440
4935
|
|
|
4441
4936
|
export class TaskWorkerPartitionedStrategyInfo extends jspb.Message {
|
|
4442
4937
|
getType(): TaskWorkerPartitionedStrategyInfo.TaskWorkerPartitionedStrategy;
|
|
4443
|
-
setType(value: TaskWorkerPartitionedStrategyInfo.TaskWorkerPartitionedStrategy):
|
|
4938
|
+
setType(value: TaskWorkerPartitionedStrategyInfo.TaskWorkerPartitionedStrategy): TaskWorkerPartitionedStrategyInfo;
|
|
4444
4939
|
|
|
4445
4940
|
getWorkersPerInput(): number;
|
|
4446
|
-
setWorkersPerInput(value: number):
|
|
4941
|
+
setWorkersPerInput(value: number): TaskWorkerPartitionedStrategyInfo;
|
|
4447
4942
|
|
|
4448
4943
|
getWeights(): google_protobuf_struct_pb.Struct | undefined;
|
|
4449
|
-
setWeights(value?: google_protobuf_struct_pb.Struct):
|
|
4944
|
+
setWeights(value?: google_protobuf_struct_pb.Struct): TaskWorkerPartitionedStrategyInfo;
|
|
4450
4945
|
hasWeights(): boolean;
|
|
4451
|
-
clearWeights():
|
|
4946
|
+
clearWeights(): TaskWorkerPartitionedStrategyInfo;
|
|
4452
4947
|
|
|
4453
4948
|
serializeBinary(): Uint8Array;
|
|
4454
4949
|
toObject(includeInstance?: boolean): TaskWorkerPartitionedStrategyInfo.AsObject;
|
|
@@ -4474,10 +4969,10 @@ export namespace TaskWorkerPartitionedStrategyInfo {
|
|
|
4474
4969
|
|
|
4475
4970
|
export class TaskInputSource extends jspb.Message {
|
|
4476
4971
|
getType(): TaskInputSource.TaskInputSourceType;
|
|
4477
|
-
setType(value: TaskInputSource.TaskInputSourceType):
|
|
4972
|
+
setType(value: TaskInputSource.TaskInputSourceType): TaskInputSource;
|
|
4478
4973
|
|
|
4479
4974
|
getId(): string;
|
|
4480
|
-
setId(value: string):
|
|
4975
|
+
setId(value: string): TaskInputSource;
|
|
4481
4976
|
|
|
4482
4977
|
serializeBinary(): Uint8Array;
|
|
4483
4978
|
toObject(includeInstance?: boolean): TaskInputSource.AsObject;
|
|
@@ -4497,27 +4992,28 @@ export namespace TaskInputSource {
|
|
|
4497
4992
|
INPUT_SOURCE_TYPE_NOT_SET = 0,
|
|
4498
4993
|
ALL_INPUTS = 1,
|
|
4499
4994
|
SAVED_SEARCH = 2,
|
|
4995
|
+
DATASET = 3,
|
|
4500
4996
|
}
|
|
4501
4997
|
}
|
|
4502
4998
|
|
|
4503
4999
|
export class TaskReview extends jspb.Message {
|
|
4504
5000
|
getStrategy(): TaskReview.TaskReviewStrategy;
|
|
4505
|
-
setStrategy(value: TaskReview.TaskReviewStrategy):
|
|
5001
|
+
setStrategy(value: TaskReview.TaskReviewStrategy): TaskReview;
|
|
4506
5002
|
|
|
4507
5003
|
getUserIdsList(): Array<string>;
|
|
4508
|
-
setUserIdsList(value: Array<string>):
|
|
4509
|
-
clearUserIdsList():
|
|
4510
|
-
addUserIds(value: string, index?: number):
|
|
5004
|
+
setUserIdsList(value: Array<string>): TaskReview;
|
|
5005
|
+
clearUserIdsList(): TaskReview;
|
|
5006
|
+
addUserIds(value: string, index?: number): TaskReview;
|
|
4511
5007
|
|
|
4512
5008
|
getManualStrategyInfo(): TaskReviewManualStrategyInfo | undefined;
|
|
4513
|
-
setManualStrategyInfo(value?: TaskReviewManualStrategyInfo):
|
|
5009
|
+
setManualStrategyInfo(value?: TaskReviewManualStrategyInfo): TaskReview;
|
|
4514
5010
|
hasManualStrategyInfo(): boolean;
|
|
4515
|
-
clearManualStrategyInfo():
|
|
5011
|
+
clearManualStrategyInfo(): TaskReview;
|
|
4516
5012
|
|
|
4517
5013
|
getConsensusStrategyInfo(): TaskReviewConsensusStrategyInfo | undefined;
|
|
4518
|
-
setConsensusStrategyInfo(value?: TaskReviewConsensusStrategyInfo):
|
|
5014
|
+
setConsensusStrategyInfo(value?: TaskReviewConsensusStrategyInfo): TaskReview;
|
|
4519
5015
|
hasConsensusStrategyInfo(): boolean;
|
|
4520
|
-
clearConsensusStrategyInfo():
|
|
5016
|
+
clearConsensusStrategyInfo(): TaskReview;
|
|
4521
5017
|
|
|
4522
5018
|
getStrategyInfoCase(): TaskReview.StrategyInfoCase;
|
|
4523
5019
|
|
|
@@ -4553,7 +5049,7 @@ export namespace TaskReview {
|
|
|
4553
5049
|
|
|
4554
5050
|
export class TaskReviewManualStrategyInfo extends jspb.Message {
|
|
4555
5051
|
getSamplePercentage(): number;
|
|
4556
|
-
setSamplePercentage(value: number):
|
|
5052
|
+
setSamplePercentage(value: number): TaskReviewManualStrategyInfo;
|
|
4557
5053
|
|
|
4558
5054
|
serializeBinary(): Uint8Array;
|
|
4559
5055
|
toObject(includeInstance?: boolean): TaskReviewManualStrategyInfo.AsObject;
|
|
@@ -4571,7 +5067,7 @@ export namespace TaskReviewManualStrategyInfo {
|
|
|
4571
5067
|
|
|
4572
5068
|
export class TaskReviewConsensusStrategyInfo extends jspb.Message {
|
|
4573
5069
|
getApprovalThreshold(): number;
|
|
4574
|
-
setApprovalThreshold(value: number):
|
|
5070
|
+
setApprovalThreshold(value: number): TaskReviewConsensusStrategyInfo;
|
|
4575
5071
|
|
|
4576
5072
|
serializeBinary(): Uint8Array;
|
|
4577
5073
|
toObject(includeInstance?: boolean): TaskReviewConsensusStrategyInfo.AsObject;
|
|
@@ -4589,7 +5085,7 @@ export namespace TaskReviewConsensusStrategyInfo {
|
|
|
4589
5085
|
|
|
4590
5086
|
export class TaskAIAssistant extends jspb.Message {
|
|
4591
5087
|
getWorkflowId(): string;
|
|
4592
|
-
setWorkflowId(value: string):
|
|
5088
|
+
setWorkflowId(value: string): TaskAIAssistant;
|
|
4593
5089
|
|
|
4594
5090
|
serializeBinary(): Uint8Array;
|
|
4595
5091
|
toObject(includeInstance?: boolean): TaskAIAssistant.AsObject;
|
|
@@ -4607,22 +5103,22 @@ export namespace TaskAIAssistant {
|
|
|
4607
5103
|
|
|
4608
5104
|
export class TaskStatusCountPerUser extends jspb.Message {
|
|
4609
5105
|
getUserId(): string;
|
|
4610
|
-
setUserId(value: string):
|
|
5106
|
+
setUserId(value: string): TaskStatusCountPerUser;
|
|
4611
5107
|
|
|
4612
5108
|
getPending(): number;
|
|
4613
|
-
setPending(value: number):
|
|
5109
|
+
setPending(value: number): TaskStatusCountPerUser;
|
|
4614
5110
|
|
|
4615
5111
|
getAwaitingReview(): number;
|
|
4616
|
-
setAwaitingReview(value: number):
|
|
5112
|
+
setAwaitingReview(value: number): TaskStatusCountPerUser;
|
|
4617
5113
|
|
|
4618
5114
|
getSuccess(): number;
|
|
4619
|
-
setSuccess(value: number):
|
|
5115
|
+
setSuccess(value: number): TaskStatusCountPerUser;
|
|
4620
5116
|
|
|
4621
5117
|
getReviewDenied(): number;
|
|
4622
|
-
setReviewDenied(value: number):
|
|
5118
|
+
setReviewDenied(value: number): TaskStatusCountPerUser;
|
|
4623
5119
|
|
|
4624
5120
|
getAwaitingConsensusReview(): number;
|
|
4625
|
-
setAwaitingConsensusReview(value: number):
|
|
5121
|
+
setAwaitingConsensusReview(value: number): TaskStatusCountPerUser;
|
|
4626
5122
|
|
|
4627
5123
|
serializeBinary(): Uint8Array;
|
|
4628
5124
|
toObject(includeInstance?: boolean): TaskStatusCountPerUser.AsObject;
|
|
@@ -4645,31 +5141,31 @@ export namespace TaskStatusCountPerUser {
|
|
|
4645
5141
|
|
|
4646
5142
|
export class Collector extends jspb.Message {
|
|
4647
5143
|
getId(): string;
|
|
4648
|
-
setId(value: string):
|
|
5144
|
+
setId(value: string): Collector;
|
|
4649
5145
|
|
|
4650
5146
|
getDescription(): string;
|
|
4651
|
-
setDescription(value: string):
|
|
5147
|
+
setDescription(value: string): Collector;
|
|
4652
5148
|
|
|
4653
5149
|
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4654
|
-
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
5150
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Collector;
|
|
4655
5151
|
hasCreatedAt(): boolean;
|
|
4656
|
-
clearCreatedAt():
|
|
5152
|
+
clearCreatedAt(): Collector;
|
|
4657
5153
|
|
|
4658
5154
|
getPreQueueWorkflowId(): string;
|
|
4659
|
-
setPreQueueWorkflowId(value: string):
|
|
5155
|
+
setPreQueueWorkflowId(value: string): Collector;
|
|
4660
5156
|
|
|
4661
5157
|
getPostQueueWorkflowId(): string;
|
|
4662
|
-
setPostQueueWorkflowId(value: string):
|
|
5158
|
+
setPostQueueWorkflowId(value: string): Collector;
|
|
4663
5159
|
|
|
4664
5160
|
getCollectorSource(): CollectorSource | undefined;
|
|
4665
|
-
setCollectorSource(value?: CollectorSource):
|
|
5161
|
+
setCollectorSource(value?: CollectorSource): Collector;
|
|
4666
5162
|
hasCollectorSource(): boolean;
|
|
4667
|
-
clearCollectorSource():
|
|
5163
|
+
clearCollectorSource(): Collector;
|
|
4668
5164
|
|
|
4669
5165
|
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4670
|
-
setStatus(value?: proto_clarifai_api_status_status_pb.Status):
|
|
5166
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): Collector;
|
|
4671
5167
|
hasStatus(): boolean;
|
|
4672
|
-
clearStatus():
|
|
5168
|
+
clearStatus(): Collector;
|
|
4673
5169
|
|
|
4674
5170
|
serializeBinary(): Uint8Array;
|
|
4675
5171
|
toObject(includeInstance?: boolean): Collector.AsObject;
|
|
@@ -4693,9 +5189,9 @@ export namespace Collector {
|
|
|
4693
5189
|
|
|
4694
5190
|
export class CollectorSource extends jspb.Message {
|
|
4695
5191
|
getApiPostModelOutputsCollectorSource(): APIPostModelOutputsCollectorSource | undefined;
|
|
4696
|
-
setApiPostModelOutputsCollectorSource(value?: APIPostModelOutputsCollectorSource):
|
|
5192
|
+
setApiPostModelOutputsCollectorSource(value?: APIPostModelOutputsCollectorSource): CollectorSource;
|
|
4697
5193
|
hasApiPostModelOutputsCollectorSource(): boolean;
|
|
4698
|
-
clearApiPostModelOutputsCollectorSource():
|
|
5194
|
+
clearApiPostModelOutputsCollectorSource(): CollectorSource;
|
|
4699
5195
|
|
|
4700
5196
|
serializeBinary(): Uint8Array;
|
|
4701
5197
|
toObject(includeInstance?: boolean): CollectorSource.AsObject;
|
|
@@ -4713,19 +5209,19 @@ export namespace CollectorSource {
|
|
|
4713
5209
|
|
|
4714
5210
|
export class APIPostModelOutputsCollectorSource extends jspb.Message {
|
|
4715
5211
|
getModelUserId(): string;
|
|
4716
|
-
setModelUserId(value: string):
|
|
5212
|
+
setModelUserId(value: string): APIPostModelOutputsCollectorSource;
|
|
4717
5213
|
|
|
4718
5214
|
getModelAppId(): string;
|
|
4719
|
-
setModelAppId(value: string):
|
|
5215
|
+
setModelAppId(value: string): APIPostModelOutputsCollectorSource;
|
|
4720
5216
|
|
|
4721
5217
|
getModelId(): string;
|
|
4722
|
-
setModelId(value: string):
|
|
5218
|
+
setModelId(value: string): APIPostModelOutputsCollectorSource;
|
|
4723
5219
|
|
|
4724
5220
|
getModelVersionId(): string;
|
|
4725
|
-
setModelVersionId(value: string):
|
|
5221
|
+
setModelVersionId(value: string): APIPostModelOutputsCollectorSource;
|
|
4726
5222
|
|
|
4727
5223
|
getPostInputsKeyId(): string;
|
|
4728
|
-
setPostInputsKeyId(value: string):
|
|
5224
|
+
setPostInputsKeyId(value: string): APIPostModelOutputsCollectorSource;
|
|
4729
5225
|
|
|
4730
5226
|
serializeBinary(): Uint8Array;
|
|
4731
5227
|
toObject(includeInstance?: boolean): APIPostModelOutputsCollectorSource.AsObject;
|
|
@@ -4747,17 +5243,17 @@ export namespace APIPostModelOutputsCollectorSource {
|
|
|
4747
5243
|
|
|
4748
5244
|
export class StatValue extends jspb.Message {
|
|
4749
5245
|
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4750
|
-
setTime(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
5246
|
+
setTime(value?: google_protobuf_timestamp_pb.Timestamp): StatValue;
|
|
4751
5247
|
hasTime(): boolean;
|
|
4752
|
-
clearTime():
|
|
5248
|
+
clearTime(): StatValue;
|
|
4753
5249
|
|
|
4754
5250
|
getValue(): number;
|
|
4755
|
-
setValue(value: number):
|
|
5251
|
+
setValue(value: number): StatValue;
|
|
4756
5252
|
|
|
4757
5253
|
getTagsList(): Array<string>;
|
|
4758
|
-
setTagsList(value: Array<string>):
|
|
4759
|
-
clearTagsList():
|
|
4760
|
-
addTags(value: string, index?: number):
|
|
5254
|
+
setTagsList(value: Array<string>): StatValue;
|
|
5255
|
+
clearTagsList(): StatValue;
|
|
5256
|
+
addTags(value: string, index?: number): StatValue;
|
|
4761
5257
|
|
|
4762
5258
|
serializeBinary(): Uint8Array;
|
|
4763
5259
|
toObject(includeInstance?: boolean): StatValue.AsObject;
|
|
@@ -4777,14 +5273,14 @@ export namespace StatValue {
|
|
|
4777
5273
|
|
|
4778
5274
|
export class StatValueAggregateResult extends jspb.Message {
|
|
4779
5275
|
getStatValueAggregatesList(): Array<StatValueAggregate>;
|
|
4780
|
-
setStatValueAggregatesList(value: Array<StatValueAggregate>):
|
|
4781
|
-
clearStatValueAggregatesList():
|
|
5276
|
+
setStatValueAggregatesList(value: Array<StatValueAggregate>): StatValueAggregateResult;
|
|
5277
|
+
clearStatValueAggregatesList(): StatValueAggregateResult;
|
|
4782
5278
|
addStatValueAggregates(value?: StatValueAggregate, index?: number): StatValueAggregate;
|
|
4783
5279
|
|
|
4784
5280
|
getStatValueAggregateQuery(): StatValueAggregateQuery | undefined;
|
|
4785
|
-
setStatValueAggregateQuery(value?: StatValueAggregateQuery):
|
|
5281
|
+
setStatValueAggregateQuery(value?: StatValueAggregateQuery): StatValueAggregateResult;
|
|
4786
5282
|
hasStatValueAggregateQuery(): boolean;
|
|
4787
|
-
clearStatValueAggregateQuery():
|
|
5283
|
+
clearStatValueAggregateQuery(): StatValueAggregateResult;
|
|
4788
5284
|
|
|
4789
5285
|
serializeBinary(): Uint8Array;
|
|
4790
5286
|
toObject(includeInstance?: boolean): StatValueAggregateResult.AsObject;
|
|
@@ -4803,20 +5299,20 @@ export namespace StatValueAggregateResult {
|
|
|
4803
5299
|
|
|
4804
5300
|
export class StatValueAggregate extends jspb.Message {
|
|
4805
5301
|
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4806
|
-
setTime(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
5302
|
+
setTime(value?: google_protobuf_timestamp_pb.Timestamp): StatValueAggregate;
|
|
4807
5303
|
hasTime(): boolean;
|
|
4808
|
-
clearTime():
|
|
5304
|
+
clearTime(): StatValueAggregate;
|
|
4809
5305
|
|
|
4810
5306
|
getAggregateValue(): number;
|
|
4811
|
-
setAggregateValue(value: number):
|
|
5307
|
+
setAggregateValue(value: number): StatValueAggregate;
|
|
4812
5308
|
|
|
4813
5309
|
getCount(): number;
|
|
4814
|
-
setCount(value: number):
|
|
5310
|
+
setCount(value: number): StatValueAggregate;
|
|
4815
5311
|
|
|
4816
5312
|
getTagsList(): Array<string>;
|
|
4817
|
-
setTagsList(value: Array<string>):
|
|
4818
|
-
clearTagsList():
|
|
4819
|
-
addTags(value: string, index?: number):
|
|
5313
|
+
setTagsList(value: Array<string>): StatValueAggregate;
|
|
5314
|
+
clearTagsList(): StatValueAggregate;
|
|
5315
|
+
addTags(value: string, index?: number): StatValueAggregate;
|
|
4820
5316
|
|
|
4821
5317
|
serializeBinary(): Uint8Array;
|
|
4822
5318
|
toObject(includeInstance?: boolean): StatValueAggregate.AsObject;
|
|
@@ -4837,30 +5333,30 @@ export namespace StatValueAggregate {
|
|
|
4837
5333
|
|
|
4838
5334
|
export class StatValueAggregateQuery extends jspb.Message {
|
|
4839
5335
|
getTagsList(): Array<string>;
|
|
4840
|
-
setTagsList(value: Array<string>):
|
|
4841
|
-
clearTagsList():
|
|
4842
|
-
addTags(value: string, index?: number):
|
|
5336
|
+
setTagsList(value: Array<string>): StatValueAggregateQuery;
|
|
5337
|
+
clearTagsList(): StatValueAggregateQuery;
|
|
5338
|
+
addTags(value: string, index?: number): StatValueAggregateQuery;
|
|
4843
5339
|
|
|
4844
5340
|
getTagGroupsList(): Array<string>;
|
|
4845
|
-
setTagGroupsList(value: Array<string>):
|
|
4846
|
-
clearTagGroupsList():
|
|
4847
|
-
addTagGroups(value: string, index?: number):
|
|
5341
|
+
setTagGroupsList(value: Array<string>): StatValueAggregateQuery;
|
|
5342
|
+
clearTagGroupsList(): StatValueAggregateQuery;
|
|
5343
|
+
addTagGroups(value: string, index?: number): StatValueAggregateQuery;
|
|
4848
5344
|
|
|
4849
5345
|
getStatValueAggType(): StatValueAggType;
|
|
4850
|
-
setStatValueAggType(value: StatValueAggType):
|
|
5346
|
+
setStatValueAggType(value: StatValueAggType): StatValueAggregateQuery;
|
|
4851
5347
|
|
|
4852
5348
|
getStatTimeAggType(): StatTimeAggType;
|
|
4853
|
-
setStatTimeAggType(value: StatTimeAggType):
|
|
5349
|
+
setStatTimeAggType(value: StatTimeAggType): StatValueAggregateQuery;
|
|
4854
5350
|
|
|
4855
5351
|
getStartTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4856
|
-
setStartTime(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
5352
|
+
setStartTime(value?: google_protobuf_timestamp_pb.Timestamp): StatValueAggregateQuery;
|
|
4857
5353
|
hasStartTime(): boolean;
|
|
4858
|
-
clearStartTime():
|
|
5354
|
+
clearStartTime(): StatValueAggregateQuery;
|
|
4859
5355
|
|
|
4860
5356
|
getEndTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4861
|
-
setEndTime(value?: google_protobuf_timestamp_pb.Timestamp):
|
|
5357
|
+
setEndTime(value?: google_protobuf_timestamp_pb.Timestamp): StatValueAggregateQuery;
|
|
4862
5358
|
hasEndTime(): boolean;
|
|
4863
|
-
clearEndTime():
|
|
5359
|
+
clearEndTime(): StatValueAggregateQuery;
|
|
4864
5360
|
|
|
4865
5361
|
serializeBinary(): Uint8Array;
|
|
4866
5362
|
toObject(includeInstance?: boolean): StatValueAggregateQuery.AsObject;
|
|
@@ -4883,7 +5379,7 @@ export namespace StatValueAggregateQuery {
|
|
|
4883
5379
|
|
|
4884
5380
|
export class Visibility extends jspb.Message {
|
|
4885
5381
|
getGettable(): Visibility.Gettable;
|
|
4886
|
-
setGettable(value: Visibility.Gettable):
|
|
5382
|
+
setGettable(value: Visibility.Gettable): Visibility;
|
|
4887
5383
|
|
|
4888
5384
|
serializeBinary(): Uint8Array;
|
|
4889
5385
|
toObject(includeInstance?: boolean): Visibility.AsObject;
|
|
@@ -4908,16 +5404,16 @@ export namespace Visibility {
|
|
|
4908
5404
|
|
|
4909
5405
|
export class TrendingMetric extends jspb.Message {
|
|
4910
5406
|
getUserId(): string;
|
|
4911
|
-
setUserId(value: string):
|
|
5407
|
+
setUserId(value: string): TrendingMetric;
|
|
4912
5408
|
|
|
4913
5409
|
getAppId(): string;
|
|
4914
|
-
setAppId(value: string):
|
|
5410
|
+
setAppId(value: string): TrendingMetric;
|
|
4915
5411
|
|
|
4916
5412
|
getObjectId(): string;
|
|
4917
|
-
setObjectId(value: string):
|
|
5413
|
+
setObjectId(value: string): TrendingMetric;
|
|
4918
5414
|
|
|
4919
5415
|
getViewCount(): number;
|
|
4920
|
-
setViewCount(value: number):
|
|
5416
|
+
setViewCount(value: number): TrendingMetric;
|
|
4921
5417
|
|
|
4922
5418
|
serializeBinary(): Uint8Array;
|
|
4923
5419
|
toObject(includeInstance?: boolean): TrendingMetric.AsObject;
|
|
@@ -4938,17 +5434,17 @@ export namespace TrendingMetric {
|
|
|
4938
5434
|
|
|
4939
5435
|
export class TimeSegment extends jspb.Message {
|
|
4940
5436
|
getId(): string;
|
|
4941
|
-
setId(value: string):
|
|
5437
|
+
setId(value: string): TimeSegment;
|
|
4942
5438
|
|
|
4943
5439
|
getData(): Data | undefined;
|
|
4944
|
-
setData(value?: Data):
|
|
5440
|
+
setData(value?: Data): TimeSegment;
|
|
4945
5441
|
hasData(): boolean;
|
|
4946
|
-
clearData():
|
|
5442
|
+
clearData(): TimeSegment;
|
|
4947
5443
|
|
|
4948
5444
|
getTimeInfo(): TimeInfo | undefined;
|
|
4949
|
-
setTimeInfo(value?: TimeInfo):
|
|
5445
|
+
setTimeInfo(value?: TimeInfo): TimeSegment;
|
|
4950
5446
|
hasTimeInfo(): boolean;
|
|
4951
|
-
clearTimeInfo():
|
|
5447
|
+
clearTimeInfo(): TimeSegment;
|
|
4952
5448
|
|
|
4953
5449
|
serializeBinary(): Uint8Array;
|
|
4954
5450
|
toObject(includeInstance?: boolean): TimeSegment.AsObject;
|
|
@@ -4968,13 +5464,13 @@ export namespace TimeSegment {
|
|
|
4968
5464
|
|
|
4969
5465
|
export class TimeInfo extends jspb.Message {
|
|
4970
5466
|
getNumFrames(): number;
|
|
4971
|
-
setNumFrames(value: number):
|
|
5467
|
+
setNumFrames(value: number): TimeInfo;
|
|
4972
5468
|
|
|
4973
5469
|
getBeginTime(): number;
|
|
4974
|
-
setBeginTime(value: number):
|
|
5470
|
+
setBeginTime(value: number): TimeInfo;
|
|
4975
5471
|
|
|
4976
5472
|
getEndTime(): number;
|
|
4977
|
-
setEndTime(value: number):
|
|
5473
|
+
setEndTime(value: number): TimeInfo;
|
|
4978
5474
|
|
|
4979
5475
|
serializeBinary(): Uint8Array;
|
|
4980
5476
|
toObject(includeInstance?: boolean): TimeInfo.AsObject;
|
|
@@ -4992,6 +5488,18 @@ export namespace TimeInfo {
|
|
|
4992
5488
|
}
|
|
4993
5489
|
}
|
|
4994
5490
|
|
|
5491
|
+
export enum DatasetVersionMetricsGroupType {
|
|
5492
|
+
DATASET_VERSION_METRICS_GROUP_TYPE_NOT_SET = 0,
|
|
5493
|
+
INPUT_TYPE = 2,
|
|
5494
|
+
CONCEPT_ID = 10,
|
|
5495
|
+
CONCEPTS_COUNT = 11,
|
|
5496
|
+
BOUNDING_BOXES_COUNT = 20,
|
|
5497
|
+
POLYGONS_COUNT = 21,
|
|
5498
|
+
POINTS_COUNT = 22,
|
|
5499
|
+
MASKS_COUNT = 23,
|
|
5500
|
+
PIXELS_COUNT = 30,
|
|
5501
|
+
ASPECT_RATIO = 31,
|
|
5502
|
+
}
|
|
4995
5503
|
export enum ExpirationAction {
|
|
4996
5504
|
EXPIRATION_ACTION_NOT_SET = 0,
|
|
4997
5505
|
DELAY = 1,
|