@osdk/internal.foundry.ontologies 2.48.0 → 2.50.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 +99 -8
- 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 +99 -8
- 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,29 @@
|
|
|
1
1
|
# @osdk/internal.foundry.ontologies
|
|
2
2
|
|
|
3
|
+
## 2.50.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e7d3aec: Regenerate platform sdks, notably, for branching params in queries.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [e7d3aec]
|
|
12
|
+
- @osdk/internal.foundry.core@2.50.0
|
|
13
|
+
- @osdk/internal.foundry.geo@2.50.0
|
|
14
|
+
|
|
15
|
+
## 2.49.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- ed3ac19: Regenerate Platform SDKs
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [ed3ac19]
|
|
24
|
+
- @osdk/internal.foundry.core@2.49.0
|
|
25
|
+
- @osdk/internal.foundry.geo@2.49.0
|
|
26
|
+
|
|
3
27
|
## 2.48.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
|
@@ -1520,17 +1520,28 @@ export type EditHistoryEdit = ({
|
|
|
1520
1520
|
/**
|
|
1521
1521
|
* Log Safety: UNSAFE
|
|
1522
1522
|
*/
|
|
1523
|
-
export
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1523
|
+
export type EditsHistoryFilter = ({
|
|
1524
|
+
type: "timestampFilter";
|
|
1525
|
+
} & EditsHistoryTimestampFilter) | ({
|
|
1526
|
+
type: "operationIdsFilter";
|
|
1527
|
+
} & EditsHistoryOperationIdsFilter);
|
|
1528
|
+
/**
|
|
1529
|
+
* Log Safety: SAFE
|
|
1530
|
+
*/
|
|
1531
|
+
export interface EditsHistoryOperationIdsFilter {
|
|
1532
|
+
operationIds: Array<ActionRid>;
|
|
1529
1533
|
}
|
|
1530
1534
|
/**
|
|
1531
1535
|
* Log Safety: SAFE
|
|
1532
1536
|
*/
|
|
1533
1537
|
export type EditsHistorySortOrder = "newest_first" | "oldest_first";
|
|
1538
|
+
/**
|
|
1539
|
+
* Log Safety: SAFE
|
|
1540
|
+
*/
|
|
1541
|
+
export interface EditsHistoryTimestampFilter {
|
|
1542
|
+
startTime?: string;
|
|
1543
|
+
endTime?: string;
|
|
1544
|
+
}
|
|
1534
1545
|
/**
|
|
1535
1546
|
* Log Safety: SAFE
|
|
1536
1547
|
*/
|
|
@@ -1697,12 +1708,54 @@ export type FunctionVersion = LooselyBrandedString<"FunctionVersion">;
|
|
|
1697
1708
|
* Log Safety: SAFE
|
|
1698
1709
|
*/
|
|
1699
1710
|
export type Fuzzy = boolean;
|
|
1711
|
+
/**
|
|
1712
|
+
* Matches intervals containing terms that are similar to the provided term, within an edit distance
|
|
1713
|
+
defined by fuzziness. An edit is a single character change needed to make a term match, including
|
|
1714
|
+
character insertion, deletion, substitution, or transposition of two adjacent characters.
|
|
1715
|
+
*
|
|
1716
|
+
* Log Safety: UNSAFE
|
|
1717
|
+
*/
|
|
1718
|
+
export interface FuzzyRule {
|
|
1719
|
+
term: string;
|
|
1720
|
+
fuzziness?: number;
|
|
1721
|
+
}
|
|
1700
1722
|
/**
|
|
1701
1723
|
* Setting fuzzy to true allows approximate matching in search queries that support it.
|
|
1702
1724
|
*
|
|
1703
1725
|
* Log Safety: SAFE
|
|
1704
1726
|
*/
|
|
1705
1727
|
export type FuzzyV2 = boolean;
|
|
1728
|
+
/**
|
|
1729
|
+
* A GeoJSON geometry specification.
|
|
1730
|
+
*
|
|
1731
|
+
* Log Safety: UNSAFE
|
|
1732
|
+
*/
|
|
1733
|
+
export interface GeoJsonString {
|
|
1734
|
+
geoJson: string;
|
|
1735
|
+
}
|
|
1736
|
+
/**
|
|
1737
|
+
* Geometry specification for a GeoShapeV2Query. Supports bounding box envelopes and arbitrary GeoJSON geometries.
|
|
1738
|
+
*
|
|
1739
|
+
* Log Safety: UNSAFE
|
|
1740
|
+
*/
|
|
1741
|
+
export type GeoShapeV2Geometry = ({
|
|
1742
|
+
type: "envelope";
|
|
1743
|
+
} & BoundingBoxValue) | ({
|
|
1744
|
+
type: "geoJson";
|
|
1745
|
+
} & GeoJsonString);
|
|
1746
|
+
/**
|
|
1747
|
+
* Returns objects where the specified field satisfies the provided geometry query with the given spatial operator.
|
|
1748
|
+
Supports both envelope (bounding box) and GeoJSON geometries for filtering geopoint or geoshape properties.
|
|
1749
|
+
Either field or propertyIdentifier can be supplied, but not both.
|
|
1750
|
+
*
|
|
1751
|
+
* Log Safety: UNSAFE
|
|
1752
|
+
*/
|
|
1753
|
+
export interface GeoShapeV2Query {
|
|
1754
|
+
field?: PropertyApiName;
|
|
1755
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
1756
|
+
geometry: GeoShapeV2Geometry;
|
|
1757
|
+
spatialFilterMode: SpatialFilterMode;
|
|
1758
|
+
}
|
|
1706
1759
|
/**
|
|
1707
1760
|
* A single geotemporal data point representing the location of an entity at a specific point in time.
|
|
1708
1761
|
*
|
|
@@ -1746,6 +1799,24 @@ export interface GeotimeSeriesValue {
|
|
|
1746
1799
|
position: _Geo.Position;
|
|
1747
1800
|
timestamp: string;
|
|
1748
1801
|
}
|
|
1802
|
+
/**
|
|
1803
|
+
* Log Safety: SAFE
|
|
1804
|
+
*/
|
|
1805
|
+
export interface GetActionTypeByRidBatchRequest {
|
|
1806
|
+
requests: Array<GetActionTypeByRidBatchRequestElement>;
|
|
1807
|
+
}
|
|
1808
|
+
/**
|
|
1809
|
+
* Log Safety: SAFE
|
|
1810
|
+
*/
|
|
1811
|
+
export interface GetActionTypeByRidBatchRequestElement {
|
|
1812
|
+
actionTypeRid: ActionTypeRid;
|
|
1813
|
+
}
|
|
1814
|
+
/**
|
|
1815
|
+
* Log Safety: UNSAFE
|
|
1816
|
+
*/
|
|
1817
|
+
export interface GetActionTypeByRidBatchResponse {
|
|
1818
|
+
data: Array<ActionTypeV2>;
|
|
1819
|
+
}
|
|
1749
1820
|
/**
|
|
1750
1821
|
* Gets a single value of a property. Throws if the target object set is on the MANY side of the link and could
|
|
1751
1822
|
explode the cardinality.
|
|
@@ -2115,7 +2186,9 @@ export type IntervalQueryRule = ({
|
|
|
2115
2186
|
type: "anyOf";
|
|
2116
2187
|
} & AnyOfRule) | ({
|
|
2117
2188
|
type: "prefixOnLastToken";
|
|
2118
|
-
} & PrefixOnLastTokenRule)
|
|
2189
|
+
} & PrefixOnLastTokenRule) | ({
|
|
2190
|
+
type: "fuzzy";
|
|
2191
|
+
} & FuzzyRule);
|
|
2119
2192
|
/**
|
|
2120
2193
|
* Returns objects based on the existence of the specified field.
|
|
2121
2194
|
*
|
|
@@ -2528,6 +2601,7 @@ export interface LoadObjectSetV2ObjectsOrInterfacesResponse {
|
|
|
2528
2601
|
data: Array<OntologyObjectV2>;
|
|
2529
2602
|
nextPageToken?: _Core.PageToken;
|
|
2530
2603
|
totalCount: _Core.TotalCount;
|
|
2604
|
+
transactionId?: OntologyTransactionId;
|
|
2531
2605
|
}
|
|
2532
2606
|
/**
|
|
2533
2607
|
* The Ontology metadata (i.e., object, link, action, query, and interface types) to load.
|
|
@@ -3024,6 +3098,7 @@ created, modified, or deleted as part of an action execution.
|
|
|
3024
3098
|
* Log Safety: UNSAFE
|
|
3025
3099
|
*/
|
|
3026
3100
|
export interface ObjectEditHistoryEntry {
|
|
3101
|
+
objectPrimaryKey: ObjectPrimaryKeyV2;
|
|
3027
3102
|
operationId: ActionRid;
|
|
3028
3103
|
actionTypeRid: ActionTypeRid;
|
|
3029
3104
|
userId: string;
|
|
@@ -3407,7 +3482,7 @@ Otherwise, the method will return edits history for all objects of this object t
|
|
|
3407
3482
|
*/
|
|
3408
3483
|
export interface ObjectTypeEditsHistoryRequest {
|
|
3409
3484
|
objectPrimaryKey?: ObjectPrimaryKeyV2;
|
|
3410
|
-
filters?:
|
|
3485
|
+
filters?: EditsHistoryFilter;
|
|
3411
3486
|
sortOrder?: EditsHistorySortOrder;
|
|
3412
3487
|
includeAllPreviousProperties?: boolean;
|
|
3413
3488
|
pageSize?: number;
|
|
@@ -3545,6 +3620,8 @@ export type OntologyDataType = ({
|
|
|
3545
3620
|
} & _Core.MarkingType) | ({
|
|
3546
3621
|
type: "unsupported";
|
|
3547
3622
|
} & _Core.UnsupportedType) | ({
|
|
3623
|
+
type: "mediaReference";
|
|
3624
|
+
} & _Core.MediaReferenceType) | ({
|
|
3548
3625
|
type: "array";
|
|
3549
3626
|
} & OntologyArrayType) | ({
|
|
3550
3627
|
type: "objectSet";
|
|
@@ -4375,6 +4452,8 @@ export type QueryDataType = ({
|
|
|
4375
4452
|
} & QueryStructType) | ({
|
|
4376
4453
|
type: "set";
|
|
4377
4454
|
} & QuerySetType) | ({
|
|
4455
|
+
type: "void";
|
|
4456
|
+
} & _Core.VoidType) | ({
|
|
4378
4457
|
type: "string";
|
|
4379
4458
|
} & _Core.StringType) | ({
|
|
4380
4459
|
type: "entrySet";
|
|
@@ -4397,6 +4476,8 @@ export type QueryDataType = ({
|
|
|
4397
4476
|
} & _Core.UnsupportedType) | ({
|
|
4398
4477
|
type: "attachment";
|
|
4399
4478
|
} & _Core.AttachmentType) | ({
|
|
4479
|
+
type: "mediaReference";
|
|
4480
|
+
} & _Core.MediaReferenceType) | ({
|
|
4400
4481
|
type: "null";
|
|
4401
4482
|
} & _Core.NullType) | ({
|
|
4402
4483
|
type: "array";
|
|
@@ -4787,6 +4868,8 @@ export type SearchJsonQueryV2 = ({
|
|
|
4787
4868
|
} & ContainsAnyTermQuery) | ({
|
|
4788
4869
|
type: "interval";
|
|
4789
4870
|
} & IntervalQuery) | ({
|
|
4871
|
+
type: "geoShapeV2";
|
|
4872
|
+
} & GeoShapeV2Query) | ({
|
|
4790
4873
|
type: "startsWith";
|
|
4791
4874
|
} & StartsWithQuery);
|
|
4792
4875
|
/**
|
|
@@ -5069,6 +5152,14 @@ export type SharedPropertyTypeApiName = LooselyBrandedString<"SharedPropertyType
|
|
|
5069
5152
|
* Log Safety: SAFE
|
|
5070
5153
|
*/
|
|
5071
5154
|
export type SharedPropertyTypeRid = LooselyBrandedString<"SharedPropertyTypeRid">;
|
|
5155
|
+
/**
|
|
5156
|
+
* The spatial relation operator for a GeoShapeV2Query. INTERSECTS matches objects that intersect the provided
|
|
5157
|
+
geometry, DISJOINT matches objects that do not intersect the provided geometry, WITHIN matches objects that
|
|
5158
|
+
lie within the provided geometry, and CONTAINS matches objects that contain the provided geometry.
|
|
5159
|
+
*
|
|
5160
|
+
* Log Safety: SAFE
|
|
5161
|
+
*/
|
|
5162
|
+
export type SpatialFilterMode = "INTERSECTS" | "DISJOINT" | "WITHIN" | "CONTAINS";
|
|
5072
5163
|
/**
|
|
5073
5164
|
* Deprecated alias for containsAllTermsInOrderPrefixLastTerm, which is preferred because the name startsWith is misleading.
|
|
5074
5165
|
Returns objects where the specified field starts with the provided value. Allows you to specify a property to
|