@osdk/internal.foundry.ontologies 0.2.0-beta.6 → 0.2.0-beta.7

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @osdk/internal.foundry.ontologies
2
2
 
3
+ ## 0.2.0-beta.7
4
+
5
+ ### Minor Changes
6
+
7
+ - 5d6d5ab: Internally refactored to support new API versions
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [1252d94]
12
+ - Updated dependencies [5d6d5ab]
13
+ - @osdk/internal.foundry.core@0.2.0-beta.7
14
+ - @osdk/shared.client@1.0.0-beta.0
15
+ - @osdk/shared.net.platformapi@0.3.0-beta.0
16
+
3
17
  ## 0.2.0-beta.6
4
18
 
5
19
  ### Patch Changes
@@ -1,1146 +1,4 @@
1
1
  export type LooselyBrandedString<T extends string> = string & {
2
2
  __LOOSE_BRAND?: T;
3
3
  };
4
- /**
5
- * Aggregation value does not conform to the expected underlying type.
6
- *
7
- * Log Safety: UNSAFE
8
- */
9
- export interface InvalidAggregationRangeValue {
10
- errorCode: "INVALID_ARGUMENT";
11
- errorName: "InvalidAggregationRangeValue";
12
- errorInstanceId: string;
13
- parameters: {
14
- property: unknown;
15
- objectType: unknown;
16
- propertyBaseType: unknown;
17
- };
18
- }
19
- /**
20
- * At least one of requested filters are malformed. Please look at the documentation of PropertyFilter.
21
- *
22
- * Log Safety: UNSAFE
23
- */
24
- export interface MalformedPropertyFilters {
25
- errorCode: "INVALID_ARGUMENT";
26
- errorName: "MalformedPropertyFilters";
27
- errorInstanceId: string;
28
- parameters: {
29
- malformedPropertyFilter: unknown;
30
- };
31
- }
32
- /**
33
- * Duration groupBy value is invalid. Units larger than day must have value 1 and date properties do not support
34
- filtering on units smaller than day. As examples, neither bucketing by every two weeks nor bucketing a date by
35
- every two hours are allowed.
36
- *
37
- * Log Safety: SAFE
38
- */
39
- export interface InvalidDurationGroupByValue {
40
- errorCode: "INVALID_ARGUMENT";
41
- errorName: "InvalidDurationGroupByValue";
42
- errorInstanceId: string;
43
- parameters: {};
44
- }
45
- /**
46
- * Results could not be filtered by the requested properties. Please mark the properties as Searchable and
47
- Selectable in the Ontology Manager to be able to filter on those properties. There may be a short delay
48
- between the time a property is marked Searchable and Selectable and when it can be used.
49
- *
50
- * Log Safety: UNSAFE
51
- */
52
- export interface PropertiesNotFilterable {
53
- errorCode: "INVALID_ARGUMENT";
54
- errorName: "PropertiesNotFilterable";
55
- errorInstanceId: string;
56
- parameters: {
57
- properties: unknown;
58
- };
59
- }
60
- /**
61
- * The provided parameter ID was not found for the action. Please look at the configuredParameterIds field
62
- to see which ones are available.
63
- *
64
- * Log Safety: UNSAFE
65
- */
66
- export interface ParametersNotFound {
67
- errorCode: "INVALID_ARGUMENT";
68
- errorName: "ParametersNotFound";
69
- errorInstanceId: string;
70
- parameters: {
71
- actionType: unknown;
72
- unknownParameterIds: unknown;
73
- configuredParameterIds: unknown;
74
- };
75
- }
76
- /**
77
- * Log Safety: SAFE
78
- */
79
- export interface ApplyActionFailed {
80
- errorCode: "INVALID_ARGUMENT";
81
- errorName: "ApplyActionFailed";
82
- errorInstanceId: string;
83
- parameters: {};
84
- }
85
- /**
86
- * The search on the property types are not supported. See the Search Objects documentation for
87
- a list of supported search queries on different property types.
88
- *
89
- * Log Safety: UNSAFE
90
- */
91
- export interface PropertyTypesSearchNotSupported {
92
- errorCode: "INVALID_ARGUMENT";
93
- errorName: "PropertyTypesSearchNotSupported";
94
- errorInstanceId: string;
95
- parameters: {
96
- parameters: unknown;
97
- };
98
- }
99
- /**
100
- * The value of the given parameter is invalid. See the documentation of DataValue for details on
101
- how parameters are represented.
102
- *
103
- * Log Safety: UNSAFE
104
- */
105
- export interface InvalidParameterValue {
106
- errorCode: "INVALID_ARGUMENT";
107
- errorName: "InvalidParameterValue";
108
- errorInstanceId: string;
109
- parameters: {
110
- parameterBaseType: unknown;
111
- parameterDataType: unknown;
112
- parameterId: unknown;
113
- parameterValue: unknown;
114
- };
115
- }
116
- /**
117
- * The requested object set is not supported.
118
- *
119
- * Log Safety: SAFE
120
- */
121
- export interface UnsupportedObjectSet {
122
- errorCode: "INVALID_ARGUMENT";
123
- errorName: "UnsupportedObjectSet";
124
- errorInstanceId: string;
125
- parameters: {};
126
- }
127
- /**
128
- * The requested shared property type is not found, or the client token does not have access to it.
129
- *
130
- * Log Safety: UNSAFE
131
- */
132
- export interface SharedPropertyTypeNotFound {
133
- errorCode: "NOT_FOUND";
134
- errorName: "SharedPropertyTypeNotFound";
135
- errorInstanceId: string;
136
- parameters: {
137
- apiName: unknown;
138
- rid: unknown;
139
- };
140
- }
141
- /**
142
- * Time limits were exceeded for the Query execution.
143
- *
144
- * Log Safety: UNSAFE
145
- */
146
- export interface QueryTimeExceededLimit {
147
- errorCode: "TIMEOUT";
148
- errorName: "QueryTimeExceededLimit";
149
- errorInstanceId: string;
150
- parameters: {
151
- functionRid: unknown;
152
- functionVersion: unknown;
153
- };
154
- }
155
- /**
156
- * Primary keys consisting of multiple properties are not supported by this API. If you need support for this,
157
- please reach out to Palantir Support.
158
- *
159
- * Log Safety: UNSAFE
160
- */
161
- export interface CompositePrimaryKeyNotSupported {
162
- errorCode: "INVALID_ARGUMENT";
163
- errorName: "CompositePrimaryKeyNotSupported";
164
- errorInstanceId: string;
165
- parameters: {
166
- objectType: unknown;
167
- primaryKey: unknown;
168
- };
169
- }
170
- /**
171
- * The type of the requested property is not currently supported by this API. If you need support for this,
172
- please reach out to Palantir Support.
173
- *
174
- * Log Safety: UNSAFE
175
- */
176
- export interface PropertyBaseTypeNotSupported {
177
- errorCode: "INVALID_ARGUMENT";
178
- errorName: "PropertyBaseTypeNotSupported";
179
- errorInstanceId: string;
180
- parameters: {
181
- objectType: unknown;
182
- property: unknown;
183
- propertyBaseType: unknown;
184
- };
185
- }
186
- /**
187
- * The authored Query failed to execute because of a runtime error.
188
- *
189
- * Log Safety: UNSAFE
190
- */
191
- export interface QueryRuntimeError {
192
- errorCode: "INVALID_ARGUMENT";
193
- errorName: "QueryRuntimeError";
194
- errorInstanceId: string;
195
- parameters: {
196
- functionRid: unknown;
197
- functionVersion: unknown;
198
- message: unknown;
199
- stacktrace: unknown;
200
- parameters: unknown;
201
- };
202
- }
203
- /**
204
- * Search is not enabled on the specified properties. Please mark the properties as Searchable
205
- in the Ontology Manager to enable search on them. There may be a short delay
206
- between the time a property is marked Searchable and when it can be used.
207
- *
208
- * Log Safety: UNSAFE
209
- */
210
- export interface PropertiesNotSearchable {
211
- errorCode: "INVALID_ARGUMENT";
212
- errorName: "PropertiesNotSearchable";
213
- errorInstanceId: string;
214
- parameters: {
215
- propertyApiNames: unknown;
216
- };
217
- }
218
- /**
219
- * The requested attachment is not found, or the client token does not have access to it.
220
- Attachments that are not attached to any objects are deleted after two weeks.
221
- Attachments that have not been attached to an object can only be viewed by the user who uploaded them.
222
- Attachments that have been attached to an object can be viewed by users who can view the object.
223
- *
224
- * Log Safety: SAFE
225
- */
226
- export interface AttachmentNotFound {
227
- errorCode: "NOT_FOUND";
228
- errorName: "AttachmentNotFound";
229
- errorInstanceId: string;
230
- parameters: {
231
- attachmentRid: unknown;
232
- };
233
- }
234
- /**
235
- * The requested object type is not found, or the client token does not have access to it.
236
- *
237
- * Log Safety: UNSAFE
238
- */
239
- export interface ObjectTypeNotFound {
240
- errorCode: "NOT_FOUND";
241
- errorName: "ObjectTypeNotFound";
242
- errorInstanceId: string;
243
- parameters: {
244
- objectType: unknown;
245
- objectTypeRid: unknown;
246
- };
247
- }
248
- /**
249
- * The user does not have permission to parent attachments.
250
- *
251
- * Log Safety: SAFE
252
- */
253
- export interface ParentAttachmentPermissionDenied {
254
- errorCode: "PERMISSION_DENIED";
255
- errorName: "ParentAttachmentPermissionDenied";
256
- errorInstanceId: string;
257
- parameters: {};
258
- }
259
- /**
260
- * The provided value for a group id must be a UUID.
261
- *
262
- * Log Safety: UNSAFE
263
- */
264
- export interface InvalidGroupId {
265
- errorCode: "INVALID_ARGUMENT";
266
- errorName: "InvalidGroupId";
267
- errorInstanceId: string;
268
- parameters: {
269
- groupId: unknown;
270
- };
271
- }
272
- /**
273
- * The requested object type has been changed in the Ontology Manager and changes are currently being applied. Wait a
274
- few seconds and try again.
275
- *
276
- * Log Safety: UNSAFE
277
- */
278
- export interface OntologySyncing {
279
- errorCode: "CONFLICT";
280
- errorName: "OntologySyncing";
281
- errorInstanceId: string;
282
- parameters: {
283
- objectType: unknown;
284
- };
285
- }
286
- /**
287
- * Invalid property type for duration groupBy.
288
- *
289
- * Log Safety: UNSAFE
290
- */
291
- export interface InvalidDurationGroupByPropertyType {
292
- errorCode: "INVALID_ARGUMENT";
293
- errorName: "InvalidDurationGroupByPropertyType";
294
- errorInstanceId: string;
295
- parameters: {
296
- property: unknown;
297
- objectType: unknown;
298
- propertyBaseType: unknown;
299
- };
300
- }
301
- /**
302
- * The action is not found, or the user does not have access to it.
303
- *
304
- * Log Safety: SAFE
305
- */
306
- export interface ActionNotFound {
307
- errorCode: "NOT_FOUND";
308
- errorName: "ActionNotFound";
309
- errorInstanceId: string;
310
- parameters: {
311
- actionRid: unknown;
312
- };
313
- }
314
- /**
315
- * The parameter object set RID is not found, or the client token does not have access to it.
316
- *
317
- * Log Safety: SAFE
318
- */
319
- export interface ParameterObjectSetRidNotFound {
320
- errorCode: "NOT_FOUND";
321
- errorName: "ParameterObjectSetRidNotFound";
322
- errorInstanceId: string;
323
- parameters: {
324
- objectSetRid: unknown;
325
- };
326
- }
327
- /**
328
- * Aggregation ordering can only be applied to metrics with exactly one groupBy clause.
329
- *
330
- * Log Safety: SAFE
331
- */
332
- export interface InvalidAggregationOrdering {
333
- errorCode: "INVALID_ARGUMENT";
334
- errorName: "InvalidAggregationOrdering";
335
- errorInstanceId: string;
336
- parameters: {};
337
- }
338
- /**
339
- * The object the user is attempting to create already exists.
340
- *
341
- * Log Safety: SAFE
342
- */
343
- export interface ObjectAlreadyExists {
344
- errorCode: "CONFLICT";
345
- errorName: "ObjectAlreadyExists";
346
- errorInstanceId: string;
347
- parameters: {};
348
- }
349
- /**
350
- * The requested object set is not found, or the client token does not have access to it.
351
- *
352
- * Log Safety: SAFE
353
- */
354
- export interface ObjectSetNotFound {
355
- errorCode: "NOT_FOUND";
356
- errorName: "ObjectSetNotFound";
357
- errorInstanceId: string;
358
- parameters: {
359
- objectSetRid: unknown;
360
- };
361
- }
362
- /**
363
- * The link type is not found, or the user does not have access to it.
364
- *
365
- * Log Safety: UNSAFE
366
- */
367
- export interface LinkTypeNotFound {
368
- errorCode: "NOT_FOUND";
369
- errorName: "LinkTypeNotFound";
370
- errorInstanceId: string;
371
- parameters: {
372
- objectType: unknown;
373
- linkType: unknown;
374
- };
375
- }
376
- /**
377
- * The specified query range filter is invalid.
378
- *
379
- * Log Safety: UNSAFE
380
- */
381
- export interface InvalidRangeQuery {
382
- errorCode: "INVALID_ARGUMENT";
383
- errorName: "InvalidRangeQuery";
384
- errorInstanceId: string;
385
- parameters: {
386
- lt: unknown;
387
- gt: unknown;
388
- lte: unknown;
389
- gte: unknown;
390
- field: unknown;
391
- };
392
- }
393
- /**
394
- * The parameter object reference or parameter default value is not found, or the client token does not have access to it.
395
- *
396
- * Log Safety: UNSAFE
397
- */
398
- export interface ActionParameterObjectNotFound {
399
- errorCode: "NOT_FOUND";
400
- errorName: "ActionParameterObjectNotFound";
401
- errorInstanceId: string;
402
- parameters: {
403
- parameterId: unknown;
404
- };
405
- }
406
- /**
407
- * The value of the given property is invalid. See the documentation of PropertyValue for details on
408
- how properties are represented.
409
- *
410
- * Log Safety: UNSAFE
411
- */
412
- export interface InvalidPropertyValue {
413
- errorCode: "INVALID_ARGUMENT";
414
- errorName: "InvalidPropertyValue";
415
- errorInstanceId: string;
416
- parameters: {
417
- propertyBaseType: unknown;
418
- property: unknown;
419
- propertyValue: unknown;
420
- };
421
- }
422
- /**
423
- * Results could not be ordered by the requested properties. Please mark the properties as Searchable and
424
- Sortable in the Ontology Manager to enable their use in orderBy parameters. There may be a short delay
425
- between the time a property is set to Searchable and Sortable and when it can be used.
426
- *
427
- * Log Safety: UNSAFE
428
- */
429
- export interface PropertiesNotSortable {
430
- errorCode: "INVALID_ARGUMENT";
431
- errorName: "PropertiesNotSortable";
432
- errorInstanceId: string;
433
- parameters: {
434
- properties: unknown;
435
- };
436
- }
437
- /**
438
- * An object used by this Action was changed by someone else while the Action was running.
439
- *
440
- * Log Safety: SAFE
441
- */
442
- export interface ObjectChanged {
443
- errorCode: "CONFLICT";
444
- errorName: "ObjectChanged";
445
- errorInstanceId: string;
446
- parameters: {};
447
- }
448
- /**
449
- * Log Safety: UNSAFE
450
- */
451
- export interface FunctionExecutionTimedOut {
452
- errorCode: "TIMEOUT";
453
- errorName: "FunctionExecutionTimedOut";
454
- errorInstanceId: string;
455
- parameters: {
456
- functionRid: unknown;
457
- functionVersion: unknown;
458
- };
459
- }
460
- /**
461
- * The value of the given field does not match the expected pattern. For example, an Ontology object property id
462
- should be written properties.id.
463
- *
464
- * Log Safety: UNSAFE
465
- */
466
- export interface InvalidFields {
467
- errorCode: "INVALID_ARGUMENT";
468
- errorName: "InvalidFields";
469
- errorInstanceId: string;
470
- parameters: {
471
- properties: unknown;
472
- };
473
- }
474
- /**
475
- * The value of the given parameter is invalid. See the documentation of DataValue for details on
476
- how parameters are represented.
477
- *
478
- * Log Safety: UNSAFE
479
- */
480
- export interface InvalidQueryParameterValue {
481
- errorCode: "INVALID_ARGUMENT";
482
- errorName: "InvalidQueryParameterValue";
483
- errorInstanceId: string;
484
- parameters: {
485
- parameterDataType: unknown;
486
- parameterId: unknown;
487
- parameterValue: unknown;
488
- };
489
- }
490
- /**
491
- * The action type is not found, or the user does not have access to it.
492
- *
493
- * Log Safety: UNSAFE
494
- */
495
- export interface ActionTypeNotFound {
496
- errorCode: "NOT_FOUND";
497
- errorName: "ActionTypeNotFound";
498
- errorInstanceId: string;
499
- parameters: {
500
- actionType: unknown;
501
- rid: unknown;
502
- };
503
- }
504
- /**
505
- * The requested object type is not synced into the ontology. Please reach out to your Ontology
506
- Administrator to re-index the object type in Ontology Management Application.
507
- *
508
- * Log Safety: UNSAFE
509
- */
510
- export interface ObjectTypeNotSynced {
511
- errorCode: "CONFLICT";
512
- errorName: "ObjectTypeNotSynced";
513
- errorInstanceId: string;
514
- parameters: {
515
- objectType: unknown;
516
- };
517
- }
518
- /**
519
- * The number of edits to the Ontology exceeded the allowed limit.
520
- This may happen because of the request or because the Action is modifying too many objects.
521
- Please change the size of your request or contact the Ontology administrator.
522
- *
523
- * Log Safety: UNSAFE
524
- */
525
- export interface OntologyEditsExceededLimit {
526
- errorCode: "INVALID_ARGUMENT";
527
- errorName: "OntologyEditsExceededLimit";
528
- errorInstanceId: string;
529
- parameters: {
530
- editsCount: unknown;
531
- editsLimit: unknown;
532
- };
533
- }
534
- /**
535
- * The number of groups in the aggregations grouping exceeded the allowed limit. This can typically be fixed by
536
- adjusting your query to reduce the number of groups created by your aggregation. For instance:
537
-
538
- If you are using multiple groupBy clauses, try reducing the number of clauses.
539
- If you are using a groupBy clause with a high cardinality property, try filtering the data first
540
- to reduce the number of groups.
541
- *
542
- * Log Safety: SAFE
543
- */
544
- export interface AggregationGroupCountExceededLimit {
545
- errorCode: "INVALID_ARGUMENT";
546
- errorName: "AggregationGroupCountExceededLimit";
547
- errorInstanceId: string;
548
- parameters: {
549
- groupsCount: unknown;
550
- groupsLimit: unknown;
551
- };
552
- }
553
- /**
554
- * The Content-Type cannot be inferred from the request content and filename.
555
- Please check your request content and filename to ensure they are compatible.
556
- *
557
- * Log Safety: SAFE
558
- */
559
- export interface InvalidContentType {
560
- errorCode: "INVALID_ARGUMENT";
561
- errorName: "InvalidContentType";
562
- errorInstanceId: string;
563
- parameters: {};
564
- }
565
- /**
566
- * The requested properties are not found on the object type.
567
- *
568
- * Log Safety: UNSAFE
569
- */
570
- export interface PropertiesNotFound {
571
- errorCode: "NOT_FOUND";
572
- errorName: "PropertiesNotFound";
573
- errorInstanceId: string;
574
- parameters: {
575
- objectType: unknown;
576
- properties: unknown;
577
- };
578
- }
579
- /**
580
- * Log Safety: UNSAFE
581
- */
582
- export interface FunctionInvalidInput {
583
- errorCode: "INVALID_ARGUMENT";
584
- errorName: "FunctionInvalidInput";
585
- errorInstanceId: string;
586
- parameters: {
587
- functionRid: unknown;
588
- functionVersion: unknown;
589
- };
590
- }
591
- /**
592
- * The requested sort order of one or more properties is invalid. Valid sort orders are 'asc' or 'desc'. Sort
593
- order can also be omitted, and defaults to 'asc'.
594
- *
595
- * Log Safety: UNSAFE
596
- */
597
- export interface InvalidSortOrder {
598
- errorCode: "INVALID_ARGUMENT";
599
- errorName: "InvalidSortOrder";
600
- errorInstanceId: string;
601
- parameters: {
602
- invalidSortOrder: unknown;
603
- };
604
- }
605
- /**
606
- * The provided filters cannot be used together.
607
- *
608
- * Log Safety: UNSAFE
609
- */
610
- export interface InvalidPropertyFiltersCombination {
611
- errorCode: "INVALID_ARGUMENT";
612
- errorName: "InvalidPropertyFiltersCombination";
613
- errorInstanceId: string;
614
- parameters: {
615
- propertyFilters: unknown;
616
- property: unknown;
617
- };
618
- }
619
- /**
620
- * There are more objects, but they cannot be returned by this API. Only 10,000 objects are available through this
621
- API for a given request.
622
- *
623
- * Log Safety: SAFE
624
- */
625
- export interface ObjectsExceededLimit {
626
- errorCode: "INVALID_ARGUMENT";
627
- errorName: "ObjectsExceededLimit";
628
- errorInstanceId: string;
629
- parameters: {};
630
- }
631
- /**
632
- * The requested sort order includes duplicate properties.
633
- *
634
- * Log Safety: UNSAFE
635
- */
636
- export interface DuplicateOrderBy {
637
- errorCode: "INVALID_ARGUMENT";
638
- errorName: "DuplicateOrderBy";
639
- errorInstanceId: string;
640
- parameters: {
641
- properties: unknown;
642
- };
643
- }
644
- /**
645
- * The authored function failed to execute because of a user induced error. The message argument
646
- is meant to be displayed to the user.
647
- *
648
- * Log Safety: UNSAFE
649
- */
650
- export interface FunctionEncounteredUserFacingError {
651
- errorCode: "INVALID_ARGUMENT";
652
- errorName: "FunctionEncounteredUserFacingError";
653
- errorInstanceId: string;
654
- parameters: {
655
- functionRid: unknown;
656
- functionVersion: unknown;
657
- message: unknown;
658
- };
659
- }
660
- /**
661
- * The provided value for a user id must be a UUID.
662
- *
663
- * Log Safety: UNSAFE
664
- */
665
- export interface InvalidUserId {
666
- errorCode: "INVALID_ARGUMENT";
667
- errorName: "InvalidUserId";
668
- errorInstanceId: string;
669
- parameters: {
670
- userId: unknown;
671
- };
672
- }
673
- /**
674
- * The query is not found, or the user does not have access to it.
675
- *
676
- * Log Safety: UNSAFE
677
- */
678
- export interface QueryNotFound {
679
- errorCode: "NOT_FOUND";
680
- errorName: "QueryNotFound";
681
- errorInstanceId: string;
682
- parameters: {
683
- query: unknown;
684
- };
685
- }
686
- /**
687
- * One or more requested object types have been changed in the Ontology Manager and changes are currently being
688
- applied. Wait a few seconds and try again.
689
- *
690
- * Log Safety: UNSAFE
691
- */
692
- export interface OntologySyncingObjectTypes {
693
- errorCode: "CONFLICT";
694
- errorName: "OntologySyncingObjectTypes";
695
- errorInstanceId: string;
696
- parameters: {
697
- objectTypes: unknown;
698
- };
699
- }
700
- /**
701
- * Aggregation range should include one lt or lte and one gt or gte.
702
- *
703
- * Log Safety: SAFE
704
- */
705
- export interface InvalidAggregationRange {
706
- errorCode: "INVALID_ARGUMENT";
707
- errorName: "InvalidAggregationRange";
708
- errorInstanceId: string;
709
- parameters: {};
710
- }
711
- /**
712
- * The parameter object reference or parameter default value is not found, or the client token does not have access to it.
713
- *
714
- * Log Safety: UNSAFE
715
- */
716
- export interface ParameterObjectNotFound {
717
- errorCode: "NOT_FOUND";
718
- errorName: "ParameterObjectNotFound";
719
- errorInstanceId: string;
720
- parameters: {
721
- objectType: unknown;
722
- primaryKey: unknown;
723
- };
724
- }
725
- /**
726
- * Memory limits were exceeded for the Query execution.
727
- *
728
- * Log Safety: UNSAFE
729
- */
730
- export interface QueryMemoryExceededLimit {
731
- errorCode: "TIMEOUT";
732
- errorName: "QueryMemoryExceededLimit";
733
- errorInstanceId: string;
734
- parameters: {
735
- functionRid: unknown;
736
- functionVersion: unknown;
737
- };
738
- }
739
- /**
740
- * A Content-Length header is required for all uploads, but was missing or invalid.
741
- *
742
- * Log Safety: SAFE
743
- */
744
- export interface InvalidContentLength {
745
- errorCode: "INVALID_ARGUMENT";
746
- errorName: "InvalidContentLength";
747
- errorInstanceId: string;
748
- parameters: {};
749
- }
750
- /**
751
- * One of the requested property filters does not support multiple values. Please include only a single value for
752
- it.
753
- *
754
- * Log Safety: UNSAFE
755
- */
756
- export interface MultiplePropertyValuesNotSupported {
757
- errorCode: "INVALID_ARGUMENT";
758
- errorName: "MultiplePropertyValuesNotSupported";
759
- errorInstanceId: string;
760
- parameters: {
761
- propertyFilter: unknown;
762
- property: unknown;
763
- };
764
- }
765
- /**
766
- * The user does not have permission to edit this ObjectType.
767
- *
768
- * Log Safety: SAFE
769
- */
770
- export interface EditObjectPermissionDenied {
771
- errorCode: "PERMISSION_DENIED";
772
- errorName: "EditObjectPermissionDenied";
773
- errorInstanceId: string;
774
- parameters: {};
775
- }
776
- /**
777
- * Properties used in ordering must have the same ids. Temporary restriction imposed due to OSS limitations.
778
- *
779
- * Log Safety: UNSAFE
780
- */
781
- export interface PropertiesHaveDifferentIds {
782
- errorCode: "INVALID_ARGUMENT";
783
- errorName: "PropertiesHaveDifferentIds";
784
- errorInstanceId: string;
785
- parameters: {
786
- properties: unknown;
787
- };
788
- }
789
- /**
790
- * The requested Ontology is not found, or the client token does not have access to it.
791
- *
792
- * Log Safety: UNSAFE
793
- */
794
- export interface OntologyNotFound {
795
- errorCode: "NOT_FOUND";
796
- errorName: "OntologyNotFound";
797
- errorInstanceId: string;
798
- parameters: {
799
- ontologyRid: unknown;
800
- apiName: unknown;
801
- };
802
- }
803
- /**
804
- * The given property type is not of the expected type.
805
- *
806
- * Log Safety: UNSAFE
807
- */
808
- export interface InvalidPropertyType {
809
- errorCode: "INVALID_ARGUMENT";
810
- errorName: "InvalidPropertyType";
811
- errorInstanceId: string;
812
- parameters: {
813
- propertyBaseType: unknown;
814
- property: unknown;
815
- };
816
- }
817
- /**
818
- * The parameter references an object type that could not be found, or the client token does not have access to it.
819
- *
820
- * Log Safety: UNSAFE
821
- */
822
- export interface ActionParameterObjectTypeNotFound {
823
- errorCode: "NOT_FOUND";
824
- errorName: "ActionParameterObjectTypeNotFound";
825
- errorInstanceId: string;
826
- parameters: {
827
- parameterId: unknown;
828
- };
829
- }
830
- /**
831
- * The provided parameters were not found. Please look at the knownParameters field
832
- to see which ones are available.
833
- *
834
- * Log Safety: UNSAFE
835
- */
836
- export interface UnknownParameter {
837
- errorCode: "INVALID_ARGUMENT";
838
- errorName: "UnknownParameter";
839
- errorInstanceId: string;
840
- parameters: {
841
- unknownParameters: unknown;
842
- expectedParameters: unknown;
843
- };
844
- }
845
- /**
846
- * Log Safety: UNSAFE
847
- */
848
- export interface FunctionExecutionFailed {
849
- errorCode: "INVALID_ARGUMENT";
850
- errorName: "FunctionExecutionFailed";
851
- errorInstanceId: string;
852
- parameters: {
853
- functionRid: unknown;
854
- functionVersion: unknown;
855
- };
856
- }
857
- /**
858
- * The requested sort type of one or more clauses is invalid. Valid sort types are 'p' or 'properties'.
859
- *
860
- * Log Safety: SAFE
861
- */
862
- export interface InvalidSortType {
863
- errorCode: "INVALID_ARGUMENT";
864
- errorName: "InvalidSortType";
865
- errorInstanceId: string;
866
- parameters: {
867
- invalidSortType: unknown;
868
- };
869
- }
870
- /**
871
- * The amount of memory used in the request exceeded the limit. The number of groups in the aggregations grouping exceeded the allowed limit. This can typically be fixed by
872
- adjusting your query to reduce the number of groups created by your aggregation. For instance:
873
-
874
- If you are using multiple groupBy clauses, try reducing the number of clauses.
875
- If you are using a groupBy clause with a high cardinality property, try filtering the data first
876
- to reduce the number of groups.
877
- *
878
- * Log Safety: SAFE
879
- */
880
- export interface AggregationMemoryExceededLimit {
881
- errorCode: "INVALID_ARGUMENT";
882
- errorName: "AggregationMemoryExceededLimit";
883
- errorInstanceId: string;
884
- parameters: {
885
- memoryUsedBytes: unknown;
886
- memoryLimitBytes: unknown;
887
- };
888
- }
889
- /**
890
- * At least one of the requested property filters are not supported. See the documentation of PropertyFilter for
891
- a list of supported property filters.
892
- *
893
- * Log Safety: UNSAFE
894
- */
895
- export interface PropertyFiltersNotSupported {
896
- errorCode: "INVALID_ARGUMENT";
897
- errorName: "PropertyFiltersNotSupported";
898
- errorInstanceId: string;
899
- parameters: {
900
- propertyFilters: unknown;
901
- property: unknown;
902
- };
903
- }
904
- /**
905
- * The link the user is attempting to create already exists.
906
- *
907
- * Log Safety: SAFE
908
- */
909
- export interface LinkAlreadyExists {
910
- errorCode: "CONFLICT";
911
- errorName: "LinkAlreadyExists";
912
- errorInstanceId: string;
913
- parameters: {};
914
- }
915
- /**
916
- * The provided token does not have permission to view any data sources backing this object type. Ensure the object
917
- type has backing data sources configured and visible.
918
- *
919
- * Log Safety: UNSAFE
920
- */
921
- export interface ViewObjectPermissionDenied {
922
- errorCode: "PERMISSION_DENIED";
923
- errorName: "ViewObjectPermissionDenied";
924
- errorInstanceId: string;
925
- parameters: {
926
- objectType: unknown;
927
- };
928
- }
929
- /**
930
- * The validation failed for the given action parameters. Please use the validateAction endpoint for more
931
- details.
932
- *
933
- * Log Safety: UNSAFE
934
- */
935
- export interface ActionValidationFailed {
936
- errorCode: "INVALID_ARGUMENT";
937
- errorName: "ActionValidationFailed";
938
- errorInstanceId: string;
939
- parameters: {
940
- actionType: unknown;
941
- };
942
- }
943
- /**
944
- * Aggregation cannot group by on the same field multiple times.
945
- *
946
- * Log Safety: UNSAFE
947
- */
948
- export interface MultipleGroupByOnFieldNotSupported {
949
- errorCode: "INVALID_ARGUMENT";
950
- errorName: "MultipleGroupByOnFieldNotSupported";
951
- errorInstanceId: string;
952
- parameters: {
953
- duplicateFields: unknown;
954
- };
955
- }
956
- /**
957
- * The linked object with the given primary key is not found, or the user does not have access to it.
958
- *
959
- * Log Safety: UNSAFE
960
- */
961
- export interface LinkedObjectNotFound {
962
- errorCode: "NOT_FOUND";
963
- errorName: "LinkedObjectNotFound";
964
- errorInstanceId: string;
965
- parameters: {
966
- linkType: unknown;
967
- linkedObjectType: unknown;
968
- linkedObjectPrimaryKey: unknown;
969
- };
970
- }
971
- /**
972
- * Actions attempted to edit properties that could not be found on the object type.
973
- Please contact the Ontology administrator to resolve this issue.
974
- *
975
- * Log Safety: SAFE
976
- */
977
- export interface ActionEditedPropertiesNotFound {
978
- errorCode: "INVALID_ARGUMENT";
979
- errorName: "ActionEditedPropertiesNotFound";
980
- errorInstanceId: string;
981
- parameters: {};
982
- }
983
- /**
984
- * The value of the given property filter is invalid. For instance, 2 is an invalid value for
985
- isNull in properties.address.isNull=2 because the isNull filter expects a value of boolean type.
986
- *
987
- * Log Safety: UNSAFE
988
- */
989
- export interface InvalidPropertyFilterValue {
990
- errorCode: "INVALID_ARGUMENT";
991
- errorName: "InvalidPropertyFilterValue";
992
- errorInstanceId: string;
993
- parameters: {
994
- expectedType: unknown;
995
- propertyFilter: unknown;
996
- propertyFilterValue: unknown;
997
- property: unknown;
998
- };
999
- }
1000
- /**
1001
- * The authored Query failed to execute because of a user induced error. The message argument
1002
- is meant to be displayed to the user.
1003
- *
1004
- * Log Safety: UNSAFE
1005
- */
1006
- export interface QueryEncounteredUserFacingError {
1007
- errorCode: "CONFLICT";
1008
- errorName: "QueryEncounteredUserFacingError";
1009
- errorInstanceId: string;
1010
- parameters: {
1011
- functionRid: unknown;
1012
- functionVersion: unknown;
1013
- message: unknown;
1014
- };
1015
- }
1016
- /**
1017
- * One or more of the requested object types are not synced into the ontology. Please reach out to your Ontology
1018
- Administrator to re-index the object type(s) in Ontology Management Application.
1019
- *
1020
- * Log Safety: UNSAFE
1021
- */
1022
- export interface ObjectTypesNotSynced {
1023
- errorCode: "CONFLICT";
1024
- errorName: "ObjectTypesNotSynced";
1025
- errorInstanceId: string;
1026
- parameters: {
1027
- objectTypes: unknown;
1028
- };
1029
- }
1030
- /**
1031
- * The requested shared property types are not present on every object type.
1032
- *
1033
- * Log Safety: UNSAFE
1034
- */
1035
- export interface SharedPropertiesNotFound {
1036
- errorCode: "NOT_FOUND";
1037
- errorName: "SharedPropertiesNotFound";
1038
- errorInstanceId: string;
1039
- parameters: {
1040
- objectType: unknown;
1041
- missingSharedProperties: unknown;
1042
- };
1043
- }
1044
- /**
1045
- * The requested interface type is not found, or the client token does not have access to it.
1046
- *
1047
- * Log Safety: UNSAFE
1048
- */
1049
- export interface InterfaceTypeNotFound {
1050
- errorCode: "NOT_FOUND";
1051
- errorName: "InterfaceTypeNotFound";
1052
- errorInstanceId: string;
1053
- parameters: {
1054
- apiName: unknown;
1055
- rid: unknown;
1056
- };
1057
- }
1058
- /**
1059
- * The file is too large to be uploaded as an attachment.
1060
- The maximum attachment size is 200MB.
1061
- *
1062
- * Log Safety: UNSAFE
1063
- */
1064
- export interface AttachmentSizeExceededLimit {
1065
- errorCode: "INVALID_ARGUMENT";
1066
- errorName: "AttachmentSizeExceededLimit";
1067
- errorInstanceId: string;
1068
- parameters: {
1069
- fileSizeBytes: unknown;
1070
- fileLimitBytes: unknown;
1071
- };
1072
- }
1073
- /**
1074
- * The requested object is not found, or the client token does not have access to it.
1075
- *
1076
- * Log Safety: UNSAFE
1077
- */
1078
- export interface ObjectNotFound {
1079
- errorCode: "NOT_FOUND";
1080
- errorName: "ObjectNotFound";
1081
- errorInstanceId: string;
1082
- parameters: {
1083
- objectType: unknown;
1084
- primaryKey: unknown;
1085
- };
1086
- }
1087
- /**
1088
- * A property that was required to have an API name, such as a primary key, is missing one. You can set an API
1089
- name for it using the Ontology Manager.
1090
- *
1091
- * Log Safety: UNSAFE
1092
- */
1093
- export interface PropertyApiNameNotFound {
1094
- errorCode: "INVALID_ARGUMENT";
1095
- errorName: "PropertyApiNameNotFound";
1096
- errorInstanceId: string;
1097
- parameters: {
1098
- propertyId: unknown;
1099
- propertyBaseType: unknown;
1100
- };
1101
- }
1102
- /**
1103
- * The type of the requested parameter is not currently supported by this API. If you need support for this,
1104
- please reach out to Palantir Support.
1105
- *
1106
- * Log Safety: UNSAFE
1107
- */
1108
- export interface ParameterTypeNotSupported {
1109
- errorCode: "INVALID_ARGUMENT";
1110
- errorName: "ParameterTypeNotSupported";
1111
- errorInstanceId: string;
1112
- parameters: {
1113
- parameterId: unknown;
1114
- parameterBaseType: unknown;
1115
- };
1116
- }
1117
- /**
1118
- * Range group by is not supported by property type.
1119
- *
1120
- * Log Safety: UNSAFE
1121
- */
1122
- export interface InvalidAggregationRangePropertyType {
1123
- errorCode: "INVALID_ARGUMENT";
1124
- errorName: "InvalidAggregationRangePropertyType";
1125
- errorInstanceId: string;
1126
- parameters: {
1127
- property: unknown;
1128
- objectType: unknown;
1129
- propertyBaseType: unknown;
1130
- };
1131
- }
1132
- /**
1133
- * Required parameters are missing. Please look at the parameters field to see which required parameters are
1134
- missing from the request.
1135
- *
1136
- * Log Safety: UNSAFE
1137
- */
1138
- export interface MissingParameter {
1139
- errorCode: "INVALID_ARGUMENT";
1140
- errorName: "MissingParameter";
1141
- errorInstanceId: string;
1142
- parameters: {
1143
- parameters: unknown;
1144
- };
1145
- }
1146
4
  //# sourceMappingURL=_errors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  export type {} from "./_components.js";
2
- export type { ActionEditedPropertiesNotFound, ActionNotFound, ActionParameterObjectNotFound, ActionParameterObjectTypeNotFound, ActionTypeNotFound, ActionValidationFailed, AggregationGroupCountExceededLimit, AggregationMemoryExceededLimit, ApplyActionFailed, AttachmentNotFound, AttachmentSizeExceededLimit, CompositePrimaryKeyNotSupported, DuplicateOrderBy, EditObjectPermissionDenied, FunctionEncounteredUserFacingError, FunctionExecutionFailed, FunctionExecutionTimedOut, FunctionInvalidInput, InterfaceTypeNotFound, InvalidAggregationOrdering, InvalidAggregationRange, InvalidAggregationRangePropertyType, InvalidAggregationRangeValue, InvalidContentLength, InvalidContentType, InvalidDurationGroupByPropertyType, InvalidDurationGroupByValue, InvalidFields, InvalidGroupId, InvalidParameterValue, InvalidPropertyFiltersCombination, InvalidPropertyFilterValue, InvalidPropertyType, InvalidPropertyValue, InvalidQueryParameterValue, InvalidRangeQuery, InvalidSortOrder, InvalidSortType, InvalidUserId, LinkAlreadyExists, LinkedObjectNotFound, LinkTypeNotFound, MalformedPropertyFilters, MissingParameter, MultipleGroupByOnFieldNotSupported, MultiplePropertyValuesNotSupported, ObjectAlreadyExists, ObjectChanged, ObjectNotFound, ObjectSetNotFound, ObjectsExceededLimit, ObjectTypeNotFound, ObjectTypeNotSynced, ObjectTypesNotSynced, OntologyEditsExceededLimit, OntologyNotFound, OntologySyncing, OntologySyncingObjectTypes, ParameterObjectNotFound, ParameterObjectSetRidNotFound, ParametersNotFound, ParameterTypeNotSupported, ParentAttachmentPermissionDenied, PropertiesHaveDifferentIds, PropertiesNotFilterable, PropertiesNotFound, PropertiesNotSearchable, PropertiesNotSortable, PropertyApiNameNotFound, PropertyBaseTypeNotSupported, PropertyFiltersNotSupported, PropertyTypesSearchNotSupported, QueryEncounteredUserFacingError, QueryMemoryExceededLimit, QueryNotFound, QueryRuntimeError, QueryTimeExceededLimit, SharedPropertiesNotFound, SharedPropertyTypeNotFound, UnknownParameter, UnsupportedObjectSet, ViewObjectPermissionDenied, } from "./_errors.js";
2
+ export type {} from "./_errors.js";
3
3
  export * as Actions from "./public/Action.js";
4
4
  export * as ActionTypes from "./public/ActionType.js";
5
5
  export * as Attachments from "./public/Attachment.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACvC,YAAY,EACV,8BAA8B,EAC9B,cAAc,EACd,6BAA6B,EAC7B,iCAAiC,EACjC,kBAAkB,EAClB,sBAAsB,EACtB,kCAAkC,EAClC,8BAA8B,EAC9B,iBAAiB,EACjB,kBAAkB,EAClB,2BAA2B,EAC3B,+BAA+B,EAC/B,gBAAgB,EAChB,0BAA0B,EAC1B,kCAAkC,EAClC,uBAAuB,EACvB,yBAAyB,EACzB,oBAAoB,EACpB,qBAAqB,EACrB,0BAA0B,EAC1B,uBAAuB,EACvB,mCAAmC,EACnC,4BAA4B,EAC5B,oBAAoB,EACpB,kBAAkB,EAClB,kCAAkC,EAClC,2BAA2B,EAC3B,aAAa,EACb,cAAc,EACd,qBAAqB,EACrB,iCAAiC,EACjC,0BAA0B,EAC1B,mBAAmB,EACnB,oBAAoB,EACpB,0BAA0B,EAC1B,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,iBAAiB,EACjB,oBAAoB,EACpB,gBAAgB,EAChB,wBAAwB,EACxB,gBAAgB,EAChB,kCAAkC,EAClC,kCAAkC,EAClC,mBAAmB,EACnB,aAAa,EACb,cAAc,EACd,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,0BAA0B,EAC1B,gBAAgB,EAChB,eAAe,EACf,0BAA0B,EAC1B,uBAAuB,EACvB,6BAA6B,EAC7B,kBAAkB,EAClB,yBAAyB,EACzB,gCAAgC,EAChC,0BAA0B,EAC1B,uBAAuB,EACvB,kBAAkB,EAClB,uBAAuB,EACvB,qBAAqB,EACrB,uBAAuB,EACvB,4BAA4B,EAC5B,2BAA2B,EAC3B,+BAA+B,EAC/B,+BAA+B,EAC/B,wBAAwB,EACxB,aAAa,EACb,iBAAiB,EACjB,sBAAsB,EACtB,wBAAwB,EACxB,0BAA0B,EAC1B,gBAAgB,EAChB,oBAAoB,EACpB,0BAA0B,GAC3B,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AACnD,OAAO,KAAK,eAAe,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAC7C,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACvC,YAAY,EAAE,MAAM,cAAc,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AACnD,OAAO,KAAK,eAAe,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAC7C,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/internal.foundry.ontologies",
3
- "version": "0.2.0-beta.6",
3
+ "version": "0.2.0-beta.7",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,10 +17,9 @@
17
17
  }
18
18
  },
19
19
  "dependencies": {
20
- "@osdk/internal.foundry.core": "0.2.0-beta.6",
21
- "@osdk/shared.client": "~0.0.0",
22
- "@osdk/shared.net": "~2.0.0-beta.2",
23
- "@osdk/shared.net.platformapi": "~0.2.0"
20
+ "@osdk/internal.foundry.core": "0.2.0-beta.7",
21
+ "@osdk/shared.client": "~1.0.0-beta.0",
22
+ "@osdk/shared.net.platformapi": "~0.3.0-beta.0"
24
23
  },
25
24
  "devDependencies": {
26
25
  "typescript": "^5.5.4",
@@ -45,7 +44,7 @@
45
44
  "sls": {
46
45
  "dependencies": {
47
46
  "com.palantir.foundry.api:api-gateway": {
48
- "minVersion": "1.922.0",
47
+ "minVersion": "1.927.0",
49
48
  "maxVersion": "1.x.x",
50
49
  "optional": true
51
50
  }