@osdk/internal.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @osdk/internal.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/internal.foundry.core@2.44.0
13
+ - @osdk/internal.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/internal.foundry.core@2.43.0
25
+ - @osdk/internal.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
@@ -3257,7 +3415,19 @@ export interface OntologyObject {
3257
3415
  */
3258
3416
  export interface OntologyObjectArrayType {
3259
3417
  subType: ObjectPropertyType;
3418
+ reducers: Array<OntologyObjectArrayTypeReducer>;
3260
3419
  }
3420
+ /**
3421
+ * Log Safety: UNSAFE
3422
+ */
3423
+ export interface OntologyObjectArrayTypeReducer {
3424
+ direction: OntologyObjectArrayTypeReducerSortDirection;
3425
+ field?: StructFieldApiName;
3426
+ }
3427
+ /**
3428
+ * Log Safety: SAFE
3429
+ */
3430
+ export type OntologyObjectArrayTypeReducerSortDirection = "ASCENDING_NULLS_LAST" | "DESCENDING_NULLS_LAST";
3261
3431
  /**
3262
3432
  * Log Safety: UNSAFE
3263
3433
  */
@@ -3516,6 +3686,15 @@ export interface PreciseDuration {
3516
3686
  * Log Safety: SAFE
3517
3687
  */
3518
3688
  export type PreciseTimeUnit = "NANOSECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS";
3689
+ /**
3690
+ * Matches intervals containing all the terms, using exact match for all but the last term, and prefix match for
3691
+ the last term. Ordering of the terms in the query is preserved.
3692
+ *
3693
+ * Log Safety: UNSAFE
3694
+ */
3695
+ export interface PrefixOnLastTokenRule {
3696
+ query: string;
3697
+ }
3519
3698
  /**
3520
3699
  * Returns objects where the specified field starts with the provided value.
3521
3700
  *
@@ -3618,7 +3797,15 @@ export type PropertyIdentifier = ({
3618
3797
  type: "property";
3619
3798
  } & PropertyApiNameSelector) | ({
3620
3799
  type: "structField";
3621
- } & StructFieldSelector);
3800
+ } & StructFieldSelector) | ({
3801
+ type: "propertyWithLoadLevel";
3802
+ } & PropertyWithLoadLevelSelector);
3803
+ /**
3804
+ * Log Safety: UNSAFE
3805
+ */
3806
+ export interface PropertyImplementation {
3807
+ propertyApiName: PropertyApiName;
3808
+ }
3622
3809
  /**
3623
3810
  * Formatting configuration for known Foundry types.
3624
3811
  *
@@ -3627,6 +3814,22 @@ export type PropertyIdentifier = ({
3627
3814
  export interface PropertyKnownTypeFormattingRule {
3628
3815
  knownType: KnownType;
3629
3816
  }
3817
+ /**
3818
+ * The load level of the property:
3819
+
3820
+ APPLY_REDUCERS: Returns a single value of an array as configured in the ontology.
3821
+ EXTRACT_MAIN_VALUE: Returns the main value of a struct as configured in the ontology.
3822
+ APPLY_REDUCERS_AND_EXTRACT_MAIN_VALUE: Performs both to return the reduced main value.
3823
+ *
3824
+ * Log Safety: UNSAFE
3825
+ */
3826
+ export type PropertyLoadLevel = ({
3827
+ type: "applyReducersAndExtractMainValue";
3828
+ } & ApplyReducersAndExtractMainValueLoadLevel) | ({
3829
+ type: "applyReducers";
3830
+ } & ApplyReducersLoadLevel) | ({
3831
+ type: "extractMainValue";
3832
+ } & ExtractMainValueLoadLevel);
3630
3833
  /**
3631
3834
  * Wrapper for numeric formatting options.
3632
3835
  *
@@ -3657,6 +3860,14 @@ export type PropertyNumberFormattingRuleType = ({
3657
3860
  } & NumberFormatCustomUnit) | ({
3658
3861
  type: "ratio";
3659
3862
  } & NumberFormatRatio);
3863
+ /**
3864
+ * Log Safety: UNSAFE
3865
+ */
3866
+ export type PropertyOrStructFieldOfPropertyImplementation = ({
3867
+ type: "structFieldOfProperty";
3868
+ } & StructFieldOfPropertyImplementation) | ({
3869
+ type: "property";
3870
+ } & PropertyImplementation);
3660
3871
  /**
3661
3872
  * Formatting configuration for timestamp property values.
3662
3873
  *
@@ -3781,6 +3992,17 @@ export type PropertyValueFormattingRule = ({
3781
3992
  } & PropertyKnownTypeFormattingRule) | ({
3782
3993
  type: "timestamp";
3783
3994
  } & PropertyTimestampFormattingRule);
3995
+ /**
3996
+ * A combination of a property API name and the load level to apply to the property. You can select a reduced value
3997
+ for arrays and the main value for structs. If the provided load level cannot be applied to the property type,
3998
+ then it will be ignored. This selector is experimental and may not work in filters or sorts.
3999
+ *
4000
+ * Log Safety: UNSAFE
4001
+ */
4002
+ export interface PropertyWithLoadLevelSelector {
4003
+ propertyIdentifier: PropertyIdentifier;
4004
+ loadLevel: PropertyLoadLevel;
4005
+ }
3784
4006
  /**
3785
4007
  * An error indicating that the subscribe request should be attempted on a different node.
3786
4008
  *
@@ -4097,6 +4319,40 @@ export interface RegexQuery {
4097
4319
  propertyIdentifier?: PropertyIdentifier;
4098
4320
  value: string;
4099
4321
  }
4322
+ /**
4323
+ * Specifies a bound for a relative date range query.
4324
+ *
4325
+ * Log Safety: UNSAFE
4326
+ */
4327
+ export type RelativeDateRangeBound = {
4328
+ type: "relativePoint";
4329
+ } & RelativePointInTime;
4330
+ /**
4331
+ * Returns objects where the specified date or timestamp property falls within a relative date range.
4332
+ The bounds are calculated relative to query execution time and rounded to midnight in the specified timezone.
4333
+ Examples:
4334
+
4335
+ Last 7 days: relativeStartTime = {value: -7, timeUnit: DAY}, relativeEndTime = {value: 0, timeUnit: DAY}
4336
+ This month: relativeStartTime = {value: 0, timeUnit: MONTH}, relativeEndTime = {value: 1, timeUnit: MONTH}
4337
+ *
4338
+ * Log Safety: UNSAFE
4339
+ */
4340
+ export interface RelativeDateRangeQuery {
4341
+ field?: PropertyApiName;
4342
+ propertyIdentifier?: PropertyIdentifier;
4343
+ relativeStartTime?: RelativeDateRangeBound;
4344
+ relativeEndTime?: RelativeDateRangeBound;
4345
+ timeZoneId: string;
4346
+ }
4347
+ /**
4348
+ * A point in time specified relative to query execution time.
4349
+ *
4350
+ * Log Safety: UNSAFE
4351
+ */
4352
+ export interface RelativePointInTime {
4353
+ value: number;
4354
+ timeUnit: RelativeTimeUnit;
4355
+ }
4100
4356
  /**
4101
4357
  * A relative time, such as "3 days before" or "2 hours after" the current moment.
4102
4358
  *
@@ -4124,6 +4380,12 @@ export type RelativeTimeRelation = "BEFORE" | "AFTER";
4124
4380
  * Log Safety: SAFE
4125
4381
  */
4126
4382
  export type RelativeTimeSeriesTimeUnit = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS" | "MONTHS" | "YEARS";
4383
+ /**
4384
+ * Units for relative time calculations.
4385
+ *
4386
+ * Log Safety: SAFE
4387
+ */
4388
+ export type RelativeTimeUnit = "DAY" | "WEEK" | "MONTH" | "YEAR";
4127
4389
  /**
4128
4390
  * Unique request id
4129
4391
  *
@@ -4217,6 +4479,8 @@ export type SearchJsonQueryV2 = ({
4217
4479
  } & LtQueryV2) | ({
4218
4480
  type: "doesNotIntersectBoundingBox";
4219
4481
  } & DoesNotIntersectBoundingBoxQuery) | ({
4482
+ type: "relativeDateRange";
4483
+ } & RelativeDateRangeQuery) | ({
4220
4484
  type: "wildcard";
4221
4485
  } & WildcardQuery) | ({
4222
4486
  type: "withinDistanceOf";
@@ -4261,6 +4525,8 @@ export type SearchJsonQueryV2 = ({
4261
4525
  } & IsNullQueryV2) | ({
4262
4526
  type: "containsAnyTerm";
4263
4527
  } & ContainsAnyTermQuery) | ({
4528
+ type: "interval";
4529
+ } & IntervalQuery) | ({
4264
4530
  type: "startsWith";
4265
4531
  } & StartsWithQuery);
4266
4532
  /**
@@ -4298,6 +4564,7 @@ export interface SearchObjectsRequestV2 {
4298
4564
  pageSize?: _Core.PageSize;
4299
4565
  pageToken?: _Core.PageToken;
4300
4566
  select: Array<PropertyApiName>;
4567
+ selectV2: Array<PropertyIdentifier>;
4301
4568
  excludeRid?: boolean;
4302
4569
  snapshot?: boolean;
4303
4570
  }
@@ -4693,10 +4960,16 @@ export interface StructFieldEvaluationResult {
4693
4960
  required: boolean;
4694
4961
  }
4695
4962
  /**
4696
- * A combination of a property API name and a struct field API name used to select struct fields. Note that you can
4697
- still select struct properties with only a 'PropertyApiNameSelector'; the queries will then become 'OR' queries
4698
- across the fields of the struct property, and derived property expressions will operate on the whole struct
4699
- where applicable.
4963
+ * Log Safety: UNSAFE
4964
+ */
4965
+ export interface StructFieldOfPropertyImplementation {
4966
+ propertyApiName: PropertyApiName;
4967
+ structFieldApiName: StructFieldApiName;
4968
+ }
4969
+ /**
4970
+ * A combination of a property identifier and the load level to apply to the property. You can select a reduced
4971
+ value for arrays and the main value for structs. If the provided load level cannot be applied to the property
4972
+ type, then it will be ignored. This selector is experimental and may not work in filters or sorts.
4700
4973
  *
4701
4974
  * Log Safety: UNSAFE
4702
4975
  */
@@ -4747,6 +5020,14 @@ export interface StructParameterFieldArgument {
4747
5020
  */
4748
5021
  export interface StructType {
4749
5022
  structFieldTypes: Array<StructFieldType>;
5023
+ mainValue?: StructTypeMainValue;
5024
+ }
5025
+ /**
5026
+ * Log Safety: UNSAFE
5027
+ */
5028
+ export interface StructTypeMainValue {
5029
+ mainValueType: ObjectPropertyType;
5030
+ fields: Array<StructFieldApiName>;
4750
5031
  }
4751
5032
  /**
4752
5033
  * Contains the status of the submission criteria.
@@ -5015,6 +5296,19 @@ export interface UnevaluableConstraint {
5015
5296
  export interface UniqueIdentifierArgument {
5016
5297
  linkId?: string;
5017
5298
  }
5299
+ /**
5300
+ * A reference to a UniqueIdentifierArgument linkId defined for this action type.
5301
+ *
5302
+ * Log Safety: SAFE
5303
+ */
5304
+ export type UniqueIdentifierLinkId = string;
5305
+ /**
5306
+ * An override value to be used for a UniqueIdentifier action parameter, instead of
5307
+ the value being automatically generated.
5308
+ *
5309
+ * Log Safety: SAFE
5310
+ */
5311
+ export type UniqueIdentifierValue = string;
5018
5312
  /**
5019
5313
  * The string must be a valid UUID (Universally Unique Identifier).
5020
5314
  *