@osdk/foundry.ontologies 2.13.0 → 2.15.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/CHANGELOG.md +24 -0
- package/build/browser/_components.d.ts +83 -6
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/_errors.d.ts +1405 -0
- package/build/browser/_errors.d.ts.map +1 -1
- package/build/browser/index.d.ts +2 -2
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/public/OntologyObjectSet.d.ts +1 -1
- package/build/browser/public/OntologyObjectSet.js +1 -1
- package/build/browser/public/OntologyObjectSet.js.map +1 -1
- package/build/browser/public/TimeSeriesValueBankProperty.d.ts +4 -4
- package/build/browser/public/TimeSeriesValueBankProperty.js +4 -4
- package/build/browser/public/TimeSeriesValueBankProperty.js.map +1 -1
- package/build/esm/_components.d.ts +83 -6
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_errors.d.ts +1405 -0
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/index.d.ts +2 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/public/OntologyObjectSet.d.ts +1 -1
- package/build/esm/public/OntologyObjectSet.js +1 -1
- package/build/esm/public/OntologyObjectSet.js.map +1 -1
- package/build/esm/public/TimeSeriesValueBankProperty.d.ts +4 -4
- package/build/esm/public/TimeSeriesValueBankProperty.js +4 -4
- package/build/esm/public/TimeSeriesValueBankProperty.js.map +1 -1
- package/package.json +5 -5
package/build/esm/_errors.d.ts
CHANGED
|
@@ -1,4 +1,1409 @@
|
|
|
1
1
|
export type LooselyBrandedString<T extends string> = string & {
|
|
2
2
|
__LOOSE_BRAND?: T;
|
|
3
3
|
};
|
|
4
|
+
/**
|
|
5
|
+
* The given action request has multiple edits on the same object.
|
|
6
|
+
*
|
|
7
|
+
* Log Safety: SAFE
|
|
8
|
+
*/
|
|
9
|
+
export interface ActionContainsDuplicateEdits {
|
|
10
|
+
errorCode: "CONFLICT";
|
|
11
|
+
errorName: "ActionContainsDuplicateEdits";
|
|
12
|
+
errorInstanceId: string;
|
|
13
|
+
parameters: {};
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Actions attempted to edit properties that could not be found on the object type.
|
|
17
|
+
Please contact the Ontology administrator to resolve this issue.
|
|
18
|
+
*
|
|
19
|
+
* Log Safety: SAFE
|
|
20
|
+
*/
|
|
21
|
+
export interface ActionEditedPropertiesNotFound {
|
|
22
|
+
errorCode: "INVALID_ARGUMENT";
|
|
23
|
+
errorName: "ActionEditedPropertiesNotFound";
|
|
24
|
+
errorInstanceId: string;
|
|
25
|
+
parameters: {};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* The given action request performs edits on a type that is read-only or does not allow edits.
|
|
29
|
+
*
|
|
30
|
+
* Log Safety: SAFE
|
|
31
|
+
*/
|
|
32
|
+
export interface ActionEditsReadOnlyEntity {
|
|
33
|
+
errorCode: "INVALID_ARGUMENT";
|
|
34
|
+
errorName: "ActionEditsReadOnlyEntity";
|
|
35
|
+
errorInstanceId: string;
|
|
36
|
+
parameters: {
|
|
37
|
+
entityTypeRid: unknown;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* The action is not found, or the user does not have access to it.
|
|
42
|
+
*
|
|
43
|
+
* Log Safety: SAFE
|
|
44
|
+
*/
|
|
45
|
+
export interface ActionNotFound {
|
|
46
|
+
errorCode: "NOT_FOUND";
|
|
47
|
+
errorName: "ActionNotFound";
|
|
48
|
+
errorInstanceId: string;
|
|
49
|
+
parameters: {
|
|
50
|
+
actionRid: unknown;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* The parameter references an interface type that could not be found, or the client token does not have access to it.
|
|
55
|
+
*
|
|
56
|
+
* Log Safety: UNSAFE
|
|
57
|
+
*/
|
|
58
|
+
export interface ActionParameterInterfaceTypeNotFound {
|
|
59
|
+
errorCode: "NOT_FOUND";
|
|
60
|
+
errorName: "ActionParameterInterfaceTypeNotFound";
|
|
61
|
+
errorInstanceId: string;
|
|
62
|
+
parameters: {
|
|
63
|
+
parameterId: unknown;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* The parameter object reference or parameter default value is not found, or the client token does not have access to it.
|
|
68
|
+
*
|
|
69
|
+
* Log Safety: UNSAFE
|
|
70
|
+
*/
|
|
71
|
+
export interface ActionParameterObjectNotFound {
|
|
72
|
+
errorCode: "NOT_FOUND";
|
|
73
|
+
errorName: "ActionParameterObjectNotFound";
|
|
74
|
+
errorInstanceId: string;
|
|
75
|
+
parameters: {
|
|
76
|
+
parameterId: unknown;
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* The parameter references an object type that could not be found, or the client token does not have access to it.
|
|
81
|
+
*
|
|
82
|
+
* Log Safety: UNSAFE
|
|
83
|
+
*/
|
|
84
|
+
export interface ActionParameterObjectTypeNotFound {
|
|
85
|
+
errorCode: "NOT_FOUND";
|
|
86
|
+
errorName: "ActionParameterObjectTypeNotFound";
|
|
87
|
+
errorInstanceId: string;
|
|
88
|
+
parameters: {
|
|
89
|
+
parameterId: unknown;
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* The action type is not found, or the user does not have access to it.
|
|
94
|
+
*
|
|
95
|
+
* Log Safety: UNSAFE
|
|
96
|
+
*/
|
|
97
|
+
export interface ActionTypeNotFound {
|
|
98
|
+
errorCode: "NOT_FOUND";
|
|
99
|
+
errorName: "ActionTypeNotFound";
|
|
100
|
+
errorInstanceId: string;
|
|
101
|
+
parameters: {
|
|
102
|
+
actionType: unknown;
|
|
103
|
+
rid: unknown;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* The validation failed for the given action parameters. Please use the validateAction endpoint for more
|
|
108
|
+
details.
|
|
109
|
+
*
|
|
110
|
+
* Log Safety: UNSAFE
|
|
111
|
+
*/
|
|
112
|
+
export interface ActionValidationFailed {
|
|
113
|
+
errorCode: "INVALID_ARGUMENT";
|
|
114
|
+
errorName: "ActionValidationFailed";
|
|
115
|
+
errorInstanceId: string;
|
|
116
|
+
parameters: {
|
|
117
|
+
actionType: unknown;
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* The number of groups in the aggregations grouping exceeded the allowed limit. This can typically be fixed by
|
|
122
|
+
adjusting your query to reduce the number of groups created by your aggregation. For instance:
|
|
123
|
+
|
|
124
|
+
If you are using multiple groupBy clauses, try reducing the number of clauses.
|
|
125
|
+
If you are using a groupBy clause with a high cardinality property, try filtering the data first
|
|
126
|
+
to reduce the number of groups.
|
|
127
|
+
*
|
|
128
|
+
* Log Safety: SAFE
|
|
129
|
+
*/
|
|
130
|
+
export interface AggregationGroupCountExceededLimit {
|
|
131
|
+
errorCode: "INVALID_ARGUMENT";
|
|
132
|
+
errorName: "AggregationGroupCountExceededLimit";
|
|
133
|
+
errorInstanceId: string;
|
|
134
|
+
parameters: {
|
|
135
|
+
groupsCount: unknown;
|
|
136
|
+
groupsLimit: unknown;
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* The amount of memory used in the request exceeded the limit. This can typically be fixed by
|
|
141
|
+
adjusting your query to reduce the number of groups created by your aggregation. For instance:
|
|
142
|
+
|
|
143
|
+
If you are using multiple groupBy clauses, try reducing the number of clauses.
|
|
144
|
+
If you are using a groupBy clause with a high cardinality property, try filtering the data first
|
|
145
|
+
to reduce the number of groups.
|
|
146
|
+
*
|
|
147
|
+
* Log Safety: SAFE
|
|
148
|
+
*/
|
|
149
|
+
export interface AggregationMemoryExceededLimit {
|
|
150
|
+
errorCode: "INVALID_ARGUMENT";
|
|
151
|
+
errorName: "AggregationMemoryExceededLimit";
|
|
152
|
+
errorInstanceId: string;
|
|
153
|
+
parameters: {
|
|
154
|
+
memoryUsedBytes: unknown;
|
|
155
|
+
memoryLimitBytes: unknown;
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* A nested object set within the aggregation exceeded the allowed limit.
|
|
160
|
+
This can be fixed by aggregating over fewer objects, such as by applying a filter.
|
|
161
|
+
*
|
|
162
|
+
* Log Safety: SAFE
|
|
163
|
+
*/
|
|
164
|
+
export interface AggregationNestedObjectSetSizeExceededLimit {
|
|
165
|
+
errorCode: "INVALID_ARGUMENT";
|
|
166
|
+
errorName: "AggregationNestedObjectSetSizeExceededLimit";
|
|
167
|
+
errorInstanceId: string;
|
|
168
|
+
parameters: {
|
|
169
|
+
objectsCount: unknown;
|
|
170
|
+
objectsLimit: unknown;
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* Log Safety: SAFE
|
|
175
|
+
*/
|
|
176
|
+
export interface ApplyActionFailed {
|
|
177
|
+
errorCode: "INVALID_ARGUMENT";
|
|
178
|
+
errorName: "ApplyActionFailed";
|
|
179
|
+
errorInstanceId: string;
|
|
180
|
+
parameters: {};
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* The requested attachment is not found, or the client token does not have access to it.
|
|
184
|
+
Attachments that are not attached to any objects are deleted after two weeks.
|
|
185
|
+
Attachments that have not been attached to an object can only be viewed by the user who uploaded them.
|
|
186
|
+
Attachments that have been attached to an object can be viewed by users who can view the object.
|
|
187
|
+
*
|
|
188
|
+
* Log Safety: SAFE
|
|
189
|
+
*/
|
|
190
|
+
export interface AttachmentNotFound {
|
|
191
|
+
errorCode: "NOT_FOUND";
|
|
192
|
+
errorName: "AttachmentNotFound";
|
|
193
|
+
errorInstanceId: string;
|
|
194
|
+
parameters: {
|
|
195
|
+
attachmentRid: unknown;
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* The file is too large to be uploaded as an attachment.
|
|
200
|
+
The maximum attachment size is 200MB.
|
|
201
|
+
*
|
|
202
|
+
* Log Safety: UNSAFE
|
|
203
|
+
*/
|
|
204
|
+
export interface AttachmentSizeExceededLimit {
|
|
205
|
+
errorCode: "INVALID_ARGUMENT";
|
|
206
|
+
errorName: "AttachmentSizeExceededLimit";
|
|
207
|
+
errorInstanceId: string;
|
|
208
|
+
parameters: {
|
|
209
|
+
fileSizeBytes: unknown;
|
|
210
|
+
fileLimitBytes: unknown;
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* Primary keys consisting of multiple properties are not supported by this API. If you need support for this,
|
|
215
|
+
please reach out to Palantir Support.
|
|
216
|
+
*
|
|
217
|
+
* Log Safety: UNSAFE
|
|
218
|
+
*/
|
|
219
|
+
export interface CompositePrimaryKeyNotSupported {
|
|
220
|
+
errorCode: "INVALID_ARGUMENT";
|
|
221
|
+
errorName: "CompositePrimaryKeyNotSupported";
|
|
222
|
+
errorInstanceId: string;
|
|
223
|
+
parameters: {
|
|
224
|
+
objectType: unknown;
|
|
225
|
+
primaryKey: unknown;
|
|
226
|
+
};
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* At least one of the requested derived property API names already exist on the object set.
|
|
230
|
+
*
|
|
231
|
+
* Log Safety: UNSAFE
|
|
232
|
+
*/
|
|
233
|
+
export interface DerivedPropertyApiNamesNotUnique {
|
|
234
|
+
errorCode: "INVALID_ARGUMENT";
|
|
235
|
+
errorName: "DerivedPropertyApiNamesNotUnique";
|
|
236
|
+
errorInstanceId: string;
|
|
237
|
+
parameters: {
|
|
238
|
+
derivedPropertyApiNames: unknown;
|
|
239
|
+
};
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* The requested sort order includes duplicate properties.
|
|
243
|
+
*
|
|
244
|
+
* Log Safety: UNSAFE
|
|
245
|
+
*/
|
|
246
|
+
export interface DuplicateOrderBy {
|
|
247
|
+
errorCode: "INVALID_ARGUMENT";
|
|
248
|
+
errorName: "DuplicateOrderBy";
|
|
249
|
+
errorInstanceId: string;
|
|
250
|
+
parameters: {
|
|
251
|
+
properties: unknown;
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* The user does not have permission to edit this ObjectType.
|
|
256
|
+
*
|
|
257
|
+
* Log Safety: SAFE
|
|
258
|
+
*/
|
|
259
|
+
export interface EditObjectPermissionDenied {
|
|
260
|
+
errorCode: "PERMISSION_DENIED";
|
|
261
|
+
errorName: "EditObjectPermissionDenied";
|
|
262
|
+
errorInstanceId: string;
|
|
263
|
+
parameters: {};
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* The authored function failed to execute because of a user induced error. The message argument
|
|
267
|
+
is meant to be displayed to the user.
|
|
268
|
+
*
|
|
269
|
+
* Log Safety: UNSAFE
|
|
270
|
+
*/
|
|
271
|
+
export interface FunctionEncounteredUserFacingError {
|
|
272
|
+
errorCode: "INVALID_ARGUMENT";
|
|
273
|
+
errorName: "FunctionEncounteredUserFacingError";
|
|
274
|
+
errorInstanceId: string;
|
|
275
|
+
parameters: {
|
|
276
|
+
functionRid: unknown;
|
|
277
|
+
functionVersion: unknown;
|
|
278
|
+
message: unknown;
|
|
279
|
+
};
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Log Safety: UNSAFE
|
|
283
|
+
*/
|
|
284
|
+
export interface FunctionExecutionFailed {
|
|
285
|
+
errorCode: "INVALID_ARGUMENT";
|
|
286
|
+
errorName: "FunctionExecutionFailed";
|
|
287
|
+
errorInstanceId: string;
|
|
288
|
+
parameters: {
|
|
289
|
+
functionRid: unknown;
|
|
290
|
+
functionVersion: unknown;
|
|
291
|
+
message: unknown;
|
|
292
|
+
stacktrace: unknown;
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Log Safety: UNSAFE
|
|
297
|
+
*/
|
|
298
|
+
export interface FunctionExecutionTimedOut {
|
|
299
|
+
errorCode: "TIMEOUT";
|
|
300
|
+
errorName: "FunctionExecutionTimedOut";
|
|
301
|
+
errorInstanceId: string;
|
|
302
|
+
parameters: {
|
|
303
|
+
functionRid: unknown;
|
|
304
|
+
functionVersion: unknown;
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* Log Safety: UNSAFE
|
|
309
|
+
*/
|
|
310
|
+
export interface FunctionInvalidInput {
|
|
311
|
+
errorCode: "INVALID_ARGUMENT";
|
|
312
|
+
errorName: "FunctionInvalidInput";
|
|
313
|
+
errorInstanceId: string;
|
|
314
|
+
parameters: {
|
|
315
|
+
functionRid: unknown;
|
|
316
|
+
functionVersion: unknown;
|
|
317
|
+
};
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* High-scale compute was required for this Ontology query but is not enabled on this enrollment.
|
|
321
|
+
*
|
|
322
|
+
* Log Safety: SAFE
|
|
323
|
+
*/
|
|
324
|
+
export interface HighScaleComputationNotEnabled {
|
|
325
|
+
errorCode: "TIMEOUT";
|
|
326
|
+
errorName: "HighScaleComputationNotEnabled";
|
|
327
|
+
errorInstanceId: string;
|
|
328
|
+
parameters: {};
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* The requested interface type is not found, or the client token does not have access to it.
|
|
332
|
+
*
|
|
333
|
+
* Log Safety: UNSAFE
|
|
334
|
+
*/
|
|
335
|
+
export interface InterfaceTypeNotFound {
|
|
336
|
+
errorCode: "NOT_FOUND";
|
|
337
|
+
errorName: "InterfaceTypeNotFound";
|
|
338
|
+
errorInstanceId: string;
|
|
339
|
+
parameters: {
|
|
340
|
+
apiName: unknown;
|
|
341
|
+
rid: unknown;
|
|
342
|
+
};
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* The requested interface types were not found, or the client token does not have access to it.
|
|
346
|
+
*
|
|
347
|
+
* Log Safety: UNSAFE
|
|
348
|
+
*/
|
|
349
|
+
export interface InterfaceTypesNotFound {
|
|
350
|
+
errorCode: "NOT_FOUND";
|
|
351
|
+
errorName: "InterfaceTypesNotFound";
|
|
352
|
+
errorInstanceId: string;
|
|
353
|
+
parameters: {
|
|
354
|
+
apiName: unknown;
|
|
355
|
+
rid: unknown;
|
|
356
|
+
};
|
|
357
|
+
}
|
|
358
|
+
/**
|
|
359
|
+
* Aggregation ordering can only be applied to metrics with exactly one groupBy clause.
|
|
360
|
+
*
|
|
361
|
+
* Log Safety: SAFE
|
|
362
|
+
*/
|
|
363
|
+
export interface InvalidAggregationOrdering {
|
|
364
|
+
errorCode: "INVALID_ARGUMENT";
|
|
365
|
+
errorName: "InvalidAggregationOrdering";
|
|
366
|
+
errorInstanceId: string;
|
|
367
|
+
parameters: {};
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* Aggregation range should include one lt or lte and one gt or gte.
|
|
371
|
+
*
|
|
372
|
+
* Log Safety: SAFE
|
|
373
|
+
*/
|
|
374
|
+
export interface InvalidAggregationRange {
|
|
375
|
+
errorCode: "INVALID_ARGUMENT";
|
|
376
|
+
errorName: "InvalidAggregationRange";
|
|
377
|
+
errorInstanceId: string;
|
|
378
|
+
parameters: {};
|
|
379
|
+
}
|
|
380
|
+
/**
|
|
381
|
+
* Range group by is not supported by property type.
|
|
382
|
+
*
|
|
383
|
+
* Log Safety: UNSAFE
|
|
384
|
+
*/
|
|
385
|
+
export interface InvalidAggregationRangePropertyType {
|
|
386
|
+
errorCode: "INVALID_ARGUMENT";
|
|
387
|
+
errorName: "InvalidAggregationRangePropertyType";
|
|
388
|
+
errorInstanceId: string;
|
|
389
|
+
parameters: {
|
|
390
|
+
property: unknown;
|
|
391
|
+
objectType: unknown;
|
|
392
|
+
propertyBaseType: unknown;
|
|
393
|
+
};
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* Aggregation value does not conform to the expected underlying type.
|
|
397
|
+
*
|
|
398
|
+
* Log Safety: UNSAFE
|
|
399
|
+
*/
|
|
400
|
+
export interface InvalidAggregationRangeValue {
|
|
401
|
+
errorCode: "INVALID_ARGUMENT";
|
|
402
|
+
errorName: "InvalidAggregationRangeValue";
|
|
403
|
+
errorInstanceId: string;
|
|
404
|
+
parameters: {
|
|
405
|
+
property: unknown;
|
|
406
|
+
objectType: unknown;
|
|
407
|
+
propertyBaseType: unknown;
|
|
408
|
+
};
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* The given options are individually valid but cannot be used in the given combination.
|
|
412
|
+
*
|
|
413
|
+
* Log Safety: SAFE
|
|
414
|
+
*/
|
|
415
|
+
export interface InvalidApplyActionOptionCombination {
|
|
416
|
+
errorCode: "INVALID_ARGUMENT";
|
|
417
|
+
errorName: "InvalidApplyActionOptionCombination";
|
|
418
|
+
errorInstanceId: string;
|
|
419
|
+
parameters: {
|
|
420
|
+
invalidCombination: unknown;
|
|
421
|
+
};
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* A Content-Length header is required for all uploads, but was missing or invalid.
|
|
425
|
+
*
|
|
426
|
+
* Log Safety: SAFE
|
|
427
|
+
*/
|
|
428
|
+
export interface InvalidContentLength {
|
|
429
|
+
errorCode: "INVALID_ARGUMENT";
|
|
430
|
+
errorName: "InvalidContentLength";
|
|
431
|
+
errorInstanceId: string;
|
|
432
|
+
parameters: {};
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* The Content-Type cannot be inferred from the request content and filename.
|
|
436
|
+
Please check your request content and filename to ensure they are compatible.
|
|
437
|
+
*
|
|
438
|
+
* Log Safety: SAFE
|
|
439
|
+
*/
|
|
440
|
+
export interface InvalidContentType {
|
|
441
|
+
errorCode: "INVALID_ARGUMENT";
|
|
442
|
+
errorName: "InvalidContentType";
|
|
443
|
+
errorInstanceId: string;
|
|
444
|
+
parameters: {};
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* Invalid property type for duration groupBy.
|
|
448
|
+
*
|
|
449
|
+
* Log Safety: UNSAFE
|
|
450
|
+
*/
|
|
451
|
+
export interface InvalidDurationGroupByPropertyType {
|
|
452
|
+
errorCode: "INVALID_ARGUMENT";
|
|
453
|
+
errorName: "InvalidDurationGroupByPropertyType";
|
|
454
|
+
errorInstanceId: string;
|
|
455
|
+
parameters: {
|
|
456
|
+
property: unknown;
|
|
457
|
+
objectType: unknown;
|
|
458
|
+
propertyBaseType: unknown;
|
|
459
|
+
};
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
* Duration groupBy value is invalid. Units larger than day must have value 1 and date properties do not support
|
|
463
|
+
filtering on units smaller than day. As examples, neither bucketing by every two weeks nor bucketing a date by
|
|
464
|
+
every two hours are allowed.
|
|
465
|
+
*
|
|
466
|
+
* Log Safety: SAFE
|
|
467
|
+
*/
|
|
468
|
+
export interface InvalidDurationGroupByValue {
|
|
469
|
+
errorCode: "INVALID_ARGUMENT";
|
|
470
|
+
errorName: "InvalidDurationGroupByValue";
|
|
471
|
+
errorInstanceId: string;
|
|
472
|
+
parameters: {};
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* The value of the given field does not match the expected pattern. For example, an Ontology object property id
|
|
476
|
+
should be written properties.id.
|
|
477
|
+
*
|
|
478
|
+
* Log Safety: UNSAFE
|
|
479
|
+
*/
|
|
480
|
+
export interface InvalidFields {
|
|
481
|
+
errorCode: "INVALID_ARGUMENT";
|
|
482
|
+
errorName: "InvalidFields";
|
|
483
|
+
errorInstanceId: string;
|
|
484
|
+
parameters: {
|
|
485
|
+
properties: unknown;
|
|
486
|
+
};
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* The provided value for a group id must be a UUID.
|
|
490
|
+
*
|
|
491
|
+
* Log Safety: UNSAFE
|
|
492
|
+
*/
|
|
493
|
+
export interface InvalidGroupId {
|
|
494
|
+
errorCode: "INVALID_ARGUMENT";
|
|
495
|
+
errorName: "InvalidGroupId";
|
|
496
|
+
errorInstanceId: string;
|
|
497
|
+
parameters: {
|
|
498
|
+
groupId: unknown;
|
|
499
|
+
};
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* This query type does not support the provided order type
|
|
503
|
+
*
|
|
504
|
+
* Log Safety: SAFE
|
|
505
|
+
*/
|
|
506
|
+
export interface InvalidOrderType {
|
|
507
|
+
errorCode: "INVALID_ARGUMENT";
|
|
508
|
+
errorName: "InvalidOrderType";
|
|
509
|
+
errorInstanceId: string;
|
|
510
|
+
parameters: {
|
|
511
|
+
orderType: unknown;
|
|
512
|
+
};
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* The value of the given parameter is invalid. See the documentation of DataValue for details on
|
|
516
|
+
how parameters are represented.
|
|
517
|
+
*
|
|
518
|
+
* Log Safety: UNSAFE
|
|
519
|
+
*/
|
|
520
|
+
export interface InvalidParameterValue {
|
|
521
|
+
errorCode: "INVALID_ARGUMENT";
|
|
522
|
+
errorName: "InvalidParameterValue";
|
|
523
|
+
errorInstanceId: string;
|
|
524
|
+
parameters: {
|
|
525
|
+
parameterBaseType: unknown;
|
|
526
|
+
parameterDataType: unknown;
|
|
527
|
+
parameterId: unknown;
|
|
528
|
+
parameterValue: unknown;
|
|
529
|
+
};
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
* The provided filters cannot be used together.
|
|
533
|
+
*
|
|
534
|
+
* Log Safety: UNSAFE
|
|
535
|
+
*/
|
|
536
|
+
export interface InvalidPropertyFiltersCombination {
|
|
537
|
+
errorCode: "INVALID_ARGUMENT";
|
|
538
|
+
errorName: "InvalidPropertyFiltersCombination";
|
|
539
|
+
errorInstanceId: string;
|
|
540
|
+
parameters: {
|
|
541
|
+
propertyFilters: unknown;
|
|
542
|
+
property: unknown;
|
|
543
|
+
};
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* The value of the given property filter is invalid. For instance, 2 is an invalid value for
|
|
547
|
+
isNull in properties.address.isNull=2 because the isNull filter expects a value of boolean type.
|
|
548
|
+
*
|
|
549
|
+
* Log Safety: UNSAFE
|
|
550
|
+
*/
|
|
551
|
+
export interface InvalidPropertyFilterValue {
|
|
552
|
+
errorCode: "INVALID_ARGUMENT";
|
|
553
|
+
errorName: "InvalidPropertyFilterValue";
|
|
554
|
+
errorInstanceId: string;
|
|
555
|
+
parameters: {
|
|
556
|
+
expectedType: unknown;
|
|
557
|
+
propertyFilter: unknown;
|
|
558
|
+
propertyFilterValue: unknown;
|
|
559
|
+
property: unknown;
|
|
560
|
+
};
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* The given property type is not of the expected type.
|
|
564
|
+
*
|
|
565
|
+
* Log Safety: UNSAFE
|
|
566
|
+
*/
|
|
567
|
+
export interface InvalidPropertyType {
|
|
568
|
+
errorCode: "INVALID_ARGUMENT";
|
|
569
|
+
errorName: "InvalidPropertyType";
|
|
570
|
+
errorInstanceId: string;
|
|
571
|
+
parameters: {
|
|
572
|
+
propertyBaseType: unknown;
|
|
573
|
+
property: unknown;
|
|
574
|
+
};
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
* The value of the given property is invalid. See the documentation of PropertyValue for details on
|
|
578
|
+
how properties are represented.
|
|
579
|
+
*
|
|
580
|
+
* Log Safety: UNSAFE
|
|
581
|
+
*/
|
|
582
|
+
export interface InvalidPropertyValue {
|
|
583
|
+
errorCode: "INVALID_ARGUMENT";
|
|
584
|
+
errorName: "InvalidPropertyValue";
|
|
585
|
+
errorInstanceId: string;
|
|
586
|
+
parameters: {
|
|
587
|
+
propertyBaseType: unknown;
|
|
588
|
+
property: unknown;
|
|
589
|
+
propertyValue: unknown;
|
|
590
|
+
};
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* The value of the given parameter is invalid. See the documentation of DataValue for details on
|
|
594
|
+
how parameters are represented.
|
|
595
|
+
*
|
|
596
|
+
* Log Safety: UNSAFE
|
|
597
|
+
*/
|
|
598
|
+
export interface InvalidQueryParameterValue {
|
|
599
|
+
errorCode: "INVALID_ARGUMENT";
|
|
600
|
+
errorName: "InvalidQueryParameterValue";
|
|
601
|
+
errorInstanceId: string;
|
|
602
|
+
parameters: {
|
|
603
|
+
parameterDataType: unknown;
|
|
604
|
+
parameterId: unknown;
|
|
605
|
+
parameterValue: unknown;
|
|
606
|
+
};
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* The specified query range filter is invalid.
|
|
610
|
+
*
|
|
611
|
+
* Log Safety: UNSAFE
|
|
612
|
+
*/
|
|
613
|
+
export interface InvalidRangeQuery {
|
|
614
|
+
errorCode: "INVALID_ARGUMENT";
|
|
615
|
+
errorName: "InvalidRangeQuery";
|
|
616
|
+
errorInstanceId: string;
|
|
617
|
+
parameters: {
|
|
618
|
+
lt: unknown;
|
|
619
|
+
gt: unknown;
|
|
620
|
+
lte: unknown;
|
|
621
|
+
gte: unknown;
|
|
622
|
+
field: unknown;
|
|
623
|
+
};
|
|
624
|
+
}
|
|
625
|
+
/**
|
|
626
|
+
* The requested sort order of one or more properties is invalid. Valid sort orders are 'asc' or 'desc'. Sort
|
|
627
|
+
order can also be omitted, and defaults to 'asc'.
|
|
628
|
+
*
|
|
629
|
+
* Log Safety: UNSAFE
|
|
630
|
+
*/
|
|
631
|
+
export interface InvalidSortOrder {
|
|
632
|
+
errorCode: "INVALID_ARGUMENT";
|
|
633
|
+
errorName: "InvalidSortOrder";
|
|
634
|
+
errorInstanceId: string;
|
|
635
|
+
parameters: {
|
|
636
|
+
invalidSortOrder: unknown;
|
|
637
|
+
};
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* The requested sort type of one or more clauses is invalid. Valid sort types are 'p' or 'properties'.
|
|
641
|
+
*
|
|
642
|
+
* Log Safety: SAFE
|
|
643
|
+
*/
|
|
644
|
+
export interface InvalidSortType {
|
|
645
|
+
errorCode: "INVALID_ARGUMENT";
|
|
646
|
+
errorName: "InvalidSortType";
|
|
647
|
+
errorInstanceId: string;
|
|
648
|
+
parameters: {
|
|
649
|
+
invalidSortType: unknown;
|
|
650
|
+
};
|
|
651
|
+
}
|
|
652
|
+
/**
|
|
653
|
+
* The provided value for a user id must be a UUID.
|
|
654
|
+
*
|
|
655
|
+
* Log Safety: UNSAFE
|
|
656
|
+
*/
|
|
657
|
+
export interface InvalidUserId {
|
|
658
|
+
errorCode: "INVALID_ARGUMENT";
|
|
659
|
+
errorName: "InvalidUserId";
|
|
660
|
+
errorInstanceId: string;
|
|
661
|
+
parameters: {
|
|
662
|
+
userId: unknown;
|
|
663
|
+
};
|
|
664
|
+
}
|
|
665
|
+
/**
|
|
666
|
+
* The link the user is attempting to create already exists.
|
|
667
|
+
*
|
|
668
|
+
* Log Safety: SAFE
|
|
669
|
+
*/
|
|
670
|
+
export interface LinkAlreadyExists {
|
|
671
|
+
errorCode: "CONFLICT";
|
|
672
|
+
errorName: "LinkAlreadyExists";
|
|
673
|
+
errorInstanceId: string;
|
|
674
|
+
parameters: {};
|
|
675
|
+
}
|
|
676
|
+
/**
|
|
677
|
+
* The linked object with the given primary key is not found, or the user does not have access to it.
|
|
678
|
+
*
|
|
679
|
+
* Log Safety: UNSAFE
|
|
680
|
+
*/
|
|
681
|
+
export interface LinkedObjectNotFound {
|
|
682
|
+
errorCode: "NOT_FOUND";
|
|
683
|
+
errorName: "LinkedObjectNotFound";
|
|
684
|
+
errorInstanceId: string;
|
|
685
|
+
parameters: {
|
|
686
|
+
linkType: unknown;
|
|
687
|
+
linkedObjectType: unknown;
|
|
688
|
+
linkedObjectPrimaryKey: unknown;
|
|
689
|
+
};
|
|
690
|
+
}
|
|
691
|
+
/**
|
|
692
|
+
* The link type is not found, or the user does not have access to it.
|
|
693
|
+
*
|
|
694
|
+
* Log Safety: UNSAFE
|
|
695
|
+
*/
|
|
696
|
+
export interface LinkTypeNotFound {
|
|
697
|
+
errorCode: "NOT_FOUND";
|
|
698
|
+
errorName: "LinkTypeNotFound";
|
|
699
|
+
errorInstanceId: string;
|
|
700
|
+
parameters: {
|
|
701
|
+
objectType: unknown;
|
|
702
|
+
linkType: unknown;
|
|
703
|
+
};
|
|
704
|
+
}
|
|
705
|
+
/**
|
|
706
|
+
* At least one of requested filters are malformed. Please look at the documentation of PropertyFilter.
|
|
707
|
+
*
|
|
708
|
+
* Log Safety: UNSAFE
|
|
709
|
+
*/
|
|
710
|
+
export interface MalformedPropertyFilters {
|
|
711
|
+
errorCode: "INVALID_ARGUMENT";
|
|
712
|
+
errorName: "MalformedPropertyFilters";
|
|
713
|
+
errorInstanceId: string;
|
|
714
|
+
parameters: {
|
|
715
|
+
malformedPropertyFilter: unknown;
|
|
716
|
+
};
|
|
717
|
+
}
|
|
718
|
+
/**
|
|
719
|
+
* The given action could not be mapped to a Marketplace installation.
|
|
720
|
+
*
|
|
721
|
+
* Log Safety: UNSAFE
|
|
722
|
+
*/
|
|
723
|
+
export interface MarketplaceActionMappingNotFound {
|
|
724
|
+
errorCode: "NOT_FOUND";
|
|
725
|
+
errorName: "MarketplaceActionMappingNotFound";
|
|
726
|
+
errorInstanceId: string;
|
|
727
|
+
parameters: {
|
|
728
|
+
actionType: unknown;
|
|
729
|
+
artifactRepository: unknown;
|
|
730
|
+
packageName: unknown;
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
/**
|
|
734
|
+
* The given marketplace installation could not be found or the user does not have access to it.
|
|
735
|
+
*
|
|
736
|
+
* Log Safety: UNSAFE
|
|
737
|
+
*/
|
|
738
|
+
export interface MarketplaceInstallationNotFound {
|
|
739
|
+
errorCode: "NOT_FOUND";
|
|
740
|
+
errorName: "MarketplaceInstallationNotFound";
|
|
741
|
+
errorInstanceId: string;
|
|
742
|
+
parameters: {
|
|
743
|
+
artifactRepository: unknown;
|
|
744
|
+
packageName: unknown;
|
|
745
|
+
};
|
|
746
|
+
}
|
|
747
|
+
/**
|
|
748
|
+
* The given link could not be mapped to a Marketplace installation.
|
|
749
|
+
*
|
|
750
|
+
* Log Safety: UNSAFE
|
|
751
|
+
*/
|
|
752
|
+
export interface MarketplaceLinkMappingNotFound {
|
|
753
|
+
errorCode: "NOT_FOUND";
|
|
754
|
+
errorName: "MarketplaceLinkMappingNotFound";
|
|
755
|
+
errorInstanceId: string;
|
|
756
|
+
parameters: {
|
|
757
|
+
linkType: unknown;
|
|
758
|
+
artifactRepository: unknown;
|
|
759
|
+
packageName: unknown;
|
|
760
|
+
};
|
|
761
|
+
}
|
|
762
|
+
/**
|
|
763
|
+
* The given object could not be mapped to a Marketplace installation.
|
|
764
|
+
*
|
|
765
|
+
* Log Safety: UNSAFE
|
|
766
|
+
*/
|
|
767
|
+
export interface MarketplaceObjectMappingNotFound {
|
|
768
|
+
errorCode: "NOT_FOUND";
|
|
769
|
+
errorName: "MarketplaceObjectMappingNotFound";
|
|
770
|
+
errorInstanceId: string;
|
|
771
|
+
parameters: {
|
|
772
|
+
objectType: unknown;
|
|
773
|
+
artifactRepository: unknown;
|
|
774
|
+
packageName: unknown;
|
|
775
|
+
};
|
|
776
|
+
}
|
|
777
|
+
/**
|
|
778
|
+
* The given query could not be mapped to a Marketplace installation.
|
|
779
|
+
*
|
|
780
|
+
* Log Safety: UNSAFE
|
|
781
|
+
*/
|
|
782
|
+
export interface MarketplaceQueryMappingNotFound {
|
|
783
|
+
errorCode: "NOT_FOUND";
|
|
784
|
+
errorName: "MarketplaceQueryMappingNotFound";
|
|
785
|
+
errorInstanceId: string;
|
|
786
|
+
parameters: {
|
|
787
|
+
queryType: unknown;
|
|
788
|
+
artifactRepository: unknown;
|
|
789
|
+
packageName: unknown;
|
|
790
|
+
};
|
|
791
|
+
}
|
|
792
|
+
/**
|
|
793
|
+
* Required parameters are missing. Please look at the parameters field to see which required parameters are
|
|
794
|
+
missing from the request.
|
|
795
|
+
*
|
|
796
|
+
* Log Safety: UNSAFE
|
|
797
|
+
*/
|
|
798
|
+
export interface MissingParameter {
|
|
799
|
+
errorCode: "INVALID_ARGUMENT";
|
|
800
|
+
errorName: "MissingParameter";
|
|
801
|
+
errorInstanceId: string;
|
|
802
|
+
parameters: {
|
|
803
|
+
parameters: unknown;
|
|
804
|
+
};
|
|
805
|
+
}
|
|
806
|
+
/**
|
|
807
|
+
* Aggregation cannot group by on the same field multiple times.
|
|
808
|
+
*
|
|
809
|
+
* Log Safety: UNSAFE
|
|
810
|
+
*/
|
|
811
|
+
export interface MultipleGroupByOnFieldNotSupported {
|
|
812
|
+
errorCode: "INVALID_ARGUMENT";
|
|
813
|
+
errorName: "MultipleGroupByOnFieldNotSupported";
|
|
814
|
+
errorInstanceId: string;
|
|
815
|
+
parameters: {
|
|
816
|
+
duplicateFields: unknown;
|
|
817
|
+
};
|
|
818
|
+
}
|
|
819
|
+
/**
|
|
820
|
+
* One of the requested property filters does not support multiple values. Please include only a single value for
|
|
821
|
+
it.
|
|
822
|
+
*
|
|
823
|
+
* Log Safety: UNSAFE
|
|
824
|
+
*/
|
|
825
|
+
export interface MultiplePropertyValuesNotSupported {
|
|
826
|
+
errorCode: "INVALID_ARGUMENT";
|
|
827
|
+
errorName: "MultiplePropertyValuesNotSupported";
|
|
828
|
+
errorInstanceId: string;
|
|
829
|
+
parameters: {
|
|
830
|
+
propertyFilter: unknown;
|
|
831
|
+
property: unknown;
|
|
832
|
+
};
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
* The object the user is attempting to create already exists.
|
|
836
|
+
*
|
|
837
|
+
* Log Safety: SAFE
|
|
838
|
+
*/
|
|
839
|
+
export interface ObjectAlreadyExists {
|
|
840
|
+
errorCode: "CONFLICT";
|
|
841
|
+
errorName: "ObjectAlreadyExists";
|
|
842
|
+
errorInstanceId: string;
|
|
843
|
+
parameters: {};
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* An object used by this Action was changed by someone else while the Action was running.
|
|
847
|
+
*
|
|
848
|
+
* Log Safety: SAFE
|
|
849
|
+
*/
|
|
850
|
+
export interface ObjectChanged {
|
|
851
|
+
errorCode: "CONFLICT";
|
|
852
|
+
errorName: "ObjectChanged";
|
|
853
|
+
errorInstanceId: string;
|
|
854
|
+
parameters: {};
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* The requested object is not found, or the client token does not have access to it.
|
|
858
|
+
*
|
|
859
|
+
* Log Safety: UNSAFE
|
|
860
|
+
*/
|
|
861
|
+
export interface ObjectNotFound {
|
|
862
|
+
errorCode: "NOT_FOUND";
|
|
863
|
+
errorName: "ObjectNotFound";
|
|
864
|
+
errorInstanceId: string;
|
|
865
|
+
parameters: {
|
|
866
|
+
objectType: unknown;
|
|
867
|
+
primaryKey: unknown;
|
|
868
|
+
};
|
|
869
|
+
}
|
|
870
|
+
/**
|
|
871
|
+
* The requested object set is not found, or the client token does not have access to it.
|
|
872
|
+
*
|
|
873
|
+
* Log Safety: SAFE
|
|
874
|
+
*/
|
|
875
|
+
export interface ObjectSetNotFound {
|
|
876
|
+
errorCode: "NOT_FOUND";
|
|
877
|
+
errorName: "ObjectSetNotFound";
|
|
878
|
+
errorInstanceId: string;
|
|
879
|
+
parameters: {
|
|
880
|
+
objectSetRid: unknown;
|
|
881
|
+
};
|
|
882
|
+
}
|
|
883
|
+
/**
|
|
884
|
+
* There are more objects, but they cannot be returned by this API. Only 10,000 objects are available through this
|
|
885
|
+
API for a given request.
|
|
886
|
+
*
|
|
887
|
+
* Log Safety: SAFE
|
|
888
|
+
*/
|
|
889
|
+
export interface ObjectsExceededLimit {
|
|
890
|
+
errorCode: "INVALID_ARGUMENT";
|
|
891
|
+
errorName: "ObjectsExceededLimit";
|
|
892
|
+
errorInstanceId: string;
|
|
893
|
+
parameters: {};
|
|
894
|
+
}
|
|
895
|
+
/**
|
|
896
|
+
* The requested object type is not found, or the client token does not have access to it.
|
|
897
|
+
*
|
|
898
|
+
* Log Safety: UNSAFE
|
|
899
|
+
*/
|
|
900
|
+
export interface ObjectTypeNotFound {
|
|
901
|
+
errorCode: "NOT_FOUND";
|
|
902
|
+
errorName: "ObjectTypeNotFound";
|
|
903
|
+
errorInstanceId: string;
|
|
904
|
+
parameters: {
|
|
905
|
+
objectType: unknown;
|
|
906
|
+
objectTypeRid: unknown;
|
|
907
|
+
};
|
|
908
|
+
}
|
|
909
|
+
/**
|
|
910
|
+
* The requested object type is not synced into the ontology. Please reach out to your Ontology
|
|
911
|
+
Administrator to re-index the object type in Ontology Management Application.
|
|
912
|
+
*
|
|
913
|
+
* Log Safety: UNSAFE
|
|
914
|
+
*/
|
|
915
|
+
export interface ObjectTypeNotSynced {
|
|
916
|
+
errorCode: "CONFLICT";
|
|
917
|
+
errorName: "ObjectTypeNotSynced";
|
|
918
|
+
errorInstanceId: string;
|
|
919
|
+
parameters: {
|
|
920
|
+
objectType: unknown;
|
|
921
|
+
};
|
|
922
|
+
}
|
|
923
|
+
/**
|
|
924
|
+
* One or more of the requested object types are not synced into the ontology. Please reach out to your Ontology
|
|
925
|
+
Administrator to re-index the object type(s) in Ontology Management Application.
|
|
926
|
+
*
|
|
927
|
+
* Log Safety: UNSAFE
|
|
928
|
+
*/
|
|
929
|
+
export interface ObjectTypesNotSynced {
|
|
930
|
+
errorCode: "CONFLICT";
|
|
931
|
+
errorName: "ObjectTypesNotSynced";
|
|
932
|
+
errorInstanceId: string;
|
|
933
|
+
parameters: {
|
|
934
|
+
objectTypes: unknown;
|
|
935
|
+
};
|
|
936
|
+
}
|
|
937
|
+
/**
|
|
938
|
+
* The given Ontology API name is not unique. Use the Ontology RID in place of the Ontology API name.
|
|
939
|
+
*
|
|
940
|
+
* Log Safety: UNSAFE
|
|
941
|
+
*/
|
|
942
|
+
export interface OntologyApiNameNotUnique {
|
|
943
|
+
errorCode: "INVALID_ARGUMENT";
|
|
944
|
+
errorName: "OntologyApiNameNotUnique";
|
|
945
|
+
errorInstanceId: string;
|
|
946
|
+
parameters: {
|
|
947
|
+
ontologyApiName: unknown;
|
|
948
|
+
};
|
|
949
|
+
}
|
|
950
|
+
/**
|
|
951
|
+
* The number of edits to the Ontology exceeded the allowed limit.
|
|
952
|
+
This may happen because of the request or because the Action is modifying too many objects.
|
|
953
|
+
Please change the size of your request or contact the Ontology administrator.
|
|
954
|
+
*
|
|
955
|
+
* Log Safety: UNSAFE
|
|
956
|
+
*/
|
|
957
|
+
export interface OntologyEditsExceededLimit {
|
|
958
|
+
errorCode: "INVALID_ARGUMENT";
|
|
959
|
+
errorName: "OntologyEditsExceededLimit";
|
|
960
|
+
errorInstanceId: string;
|
|
961
|
+
parameters: {
|
|
962
|
+
editsCount: unknown;
|
|
963
|
+
editsLimit: unknown;
|
|
964
|
+
};
|
|
965
|
+
}
|
|
966
|
+
/**
|
|
967
|
+
* The requested Ontology is not found, or the client token does not have access to it.
|
|
968
|
+
*
|
|
969
|
+
* Log Safety: UNSAFE
|
|
970
|
+
*/
|
|
971
|
+
export interface OntologyNotFound {
|
|
972
|
+
errorCode: "NOT_FOUND";
|
|
973
|
+
errorName: "OntologyNotFound";
|
|
974
|
+
errorInstanceId: string;
|
|
975
|
+
parameters: {
|
|
976
|
+
ontologyRid: unknown;
|
|
977
|
+
apiName: unknown;
|
|
978
|
+
};
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
* The requested object type has been changed in the Ontology Manager and changes are currently being applied. Wait a
|
|
982
|
+
few seconds and try again.
|
|
983
|
+
*
|
|
984
|
+
* Log Safety: UNSAFE
|
|
985
|
+
*/
|
|
986
|
+
export interface OntologySyncing {
|
|
987
|
+
errorCode: "CONFLICT";
|
|
988
|
+
errorName: "OntologySyncing";
|
|
989
|
+
errorInstanceId: string;
|
|
990
|
+
parameters: {
|
|
991
|
+
objectType: unknown;
|
|
992
|
+
};
|
|
993
|
+
}
|
|
994
|
+
/**
|
|
995
|
+
* One or more requested object types have been changed in the Ontology Manager and changes are currently being
|
|
996
|
+
applied. Wait a few seconds and try again.
|
|
997
|
+
*
|
|
998
|
+
* Log Safety: UNSAFE
|
|
999
|
+
*/
|
|
1000
|
+
export interface OntologySyncingObjectTypes {
|
|
1001
|
+
errorCode: "CONFLICT";
|
|
1002
|
+
errorName: "OntologySyncingObjectTypes";
|
|
1003
|
+
errorInstanceId: string;
|
|
1004
|
+
parameters: {
|
|
1005
|
+
objectTypes: unknown;
|
|
1006
|
+
};
|
|
1007
|
+
}
|
|
1008
|
+
/**
|
|
1009
|
+
* The parameter object reference or parameter default value is not found, or the client token does not have access to it.
|
|
1010
|
+
*
|
|
1011
|
+
* Log Safety: UNSAFE
|
|
1012
|
+
*/
|
|
1013
|
+
export interface ParameterObjectNotFound {
|
|
1014
|
+
errorCode: "NOT_FOUND";
|
|
1015
|
+
errorName: "ParameterObjectNotFound";
|
|
1016
|
+
errorInstanceId: string;
|
|
1017
|
+
parameters: {
|
|
1018
|
+
objectType: unknown;
|
|
1019
|
+
primaryKey: unknown;
|
|
1020
|
+
};
|
|
1021
|
+
}
|
|
1022
|
+
/**
|
|
1023
|
+
* The parameter object set RID is not found, or the client token does not have access to it.
|
|
1024
|
+
*
|
|
1025
|
+
* Log Safety: SAFE
|
|
1026
|
+
*/
|
|
1027
|
+
export interface ParameterObjectSetRidNotFound {
|
|
1028
|
+
errorCode: "NOT_FOUND";
|
|
1029
|
+
errorName: "ParameterObjectSetRidNotFound";
|
|
1030
|
+
errorInstanceId: string;
|
|
1031
|
+
parameters: {
|
|
1032
|
+
objectSetRid: unknown;
|
|
1033
|
+
};
|
|
1034
|
+
}
|
|
1035
|
+
/**
|
|
1036
|
+
* The provided parameter ID was not found for the action. Please look at the configuredParameterIds field
|
|
1037
|
+
to see which ones are available.
|
|
1038
|
+
*
|
|
1039
|
+
* Log Safety: UNSAFE
|
|
1040
|
+
*/
|
|
1041
|
+
export interface ParametersNotFound {
|
|
1042
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1043
|
+
errorName: "ParametersNotFound";
|
|
1044
|
+
errorInstanceId: string;
|
|
1045
|
+
parameters: {
|
|
1046
|
+
actionType: unknown;
|
|
1047
|
+
unknownParameterIds: unknown;
|
|
1048
|
+
configuredParameterIds: unknown;
|
|
1049
|
+
};
|
|
1050
|
+
}
|
|
1051
|
+
/**
|
|
1052
|
+
* The type of the requested parameter is not currently supported by this API. If you need support for this,
|
|
1053
|
+
please reach out to Palantir Support.
|
|
1054
|
+
*
|
|
1055
|
+
* Log Safety: UNSAFE
|
|
1056
|
+
*/
|
|
1057
|
+
export interface ParameterTypeNotSupported {
|
|
1058
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1059
|
+
errorName: "ParameterTypeNotSupported";
|
|
1060
|
+
errorInstanceId: string;
|
|
1061
|
+
parameters: {
|
|
1062
|
+
parameterId: unknown;
|
|
1063
|
+
parameterBaseType: unknown;
|
|
1064
|
+
};
|
|
1065
|
+
}
|
|
1066
|
+
/**
|
|
1067
|
+
* The user does not have permission to parent attachments.
|
|
1068
|
+
*
|
|
1069
|
+
* Log Safety: SAFE
|
|
1070
|
+
*/
|
|
1071
|
+
export interface ParentAttachmentPermissionDenied {
|
|
1072
|
+
errorCode: "PERMISSION_DENIED";
|
|
1073
|
+
errorName: "ParentAttachmentPermissionDenied";
|
|
1074
|
+
errorInstanceId: string;
|
|
1075
|
+
parameters: {};
|
|
1076
|
+
}
|
|
1077
|
+
/**
|
|
1078
|
+
* Properties used in ordering must have the same ids. Temporary restriction imposed due to OSS limitations.
|
|
1079
|
+
*
|
|
1080
|
+
* Log Safety: UNSAFE
|
|
1081
|
+
*/
|
|
1082
|
+
export interface PropertiesHaveDifferentIds {
|
|
1083
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1084
|
+
errorName: "PropertiesHaveDifferentIds";
|
|
1085
|
+
errorInstanceId: string;
|
|
1086
|
+
parameters: {
|
|
1087
|
+
properties: unknown;
|
|
1088
|
+
};
|
|
1089
|
+
}
|
|
1090
|
+
/**
|
|
1091
|
+
* Results could not be filtered by the requested properties. Please mark the properties as Searchable and
|
|
1092
|
+
Selectable in the Ontology Manager to be able to filter on those properties. There may be a short delay
|
|
1093
|
+
between the time a property is marked Searchable and Selectable and when it can be used.
|
|
1094
|
+
*
|
|
1095
|
+
* Log Safety: UNSAFE
|
|
1096
|
+
*/
|
|
1097
|
+
export interface PropertiesNotFilterable {
|
|
1098
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1099
|
+
errorName: "PropertiesNotFilterable";
|
|
1100
|
+
errorInstanceId: string;
|
|
1101
|
+
parameters: {
|
|
1102
|
+
properties: unknown;
|
|
1103
|
+
};
|
|
1104
|
+
}
|
|
1105
|
+
/**
|
|
1106
|
+
* The requested properties are not found on the object type.
|
|
1107
|
+
*
|
|
1108
|
+
* Log Safety: UNSAFE
|
|
1109
|
+
*/
|
|
1110
|
+
export interface PropertiesNotFound {
|
|
1111
|
+
errorCode: "NOT_FOUND";
|
|
1112
|
+
errorName: "PropertiesNotFound";
|
|
1113
|
+
errorInstanceId: string;
|
|
1114
|
+
parameters: {
|
|
1115
|
+
objectType: unknown;
|
|
1116
|
+
properties: unknown;
|
|
1117
|
+
};
|
|
1118
|
+
}
|
|
1119
|
+
/**
|
|
1120
|
+
* Search is not enabled on the specified properties. Please mark the properties as Searchable
|
|
1121
|
+
in the Ontology Manager to enable search on them. There may be a short delay
|
|
1122
|
+
between the time a property is marked Searchable and when it can be used.
|
|
1123
|
+
*
|
|
1124
|
+
* Log Safety: UNSAFE
|
|
1125
|
+
*/
|
|
1126
|
+
export interface PropertiesNotSearchable {
|
|
1127
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1128
|
+
errorName: "PropertiesNotSearchable";
|
|
1129
|
+
errorInstanceId: string;
|
|
1130
|
+
parameters: {
|
|
1131
|
+
propertyApiNames: unknown;
|
|
1132
|
+
};
|
|
1133
|
+
}
|
|
1134
|
+
/**
|
|
1135
|
+
* Results could not be ordered by the requested properties. Please mark the properties as Searchable and
|
|
1136
|
+
Sortable in the Ontology Manager to enable their use in orderBy parameters. There may be a short delay
|
|
1137
|
+
between the time a property is set to Searchable and Sortable and when it can be used.
|
|
1138
|
+
*
|
|
1139
|
+
* Log Safety: UNSAFE
|
|
1140
|
+
*/
|
|
1141
|
+
export interface PropertiesNotSortable {
|
|
1142
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1143
|
+
errorName: "PropertiesNotSortable";
|
|
1144
|
+
errorInstanceId: string;
|
|
1145
|
+
parameters: {
|
|
1146
|
+
properties: unknown;
|
|
1147
|
+
};
|
|
1148
|
+
}
|
|
1149
|
+
/**
|
|
1150
|
+
* A property that was required to have an API name, such as a primary key, is missing one. You can set an API
|
|
1151
|
+
name for it using the Ontology Manager.
|
|
1152
|
+
*
|
|
1153
|
+
* Log Safety: UNSAFE
|
|
1154
|
+
*/
|
|
1155
|
+
export interface PropertyApiNameNotFound {
|
|
1156
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1157
|
+
errorName: "PropertyApiNameNotFound";
|
|
1158
|
+
errorInstanceId: string;
|
|
1159
|
+
parameters: {
|
|
1160
|
+
propertyId: unknown;
|
|
1161
|
+
propertyBaseType: unknown;
|
|
1162
|
+
};
|
|
1163
|
+
}
|
|
1164
|
+
/**
|
|
1165
|
+
* The type of the requested property is not currently supported by this API. If you need support for this,
|
|
1166
|
+
please reach out to Palantir Support.
|
|
1167
|
+
*
|
|
1168
|
+
* Log Safety: UNSAFE
|
|
1169
|
+
*/
|
|
1170
|
+
export interface PropertyBaseTypeNotSupported {
|
|
1171
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1172
|
+
errorName: "PropertyBaseTypeNotSupported";
|
|
1173
|
+
errorInstanceId: string;
|
|
1174
|
+
parameters: {
|
|
1175
|
+
objectType: unknown;
|
|
1176
|
+
property: unknown;
|
|
1177
|
+
propertyBaseType: unknown;
|
|
1178
|
+
};
|
|
1179
|
+
}
|
|
1180
|
+
/**
|
|
1181
|
+
* At least one of the requested property filters are not supported. See the documentation of PropertyFilter for
|
|
1182
|
+
a list of supported property filters.
|
|
1183
|
+
*
|
|
1184
|
+
* Log Safety: UNSAFE
|
|
1185
|
+
*/
|
|
1186
|
+
export interface PropertyFiltersNotSupported {
|
|
1187
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1188
|
+
errorName: "PropertyFiltersNotSupported";
|
|
1189
|
+
errorInstanceId: string;
|
|
1190
|
+
parameters: {
|
|
1191
|
+
propertyFilters: unknown;
|
|
1192
|
+
property: unknown;
|
|
1193
|
+
};
|
|
1194
|
+
}
|
|
1195
|
+
/**
|
|
1196
|
+
* Failed to find a provided property for a given object.
|
|
1197
|
+
*
|
|
1198
|
+
* Log Safety: SAFE
|
|
1199
|
+
*/
|
|
1200
|
+
export interface PropertyNotFound {
|
|
1201
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1202
|
+
errorName: "PropertyNotFound";
|
|
1203
|
+
errorInstanceId: string;
|
|
1204
|
+
parameters: {};
|
|
1205
|
+
}
|
|
1206
|
+
/**
|
|
1207
|
+
* The provided propertyIdentifier is not configured with an embedding model in the ontology.
|
|
1208
|
+
*
|
|
1209
|
+
* Log Safety: SAFE
|
|
1210
|
+
*/
|
|
1211
|
+
export interface PropertyTypeDoesNotSupportNearestNeighbors {
|
|
1212
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1213
|
+
errorName: "PropertyTypeDoesNotSupportNearestNeighbors";
|
|
1214
|
+
errorInstanceId: string;
|
|
1215
|
+
parameters: {};
|
|
1216
|
+
}
|
|
1217
|
+
/**
|
|
1218
|
+
* The requested property type is not found, or the client token does not have access to it.
|
|
1219
|
+
*
|
|
1220
|
+
* Log Safety: UNSAFE
|
|
1221
|
+
*/
|
|
1222
|
+
export interface PropertyTypeNotFound {
|
|
1223
|
+
errorCode: "NOT_FOUND";
|
|
1224
|
+
errorName: "PropertyTypeNotFound";
|
|
1225
|
+
errorInstanceId: string;
|
|
1226
|
+
parameters: {
|
|
1227
|
+
objectTypeApiName: unknown;
|
|
1228
|
+
propertyApiName: unknown;
|
|
1229
|
+
};
|
|
1230
|
+
}
|
|
1231
|
+
/**
|
|
1232
|
+
* The search on the property types are not supported. See the Search Objects documentation for
|
|
1233
|
+
a list of supported search queries on different property types.
|
|
1234
|
+
*
|
|
1235
|
+
* Log Safety: UNSAFE
|
|
1236
|
+
*/
|
|
1237
|
+
export interface PropertyTypesSearchNotSupported {
|
|
1238
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1239
|
+
errorName: "PropertyTypesSearchNotSupported";
|
|
1240
|
+
errorInstanceId: string;
|
|
1241
|
+
parameters: {
|
|
1242
|
+
parameters: unknown;
|
|
1243
|
+
};
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
* The authored Query failed to execute because of a user induced error. The message argument
|
|
1247
|
+
is meant to be displayed to the user.
|
|
1248
|
+
*
|
|
1249
|
+
* Log Safety: UNSAFE
|
|
1250
|
+
*/
|
|
1251
|
+
export interface QueryEncounteredUserFacingError {
|
|
1252
|
+
errorCode: "CONFLICT";
|
|
1253
|
+
errorName: "QueryEncounteredUserFacingError";
|
|
1254
|
+
errorInstanceId: string;
|
|
1255
|
+
parameters: {
|
|
1256
|
+
functionRid: unknown;
|
|
1257
|
+
functionVersion: unknown;
|
|
1258
|
+
message: unknown;
|
|
1259
|
+
};
|
|
1260
|
+
}
|
|
1261
|
+
/**
|
|
1262
|
+
* Memory limits were exceeded for the Query execution.
|
|
1263
|
+
*
|
|
1264
|
+
* Log Safety: UNSAFE
|
|
1265
|
+
*/
|
|
1266
|
+
export interface QueryMemoryExceededLimit {
|
|
1267
|
+
errorCode: "TIMEOUT";
|
|
1268
|
+
errorName: "QueryMemoryExceededLimit";
|
|
1269
|
+
errorInstanceId: string;
|
|
1270
|
+
parameters: {
|
|
1271
|
+
functionRid: unknown;
|
|
1272
|
+
functionVersion: unknown;
|
|
1273
|
+
};
|
|
1274
|
+
}
|
|
1275
|
+
/**
|
|
1276
|
+
* The query is not found, or the user does not have access to it.
|
|
1277
|
+
*
|
|
1278
|
+
* Log Safety: UNSAFE
|
|
1279
|
+
*/
|
|
1280
|
+
export interface QueryNotFound {
|
|
1281
|
+
errorCode: "NOT_FOUND";
|
|
1282
|
+
errorName: "QueryNotFound";
|
|
1283
|
+
errorInstanceId: string;
|
|
1284
|
+
parameters: {
|
|
1285
|
+
query: unknown;
|
|
1286
|
+
};
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* The authored Query failed to execute because of a runtime error.
|
|
1290
|
+
*
|
|
1291
|
+
* Log Safety: UNSAFE
|
|
1292
|
+
*/
|
|
1293
|
+
export interface QueryRuntimeError {
|
|
1294
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1295
|
+
errorName: "QueryRuntimeError";
|
|
1296
|
+
errorInstanceId: string;
|
|
1297
|
+
parameters: {
|
|
1298
|
+
functionRid: unknown;
|
|
1299
|
+
functionVersion: unknown;
|
|
1300
|
+
message: unknown;
|
|
1301
|
+
stacktrace: unknown;
|
|
1302
|
+
parameters: unknown;
|
|
1303
|
+
};
|
|
1304
|
+
}
|
|
1305
|
+
/**
|
|
1306
|
+
* Time limits were exceeded for the Query execution.
|
|
1307
|
+
*
|
|
1308
|
+
* Log Safety: UNSAFE
|
|
1309
|
+
*/
|
|
1310
|
+
export interface QueryTimeExceededLimit {
|
|
1311
|
+
errorCode: "TIMEOUT";
|
|
1312
|
+
errorName: "QueryTimeExceededLimit";
|
|
1313
|
+
errorInstanceId: string;
|
|
1314
|
+
parameters: {
|
|
1315
|
+
functionRid: unknown;
|
|
1316
|
+
functionVersion: unknown;
|
|
1317
|
+
};
|
|
1318
|
+
}
|
|
1319
|
+
/**
|
|
1320
|
+
* The dimensions of the provided vector don't match the dimensions of the embedding model being queried.
|
|
1321
|
+
*
|
|
1322
|
+
* Log Safety: SAFE
|
|
1323
|
+
*/
|
|
1324
|
+
export interface SearchVectorDimensionsDiffer {
|
|
1325
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1326
|
+
errorName: "SearchVectorDimensionsDiffer";
|
|
1327
|
+
errorInstanceId: string;
|
|
1328
|
+
parameters: {};
|
|
1329
|
+
}
|
|
1330
|
+
/**
|
|
1331
|
+
* The requested shared property types are not present on every object type.
|
|
1332
|
+
*
|
|
1333
|
+
* Log Safety: UNSAFE
|
|
1334
|
+
*/
|
|
1335
|
+
export interface SharedPropertiesNotFound {
|
|
1336
|
+
errorCode: "NOT_FOUND";
|
|
1337
|
+
errorName: "SharedPropertiesNotFound";
|
|
1338
|
+
errorInstanceId: string;
|
|
1339
|
+
parameters: {
|
|
1340
|
+
objectType: unknown;
|
|
1341
|
+
missingSharedProperties: unknown;
|
|
1342
|
+
};
|
|
1343
|
+
}
|
|
1344
|
+
/**
|
|
1345
|
+
* The requested shared property type is not found, or the client token does not have access to it.
|
|
1346
|
+
*
|
|
1347
|
+
* Log Safety: UNSAFE
|
|
1348
|
+
*/
|
|
1349
|
+
export interface SharedPropertyTypeNotFound {
|
|
1350
|
+
errorCode: "NOT_FOUND";
|
|
1351
|
+
errorName: "SharedPropertyTypeNotFound";
|
|
1352
|
+
errorInstanceId: string;
|
|
1353
|
+
parameters: {
|
|
1354
|
+
apiName: unknown;
|
|
1355
|
+
rid: unknown;
|
|
1356
|
+
};
|
|
1357
|
+
}
|
|
1358
|
+
/**
|
|
1359
|
+
* The value of numNeighbors must be in the range 1 <= numNeighbors <= 500.
|
|
1360
|
+
*
|
|
1361
|
+
* Log Safety: SAFE
|
|
1362
|
+
*/
|
|
1363
|
+
export interface TooManyNearestNeighborsRequested {
|
|
1364
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1365
|
+
errorName: "TooManyNearestNeighborsRequested";
|
|
1366
|
+
errorInstanceId: string;
|
|
1367
|
+
parameters: {};
|
|
1368
|
+
}
|
|
1369
|
+
/**
|
|
1370
|
+
* The provided parameters were not found. Please look at the knownParameters field
|
|
1371
|
+
to see which ones are available.
|
|
1372
|
+
*
|
|
1373
|
+
* Log Safety: UNSAFE
|
|
1374
|
+
*/
|
|
1375
|
+
export interface UnknownParameter {
|
|
1376
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1377
|
+
errorName: "UnknownParameter";
|
|
1378
|
+
errorInstanceId: string;
|
|
1379
|
+
parameters: {
|
|
1380
|
+
unknownParameters: unknown;
|
|
1381
|
+
expectedParameters: unknown;
|
|
1382
|
+
};
|
|
1383
|
+
}
|
|
1384
|
+
/**
|
|
1385
|
+
* The requested object set is not supported.
|
|
1386
|
+
*
|
|
1387
|
+
* Log Safety: SAFE
|
|
1388
|
+
*/
|
|
1389
|
+
export interface UnsupportedObjectSet {
|
|
1390
|
+
errorCode: "INVALID_ARGUMENT";
|
|
1391
|
+
errorName: "UnsupportedObjectSet";
|
|
1392
|
+
errorInstanceId: string;
|
|
1393
|
+
parameters: {};
|
|
1394
|
+
}
|
|
1395
|
+
/**
|
|
1396
|
+
* The provided token does not have permission to view any data sources backing this object type. Ensure the object
|
|
1397
|
+
type has backing data sources configured and visible.
|
|
1398
|
+
*
|
|
1399
|
+
* Log Safety: UNSAFE
|
|
1400
|
+
*/
|
|
1401
|
+
export interface ViewObjectPermissionDenied {
|
|
1402
|
+
errorCode: "PERMISSION_DENIED";
|
|
1403
|
+
errorName: "ViewObjectPermissionDenied";
|
|
1404
|
+
errorInstanceId: string;
|
|
1405
|
+
parameters: {
|
|
1406
|
+
objectType: unknown;
|
|
1407
|
+
};
|
|
1408
|
+
}
|
|
4
1409
|
//# sourceMappingURL=_errors.d.ts.map
|