@osdk/foundry.ontologies 2.32.0 → 2.33.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 (36) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/build/browser/_components.d.ts +297 -18
  3. package/build/browser/_components.d.ts.map +1 -1
  4. package/build/browser/index.d.ts +2 -1
  5. package/build/browser/index.d.ts.map +1 -1
  6. package/build/browser/index.js +1 -0
  7. package/build/browser/index.js.map +1 -1
  8. package/build/browser/public/ActionTypeFullMetadata.d.ts +20 -0
  9. package/build/browser/public/ActionTypeFullMetadata.d.ts.map +1 -0
  10. package/build/browser/public/ActionTypeFullMetadata.js +30 -0
  11. package/build/browser/public/ActionTypeFullMetadata.js.map +1 -0
  12. package/build/browser/public/OntologyV2.d.ts +2 -0
  13. package/build/browser/public/OntologyV2.d.ts.map +1 -1
  14. package/build/browser/public/OntologyV2.js +2 -0
  15. package/build/browser/public/OntologyV2.js.map +1 -1
  16. package/build/browser/public/OntologyValueType.d.ts +2 -2
  17. package/build/browser/public/OntologyValueType.js +2 -2
  18. package/build/browser/public/OntologyValueType.js.map +1 -1
  19. package/build/esm/_components.d.ts +297 -18
  20. package/build/esm/_components.d.ts.map +1 -1
  21. package/build/esm/index.d.ts +2 -1
  22. package/build/esm/index.d.ts.map +1 -1
  23. package/build/esm/index.js +1 -0
  24. package/build/esm/index.js.map +1 -1
  25. package/build/esm/public/ActionTypeFullMetadata.d.ts +20 -0
  26. package/build/esm/public/ActionTypeFullMetadata.d.ts.map +1 -0
  27. package/build/esm/public/ActionTypeFullMetadata.js +30 -0
  28. package/build/esm/public/ActionTypeFullMetadata.js.map +1 -0
  29. package/build/esm/public/OntologyV2.d.ts +2 -0
  30. package/build/esm/public/OntologyV2.d.ts.map +1 -1
  31. package/build/esm/public/OntologyV2.js +2 -0
  32. package/build/esm/public/OntologyV2.js.map +1 -1
  33. package/build/esm/public/OntologyValueType.d.ts +2 -2
  34. package/build/esm/public/OntologyValueType.js +2 -2
  35. package/build/esm/public/OntologyValueType.js.map +1 -1
  36. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @osdk/foundry.ontologies
2
2
 
3
+ ## 2.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3b147c5: Bump sdks
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [3b147c5]
12
+ - @osdk/foundry.core@2.33.0
13
+ - @osdk/foundry.geo@2.33.0
14
+
3
15
  ## 2.32.0
4
16
 
5
17
  ### Minor Changes
@@ -24,6 +24,38 @@ export interface AbsoluteValuePropertyExpression {
24
24
  * Log Safety: UNSAFE
25
25
  */
26
26
  export type Action = LooselyBrandedString<"Action">;
27
+ /**
28
+ * A detailed operation for an Action
29
+ *
30
+ * Log Safety: UNSAFE
31
+ */
32
+ export type ActionLogicRule = ({
33
+ type: "modifyInterface";
34
+ } & ModifyInterfaceLogicRule) | ({
35
+ type: "createOrModifyObject";
36
+ } & CreateOrModifyObjectLogicRule) | ({
37
+ type: "modifyObject";
38
+ } & ModifyObjectLogicRule) | ({
39
+ type: "deleteLink";
40
+ } & DeleteLinkLogicRule) | ({
41
+ type: "createObject";
42
+ } & CreateObjectLogicRule) | ({
43
+ type: "createLink";
44
+ } & CreateLinkLogicRule) | ({
45
+ type: "batchedFunction";
46
+ } & BatchedFunctionLogicRule) | ({
47
+ type: "createOrModifyObjectV2";
48
+ } & CreateOrModifyObjectLogicRuleV2) | ({
49
+ type: "deleteInterfaceLink";
50
+ } & DeleteInterfaceLinkLogicRule) | ({
51
+ type: "deleteObject";
52
+ } & DeleteObjectLogicRule) | ({
53
+ type: "function";
54
+ } & FunctionLogicRule) | ({
55
+ type: "createInterfaceLink";
56
+ } & CreateInterfaceLinkLogicRule) | ({
57
+ type: "createInterface";
58
+ } & CreateInterfaceLogicRule);
27
59
  /**
28
60
  * Log Safety: SAFE
29
61
  */
@@ -124,6 +156,15 @@ endpoint or check the Ontology Manager.
124
156
  * Log Safety: UNSAFE
125
157
  */
126
158
  export type ActionTypeApiName = LooselyBrandedString<"ActionTypeApiName">;
159
+ /**
160
+ * Returns the full metadata for an Action type in the Ontology.
161
+ *
162
+ * Log Safety: UNSAFE
163
+ */
164
+ export interface ActionTypeFullMetadata {
165
+ actionType: ActionTypeV2;
166
+ fullLogicRule: ActionLogicRule;
167
+ }
127
168
  /**
128
169
  * The unique resource identifier of an action type, useful for interacting with other Foundry APIs.
129
170
  *
@@ -799,6 +840,13 @@ export interface BatchApplyActionResponse {
799
840
  export interface BatchApplyActionResponseV2 {
800
841
  edits?: BatchActionResults;
801
842
  }
843
+ /**
844
+ * Log Safety: UNSAFE
845
+ */
846
+ export interface BatchedFunctionLogicRule {
847
+ objectSetRidInputName: FunctionParameterName;
848
+ functionRule: FunctionLogicRule;
849
+ }
802
850
  /**
803
851
  * Log Safety: SAFE
804
852
  */
@@ -932,12 +980,38 @@ export interface CountAggregationV2 {
932
980
  export interface CountObjectsResponseV2 {
933
981
  count?: number;
934
982
  }
983
+ /**
984
+ * Log Safety: UNSAFE
985
+ */
986
+ export interface CreateInterfaceLinkLogicRule {
987
+ interfaceTypeApiName: InterfaceTypeApiName;
988
+ interfaceLinkTypeApiName: InterfaceLinkTypeApiName;
989
+ sourceObject: ParameterId;
990
+ targetObject: ParameterId;
991
+ }
992
+ /**
993
+ * Log Safety: UNSAFE
994
+ */
995
+ export interface CreateInterfaceLogicRule {
996
+ interfaceTypeApiName: InterfaceTypeApiName;
997
+ objectType: ParameterId;
998
+ sharedPropertyArguments: Record<SharedPropertyTypeApiName, LogicRuleArgument>;
999
+ structPropertyArguments: Record<SharedPropertyTypeApiName, Record<StructFieldApiName, StructFieldArgument>>;
1000
+ }
935
1001
  /**
936
1002
  * Log Safety: UNSAFE
937
1003
  */
938
1004
  export interface CreateInterfaceObjectRule {
939
1005
  interfaceTypeApiName: InterfaceTypeApiName;
940
1006
  }
1007
+ /**
1008
+ * Log Safety: UNSAFE
1009
+ */
1010
+ export interface CreateLinkLogicRule {
1011
+ linkTypeApiName: LinkTypeApiName;
1012
+ sourceObject: ParameterId;
1013
+ targetObject: ParameterId;
1014
+ }
941
1015
  /**
942
1016
  * Log Safety: UNSAFE
943
1017
  */
@@ -947,12 +1021,36 @@ export interface CreateLinkRule {
947
1021
  aSideObjectTypeApiName: ObjectTypeApiName;
948
1022
  bSideObjectTypeApiName: ObjectTypeApiName;
949
1023
  }
1024
+ /**
1025
+ * Log Safety: UNSAFE
1026
+ */
1027
+ export interface CreateObjectLogicRule {
1028
+ objectTypeApiName: ObjectTypeApiName;
1029
+ propertyArguments: Record<PropertyApiName, LogicRuleArgument>;
1030
+ structPropertyArguments: Record<PropertyApiName, Record<StructFieldApiName, StructFieldArgument>>;
1031
+ }
950
1032
  /**
951
1033
  * Log Safety: UNSAFE
952
1034
  */
953
1035
  export interface CreateObjectRule {
954
1036
  objectTypeApiName: ObjectTypeApiName;
955
1037
  }
1038
+ /**
1039
+ * Log Safety: UNSAFE
1040
+ */
1041
+ export interface CreateOrModifyObjectLogicRule {
1042
+ objectTypeApiName: ObjectTypeApiName;
1043
+ propertyArguments: Record<PropertyApiName, LogicRuleArgument>;
1044
+ structPropertyArguments: Record<PropertyApiName, Record<StructFieldApiName, StructFieldArgument>>;
1045
+ }
1046
+ /**
1047
+ * Log Safety: UNSAFE
1048
+ */
1049
+ export interface CreateOrModifyObjectLogicRuleV2 {
1050
+ objectToModify: ParameterId;
1051
+ propertyArguments: Record<PropertyApiName, LogicRuleArgument>;
1052
+ structPropertyArguments: Record<PropertyApiName, Record<StructFieldApiName, StructFieldArgument>>;
1053
+ }
956
1054
  /**
957
1055
  * Log Safety: UNSAFE
958
1056
  */
@@ -965,6 +1063,20 @@ export interface CreateTemporaryObjectSetRequestV2 {
965
1063
  export interface CreateTemporaryObjectSetResponseV2 {
966
1064
  objectSetRid: ObjectSetRid;
967
1065
  }
1066
+ /**
1067
+ * Represents the current time argument in a logic rule.
1068
+ *
1069
+ * Log Safety: SAFE
1070
+ */
1071
+ export interface CurrentTimeArgument {
1072
+ }
1073
+ /**
1074
+ * Represents the current user argument in a logic rule.
1075
+ *
1076
+ * Log Safety: SAFE
1077
+ */
1078
+ export interface CurrentUserArgument {
1079
+ }
968
1080
  /**
969
1081
  * A UUID representing a custom type in a given Function.
970
1082
  *
@@ -1012,6 +1124,15 @@ export type DataValue = any;
1012
1124
  export interface DecryptionResult {
1013
1125
  plaintext?: Plaintext;
1014
1126
  }
1127
+ /**
1128
+ * Log Safety: UNSAFE
1129
+ */
1130
+ export interface DeleteInterfaceLinkLogicRule {
1131
+ interfaceTypeApiName: InterfaceTypeApiName;
1132
+ interfaceLinkTypeApiName: InterfaceLinkTypeApiName;
1133
+ sourceObject: ParameterId;
1134
+ targetObject: ParameterId;
1135
+ }
1015
1136
  /**
1016
1137
  * Log Safety: UNSAFE
1017
1138
  */
@@ -1036,6 +1157,14 @@ export interface DeleteLinkEdit {
1036
1157
  linkType: LinkTypeApiName;
1037
1158
  linkedObjectPrimaryKey: PrimaryKeyValue;
1038
1159
  }
1160
+ /**
1161
+ * Log Safety: UNSAFE
1162
+ */
1163
+ export interface DeleteLinkLogicRule {
1164
+ linkTypeApiName: LinkTypeApiName;
1165
+ sourceObject: ParameterId;
1166
+ targetObject: ParameterId;
1167
+ }
1039
1168
  /**
1040
1169
  * Log Safety: UNSAFE
1041
1170
  */
@@ -1059,6 +1188,12 @@ export interface DeleteObjectEdit {
1059
1188
  objectType: ObjectTypeApiName;
1060
1189
  primaryKey: PropertyValue;
1061
1190
  }
1191
+ /**
1192
+ * Log Safety: UNSAFE
1193
+ */
1194
+ export interface DeleteObjectLogicRule {
1195
+ objectToDelete: ParameterId;
1196
+ }
1062
1197
  /**
1063
1198
  * Log Safety: UNSAFE
1064
1199
  */
@@ -1274,6 +1409,20 @@ properties.{propertyApiName}.isNull=false.
1274
1409
  * Log Safety: UNSAFE
1275
1410
  */
1276
1411
  export type FilterValue = LooselyBrandedString<"FilterValue">;
1412
+ /**
1413
+ * Log Safety: UNSAFE
1414
+ */
1415
+ export interface FunctionLogicRule {
1416
+ functionRid: FunctionRid;
1417
+ functionVersion: FunctionVersion;
1418
+ functionInputValues: Record<FunctionParameterName, LogicRuleArgument>;
1419
+ }
1420
+ /**
1421
+ * The name of an input to a function.
1422
+ *
1423
+ * Log Safety: UNSAFE
1424
+ */
1425
+ export type FunctionParameterName = LooselyBrandedString<"FunctionParameterName">;
1277
1426
  /**
1278
1427
  * The unique resource identifier of a Function, useful for interacting with other Foundry APIs.
1279
1428
  *
@@ -1459,6 +1608,15 @@ export type InterfaceLinkTypeLinkedEntityApiName = ({
1459
1608
  * Log Safety: SAFE
1460
1609
  */
1461
1610
  export type InterfaceLinkTypeRid = LooselyBrandedString<"InterfaceLinkTypeRid">;
1611
+ /**
1612
+ * Represents an interface parameter property argument in a logic rule.
1613
+ *
1614
+ * Log Safety: UNSAFE
1615
+ */
1616
+ export interface InterfaceParameterPropertyArgument {
1617
+ parameterId: ParameterId;
1618
+ sharedPropertyTypeRid: string;
1619
+ }
1462
1620
  /**
1463
1621
  * A shared property type with an additional field to indicate whether the property must be included on every
1464
1622
  object type that implements the interface, or whether it is optional.
@@ -1918,6 +2076,28 @@ export type LogicRule = ({
1918
2076
  } & CreateObjectRule) | ({
1919
2077
  type: "createLink";
1920
2078
  } & CreateLinkRule);
2079
+ /**
2080
+ * Represents an argument for a logic rule operation. An argument can be passed in via the action parameters, as a static value, or as some other value.
2081
+ *
2082
+ * Log Safety: UNSAFE
2083
+ */
2084
+ export type LogicRuleArgument = ({
2085
+ type: "currentTime";
2086
+ } & CurrentTimeArgument) | ({
2087
+ type: "staticValue";
2088
+ } & StaticArgument) | ({
2089
+ type: "currentUser";
2090
+ } & CurrentUserArgument) | ({
2091
+ type: "parameterId";
2092
+ } & ParameterIdArgument) | ({
2093
+ type: "interfaceParameterPropertyValue";
2094
+ } & InterfaceParameterPropertyArgument) | ({
2095
+ type: "synchronousWebhookOutput";
2096
+ } & SynchronousWebhookOutputArgument) | ({
2097
+ type: "objectParameterPropertyValue";
2098
+ } & ObjectParameterPropertyArgument) | ({
2099
+ type: "uniqueIdentifier";
2100
+ } & UniqueIdentifierArgument);
1921
2101
  /**
1922
2102
  * Returns objects where the specified field is less than or equal to a value.
1923
2103
  *
@@ -2012,6 +2192,14 @@ export interface MinAggregationV2 {
2012
2192
  name?: AggregationMetricName;
2013
2193
  direction?: OrderByDirection;
2014
2194
  }
2195
+ /**
2196
+ * Log Safety: UNSAFE
2197
+ */
2198
+ export interface ModifyInterfaceLogicRule {
2199
+ interfaceObjectToModify: ParameterId;
2200
+ sharedPropertyArguments: Record<SharedPropertyTypeApiName, LogicRuleArgument>;
2201
+ structPropertyArguments: Record<SharedPropertyTypeApiName, Record<StructFieldApiName, StructFieldArgument>>;
2202
+ }
2015
2203
  /**
2016
2204
  * Log Safety: UNSAFE
2017
2205
  */
@@ -2033,6 +2221,14 @@ export interface ModifyObjectEdit {
2033
2221
  primaryKey: PropertyValue;
2034
2222
  properties: Record<PropertyApiName, DataValue>;
2035
2223
  }
2224
+ /**
2225
+ * Log Safety: UNSAFE
2226
+ */
2227
+ export interface ModifyObjectLogicRule {
2228
+ objectToModify: ParameterId;
2229
+ propertyArguments: Record<PropertyApiName, LogicRuleArgument>;
2230
+ structPropertyArguments: Record<PropertyApiName, Record<StructFieldApiName, StructFieldArgument>>;
2231
+ }
2036
2232
  /**
2037
2233
  * Log Safety: UNSAFE
2038
2234
  */
@@ -2131,6 +2327,15 @@ export interface ObjectLocator {
2131
2327
  objectTypeApiName: ObjectTypeApiName;
2132
2328
  primaryKeyValue: PrimaryKeyValue;
2133
2329
  }
2330
+ /**
2331
+ * Represents an object parameter property argument in a logic rule.
2332
+ *
2333
+ * Log Safety: UNSAFE
2334
+ */
2335
+ export interface ObjectParameterPropertyArgument {
2336
+ parameterId: ParameterId;
2337
+ propertyTypeApiName: PropertyTypeApiName;
2338
+ }
2134
2339
  /**
2135
2340
  * Log Safety: UNSAFE
2136
2341
  */
@@ -2848,6 +3053,14 @@ Parameters can be viewed and managed in the Ontology Manager.
2848
3053
  * Log Safety: UNSAFE
2849
3054
  */
2850
3055
  export type ParameterId = LooselyBrandedString<"ParameterId">;
3056
+ /**
3057
+ * Represents a parameter ID argument in a logic rule.
3058
+ *
3059
+ * Log Safety: UNSAFE
3060
+ */
3061
+ export interface ParameterIdArgument {
3062
+ parameterId: ParameterId;
3063
+ }
2851
3064
  /**
2852
3065
  * A possible value for the parameter. This is defined in the Ontology Manager by Actions admins.
2853
3066
  *
@@ -3370,6 +3583,18 @@ export interface RegexConstraint {
3370
3583
  pattern: string;
3371
3584
  partialMatch: boolean;
3372
3585
  }
3586
+ /**
3587
+ * Returns objects where the specified field matches the regex pattern provided. This applies to the non-analyzed
3588
+ form of text fields and supports standard regex syntax of dot (.), star(*) and question mark(?).
3589
+ Either field or propertyIdentifier can be supplied, but not both.
3590
+ *
3591
+ * Log Safety: UNSAFE
3592
+ */
3593
+ export interface RegexQuery {
3594
+ field?: PropertyApiName;
3595
+ propertyIdentifier?: PropertyIdentifier;
3596
+ value: string;
3597
+ }
3373
3598
  /**
3374
3599
  * A relative time, such as "3 days before" or "2 hours after" the current moment.
3375
3600
  *
@@ -3470,42 +3695,24 @@ export type SearchJsonQuery = ({
3470
3695
  * Log Safety: UNSAFE
3471
3696
  */
3472
3697
  export type SearchJsonQueryV2 = ({
3473
- type: "or";
3474
- } & OrQueryV2) | ({
3475
- type: "in";
3476
- } & InQuery) | ({
3477
- type: "doesNotIntersectPolygon";
3478
- } & DoesNotIntersectPolygonQuery) | ({
3479
3698
  type: "lt";
3480
3699
  } & LtQueryV2) | ({
3481
3700
  type: "doesNotIntersectBoundingBox";
3482
3701
  } & DoesNotIntersectBoundingBoxQuery) | ({
3483
- type: "eq";
3484
- } & EqualsQueryV2) | ({
3485
- type: "containsAllTerms";
3486
- } & ContainsAllTermsQuery) | ({
3487
- type: "gt";
3488
- } & GtQueryV2) | ({
3489
3702
  type: "wildcard";
3490
3703
  } & WildcardQuery) | ({
3491
3704
  type: "withinDistanceOf";
3492
3705
  } & WithinDistanceOfQuery) | ({
3493
3706
  type: "withinBoundingBox";
3494
3707
  } & WithinBoundingBoxQuery) | ({
3495
- type: "contains";
3496
- } & ContainsQueryV2) | ({
3497
3708
  type: "not";
3498
3709
  } & NotQueryV2) | ({
3499
3710
  type: "intersectsBoundingBox";
3500
3711
  } & IntersectsBoundingBoxQuery) | ({
3501
3712
  type: "and";
3502
3713
  } & AndQueryV2) | ({
3503
- type: "isNull";
3504
- } & IsNullQueryV2) | ({
3505
3714
  type: "containsAllTermsInOrderPrefixLastTerm";
3506
3715
  } & ContainsAllTermsInOrderPrefixLastTerm) | ({
3507
- type: "containsAnyTerm";
3508
- } & ContainsAnyTermQuery) | ({
3509
3716
  type: "gte";
3510
3717
  } & GteQueryV2) | ({
3511
3718
  type: "containsAllTermsInOrder";
@@ -3516,6 +3723,26 @@ export type SearchJsonQueryV2 = ({
3516
3723
  } & IntersectsPolygonQuery) | ({
3517
3724
  type: "lte";
3518
3725
  } & LteQueryV2) | ({
3726
+ type: "or";
3727
+ } & OrQueryV2) | ({
3728
+ type: "in";
3729
+ } & InQuery) | ({
3730
+ type: "doesNotIntersectPolygon";
3731
+ } & DoesNotIntersectPolygonQuery) | ({
3732
+ type: "eq";
3733
+ } & EqualsQueryV2) | ({
3734
+ type: "containsAllTerms";
3735
+ } & ContainsAllTermsQuery) | ({
3736
+ type: "gt";
3737
+ } & GtQueryV2) | ({
3738
+ type: "contains";
3739
+ } & ContainsQueryV2) | ({
3740
+ type: "regex";
3741
+ } & RegexQuery) | ({
3742
+ type: "isNull";
3743
+ } & IsNullQueryV2) | ({
3744
+ type: "containsAnyTerm";
3745
+ } & ContainsAnyTermQuery) | ({
3519
3746
  type: "startsWith";
3520
3747
  } & StartsWithQuery);
3521
3748
  /**
@@ -3798,6 +4025,14 @@ export interface StartsWithQuery {
3798
4025
  propertyIdentifier?: PropertyIdentifier;
3799
4026
  value: string;
3800
4027
  }
4028
+ /**
4029
+ * Represents a static argument in a logic rule.
4030
+ *
4031
+ * Log Safety: UNSAFE
4032
+ */
4033
+ export interface StaticArgument {
4034
+ value: DataValue;
4035
+ }
3801
4036
  /**
3802
4037
  * Which format to serialize the binary stream in.
3803
4038
  ARROW is more efficient for streaming a large sized response.
@@ -3883,6 +4118,16 @@ export interface StructEvaluatedConstraint {
3883
4118
  * Log Safety: UNSAFE
3884
4119
  */
3885
4120
  export type StructFieldApiName = LooselyBrandedString<"StructFieldApiName">;
4121
+ /**
4122
+ * Represents an argument used for an individual struct field.
4123
+ *
4124
+ * Log Safety: UNSAFE
4125
+ */
4126
+ export type StructFieldArgument = ({
4127
+ type: "structListParameterFieldValue";
4128
+ } & StructListParameterFieldArgument) | ({
4129
+ type: "structParameterFieldValue";
4130
+ } & StructParameterFieldArgument);
3886
4131
  /**
3887
4132
  * A constraint that an action struct parameter field value must satisfy in order to be considered valid.
3888
4133
  Constraints can be configured on fields of struct parameters in the Ontology Manager.
@@ -3943,12 +4188,30 @@ export interface StructFieldType {
3943
4188
  * Log Safety: SAFE
3944
4189
  */
3945
4190
  export type StructFieldTypeRid = LooselyBrandedString<"StructFieldTypeRid">;
4191
+ /**
4192
+ * Represents a struct list parameter field argument in a logic rule.
4193
+ *
4194
+ * Log Safety: UNSAFE
4195
+ */
4196
+ export interface StructListParameterFieldArgument {
4197
+ parameterId: ParameterId;
4198
+ structParameterFieldApiName: StructParameterFieldApiName;
4199
+ }
3946
4200
  /**
3947
4201
  * The unique identifier of the struct parameter field.
3948
4202
  *
3949
4203
  * Log Safety: UNSAFE
3950
4204
  */
3951
4205
  export type StructParameterFieldApiName = LooselyBrandedString<"StructParameterFieldApiName">;
4206
+ /**
4207
+ * Represents a struct parameter field argument in a logic rule.
4208
+ *
4209
+ * Log Safety: UNSAFE
4210
+ */
4211
+ export interface StructParameterFieldArgument {
4212
+ parameterId: ParameterId;
4213
+ structParameterFieldApiName: StructParameterFieldApiName;
4214
+ }
3952
4215
  /**
3953
4216
  * Log Safety: UNSAFE
3954
4217
  */
@@ -4036,6 +4299,14 @@ export interface SyncApplyActionResponseV2 {
4036
4299
  validation?: ValidateActionResponseV2;
4037
4300
  edits?: ActionResults;
4038
4301
  }
4302
+ /**
4303
+ * Represents a synchronous webhook output argument in a logic rule.
4304
+ *
4305
+ * Log Safety: UNSAFE
4306
+ */
4307
+ export interface SynchronousWebhookOutputArgument {
4308
+ webhookOutputParamName: string;
4309
+ }
4039
4310
  /**
4040
4311
  * Log Safety: UNSAFE
4041
4312
  */
@@ -4199,6 +4470,14 @@ This can happen when a parameter's allowed values are defined by another paramet
4199
4470
  */
4200
4471
  export interface UnevaluableConstraint {
4201
4472
  }
4473
+ /**
4474
+ * Represents a unique identifier argument in a logic rule.
4475
+ *
4476
+ * Log Safety: SAFE
4477
+ */
4478
+ export interface UniqueIdentifierArgument {
4479
+ linkId?: string;
4480
+ }
4202
4481
  /**
4203
4482
  * The string must be a valid UUID (Universally Unique Identifier).
4204
4483
  *