@osdk/internal.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.
- package/CHANGELOG.md +12 -0
- package/build/browser/_components.d.ts +297 -18
- 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 +297 -18
- 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/internal.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/internal.foundry.core@2.33.0
|
|
13
|
+
- @osdk/internal.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
|
*/
|
|
@@ -2842,6 +3047,14 @@ Parameters can be viewed and managed in the Ontology Manager.
|
|
|
2842
3047
|
* Log Safety: UNSAFE
|
|
2843
3048
|
*/
|
|
2844
3049
|
export type ParameterId = LooselyBrandedString<"ParameterId">;
|
|
3050
|
+
/**
|
|
3051
|
+
* Represents a parameter ID argument in a logic rule.
|
|
3052
|
+
*
|
|
3053
|
+
* Log Safety: UNSAFE
|
|
3054
|
+
*/
|
|
3055
|
+
export interface ParameterIdArgument {
|
|
3056
|
+
parameterId: ParameterId;
|
|
3057
|
+
}
|
|
2845
3058
|
/**
|
|
2846
3059
|
* A possible value for the parameter. This is defined in the Ontology Manager by Actions admins.
|
|
2847
3060
|
*
|
|
@@ -3364,6 +3577,18 @@ export interface RegexConstraint {
|
|
|
3364
3577
|
pattern: string;
|
|
3365
3578
|
partialMatch: boolean;
|
|
3366
3579
|
}
|
|
3580
|
+
/**
|
|
3581
|
+
* Returns objects where the specified field matches the regex pattern provided. This applies to the non-analyzed
|
|
3582
|
+
form of text fields and supports standard regex syntax of dot (.), star(*) and question mark(?).
|
|
3583
|
+
Either field or propertyIdentifier can be supplied, but not both.
|
|
3584
|
+
*
|
|
3585
|
+
* Log Safety: UNSAFE
|
|
3586
|
+
*/
|
|
3587
|
+
export interface RegexQuery {
|
|
3588
|
+
field?: PropertyApiName;
|
|
3589
|
+
propertyIdentifier?: PropertyIdentifier;
|
|
3590
|
+
value: string;
|
|
3591
|
+
}
|
|
3367
3592
|
/**
|
|
3368
3593
|
* A relative time, such as "3 days before" or "2 hours after" the current moment.
|
|
3369
3594
|
*
|
|
@@ -3464,42 +3689,24 @@ export type SearchJsonQuery = ({
|
|
|
3464
3689
|
* Log Safety: UNSAFE
|
|
3465
3690
|
*/
|
|
3466
3691
|
export type SearchJsonQueryV2 = ({
|
|
3467
|
-
type: "or";
|
|
3468
|
-
} & OrQueryV2) | ({
|
|
3469
|
-
type: "in";
|
|
3470
|
-
} & InQuery) | ({
|
|
3471
|
-
type: "doesNotIntersectPolygon";
|
|
3472
|
-
} & DoesNotIntersectPolygonQuery) | ({
|
|
3473
3692
|
type: "lt";
|
|
3474
3693
|
} & LtQueryV2) | ({
|
|
3475
3694
|
type: "doesNotIntersectBoundingBox";
|
|
3476
3695
|
} & DoesNotIntersectBoundingBoxQuery) | ({
|
|
3477
|
-
type: "eq";
|
|
3478
|
-
} & EqualsQueryV2) | ({
|
|
3479
|
-
type: "containsAllTerms";
|
|
3480
|
-
} & ContainsAllTermsQuery) | ({
|
|
3481
|
-
type: "gt";
|
|
3482
|
-
} & GtQueryV2) | ({
|
|
3483
3696
|
type: "wildcard";
|
|
3484
3697
|
} & WildcardQuery) | ({
|
|
3485
3698
|
type: "withinDistanceOf";
|
|
3486
3699
|
} & WithinDistanceOfQuery) | ({
|
|
3487
3700
|
type: "withinBoundingBox";
|
|
3488
3701
|
} & WithinBoundingBoxQuery) | ({
|
|
3489
|
-
type: "contains";
|
|
3490
|
-
} & ContainsQueryV2) | ({
|
|
3491
3702
|
type: "not";
|
|
3492
3703
|
} & NotQueryV2) | ({
|
|
3493
3704
|
type: "intersectsBoundingBox";
|
|
3494
3705
|
} & IntersectsBoundingBoxQuery) | ({
|
|
3495
3706
|
type: "and";
|
|
3496
3707
|
} & AndQueryV2) | ({
|
|
3497
|
-
type: "isNull";
|
|
3498
|
-
} & IsNullQueryV2) | ({
|
|
3499
3708
|
type: "containsAllTermsInOrderPrefixLastTerm";
|
|
3500
3709
|
} & ContainsAllTermsInOrderPrefixLastTerm) | ({
|
|
3501
|
-
type: "containsAnyTerm";
|
|
3502
|
-
} & ContainsAnyTermQuery) | ({
|
|
3503
3710
|
type: "gte";
|
|
3504
3711
|
} & GteQueryV2) | ({
|
|
3505
3712
|
type: "containsAllTermsInOrder";
|
|
@@ -3510,6 +3717,26 @@ export type SearchJsonQueryV2 = ({
|
|
|
3510
3717
|
} & IntersectsPolygonQuery) | ({
|
|
3511
3718
|
type: "lte";
|
|
3512
3719
|
} & LteQueryV2) | ({
|
|
3720
|
+
type: "or";
|
|
3721
|
+
} & OrQueryV2) | ({
|
|
3722
|
+
type: "in";
|
|
3723
|
+
} & InQuery) | ({
|
|
3724
|
+
type: "doesNotIntersectPolygon";
|
|
3725
|
+
} & DoesNotIntersectPolygonQuery) | ({
|
|
3726
|
+
type: "eq";
|
|
3727
|
+
} & EqualsQueryV2) | ({
|
|
3728
|
+
type: "containsAllTerms";
|
|
3729
|
+
} & ContainsAllTermsQuery) | ({
|
|
3730
|
+
type: "gt";
|
|
3731
|
+
} & GtQueryV2) | ({
|
|
3732
|
+
type: "contains";
|
|
3733
|
+
} & ContainsQueryV2) | ({
|
|
3734
|
+
type: "regex";
|
|
3735
|
+
} & RegexQuery) | ({
|
|
3736
|
+
type: "isNull";
|
|
3737
|
+
} & IsNullQueryV2) | ({
|
|
3738
|
+
type: "containsAnyTerm";
|
|
3739
|
+
} & ContainsAnyTermQuery) | ({
|
|
3513
3740
|
type: "startsWith";
|
|
3514
3741
|
} & StartsWithQuery);
|
|
3515
3742
|
/**
|
|
@@ -3792,6 +4019,14 @@ export interface StartsWithQuery {
|
|
|
3792
4019
|
propertyIdentifier?: PropertyIdentifier;
|
|
3793
4020
|
value: string;
|
|
3794
4021
|
}
|
|
4022
|
+
/**
|
|
4023
|
+
* Represents a static argument in a logic rule.
|
|
4024
|
+
*
|
|
4025
|
+
* Log Safety: UNSAFE
|
|
4026
|
+
*/
|
|
4027
|
+
export interface StaticArgument {
|
|
4028
|
+
value: DataValue;
|
|
4029
|
+
}
|
|
3795
4030
|
/**
|
|
3796
4031
|
* Which format to serialize the binary stream in.
|
|
3797
4032
|
ARROW is more efficient for streaming a large sized response.
|
|
@@ -3877,6 +4112,16 @@ export interface StructEvaluatedConstraint {
|
|
|
3877
4112
|
* Log Safety: UNSAFE
|
|
3878
4113
|
*/
|
|
3879
4114
|
export type StructFieldApiName = LooselyBrandedString<"StructFieldApiName">;
|
|
4115
|
+
/**
|
|
4116
|
+
* Represents an argument used for an individual struct field.
|
|
4117
|
+
*
|
|
4118
|
+
* Log Safety: UNSAFE
|
|
4119
|
+
*/
|
|
4120
|
+
export type StructFieldArgument = ({
|
|
4121
|
+
type: "structListParameterFieldValue";
|
|
4122
|
+
} & StructListParameterFieldArgument) | ({
|
|
4123
|
+
type: "structParameterFieldValue";
|
|
4124
|
+
} & StructParameterFieldArgument);
|
|
3880
4125
|
/**
|
|
3881
4126
|
* A constraint that an action struct parameter field value must satisfy in order to be considered valid.
|
|
3882
4127
|
Constraints can be configured on fields of struct parameters in the Ontology Manager.
|
|
@@ -3937,12 +4182,30 @@ export interface StructFieldType {
|
|
|
3937
4182
|
* Log Safety: SAFE
|
|
3938
4183
|
*/
|
|
3939
4184
|
export type StructFieldTypeRid = LooselyBrandedString<"StructFieldTypeRid">;
|
|
4185
|
+
/**
|
|
4186
|
+
* Represents a struct list parameter field argument in a logic rule.
|
|
4187
|
+
*
|
|
4188
|
+
* Log Safety: UNSAFE
|
|
4189
|
+
*/
|
|
4190
|
+
export interface StructListParameterFieldArgument {
|
|
4191
|
+
parameterId: ParameterId;
|
|
4192
|
+
structParameterFieldApiName: StructParameterFieldApiName;
|
|
4193
|
+
}
|
|
3940
4194
|
/**
|
|
3941
4195
|
* The unique identifier of the struct parameter field.
|
|
3942
4196
|
*
|
|
3943
4197
|
* Log Safety: UNSAFE
|
|
3944
4198
|
*/
|
|
3945
4199
|
export type StructParameterFieldApiName = LooselyBrandedString<"StructParameterFieldApiName">;
|
|
4200
|
+
/**
|
|
4201
|
+
* Represents a struct parameter field argument in a logic rule.
|
|
4202
|
+
*
|
|
4203
|
+
* Log Safety: UNSAFE
|
|
4204
|
+
*/
|
|
4205
|
+
export interface StructParameterFieldArgument {
|
|
4206
|
+
parameterId: ParameterId;
|
|
4207
|
+
structParameterFieldApiName: StructParameterFieldApiName;
|
|
4208
|
+
}
|
|
3946
4209
|
/**
|
|
3947
4210
|
* Log Safety: UNSAFE
|
|
3948
4211
|
*/
|
|
@@ -4030,6 +4293,14 @@ export interface SyncApplyActionResponseV2 {
|
|
|
4030
4293
|
validation?: ValidateActionResponseV2;
|
|
4031
4294
|
edits?: ActionResults;
|
|
4032
4295
|
}
|
|
4296
|
+
/**
|
|
4297
|
+
* Represents a synchronous webhook output argument in a logic rule.
|
|
4298
|
+
*
|
|
4299
|
+
* Log Safety: UNSAFE
|
|
4300
|
+
*/
|
|
4301
|
+
export interface SynchronousWebhookOutputArgument {
|
|
4302
|
+
webhookOutputParamName: string;
|
|
4303
|
+
}
|
|
4033
4304
|
/**
|
|
4034
4305
|
* Log Safety: UNSAFE
|
|
4035
4306
|
*/
|
|
@@ -4193,6 +4464,14 @@ This can happen when a parameter's allowed values are defined by another paramet
|
|
|
4193
4464
|
*/
|
|
4194
4465
|
export interface UnevaluableConstraint {
|
|
4195
4466
|
}
|
|
4467
|
+
/**
|
|
4468
|
+
* Represents a unique identifier argument in a logic rule.
|
|
4469
|
+
*
|
|
4470
|
+
* Log Safety: SAFE
|
|
4471
|
+
*/
|
|
4472
|
+
export interface UniqueIdentifierArgument {
|
|
4473
|
+
linkId?: string;
|
|
4474
|
+
}
|
|
4196
4475
|
/**
|
|
4197
4476
|
* The string must be a valid UUID (Universally Unique Identifier).
|
|
4198
4477
|
*
|