@osdk/foundry.ontologies 2.42.0 → 2.44.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 (38) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/build/browser/_components.d.ts +303 -13
  3. package/build/browser/_components.d.ts.map +1 -1
  4. package/build/browser/_errors.d.ts +117 -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 +19 -0
  9. package/build/browser/public/Action.d.ts.map +1 -1
  10. package/build/browser/public/Action.js +13 -0
  11. package/build/browser/public/Action.js.map +1 -1
  12. package/build/browser/public/OntologyInterface.d.ts +2 -0
  13. package/build/browser/public/OntologyInterface.d.ts.map +1 -1
  14. package/build/browser/public/OntologyObjectSet.d.ts +10 -1
  15. package/build/browser/public/OntologyObjectSet.d.ts.map +1 -1
  16. package/build/browser/public/OntologyObjectSet.js +10 -1
  17. package/build/browser/public/OntologyObjectSet.js.map +1 -1
  18. package/build/browser/public/Query.d.ts +1 -0
  19. package/build/browser/public/Query.d.ts.map +1 -1
  20. package/build/esm/_components.d.ts +303 -13
  21. package/build/esm/_components.d.ts.map +1 -1
  22. package/build/esm/_errors.d.ts +117 -0
  23. package/build/esm/_errors.d.ts.map +1 -1
  24. package/build/esm/index.d.ts +2 -2
  25. package/build/esm/index.d.ts.map +1 -1
  26. package/build/esm/public/Action.d.ts +19 -0
  27. package/build/esm/public/Action.d.ts.map +1 -1
  28. package/build/esm/public/Action.js +13 -0
  29. package/build/esm/public/Action.js.map +1 -1
  30. package/build/esm/public/OntologyInterface.d.ts +2 -0
  31. package/build/esm/public/OntologyInterface.d.ts.map +1 -1
  32. package/build/esm/public/OntologyObjectSet.d.ts +10 -1
  33. package/build/esm/public/OntologyObjectSet.d.ts.map +1 -1
  34. package/build/esm/public/OntologyObjectSet.js +10 -1
  35. package/build/esm/public/OntologyObjectSet.js.map +1 -1
  36. package/build/esm/public/Query.d.ts +1 -0
  37. package/build/esm/public/Query.d.ts.map +1 -1
  38. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @osdk/foundry.ontologies
2
2
 
3
+ ## 2.44.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cb3d72c: Regenerate Platform SDKs
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [cb3d72c]
12
+ - @osdk/foundry.core@2.44.0
13
+ - @osdk/foundry.geo@2.44.0
14
+
15
+ ## 2.43.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 843a406: Bump apis
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [843a406]
24
+ - @osdk/foundry.core@2.43.0
25
+ - @osdk/foundry.geo@2.43.0
26
+
3
27
  ## 2.42.0
4
28
 
5
29
  ### Minor Changes
@@ -24,6 +24,12 @@ export interface AbsoluteValuePropertyExpression {
24
24
  * Log Safety: UNSAFE
25
25
  */
26
26
  export type Action = LooselyBrandedString<"Action">;
27
+ /**
28
+ * An ISO 8601 timestamp.
29
+ *
30
+ * Log Safety: SAFE
31
+ */
32
+ export type ActionExecutionTime = string;
27
33
  /**
28
34
  * A detailed operation for an Action
29
35
  *
@@ -529,6 +535,16 @@ export type AggregationV2 = ({
529
535
  } & SumAggregationV2) | ({
530
536
  type: "exactDistinct";
531
537
  } & ExactDistinctAggregationV2);
538
+ /**
539
+ * Matches intervals satisfying all the rules in the query
540
+ *
541
+ * Log Safety: UNSAFE
542
+ */
543
+ export interface AllOfRule {
544
+ rules: Array<IntervalQueryRule>;
545
+ maxGaps?: number;
546
+ ordered: boolean;
547
+ }
532
548
  /**
533
549
  * Returns objects where the specified field contains all of the whitespace separated words in any
534
550
  order in the provided value. This query supports fuzzy matching.
@@ -556,6 +572,14 @@ export interface AndQuery {
556
572
  export interface AndQueryV2 {
557
573
  value: Array<SearchJsonQueryV2>;
558
574
  }
575
+ /**
576
+ * Matches intervals satisfying any of the rules in the query
577
+ *
578
+ * Log Safety: UNSAFE
579
+ */
580
+ export interface AnyOfRule {
581
+ rules: Array<IntervalQueryRule>;
582
+ }
559
583
  /**
560
584
  * Returns objects where the specified field contains any of the whitespace separated words in any
561
585
  order in the provided value. This query supports fuzzy matching.
@@ -571,6 +595,13 @@ export interface AnyTermQuery {
571
595
  * Log Safety: SAFE
572
596
  */
573
597
  export type ApplyActionMode = "VALIDATE_ONLY" | "VALIDATE_AND_EXECUTE";
598
+ /**
599
+ * Log Safety: SAFE
600
+ */
601
+ export interface ApplyActionOverrides {
602
+ uniqueIdentifierLinkIdValues: Record<UniqueIdentifierLinkId, UniqueIdentifierValue>;
603
+ actionExecutionTime?: ActionExecutionTime;
604
+ }
574
605
  /**
575
606
  * Log Safety: UNSAFE
576
607
  */
@@ -596,6 +627,27 @@ export interface ApplyActionRequestV2 {
596
627
  */
597
628
  export interface ApplyActionResponse {
598
629
  }
630
+ /**
631
+ * Log Safety: UNSAFE
632
+ */
633
+ export interface ApplyActionWithOverridesRequest {
634
+ request: ApplyActionRequestV2;
635
+ overrides: ApplyActionOverrides;
636
+ }
637
+ /**
638
+ * Performs both apply reducers and extract main value to return the reduced main value.
639
+ *
640
+ * Log Safety: SAFE
641
+ */
642
+ export interface ApplyReducersAndExtractMainValueLoadLevel {
643
+ }
644
+ /**
645
+ * Returns a single value of an array as configured in the ontology.
646
+ *
647
+ * Log Safety: SAFE
648
+ */
649
+ export interface ApplyReducersLoadLevel {
650
+ }
599
651
  /**
600
652
  * Computes an approximate number of distinct values for the provided field.
601
653
  *
@@ -1465,6 +1517,13 @@ export interface ExperimentalPropertyTypeStatus {
1465
1517
  * Log Safety: SAFE
1466
1518
  */
1467
1519
  export type ExtractDatePart = "DAYS" | "MONTHS" | "QUARTERS" | "YEARS";
1520
+ /**
1521
+ * Returns the main value of a struct as configured in the ontology.
1522
+ *
1523
+ * Log Safety: SAFE
1524
+ */
1525
+ export interface ExtractMainValueLoadLevel {
1526
+ }
1468
1527
  /**
1469
1528
  * Extracts the specified date part from a date or timestamp.
1470
1529
  *
@@ -1733,11 +1792,45 @@ the Ontology Manager.
1733
1792
  */
1734
1793
  export type InterfacePropertyApiName = LooselyBrandedString<"InterfacePropertyApiName">;
1735
1794
  /**
1795
+ * An implementation of an interface property via a local property.
1796
+ *
1736
1797
  * Log Safety: UNSAFE
1737
1798
  */
1738
1799
  export interface InterfacePropertyLocalPropertyImplementation {
1739
1800
  propertyApiName: PropertyApiName;
1740
1801
  }
1802
+ /**
1803
+ * An implementation of an interface property via applying reducers on the nested implementation.
1804
+ *
1805
+ * Log Safety: UNSAFE
1806
+ */
1807
+ export interface InterfacePropertyReducedPropertyImplementation {
1808
+ implementation: NestedInterfacePropertyTypeImplementation;
1809
+ }
1810
+ /**
1811
+ * An implementation of an interface property via the field of a local struct property.
1812
+ *
1813
+ * Log Safety: UNSAFE
1814
+ */
1815
+ export interface InterfacePropertyStructFieldImplementation {
1816
+ structFieldOfProperty: StructFieldOfPropertyImplementation;
1817
+ }
1818
+ /**
1819
+ * An implementation of a struct interface property via a local struct property. Specifies a mapping of interface
1820
+ struct fields to local struct fields or properties.
1821
+ *
1822
+ * Log Safety: UNSAFE
1823
+ */
1824
+ export interface InterfacePropertyStructImplementation {
1825
+ mapping: InterfacePropertyStructImplementationMapping;
1826
+ }
1827
+ /**
1828
+ * An implementation of a struct interface property via a local struct property. Specifies a mapping of interface
1829
+ struct fields to local struct fields or properties.
1830
+ *
1831
+ * Log Safety: UNSAFE
1832
+ */
1833
+ export type InterfacePropertyStructImplementationMapping = Record<StructFieldApiName, PropertyOrStructFieldOfPropertyImplementation>;
1741
1834
  /**
1742
1835
  * The definition of an interface property type on an interface. An interface property can either be backed by a
1743
1836
  shared property type or defined on the interface directly.
@@ -1750,14 +1843,19 @@ export type InterfacePropertyType = ({
1750
1843
  type: "interfaceSharedPropertyType";
1751
1844
  } & InterfaceSharedPropertyType);
1752
1845
  /**
1753
- * Describes how an object type implements an interface property type. For now this is only possible via a single
1754
- local property but this may be extended in the future.
1755
- *
1756
- * Log Safety: UNSAFE
1757
- */
1758
- export type InterfacePropertyTypeImplementation = {
1846
+ * Describes how an object type implements an interface property.
1847
+ *
1848
+ * Log Safety: UNSAFE
1849
+ */
1850
+ export type InterfacePropertyTypeImplementation = ({
1851
+ type: "structFieldImplementation";
1852
+ } & InterfacePropertyStructFieldImplementation) | ({
1853
+ type: "structImplementation";
1854
+ } & InterfacePropertyStructImplementation) | ({
1759
1855
  type: "localPropertyImplementation";
1760
- } & InterfacePropertyLocalPropertyImplementation;
1856
+ } & InterfacePropertyLocalPropertyImplementation) | ({
1857
+ type: "reducedPropertyImplementation";
1858
+ } & InterfacePropertyReducedPropertyImplementation);
1761
1859
  /**
1762
1860
  * The unique resource identifier of an interface property type, useful for interacting with other Foundry APIs.
1763
1861
  *
@@ -1859,6 +1957,31 @@ export interface IntersectsPolygonQuery {
1859
1957
  propertyIdentifier?: PropertyIdentifier;
1860
1958
  value: PolygonValue;
1861
1959
  }
1960
+ /**
1961
+ * Returns objects where the specified field matches the sub-rule provided. This applies to the analyzed form of
1962
+ text fields. Either field or propertyIdentifier can be supplied, but not both.
1963
+ *
1964
+ * Log Safety: UNSAFE
1965
+ */
1966
+ export interface IntervalQuery {
1967
+ field?: PropertyApiName;
1968
+ propertyIdentifier?: PropertyIdentifier;
1969
+ rule: IntervalQueryRule;
1970
+ }
1971
+ /**
1972
+ * Sub-rule used for evaluating an IntervalQuery
1973
+ *
1974
+ * Log Safety: UNSAFE
1975
+ */
1976
+ export type IntervalQueryRule = ({
1977
+ type: "allOf";
1978
+ } & AllOfRule) | ({
1979
+ type: "match";
1980
+ } & MatchRule) | ({
1981
+ type: "anyOf";
1982
+ } & AnyOfRule) | ({
1983
+ type: "prefixOnLastToken";
1984
+ } & PrefixOnLastTokenRule);
1862
1985
  /**
1863
1986
  * Returns objects based on the existence of the specified field.
1864
1987
  *
@@ -2186,6 +2309,7 @@ export interface LoadObjectSetRequestV2 {
2186
2309
  objectSet: ObjectSet;
2187
2310
  orderBy?: SearchOrderByV2;
2188
2311
  select: Array<SelectedPropertyApiName>;
2312
+ selectV2: Array<PropertyIdentifier>;
2189
2313
  pageToken?: _Core.PageToken;
2190
2314
  pageSize?: _Core.PageSize;
2191
2315
  excludeRid?: boolean;
@@ -2212,6 +2336,7 @@ export interface LoadObjectSetV2MultipleObjectTypesRequest {
2212
2336
  objectSet: ObjectSet;
2213
2337
  orderBy?: SearchOrderByV2;
2214
2338
  select: Array<SelectedPropertyApiName>;
2339
+ selectV2: Array<PropertyIdentifier>;
2215
2340
  pageToken?: _Core.PageToken;
2216
2341
  pageSize?: _Core.PageSize;
2217
2342
  excludeRid?: boolean;
@@ -2227,7 +2352,7 @@ single object set- some objects may have all their properties and some may only
2227
2352
  The interfaceToObjectTypeMappings field contains mappings from SharedPropertyTypeApiNames on the interface(s) to
2228
2353
  PropertyApiName for properties on the object(s).
2229
2354
  The interfaceToObjectTypeMappingsV2 field contains mappings from InterfacePropertyApiNames on the
2230
- interface(s) to InterfacePropertyImplementation for properties on the object(s). This therefore includes
2355
+ interface(s) to InterfacePropertyTypeImplementation for properties on the object(s). This therefore includes
2231
2356
  implementations of both properties backed by SharedPropertyTypes as well as properties defined on the interface.
2232
2357
  *
2233
2358
  * Log Safety: UNSAFE
@@ -2249,6 +2374,7 @@ export interface LoadObjectSetV2ObjectsOrInterfacesRequest {
2249
2374
  objectSet: ObjectSet;
2250
2375
  orderBy?: SearchOrderByV2;
2251
2376
  select: Array<SelectedPropertyApiName>;
2377
+ selectV2: Array<PropertyIdentifier>;
2252
2378
  pageToken?: _Core.PageToken;
2253
2379
  pageSize?: _Core.PageSize;
2254
2380
  excludeRid?: boolean;
@@ -2359,6 +2485,16 @@ export interface LtQueryV2 {
2359
2485
  propertyIdentifier?: PropertyIdentifier;
2360
2486
  value: PropertyValue;
2361
2487
  }
2488
+ /**
2489
+ * Matches intervals containing the terms in the query
2490
+ *
2491
+ * Log Safety: UNSAFE
2492
+ */
2493
+ export interface MatchRule {
2494
+ query: string;
2495
+ maxGaps?: number;
2496
+ ordered: boolean;
2497
+ }
2362
2498
  /**
2363
2499
  * Computes the maximum value for the provided field.
2364
2500
  *
@@ -2491,6 +2627,19 @@ export interface NearestNeighborsQueryText {
2491
2627
  export interface NegatePropertyExpression {
2492
2628
  property: DerivedPropertyDefinition;
2493
2629
  }
2630
+ /**
2631
+ * Describes how an object type implements an interface property when a reducer is applied to it. Is missing a
2632
+ reduced property implementation to prevent arbitrarily nested implementations.
2633
+ *
2634
+ * Log Safety: UNSAFE
2635
+ */
2636
+ export type NestedInterfacePropertyTypeImplementation = ({
2637
+ type: "structFieldImplementation";
2638
+ } & InterfacePropertyStructFieldImplementation) | ({
2639
+ type: "structImplementation";
2640
+ } & InterfacePropertyStructImplementation) | ({
2641
+ type: "localPropertyImplementation";
2642
+ } & InterfacePropertyLocalPropertyImplementation);
2494
2643
  /**
2495
2644
  * Log Safety: UNSAFE
2496
2645
  */
@@ -2721,6 +2870,14 @@ export interface ObjectEdits {
2721
2870
  addedLinksCount: number;
2722
2871
  deletedLinksCount: number;
2723
2872
  }
2873
+ /**
2874
+ * Optional features to toggle when generating the object loading response.
2875
+ *
2876
+ * Log Safety: SAFE
2877
+ */
2878
+ export interface ObjectLoadingResponseOptions {
2879
+ shouldLoadObjectRids?: boolean;
2880
+ }
2724
2881
  /**
2725
2882
  * An object identifier containing an object type API name and primary key.
2726
2883
  *
@@ -2960,6 +3117,7 @@ export interface ObjectSetStreamSubscribeRequest {
2960
3117
  objectSet: ObjectSet;
2961
3118
  propertySet: Array<SelectedPropertyApiName>;
2962
3119
  referenceSet: Array<SelectedPropertyApiName>;
3120
+ objectLoadingResponseOptions?: ObjectLoadingResponseOptions;
2963
3121
  }
2964
3122
  /**
2965
3123
  * The list of object sets that should be subscribed to. A client can stop subscribing to an object set
@@ -3263,7 +3421,19 @@ export interface OntologyObject {
3263
3421
  */
3264
3422
  export interface OntologyObjectArrayType {
3265
3423
  subType: ObjectPropertyType;
3424
+ reducers: Array<OntologyObjectArrayTypeReducer>;
3425
+ }
3426
+ /**
3427
+ * Log Safety: UNSAFE
3428
+ */
3429
+ export interface OntologyObjectArrayTypeReducer {
3430
+ direction: OntologyObjectArrayTypeReducerSortDirection;
3431
+ field?: StructFieldApiName;
3266
3432
  }
3433
+ /**
3434
+ * Log Safety: SAFE
3435
+ */
3436
+ export type OntologyObjectArrayTypeReducerSortDirection = "ASCENDING_NULLS_LAST" | "DESCENDING_NULLS_LAST";
3267
3437
  /**
3268
3438
  * Log Safety: UNSAFE
3269
3439
  */
@@ -3522,6 +3692,15 @@ export interface PreciseDuration {
3522
3692
  * Log Safety: SAFE
3523
3693
  */
3524
3694
  export type PreciseTimeUnit = "NANOSECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS";
3695
+ /**
3696
+ * Matches intervals containing all the terms, using exact match for all but the last term, and prefix match for
3697
+ the last term. Ordering of the terms in the query is preserved.
3698
+ *
3699
+ * Log Safety: UNSAFE
3700
+ */
3701
+ export interface PrefixOnLastTokenRule {
3702
+ query: string;
3703
+ }
3525
3704
  /**
3526
3705
  * Returns objects where the specified field starts with the provided value.
3527
3706
  *
@@ -3624,7 +3803,15 @@ export type PropertyIdentifier = ({
3624
3803
  type: "property";
3625
3804
  } & PropertyApiNameSelector) | ({
3626
3805
  type: "structField";
3627
- } & StructFieldSelector);
3806
+ } & StructFieldSelector) | ({
3807
+ type: "propertyWithLoadLevel";
3808
+ } & PropertyWithLoadLevelSelector);
3809
+ /**
3810
+ * Log Safety: UNSAFE
3811
+ */
3812
+ export interface PropertyImplementation {
3813
+ propertyApiName: PropertyApiName;
3814
+ }
3628
3815
  /**
3629
3816
  * Formatting configuration for known Foundry types.
3630
3817
  *
@@ -3633,6 +3820,22 @@ export type PropertyIdentifier = ({
3633
3820
  export interface PropertyKnownTypeFormattingRule {
3634
3821
  knownType: KnownType;
3635
3822
  }
3823
+ /**
3824
+ * The load level of the property:
3825
+
3826
+ APPLY_REDUCERS: Returns a single value of an array as configured in the ontology.
3827
+ EXTRACT_MAIN_VALUE: Returns the main value of a struct as configured in the ontology.
3828
+ APPLY_REDUCERS_AND_EXTRACT_MAIN_VALUE: Performs both to return the reduced main value.
3829
+ *
3830
+ * Log Safety: UNSAFE
3831
+ */
3832
+ export type PropertyLoadLevel = ({
3833
+ type: "applyReducersAndExtractMainValue";
3834
+ } & ApplyReducersAndExtractMainValueLoadLevel) | ({
3835
+ type: "applyReducers";
3836
+ } & ApplyReducersLoadLevel) | ({
3837
+ type: "extractMainValue";
3838
+ } & ExtractMainValueLoadLevel);
3636
3839
  /**
3637
3840
  * Wrapper for numeric formatting options.
3638
3841
  *
@@ -3663,6 +3866,14 @@ export type PropertyNumberFormattingRuleType = ({
3663
3866
  } & NumberFormatCustomUnit) | ({
3664
3867
  type: "ratio";
3665
3868
  } & NumberFormatRatio);
3869
+ /**
3870
+ * Log Safety: UNSAFE
3871
+ */
3872
+ export type PropertyOrStructFieldOfPropertyImplementation = ({
3873
+ type: "structFieldOfProperty";
3874
+ } & StructFieldOfPropertyImplementation) | ({
3875
+ type: "property";
3876
+ } & PropertyImplementation);
3666
3877
  /**
3667
3878
  * Formatting configuration for timestamp property values.
3668
3879
  *
@@ -3787,6 +3998,17 @@ export type PropertyValueFormattingRule = ({
3787
3998
  } & PropertyKnownTypeFormattingRule) | ({
3788
3999
  type: "timestamp";
3789
4000
  } & PropertyTimestampFormattingRule);
4001
+ /**
4002
+ * A combination of a property identifier and the load level to apply to the property. You can select a reduced
4003
+ value for arrays and the main value for structs. If the provided load level cannot be applied to the property
4004
+ type, then it will be ignored. This selector is experimental and may not work in filters or sorts.
4005
+ *
4006
+ * Log Safety: UNSAFE
4007
+ */
4008
+ export interface PropertyWithLoadLevelSelector {
4009
+ propertyIdentifier: PropertyIdentifier;
4010
+ loadLevel: PropertyLoadLevel;
4011
+ }
3790
4012
  /**
3791
4013
  * An error indicating that the subscribe request should be attempted on a different node.
3792
4014
  *
@@ -4103,6 +4325,36 @@ export interface RegexQuery {
4103
4325
  propertyIdentifier?: PropertyIdentifier;
4104
4326
  value: string;
4105
4327
  }
4328
+ /**
4329
+ * Specifies a bound for a relative date range query.
4330
+ *
4331
+ * Log Safety: UNSAFE
4332
+ */
4333
+ export type RelativeDateRangeBound = {
4334
+ type: "relativePoint";
4335
+ } & RelativePointInTime;
4336
+ /**
4337
+ * Returns objects where the specified date or timestamp property falls within a relative date range.
4338
+ The bounds are calculated relative to query execution time and rounded to midnight in the specified timezone.
4339
+ *
4340
+ * Log Safety: UNSAFE
4341
+ */
4342
+ export interface RelativeDateRangeQuery {
4343
+ field?: PropertyApiName;
4344
+ propertyIdentifier?: PropertyIdentifier;
4345
+ relativeStartTime?: RelativeDateRangeBound;
4346
+ relativeEndTime?: RelativeDateRangeBound;
4347
+ timeZoneId: string;
4348
+ }
4349
+ /**
4350
+ * A point in time specified relative to query execution time.
4351
+ *
4352
+ * Log Safety: UNSAFE
4353
+ */
4354
+ export interface RelativePointInTime {
4355
+ value: number;
4356
+ timeUnit: RelativeTimeUnit;
4357
+ }
4106
4358
  /**
4107
4359
  * A relative time, such as "3 days before" or "2 hours after" the current moment.
4108
4360
  *
@@ -4130,6 +4382,12 @@ export type RelativeTimeRelation = "BEFORE" | "AFTER";
4130
4382
  * Log Safety: SAFE
4131
4383
  */
4132
4384
  export type RelativeTimeSeriesTimeUnit = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS" | "MONTHS" | "YEARS";
4385
+ /**
4386
+ * Units for relative time calculations.
4387
+ *
4388
+ * Log Safety: SAFE
4389
+ */
4390
+ export type RelativeTimeUnit = "DAY" | "WEEK" | "MONTH" | "YEAR";
4133
4391
  /**
4134
4392
  * Unique request id
4135
4393
  *
@@ -4223,6 +4481,8 @@ export type SearchJsonQueryV2 = ({
4223
4481
  } & LtQueryV2) | ({
4224
4482
  type: "doesNotIntersectBoundingBox";
4225
4483
  } & DoesNotIntersectBoundingBoxQuery) | ({
4484
+ type: "relativeDateRange";
4485
+ } & RelativeDateRangeQuery) | ({
4226
4486
  type: "wildcard";
4227
4487
  } & WildcardQuery) | ({
4228
4488
  type: "withinDistanceOf";
@@ -4267,6 +4527,8 @@ export type SearchJsonQueryV2 = ({
4267
4527
  } & IsNullQueryV2) | ({
4268
4528
  type: "containsAnyTerm";
4269
4529
  } & ContainsAnyTermQuery) | ({
4530
+ type: "interval";
4531
+ } & IntervalQuery) | ({
4270
4532
  type: "startsWith";
4271
4533
  } & StartsWithQuery);
4272
4534
  /**
@@ -4304,6 +4566,7 @@ export interface SearchObjectsRequestV2 {
4304
4566
  pageSize?: _Core.PageSize;
4305
4567
  pageToken?: _Core.PageToken;
4306
4568
  select: Array<PropertyApiName>;
4569
+ selectV2: Array<PropertyIdentifier>;
4307
4570
  excludeRid?: boolean;
4308
4571
  snapshot?: boolean;
4309
4572
  }
@@ -4699,10 +4962,16 @@ export interface StructFieldEvaluationResult {
4699
4962
  required: boolean;
4700
4963
  }
4701
4964
  /**
4702
- * A combination of a property API name and a struct field API name used to select struct fields. Note that you can
4703
- still select struct properties with only a 'PropertyApiNameSelector'; the queries will then become 'OR' queries
4704
- across the fields of the struct property, and derived property expressions will operate on the whole struct
4705
- where applicable.
4965
+ * Log Safety: UNSAFE
4966
+ */
4967
+ export interface StructFieldOfPropertyImplementation {
4968
+ propertyApiName: PropertyApiName;
4969
+ structFieldApiName: StructFieldApiName;
4970
+ }
4971
+ /**
4972
+ * A combination of a property identifier and the load level to apply to the property. You can select a reduced
4973
+ value for arrays and the main value for structs. If the provided load level cannot be applied to the property
4974
+ type, then it will be ignored. This selector is experimental and may not work in filters or sorts.
4706
4975
  *
4707
4976
  * Log Safety: UNSAFE
4708
4977
  */
@@ -4753,6 +5022,14 @@ export interface StructParameterFieldArgument {
4753
5022
  */
4754
5023
  export interface StructType {
4755
5024
  structFieldTypes: Array<StructFieldType>;
5025
+ mainValue?: StructTypeMainValue;
5026
+ }
5027
+ /**
5028
+ * Log Safety: UNSAFE
5029
+ */
5030
+ export interface StructTypeMainValue {
5031
+ mainValueType: ObjectPropertyType;
5032
+ fields: Array<StructFieldApiName>;
4756
5033
  }
4757
5034
  /**
4758
5035
  * Contains the status of the submission criteria.
@@ -5021,6 +5298,19 @@ export interface UnevaluableConstraint {
5021
5298
  export interface UniqueIdentifierArgument {
5022
5299
  linkId?: string;
5023
5300
  }
5301
+ /**
5302
+ * A reference to a UniqueIdentifierArgument linkId defined for this action type.
5303
+ *
5304
+ * Log Safety: SAFE
5305
+ */
5306
+ export type UniqueIdentifierLinkId = string;
5307
+ /**
5308
+ * An override value to be used for a UniqueIdentifier action parameter, instead of
5309
+ the value being automatically generated.
5310
+ *
5311
+ * Log Safety: SAFE
5312
+ */
5313
+ export type UniqueIdentifierValue = string;
5024
5314
  /**
5025
5315
  * The string must be a valid UUID (Universally Unique Identifier).
5026
5316
  *