@osdk/foundry.ontologies 2.51.0 → 2.53.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 +105 -54
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/public/ObjectTypeV2.d.ts +1 -1
- package/build/browser/public/ObjectTypeV2.js +1 -1
- package/build/browser/public/ObjectTypeV2.js.map +1 -1
- package/build/browser/public/OntologyInterface.d.ts +1 -0
- package/build/browser/public/OntologyInterface.d.ts.map +1 -1
- package/build/esm/_components.d.ts +105 -54
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/public/ObjectTypeV2.d.ts +1 -1
- package/build/esm/public/ObjectTypeV2.js +1 -1
- package/build/esm/public/ObjectTypeV2.js.map +1 -1
- package/build/esm/public/OntologyInterface.d.ts +1 -0
- package/build/esm/public/OntologyInterface.d.ts.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @osdk/foundry.ontologies
|
|
2
2
|
|
|
3
|
+
## 2.53.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 085010e: Regenerate Platform SDKs
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [085010e]
|
|
12
|
+
- @osdk/foundry.core@2.53.0
|
|
13
|
+
- @osdk/foundry.geo@2.53.0
|
|
14
|
+
|
|
15
|
+
## 2.52.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 61dbb74: regenerate platform sdk
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [61dbb74]
|
|
24
|
+
- @osdk/foundry.core@2.52.0
|
|
25
|
+
- @osdk/foundry.geo@2.52.0
|
|
26
|
+
|
|
3
27
|
## 2.51.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
|
@@ -336,8 +336,16 @@ export type Aggregation = ({
|
|
|
336
336
|
*/
|
|
337
337
|
export type AggregationAccuracy = "ACCURATE" | "APPROXIMATE";
|
|
338
338
|
/**
|
|
339
|
-
|
|
340
|
-
|
|
339
|
+
* Specifies the accuracy requirement for aggregation results.
|
|
340
|
+
|
|
341
|
+
REQUIRE_ACCURATE: Only return results if they are guaranteed to be accurate. If accuracy cannot be
|
|
342
|
+
guaranteed (e.g., due to a low maxGroupCount relative to distinct values), the request will fail
|
|
343
|
+
with an AggregationAccuracyNotSupported error.
|
|
344
|
+
ALLOW_APPROXIMATE: Allow approximate results when exact computation is not feasible. This is the
|
|
345
|
+
default behavior if not specified.
|
|
346
|
+
*
|
|
347
|
+
* Log Safety: SAFE
|
|
348
|
+
*/
|
|
341
349
|
export type AggregationAccuracyRequest = "REQUIRE_ACCURATE" | "ALLOW_APPROXIMATE";
|
|
342
350
|
/**
|
|
343
351
|
* Divides objects into groups according to an interval. Note that this grouping applies only on date types.
|
|
@@ -352,11 +360,13 @@ export interface AggregationDurationGrouping {
|
|
|
352
360
|
/**
|
|
353
361
|
* Divides objects into groups according to an interval. Note that this grouping applies only on date and timestamp types.
|
|
354
362
|
When grouping by YEARS, QUARTERS, MONTHS, or WEEKS, the value must be set to 1.
|
|
363
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
355
364
|
*
|
|
356
365
|
* Log Safety: UNSAFE
|
|
357
366
|
*/
|
|
358
367
|
export interface AggregationDurationGroupingV2 {
|
|
359
|
-
field
|
|
368
|
+
field?: PropertyApiName;
|
|
369
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
360
370
|
value: number;
|
|
361
371
|
unit: TimeUnit;
|
|
362
372
|
}
|
|
@@ -370,12 +380,14 @@ export interface AggregationExactGrouping {
|
|
|
370
380
|
maxGroupCount?: number;
|
|
371
381
|
}
|
|
372
382
|
/**
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
383
|
+
* Divides objects into groups according to an exact value.
|
|
384
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
385
|
+
*
|
|
386
|
+
* Log Safety: UNSAFE
|
|
387
|
+
*/
|
|
377
388
|
export interface AggregationExactGroupingV2 {
|
|
378
|
-
field
|
|
389
|
+
field?: PropertyApiName;
|
|
390
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
379
391
|
maxGroupCount?: number;
|
|
380
392
|
defaultValue?: string;
|
|
381
393
|
includeNullValues?: boolean;
|
|
@@ -390,12 +402,14 @@ export interface AggregationFixedWidthGrouping {
|
|
|
390
402
|
fixedWidth: number;
|
|
391
403
|
}
|
|
392
404
|
/**
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
405
|
+
* Divides objects into groups with the specified width.
|
|
406
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
407
|
+
*
|
|
408
|
+
* Log Safety: UNSAFE
|
|
409
|
+
*/
|
|
397
410
|
export interface AggregationFixedWidthGroupingV2 {
|
|
398
|
-
field
|
|
411
|
+
field?: PropertyApiName;
|
|
412
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
399
413
|
fixedWidth: number;
|
|
400
414
|
}
|
|
401
415
|
/**
|
|
@@ -497,12 +511,14 @@ export interface AggregationRangesGrouping {
|
|
|
497
511
|
ranges: Array<AggregationRange>;
|
|
498
512
|
}
|
|
499
513
|
/**
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
514
|
+
* Divides objects into groups according to specified ranges.
|
|
515
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
516
|
+
*
|
|
517
|
+
* Log Safety: UNSAFE
|
|
518
|
+
*/
|
|
504
519
|
export interface AggregationRangesGroupingV2 {
|
|
505
|
-
field
|
|
520
|
+
field?: PropertyApiName;
|
|
521
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
506
522
|
ranges: Array<AggregationRangeV2>;
|
|
507
523
|
}
|
|
508
524
|
/**
|
|
@@ -661,22 +677,26 @@ export interface ApproximateDistinctAggregation {
|
|
|
661
677
|
name?: AggregationMetricName;
|
|
662
678
|
}
|
|
663
679
|
/**
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
680
|
+
* Computes an approximate number of distinct values for the provided field.
|
|
681
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
682
|
+
*
|
|
683
|
+
* Log Safety: UNSAFE
|
|
684
|
+
*/
|
|
668
685
|
export interface ApproximateDistinctAggregationV2 {
|
|
669
|
-
field
|
|
686
|
+
field?: PropertyApiName;
|
|
687
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
670
688
|
name?: AggregationMetricName;
|
|
671
689
|
direction?: OrderByDirection;
|
|
672
690
|
}
|
|
673
691
|
/**
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
692
|
+
* Computes the approximate percentile value for the provided field. Requires Object Storage V2.
|
|
693
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
694
|
+
*
|
|
695
|
+
* Log Safety: UNSAFE
|
|
696
|
+
*/
|
|
678
697
|
export interface ApproximatePercentileAggregationV2 {
|
|
679
|
-
field
|
|
698
|
+
field?: PropertyApiName;
|
|
699
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
680
700
|
name?: AggregationMetricName;
|
|
681
701
|
approximatePercentile: number;
|
|
682
702
|
direction?: OrderByDirection;
|
|
@@ -828,12 +848,14 @@ export interface AvgAggregation {
|
|
|
828
848
|
name?: AggregationMetricName;
|
|
829
849
|
}
|
|
830
850
|
/**
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
851
|
+
* Computes the average value for the provided field.
|
|
852
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
853
|
+
*
|
|
854
|
+
* Log Safety: UNSAFE
|
|
855
|
+
*/
|
|
835
856
|
export interface AvgAggregationV2 {
|
|
836
|
-
field
|
|
857
|
+
field?: PropertyApiName;
|
|
858
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
837
859
|
name?: AggregationMetricName;
|
|
838
860
|
direction?: OrderByDirection;
|
|
839
861
|
}
|
|
@@ -1600,12 +1622,15 @@ export interface ErrorComputingSecurity {
|
|
|
1600
1622
|
*/
|
|
1601
1623
|
export type ErrorName = LooselyBrandedString<"ErrorName">;
|
|
1602
1624
|
/**
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1625
|
+
* Computes an exact number of distinct values for the provided field. May be slower than an approximate
|
|
1626
|
+
distinct aggregation. Requires Object Storage V2.
|
|
1627
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
1628
|
+
*
|
|
1629
|
+
* Log Safety: UNSAFE
|
|
1630
|
+
*/
|
|
1607
1631
|
export interface ExactDistinctAggregationV2 {
|
|
1608
|
-
field
|
|
1632
|
+
field?: PropertyApiName;
|
|
1633
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
1609
1634
|
name?: AggregationMetricName;
|
|
1610
1635
|
direction?: OrderByDirection;
|
|
1611
1636
|
}
|
|
@@ -2729,12 +2754,14 @@ export interface MaxAggregation {
|
|
|
2729
2754
|
name?: AggregationMetricName;
|
|
2730
2755
|
}
|
|
2731
2756
|
/**
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2757
|
+
* Computes the maximum value for the provided field.
|
|
2758
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
2759
|
+
*
|
|
2760
|
+
* Log Safety: UNSAFE
|
|
2761
|
+
*/
|
|
2736
2762
|
export interface MaxAggregationV2 {
|
|
2737
|
-
field
|
|
2763
|
+
field?: PropertyApiName;
|
|
2764
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
2738
2765
|
name?: AggregationMetricName;
|
|
2739
2766
|
direction?: OrderByDirection;
|
|
2740
2767
|
}
|
|
@@ -2764,12 +2791,14 @@ export interface MinAggregation {
|
|
|
2764
2791
|
name?: AggregationMetricName;
|
|
2765
2792
|
}
|
|
2766
2793
|
/**
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2794
|
+
* Computes the minimum value for the provided field.
|
|
2795
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
2796
|
+
*
|
|
2797
|
+
* Log Safety: UNSAFE
|
|
2798
|
+
*/
|
|
2771
2799
|
export interface MinAggregationV2 {
|
|
2772
|
-
field
|
|
2800
|
+
field?: PropertyApiName;
|
|
2801
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
2773
2802
|
name?: AggregationMetricName;
|
|
2774
2803
|
direction?: OrderByDirection;
|
|
2775
2804
|
}
|
|
@@ -4654,7 +4683,27 @@ export interface RegexConstraint {
|
|
|
4654
4683
|
}
|
|
4655
4684
|
/**
|
|
4656
4685
|
* Returns objects where the specified field matches the regex pattern provided. This applies to the non-analyzed
|
|
4657
|
-
form of text fields
|
|
4686
|
+
form of text fields. Supported operators:
|
|
4687
|
+
|
|
4688
|
+
. matches any character.
|
|
4689
|
+
? repeats the previous character 0 or 1 times.
|
|
4690
|
+
+ repeats the previous character 1 or more times.
|
|
4691
|
+
* repeats the previous character 0 or more times.
|
|
4692
|
+
{} defines the minimum and maximum number of times the preceding character can repeat. {2} means the
|
|
4693
|
+
previous character must repeat only twice, {2,} means the previous character must repeat at least twice,
|
|
4694
|
+
and {2,4} means the previous character must repeat between 2-4 times.
|
|
4695
|
+
| is the OR operator.
|
|
4696
|
+
() forms a group within an expression such that the group can be treated as a single character.
|
|
4697
|
+
[] matches a single one of the characters contained inside the brackets, meaning [abc] matches a, b or
|
|
4698
|
+
c. Unless - is the first character or escaped with \ (in which case it is treated as a normal character),
|
|
4699
|
+
- can be used inside the bracket to create a range of characters, meaning [a-c] matches a, b, or c.
|
|
4700
|
+
If the character sequence inside the brackets begins with ^, the set of characters is negated, meaning
|
|
4701
|
+
[^abc] does not match a, b, or c. Otherwise, ^ is treated as a normal character.
|
|
4702
|
+
" creates groups of string literals.
|
|
4703
|
+
\ is used as an escape character. However, \d and \D match digit and non-digit characters respectively, \s
|
|
4704
|
+
and \S match whitespace and non whitespace characters respectively, and \w and \W match word and non word
|
|
4705
|
+
characters respectively.
|
|
4706
|
+
|
|
4658
4707
|
Either field or propertyIdentifier can be supplied, but not both.
|
|
4659
4708
|
*
|
|
4660
4709
|
* Log Safety: UNSAFE
|
|
@@ -5474,12 +5523,14 @@ export interface SumAggregation {
|
|
|
5474
5523
|
name?: AggregationMetricName;
|
|
5475
5524
|
}
|
|
5476
5525
|
/**
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5526
|
+
* Computes the sum of values for the provided field.
|
|
5527
|
+
Either field or propertyIdentifier must be supplied, but not both.
|
|
5528
|
+
*
|
|
5529
|
+
* Log Safety: UNSAFE
|
|
5530
|
+
*/
|
|
5481
5531
|
export interface SumAggregationV2 {
|
|
5482
|
-
field
|
|
5532
|
+
field?: PropertyApiName;
|
|
5533
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
5483
5534
|
name?: AggregationMetricName;
|
|
5484
5535
|
direction?: OrderByDirection;
|
|
5485
5536
|
}
|