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