@osdk/foundry.ontologies 2.42.0 → 2.43.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 +12 -0
- package/build/browser/_components.d.ts +165 -13
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/index.d.ts +1 -1
- package/build/browser/index.d.ts.map +1 -1
- package/build/esm/_components.d.ts +165 -13
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/index.d.ts +1 -1
- package/build/esm/index.d.ts.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @osdk/foundry.ontologies
|
|
2
2
|
|
|
3
|
+
## 2.43.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 843a406: Bump apis
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [843a406]
|
|
12
|
+
- @osdk/foundry.core@2.43.0
|
|
13
|
+
- @osdk/foundry.geo@2.43.0
|
|
14
|
+
|
|
3
15
|
## 2.42.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -596,6 +596,20 @@ export interface ApplyActionRequestV2 {
|
|
|
596
596
|
*/
|
|
597
597
|
export interface ApplyActionResponse {
|
|
598
598
|
}
|
|
599
|
+
/**
|
|
600
|
+
* Performs both apply reducers and extract main value to return the reduced main value.
|
|
601
|
+
*
|
|
602
|
+
* Log Safety: SAFE
|
|
603
|
+
*/
|
|
604
|
+
export interface ApplyReducersAndExtractMainValueLoadLevel {
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* Returns a single value of an array as configured in the ontology.
|
|
608
|
+
*
|
|
609
|
+
* Log Safety: SAFE
|
|
610
|
+
*/
|
|
611
|
+
export interface ApplyReducersLoadLevel {
|
|
612
|
+
}
|
|
599
613
|
/**
|
|
600
614
|
* Computes an approximate number of distinct values for the provided field.
|
|
601
615
|
*
|
|
@@ -1465,6 +1479,13 @@ export interface ExperimentalPropertyTypeStatus {
|
|
|
1465
1479
|
* Log Safety: SAFE
|
|
1466
1480
|
*/
|
|
1467
1481
|
export type ExtractDatePart = "DAYS" | "MONTHS" | "QUARTERS" | "YEARS";
|
|
1482
|
+
/**
|
|
1483
|
+
* Returns the main value of a struct as configured in the ontology.
|
|
1484
|
+
*
|
|
1485
|
+
* Log Safety: SAFE
|
|
1486
|
+
*/
|
|
1487
|
+
export interface ExtractMainValueLoadLevel {
|
|
1488
|
+
}
|
|
1468
1489
|
/**
|
|
1469
1490
|
* Extracts the specified date part from a date or timestamp.
|
|
1470
1491
|
*
|
|
@@ -1733,11 +1754,28 @@ the Ontology Manager.
|
|
|
1733
1754
|
*/
|
|
1734
1755
|
export type InterfacePropertyApiName = LooselyBrandedString<"InterfacePropertyApiName">;
|
|
1735
1756
|
/**
|
|
1757
|
+
* An implementation of an interface property via a local property.
|
|
1758
|
+
*
|
|
1736
1759
|
* Log Safety: UNSAFE
|
|
1737
1760
|
*/
|
|
1738
1761
|
export interface InterfacePropertyLocalPropertyImplementation {
|
|
1739
1762
|
propertyApiName: PropertyApiName;
|
|
1740
1763
|
}
|
|
1764
|
+
/**
|
|
1765
|
+
* An implementation of an interface property via the field of a local struct property.
|
|
1766
|
+
*
|
|
1767
|
+
* Log Safety: UNSAFE
|
|
1768
|
+
*/
|
|
1769
|
+
export interface InterfacePropertyStructFieldImplementation {
|
|
1770
|
+
structFieldOfProperty: StructFieldOfPropertyImplementation;
|
|
1771
|
+
}
|
|
1772
|
+
/**
|
|
1773
|
+
* An implementation of a struct interface property via a local struct property. Specifies a mapping of interface
|
|
1774
|
+
struct fields to local struct fields or properties.
|
|
1775
|
+
*
|
|
1776
|
+
* Log Safety: UNSAFE
|
|
1777
|
+
*/
|
|
1778
|
+
export type InterfacePropertyStructImplementation = Record<StructFieldApiName, PropertyOrStructFieldOfPropertyImplementation>;
|
|
1741
1779
|
/**
|
|
1742
1780
|
* The definition of an interface property type on an interface. An interface property can either be backed by a
|
|
1743
1781
|
shared property type or defined on the interface directly.
|
|
@@ -1750,14 +1788,17 @@ export type InterfacePropertyType = ({
|
|
|
1750
1788
|
type: "interfaceSharedPropertyType";
|
|
1751
1789
|
} & InterfaceSharedPropertyType);
|
|
1752
1790
|
/**
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1791
|
+
* Describes how an object type implements an interface property.
|
|
1792
|
+
*
|
|
1793
|
+
* Log Safety: UNSAFE
|
|
1794
|
+
*/
|
|
1795
|
+
export type InterfacePropertyTypeImplementation = ({
|
|
1796
|
+
type: "structFieldImplementation";
|
|
1797
|
+
} & InterfacePropertyStructFieldImplementation) | ({
|
|
1798
|
+
type: "structImplementation";
|
|
1799
|
+
} & InterfacePropertyStructImplementation) | ({
|
|
1759
1800
|
type: "localPropertyImplementation";
|
|
1760
|
-
} & InterfacePropertyLocalPropertyImplementation;
|
|
1801
|
+
} & InterfacePropertyLocalPropertyImplementation);
|
|
1761
1802
|
/**
|
|
1762
1803
|
* The unique resource identifier of an interface property type, useful for interacting with other Foundry APIs.
|
|
1763
1804
|
*
|
|
@@ -2186,6 +2227,7 @@ export interface LoadObjectSetRequestV2 {
|
|
|
2186
2227
|
objectSet: ObjectSet;
|
|
2187
2228
|
orderBy?: SearchOrderByV2;
|
|
2188
2229
|
select: Array<SelectedPropertyApiName>;
|
|
2230
|
+
selectV2: Array<PropertyIdentifier>;
|
|
2189
2231
|
pageToken?: _Core.PageToken;
|
|
2190
2232
|
pageSize?: _Core.PageSize;
|
|
2191
2233
|
excludeRid?: boolean;
|
|
@@ -2212,6 +2254,7 @@ export interface LoadObjectSetV2MultipleObjectTypesRequest {
|
|
|
2212
2254
|
objectSet: ObjectSet;
|
|
2213
2255
|
orderBy?: SearchOrderByV2;
|
|
2214
2256
|
select: Array<SelectedPropertyApiName>;
|
|
2257
|
+
selectV2: Array<PropertyIdentifier>;
|
|
2215
2258
|
pageToken?: _Core.PageToken;
|
|
2216
2259
|
pageSize?: _Core.PageSize;
|
|
2217
2260
|
excludeRid?: boolean;
|
|
@@ -2227,7 +2270,7 @@ single object set- some objects may have all their properties and some may only
|
|
|
2227
2270
|
The interfaceToObjectTypeMappings field contains mappings from SharedPropertyTypeApiNames on the interface(s) to
|
|
2228
2271
|
PropertyApiName for properties on the object(s).
|
|
2229
2272
|
The interfaceToObjectTypeMappingsV2 field contains mappings from InterfacePropertyApiNames on the
|
|
2230
|
-
interface(s) to
|
|
2273
|
+
interface(s) to InterfacePropertyTypeImplementation for properties on the object(s). This therefore includes
|
|
2231
2274
|
implementations of both properties backed by SharedPropertyTypes as well as properties defined on the interface.
|
|
2232
2275
|
*
|
|
2233
2276
|
* Log Safety: UNSAFE
|
|
@@ -2249,6 +2292,7 @@ export interface LoadObjectSetV2ObjectsOrInterfacesRequest {
|
|
|
2249
2292
|
objectSet: ObjectSet;
|
|
2250
2293
|
orderBy?: SearchOrderByV2;
|
|
2251
2294
|
select: Array<SelectedPropertyApiName>;
|
|
2295
|
+
selectV2: Array<PropertyIdentifier>;
|
|
2252
2296
|
pageToken?: _Core.PageToken;
|
|
2253
2297
|
pageSize?: _Core.PageSize;
|
|
2254
2298
|
excludeRid?: boolean;
|
|
@@ -3263,7 +3307,19 @@ export interface OntologyObject {
|
|
|
3263
3307
|
*/
|
|
3264
3308
|
export interface OntologyObjectArrayType {
|
|
3265
3309
|
subType: ObjectPropertyType;
|
|
3310
|
+
reducers: Array<OntologyObjectArrayTypeReducer>;
|
|
3311
|
+
}
|
|
3312
|
+
/**
|
|
3313
|
+
* Log Safety: UNSAFE
|
|
3314
|
+
*/
|
|
3315
|
+
export interface OntologyObjectArrayTypeReducer {
|
|
3316
|
+
direction: OntologyObjectArrayTypeReducerSortDirection;
|
|
3317
|
+
field?: StructFieldApiName;
|
|
3266
3318
|
}
|
|
3319
|
+
/**
|
|
3320
|
+
* Log Safety: SAFE
|
|
3321
|
+
*/
|
|
3322
|
+
export type OntologyObjectArrayTypeReducerSortDirection = "ASCENDING_NULLS_LAST" | "DESCENDING_NULLS_LAST";
|
|
3267
3323
|
/**
|
|
3268
3324
|
* Log Safety: UNSAFE
|
|
3269
3325
|
*/
|
|
@@ -3624,7 +3680,15 @@ export type PropertyIdentifier = ({
|
|
|
3624
3680
|
type: "property";
|
|
3625
3681
|
} & PropertyApiNameSelector) | ({
|
|
3626
3682
|
type: "structField";
|
|
3627
|
-
} & StructFieldSelector)
|
|
3683
|
+
} & StructFieldSelector) | ({
|
|
3684
|
+
type: "propertyWithLoadLevel";
|
|
3685
|
+
} & PropertyWithLoadLevelSelector);
|
|
3686
|
+
/**
|
|
3687
|
+
* Log Safety: UNSAFE
|
|
3688
|
+
*/
|
|
3689
|
+
export interface PropertyImplementation {
|
|
3690
|
+
propertyApiName: PropertyApiName;
|
|
3691
|
+
}
|
|
3628
3692
|
/**
|
|
3629
3693
|
* Formatting configuration for known Foundry types.
|
|
3630
3694
|
*
|
|
@@ -3633,6 +3697,22 @@ export type PropertyIdentifier = ({
|
|
|
3633
3697
|
export interface PropertyKnownTypeFormattingRule {
|
|
3634
3698
|
knownType: KnownType;
|
|
3635
3699
|
}
|
|
3700
|
+
/**
|
|
3701
|
+
* The load level of the property:
|
|
3702
|
+
|
|
3703
|
+
APPLY_REDUCERS: Returns a single value of an array as configured in the ontology.
|
|
3704
|
+
EXTRACT_MAIN_VALUE: Returns the main value of a struct as configured in the ontology.
|
|
3705
|
+
APPLY_REDUCERS_AND_EXTRACT_MAIN_VALUE: Performs both to return the reduced main value.
|
|
3706
|
+
*
|
|
3707
|
+
* Log Safety: UNSAFE
|
|
3708
|
+
*/
|
|
3709
|
+
export type PropertyLoadLevel = ({
|
|
3710
|
+
type: "applyReducersAndExtractMainValue";
|
|
3711
|
+
} & ApplyReducersAndExtractMainValueLoadLevel) | ({
|
|
3712
|
+
type: "applyReducers";
|
|
3713
|
+
} & ApplyReducersLoadLevel) | ({
|
|
3714
|
+
type: "extractMainValue";
|
|
3715
|
+
} & ExtractMainValueLoadLevel);
|
|
3636
3716
|
/**
|
|
3637
3717
|
* Wrapper for numeric formatting options.
|
|
3638
3718
|
*
|
|
@@ -3663,6 +3743,14 @@ export type PropertyNumberFormattingRuleType = ({
|
|
|
3663
3743
|
} & NumberFormatCustomUnit) | ({
|
|
3664
3744
|
type: "ratio";
|
|
3665
3745
|
} & NumberFormatRatio);
|
|
3746
|
+
/**
|
|
3747
|
+
* Log Safety: UNSAFE
|
|
3748
|
+
*/
|
|
3749
|
+
export type PropertyOrStructFieldOfPropertyImplementation = ({
|
|
3750
|
+
type: "structFieldOfProperty";
|
|
3751
|
+
} & StructFieldOfPropertyImplementation) | ({
|
|
3752
|
+
type: "property";
|
|
3753
|
+
} & PropertyImplementation);
|
|
3666
3754
|
/**
|
|
3667
3755
|
* Formatting configuration for timestamp property values.
|
|
3668
3756
|
*
|
|
@@ -3787,6 +3875,17 @@ export type PropertyValueFormattingRule = ({
|
|
|
3787
3875
|
} & PropertyKnownTypeFormattingRule) | ({
|
|
3788
3876
|
type: "timestamp";
|
|
3789
3877
|
} & PropertyTimestampFormattingRule);
|
|
3878
|
+
/**
|
|
3879
|
+
* A combination of a property identifier and the load level to apply to the property. You can select a reduced
|
|
3880
|
+
value for arrays and the main value for structs. If the provided load level cannot be applied to the property
|
|
3881
|
+
type, then it will be ignored. This selector is experimental and may not work in filters or sorts.
|
|
3882
|
+
*
|
|
3883
|
+
* Log Safety: UNSAFE
|
|
3884
|
+
*/
|
|
3885
|
+
export interface PropertyWithLoadLevelSelector {
|
|
3886
|
+
propertyIdentifier: PropertyIdentifier;
|
|
3887
|
+
loadLevel: PropertyLoadLevel;
|
|
3888
|
+
}
|
|
3790
3889
|
/**
|
|
3791
3890
|
* An error indicating that the subscribe request should be attempted on a different node.
|
|
3792
3891
|
*
|
|
@@ -4103,6 +4202,36 @@ export interface RegexQuery {
|
|
|
4103
4202
|
propertyIdentifier?: PropertyIdentifier;
|
|
4104
4203
|
value: string;
|
|
4105
4204
|
}
|
|
4205
|
+
/**
|
|
4206
|
+
* Specifies a bound for a relative date range query.
|
|
4207
|
+
*
|
|
4208
|
+
* Log Safety: UNSAFE
|
|
4209
|
+
*/
|
|
4210
|
+
export type RelativeDateRangeBound = {
|
|
4211
|
+
type: "relativePoint";
|
|
4212
|
+
} & RelativePointInTime;
|
|
4213
|
+
/**
|
|
4214
|
+
* Returns objects where the specified date or timestamp property falls within a relative date range.
|
|
4215
|
+
The bounds are calculated relative to query execution time and rounded to midnight in the specified timezone.
|
|
4216
|
+
*
|
|
4217
|
+
* Log Safety: UNSAFE
|
|
4218
|
+
*/
|
|
4219
|
+
export interface RelativeDateRangeQuery {
|
|
4220
|
+
field?: PropertyApiName;
|
|
4221
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
4222
|
+
relativeStartTime?: RelativeDateRangeBound;
|
|
4223
|
+
relativeEndTime?: RelativeDateRangeBound;
|
|
4224
|
+
timeZoneId: string;
|
|
4225
|
+
}
|
|
4226
|
+
/**
|
|
4227
|
+
* A point in time specified relative to query execution time.
|
|
4228
|
+
*
|
|
4229
|
+
* Log Safety: UNSAFE
|
|
4230
|
+
*/
|
|
4231
|
+
export interface RelativePointInTime {
|
|
4232
|
+
value: number;
|
|
4233
|
+
timeUnit: RelativeTimeUnit;
|
|
4234
|
+
}
|
|
4106
4235
|
/**
|
|
4107
4236
|
* A relative time, such as "3 days before" or "2 hours after" the current moment.
|
|
4108
4237
|
*
|
|
@@ -4130,6 +4259,12 @@ export type RelativeTimeRelation = "BEFORE" | "AFTER";
|
|
|
4130
4259
|
* Log Safety: SAFE
|
|
4131
4260
|
*/
|
|
4132
4261
|
export type RelativeTimeSeriesTimeUnit = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS" | "MONTHS" | "YEARS";
|
|
4262
|
+
/**
|
|
4263
|
+
* Units for relative time calculations.
|
|
4264
|
+
*
|
|
4265
|
+
* Log Safety: SAFE
|
|
4266
|
+
*/
|
|
4267
|
+
export type RelativeTimeUnit = "DAY" | "WEEK" | "MONTH" | "YEAR";
|
|
4133
4268
|
/**
|
|
4134
4269
|
* Unique request id
|
|
4135
4270
|
*
|
|
@@ -4223,6 +4358,8 @@ export type SearchJsonQueryV2 = ({
|
|
|
4223
4358
|
} & LtQueryV2) | ({
|
|
4224
4359
|
type: "doesNotIntersectBoundingBox";
|
|
4225
4360
|
} & DoesNotIntersectBoundingBoxQuery) | ({
|
|
4361
|
+
type: "relativeDateRange";
|
|
4362
|
+
} & RelativeDateRangeQuery) | ({
|
|
4226
4363
|
type: "wildcard";
|
|
4227
4364
|
} & WildcardQuery) | ({
|
|
4228
4365
|
type: "withinDistanceOf";
|
|
@@ -4304,6 +4441,7 @@ export interface SearchObjectsRequestV2 {
|
|
|
4304
4441
|
pageSize?: _Core.PageSize;
|
|
4305
4442
|
pageToken?: _Core.PageToken;
|
|
4306
4443
|
select: Array<PropertyApiName>;
|
|
4444
|
+
selectV2: Array<PropertyIdentifier>;
|
|
4307
4445
|
excludeRid?: boolean;
|
|
4308
4446
|
snapshot?: boolean;
|
|
4309
4447
|
}
|
|
@@ -4699,10 +4837,16 @@ export interface StructFieldEvaluationResult {
|
|
|
4699
4837
|
required: boolean;
|
|
4700
4838
|
}
|
|
4701
4839
|
/**
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4840
|
+
* Log Safety: UNSAFE
|
|
4841
|
+
*/
|
|
4842
|
+
export interface StructFieldOfPropertyImplementation {
|
|
4843
|
+
propertyApiName: PropertyApiName;
|
|
4844
|
+
structFieldApiName: StructFieldApiName;
|
|
4845
|
+
}
|
|
4846
|
+
/**
|
|
4847
|
+
* A combination of a property identifier and the load level to apply to the property. You can select a reduced
|
|
4848
|
+
value for arrays and the main value for structs. If the provided load level cannot be applied to the property
|
|
4849
|
+
type, then it will be ignored. This selector is experimental and may not work in filters or sorts.
|
|
4706
4850
|
*
|
|
4707
4851
|
* Log Safety: UNSAFE
|
|
4708
4852
|
*/
|
|
@@ -4753,6 +4897,14 @@ export interface StructParameterFieldArgument {
|
|
|
4753
4897
|
*/
|
|
4754
4898
|
export interface StructType {
|
|
4755
4899
|
structFieldTypes: Array<StructFieldType>;
|
|
4900
|
+
mainValue?: StructTypeMainValue;
|
|
4901
|
+
}
|
|
4902
|
+
/**
|
|
4903
|
+
* Log Safety: UNSAFE
|
|
4904
|
+
*/
|
|
4905
|
+
export interface StructTypeMainValue {
|
|
4906
|
+
mainValueType: ObjectPropertyType;
|
|
4907
|
+
fields: Array<StructFieldApiName>;
|
|
4756
4908
|
}
|
|
4757
4909
|
/**
|
|
4758
4910
|
* Contains the status of the submission criteria.
|