@osdk/client.unstable 2.4.0-beta.8 → 2.4.0-beta.9

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 (31) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/build/cjs/index.d.cts +233 -47
  3. package/build/types/generated/ontology-metadata/api/__components.d.ts +150 -39
  4. package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
  5. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService/postOntologyBlockData.d.ts +3 -0
  6. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService/postOntologyBlockData.d.ts.map +1 -0
  7. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService.d.ts +1 -0
  8. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService.d.ts.map +1 -0
  9. package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +77 -8
  10. package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
  11. package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts +2 -1
  12. package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts.map +1 -1
  13. package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
  14. package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
  15. package/build/types/generated/ontology-metadata/api/llm/__components.d.ts +2 -5
  16. package/build/types/generated/ontology-metadata/api/llm/__components.d.ts.map +1 -1
  17. package/build/types/generated/ontology-metadata/api/llm/index.d.ts +1 -1
  18. package/build/types/generated/ontology-metadata/api/llm/index.d.ts.map +1 -1
  19. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +4 -0
  20. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
  21. package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
  22. package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
  23. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +106 -2
  24. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
  25. package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
  26. package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
  27. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +104 -3
  28. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
  29. package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
  30. package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
  31. package/package.json +1 -1
@@ -192,6 +192,10 @@ export interface ActionLogValueModification_interfaceParameterPropertyValue {
192
192
  type: "interfaceParameterPropertyValue";
193
193
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
194
194
  }
195
+ export interface ActionLogValueModification_interfaceParameterPropertyValueV2 {
196
+ type: "interfaceParameterPropertyValueV2";
197
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
198
+ }
195
199
  export interface ActionLogValueModification_editedObjects {
196
200
  type: "editedObjects";
197
201
  editedObjects: ObjectTypeId;
@@ -256,7 +260,7 @@ export interface ActionLogValueModification_summary {
256
260
  type: "summary";
257
261
  summary: Array<ActionTypeRichTextComponent>;
258
262
  }
259
- export type ActionLogValueModification = ActionLogValueModification_parameterValue | ActionLogValueModification_objectParameterPropertyValue | ActionLogValueModification_interfaceParameterPropertyValue | ActionLogValueModification_editedObjects | ActionLogValueModification_allEditedObjects | ActionLogValueModification_actionTypeRid | ActionLogValueModification_actionRid | ActionLogValueModification_actionTypeVersion | ActionLogValueModification_actionTimestamp | ActionLogValueModification_actionUser | ActionLogValueModification_isReverted | ActionLogValueModification_revertUser | ActionLogValueModification_revertTimestamp | ActionLogValueModification_synchronousWebhookInstanceId | ActionLogValueModification_asynchronousWebhookInstanceIds | ActionLogValueModification_notifiedUsers | ActionLogValueModification_notificationIds | ActionLogValueModification_scenarioRid | ActionLogValueModification_summary;
263
+ export type ActionLogValueModification = ActionLogValueModification_parameterValue | ActionLogValueModification_objectParameterPropertyValue | ActionLogValueModification_interfaceParameterPropertyValue | ActionLogValueModification_interfaceParameterPropertyValueV2 | ActionLogValueModification_editedObjects | ActionLogValueModification_allEditedObjects | ActionLogValueModification_actionTypeRid | ActionLogValueModification_actionRid | ActionLogValueModification_actionTypeVersion | ActionLogValueModification_actionTimestamp | ActionLogValueModification_actionUser | ActionLogValueModification_isReverted | ActionLogValueModification_revertUser | ActionLogValueModification_revertTimestamp | ActionLogValueModification_synchronousWebhookInstanceId | ActionLogValueModification_asynchronousWebhookInstanceIds | ActionLogValueModification_notifiedUsers | ActionLogValueModification_notificationIds | ActionLogValueModification_scenarioRid | ActionLogValueModification_summary;
260
264
  /**
261
265
  * A notification that will be triggered on successful completion of an action.
262
266
  */
@@ -925,6 +929,7 @@ export interface AddInterfaceRule {
925
929
  structFieldValues: Record<SharedPropertyTypeRid, Record<StructFieldRid, StructFieldLogicRuleValue>>;
926
930
  }
927
931
  export interface AddInterfaceRuleModification {
932
+ interfacePropertyTypeLogicRuleValueModifications: Array<InterfacePropertyTypeLogicRuleValueModification>;
928
933
  interfaceTypeRidOrIdInRequest: InterfaceTypeRidOrIdInRequest;
929
934
  objectType: ParameterId;
930
935
  sharedPropertyTypeLogicRuleValueModifications: Array<SharedPropertyTypeLogicRuleValueModification>;
@@ -1836,6 +1841,10 @@ export interface ConditionValueModification_interfaceParameterPropertyValue {
1836
1841
  type: "interfaceParameterPropertyValue";
1837
1842
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
1838
1843
  }
1844
+ export interface ConditionValueModification_interfaceParameterPropertyValueV2 {
1845
+ type: "interfaceParameterPropertyValueV2";
1846
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
1847
+ }
1839
1848
  export interface ConditionValueModification_userProperty {
1840
1849
  type: "userProperty";
1841
1850
  userProperty: UserProperty;
@@ -1844,7 +1853,7 @@ export interface ConditionValueModification_parameterLength {
1844
1853
  type: "parameterLength";
1845
1854
  parameterLength: ParameterLength;
1846
1855
  }
1847
- export type ConditionValueModification = ConditionValueModification_parameterId | ConditionValueModification_staticValue | ConditionValueModification_objectParameterPropertyValue | ConditionValueModification_interfaceParameterPropertyValue | ConditionValueModification_userProperty | ConditionValueModification_parameterLength;
1856
+ export type ConditionValueModification = ConditionValueModification_parameterId | ConditionValueModification_staticValue | ConditionValueModification_objectParameterPropertyValue | ConditionValueModification_interfaceParameterPropertyValue | ConditionValueModification_interfaceParameterPropertyValueV2 | ConditionValueModification_userProperty | ConditionValueModification_parameterLength;
1848
1857
  /**
1849
1858
  * The time that the user submits the Action will be used for this value.
1850
1859
  */
@@ -2429,7 +2438,11 @@ export interface EmbeddingModel_text {
2429
2438
  type: "text";
2430
2439
  text: TextEmbeddingModel;
2431
2440
  }
2432
- export type EmbeddingModel = EmbeddingModel_text;
2441
+ export interface EmbeddingModel_multimodal {
2442
+ type: "multimodal";
2443
+ multimodal: MultimodalEmbeddingModel;
2444
+ }
2445
+ export type EmbeddingModel = EmbeddingModel_text | EmbeddingModel_multimodal;
2433
2446
  export interface Empty {}
2434
2447
  /**
2435
2448
  * This status indicates that the ObjectType is endorsed as a part of "core" ontology by ontology-level owners and provides even better guarantees than the Active status.
@@ -2757,6 +2770,7 @@ export interface GetActionTypesForObjectTypeRequest {
2757
2770
  export interface GetActionTypesForObjectTypeResponse {
2758
2771
  actionTypes: Array<ActionType>;
2759
2772
  nextPageToken?: GetActionTypesForObjectTypePageToken | null | undefined;
2773
+ resolvedBranch: ResolvedBranch;
2760
2774
  }
2761
2775
  export interface GetEntityDelegateDatasetRequest {
2762
2776
  ontologyEntityRid: ObjectOrLinkTypeRid;
@@ -2907,6 +2921,7 @@ export interface IconReference {
2907
2921
  locator: string;
2908
2922
  source: string;
2909
2923
  }
2924
+ export interface ImageModality {}
2910
2925
  export interface ImplementingLinkType {
2911
2926
  linkTypeRid: LinkTypeRid;
2912
2927
  startingFromLinkTypeSide: _api_types_LinkTypeSide;
@@ -2986,6 +3001,32 @@ export interface InterfaceLinkTypeRidOrIdInRequest_idInRequest {
2986
3001
  idInRequest: InterfaceLinkTypeIdInRequest;
2987
3002
  }
2988
3003
  export type InterfaceLinkTypeRidOrIdInRequest = InterfaceLinkTypeRidOrIdInRequest_rid | InterfaceLinkTypeRidOrIdInRequest_idInRequest;
3004
+ /**
3005
+ * Reference to a struct field of a struct property.
3006
+ */
3007
+ export interface InterfaceObjectParameterStructFieldValue {
3008
+ interfacePropertyTypeRid: InterfacePropertyTypeRid;
3009
+ parameterId: ParameterId;
3010
+ structFieldRid: StructFieldRid;
3011
+ }
3012
+ export interface InterfaceObjectParameterStructFieldValueModification {
3013
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
3014
+ parameterId: ParameterId;
3015
+ structFieldApiNameOrRid: StructFieldApiNameOrRid;
3016
+ }
3017
+ /**
3018
+ * Reference to a struct field of a struct list property.
3019
+ */
3020
+ export interface InterfaceObjectParameterStructListFieldValue {
3021
+ interfacePropertyTypeRid: InterfacePropertyTypeRid;
3022
+ parameterId: ParameterId;
3023
+ structFieldRid: StructFieldRid;
3024
+ }
3025
+ export interface InterfaceObjectParameterStructListFieldValueModification {
3026
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
3027
+ parameterId: ParameterId;
3028
+ structFieldApiNameOrRid: StructFieldApiNameOrRid;
3029
+ }
2989
3030
  export interface InterfaceParameterPropertyValue {
2990
3031
  parameterId: ParameterId;
2991
3032
  sharedPropertyTypeRid: SharedPropertyTypeRid;
@@ -2994,6 +3035,13 @@ export interface InterfaceParameterPropertyValueModification {
2994
3035
  parameterId: ParameterId;
2995
3036
  sharedPropertyTypeRidOrIdInRequest: SharedPropertyTypeRidOrIdInRequest;
2996
3037
  }
3038
+ /**
3039
+ * Used to reference interface properties. Note, these are curently unsupported on the actions backend.
3040
+ */
3041
+ export interface InterfaceParameterPropertyValueModificationV2 {
3042
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
3043
+ parameterId: ParameterId;
3044
+ }
2997
3045
  export interface InterfaceParameterPropertyValueV2 {
2998
3046
  interfacePropertyTypeRid: InterfacePropertyTypeRid;
2999
3047
  parameterId: ParameterId;
@@ -3031,6 +3079,10 @@ export interface InterfacePropertyTypeImplementation_propertyTypeRid {
3031
3079
  propertyTypeRid: PropertyTypeRid;
3032
3080
  }
3033
3081
  export type InterfacePropertyTypeImplementation = InterfacePropertyTypeImplementation_propertyTypeRid;
3082
+ export interface InterfacePropertyTypeLogicRuleValueModification {
3083
+ interfacePropertyLogicRuleModification: PrimitiveOrStructLogicRuleModification;
3084
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
3085
+ }
3034
3086
  /**
3035
3087
  * A rid identifying an InterfacePropertyType. This rid is generated randomly and is safe for logging purposes.
3036
3088
  * The InterfacePropertyTypeRid for an InterfacePropertyType is immutable.
@@ -3807,6 +3859,10 @@ export interface LogicRuleValueModification_interfaceParameterPropertyValue {
3807
3859
  type: "interfaceParameterPropertyValue";
3808
3860
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
3809
3861
  }
3862
+ export interface LogicRuleValueModification_interfaceParameterPropertyValueV2 {
3863
+ type: "interfaceParameterPropertyValueV2";
3864
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
3865
+ }
3810
3866
  export interface LogicRuleValueModification_currentUser {
3811
3867
  type: "currentUser";
3812
3868
  currentUser: CurrentUser;
@@ -3827,7 +3883,7 @@ export interface LogicRuleValueModification_synchronousWebhookOutput {
3827
3883
  * These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
3828
3884
  * effects.
3829
3885
  */
3830
- export type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput;
3886
+ export type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValueV2 | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput;
3831
3887
  export interface LongPropertyType {}
3832
3888
  export interface LongTypeDataConstraints_range {
3833
3889
  type: "range";
@@ -3997,12 +4053,30 @@ export interface MediaSourceRid_datasetRid {
3997
4053
  * A rid identifying the resource backing a media reference.
3998
4054
  */
3999
4055
  export type MediaSourceRid = MediaSourceRid_mediaSetRid | MediaSourceRid_datasetRid;
4056
+ export type MioEmbeddingModel = "GOOGLE_SIGLIP_2";
4000
4057
  export interface MissingAffectedObjectTypesForFunctionRule {
4001
4058
  functionRid: FunctionRid;
4002
4059
  functionVersion: SemanticFunctionVersion;
4003
4060
  missingAffectedObjectTypes: Array<ObjectTypeRid>;
4004
4061
  }
4005
4062
  export interface MissingParameterValueType {}
4063
+ export interface Modality_text {
4064
+ type: "text";
4065
+ text: TextModality;
4066
+ }
4067
+ export interface Modality_image {
4068
+ type: "image";
4069
+ image: ImageModality;
4070
+ }
4071
+ /**
4072
+ * Represents the type of input data that can be embedded.
4073
+ */
4074
+ export type Modality = Modality_text | Modality_image;
4075
+ export interface ModelWithSource_mio {
4076
+ type: "mio";
4077
+ mio: MioEmbeddingModel;
4078
+ }
4079
+ export type ModelWithSource = ModelWithSource_mio;
4006
4080
  export interface ModifyInterfaceRule {
4007
4081
  interfaceObjectToModify: ParameterId;
4008
4082
  interfacePropertyValues: Record<InterfacePropertyTypeRid, InterfacePropertyLogicRuleValue>;
@@ -4011,6 +4085,7 @@ export interface ModifyInterfaceRule {
4011
4085
  }
4012
4086
  export interface ModifyInterfaceRuleModification {
4013
4087
  interfaceObjectToModify: ParameterId;
4088
+ interfacePropertyTypeLogicRuleValueModifications: Array<InterfacePropertyTypeLogicRuleValueModification>;
4014
4089
  sharedPropertyTypeLogicRuleValueModifications: Array<SharedPropertyTypeLogicRuleValueModification>;
4015
4090
  sharedPropertyTypeStructFieldLogicRuleValueModifications: Array<SharedPropertyTypeStructFieldLogicRuleValueModification>;
4016
4091
  }
@@ -4029,6 +4104,13 @@ export interface ModifyObjectRuleModification {
4029
4104
  * ResourceIdentifier for a Workshop Module.
4030
4105
  */
4031
4106
  export type ModuleRid = string;
4107
+ /**
4108
+ * Represents an embedding model that can support different input types
4109
+ */
4110
+ export interface MultimodalEmbeddingModel {
4111
+ modelWithSource: ModelWithSource;
4112
+ supportedModalities: Array<Modality>;
4113
+ }
4032
4114
  export interface MultipassUserFilter_groupFilter {
4033
4115
  type: "groupFilter";
4034
4116
  groupFilter: MultipassUserInGroupFilter;
@@ -5093,6 +5175,7 @@ export interface OntologyBulkLoadEntitiesRequest {
5093
5175
  actionTypes: Array<ActionTypeLoadRequestV2>;
5094
5176
  datasourceTypes: Array<DatasourceType>;
5095
5177
  entityMetadata?: EntityMetadataLoadRequest | null | undefined;
5178
+ fallBackToOwningBranch?: boolean | null | undefined;
5096
5179
  includeEntityMetadata?: boolean | null | undefined;
5097
5180
  includeObjectTypeCount?: boolean | null | undefined;
5098
5181
  includeObjectTypesWithoutSearchableDatasources?: boolean | null | undefined;
@@ -5760,15 +5843,6 @@ export interface OntologyIrDeprecatedActionTypeStatus {
5760
5843
  replacedBy?: ActionTypeApiName | null | undefined;
5761
5844
  }
5762
5845
  /**
5763
- * This status indicates that the interface is reaching the end of its life and will be removed as per the
5764
- * deadline specified.
5765
- */
5766
- export interface OntologyIrDeprecatedInterfaceTypeStatus {
5767
- deadline: string;
5768
- message: string;
5769
- replacedBy?: InterfaceTypeApiName | null | undefined;
5770
- }
5771
- /**
5772
5846
  * This status indicates that the LinkType is reaching the end of its life and will be removed as per the deadline specified.
5773
5847
  */
5774
5848
  export interface OntologyIrDeprecatedLinkTypeStatus {
@@ -5909,11 +5983,21 @@ export interface OntologyIrInlineActionType {
5909
5983
  parameterId?: ParameterId | null | undefined;
5910
5984
  rid: ActionTypeApiName;
5911
5985
  }
5912
- export interface OntologyIrInterfaceLinkType {
5913
- cardinality: InterfaceLinkTypeCardinality;
5914
- linkedEntityTypeId: OntologyIrLinkedEntityTypeId;
5915
- metadata: InterfaceLinkTypeMetadata;
5916
- required: boolean;
5986
+ /**
5987
+ * Reference to a struct field of a struct property.
5988
+ */
5989
+ export interface OntologyIrInterfaceObjectParameterStructFieldValue {
5990
+ interfacePropertyTypeRid: InterfacePropertyTypeApiName;
5991
+ parameterId: ParameterId;
5992
+ structFieldRid: StructFieldRid;
5993
+ }
5994
+ /**
5995
+ * Reference to a struct field of a struct list property.
5996
+ */
5997
+ export interface OntologyIrInterfaceObjectParameterStructListFieldValue {
5998
+ interfacePropertyTypeRid: InterfacePropertyTypeApiName;
5999
+ parameterId: ParameterId;
6000
+ structFieldRid: StructFieldRid;
5917
6001
  }
5918
6002
  export interface OntologyIrInterfaceParameterPropertyValue {
5919
6003
  parameterId: ParameterId;
@@ -5944,23 +6028,6 @@ export interface OntologyIrInterfaceSharedPropertyType {
5944
6028
  required: boolean;
5945
6029
  sharedPropertyType: OntologyIrSharedPropertyType;
5946
6030
  }
5947
- export interface OntologyIrInterfaceTypeStatus_experimental {
5948
- type: "experimental";
5949
- experimental: ExperimentalInterfaceTypeStatus;
5950
- }
5951
- export interface OntologyIrInterfaceTypeStatus_active {
5952
- type: "active";
5953
- active: ActiveInterfaceTypeStatus;
5954
- }
5955
- export interface OntologyIrInterfaceTypeStatus_deprecated {
5956
- type: "deprecated";
5957
- deprecated: OntologyIrDeprecatedInterfaceTypeStatus;
5958
- }
5959
- export interface OntologyIrInterfaceTypeStatus_example {
5960
- type: "example";
5961
- example: ExampleInterfaceTypeStatus;
5962
- }
5963
- export type OntologyIrInterfaceTypeStatus = OntologyIrInterfaceTypeStatus_experimental | OntologyIrInterfaceTypeStatus_active | OntologyIrInterfaceTypeStatus_deprecated | OntologyIrInterfaceTypeStatus_example;
5964
6031
  /**
5965
6032
  * Represents a link between two ObjectTypes with an intermediary ObjectType acting as a bridge.
5966
6033
  * This LinkType can be used to jump from ObjectType A to B without specifying two separate search-arounds.
@@ -6916,6 +6983,7 @@ export type OntologyIrParameterValidationBlockOverride = OntologyIrParameterVali
6916
6983
  * evaluate correctness of submitted parameters.
6917
6984
  */
6918
6985
  export interface OntologyIrParameterValidationDisplayMetadata {
6986
+ prefill?: OntologyIrParameterPrefill | null | undefined;
6919
6987
  renderHint: _api_types_ParameterRenderHint;
6920
6988
  visibility: _api_types_ParameterVisibility;
6921
6989
  }
@@ -7280,10 +7348,18 @@ export interface OntologyIrStructFieldPrefill_objectParameterStructListFieldValu
7280
7348
  type: "objectParameterStructListFieldValue";
7281
7349
  objectParameterStructListFieldValue: OntologyIrObjectParameterStructListFieldValue;
7282
7350
  }
7351
+ export interface OntologyIrStructFieldPrefill_interfaceObjectParameterStructFieldValue {
7352
+ type: "interfaceObjectParameterStructFieldValue";
7353
+ interfaceObjectParameterStructFieldValue: OntologyIrInterfaceObjectParameterStructFieldValue;
7354
+ }
7355
+ export interface OntologyIrStructFieldPrefill_interfaceObjectParameterStructListFieldValue {
7356
+ type: "interfaceObjectParameterStructListFieldValue";
7357
+ interfaceObjectParameterStructListFieldValue: OntologyIrInterfaceObjectParameterStructListFieldValue;
7358
+ }
7283
7359
  /**
7284
7360
  * StructFieldPrefill specifies what should initially suggested to users for a struct parameter's field.
7285
7361
  */
7286
- export type OntologyIrStructFieldPrefill = OntologyIrStructFieldPrefill_objectParameterStructFieldValue | OntologyIrStructFieldPrefill_objectParameterStructListFieldValue;
7362
+ export type OntologyIrStructFieldPrefill = OntologyIrStructFieldPrefill_objectParameterStructFieldValue | OntologyIrStructFieldPrefill_objectParameterStructListFieldValue | OntologyIrStructFieldPrefill_interfaceObjectParameterStructFieldValue | OntologyIrStructFieldPrefill_interfaceObjectParameterStructListFieldValue;
7287
7363
  export interface OntologyIrStructFieldPrefillOverride {
7288
7364
  prefill: OntologyIrStructFieldPrefill;
7289
7365
  }
@@ -8349,6 +8425,10 @@ export interface ParameterPrefillModification_interfaceParameterPropertyValue {
8349
8425
  type: "interfaceParameterPropertyValue";
8350
8426
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
8351
8427
  }
8428
+ export interface ParameterPrefillModification_interfaceParameterPropertyValueV2 {
8429
+ type: "interfaceParameterPropertyValueV2";
8430
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
8431
+ }
8352
8432
  export interface ParameterPrefillModification_objectQueryPrefill {
8353
8433
  type: "objectQueryPrefill";
8354
8434
  objectQueryPrefill: ObjectQueryPrefillModification;
@@ -8368,7 +8448,7 @@ export interface ParameterPrefillModification_redacted {
8368
8448
  /**
8369
8449
  * ParameterPrefillModification specifies what should initially suggested to users for this Parameter.
8370
8450
  */
8371
- export type ParameterPrefillModification = ParameterPrefillModification_staticValue | ParameterPrefillModification_staticObject | ParameterPrefillModification_objectParameterPropertyValue | ParameterPrefillModification_interfaceParameterPropertyValue | ParameterPrefillModification_objectQueryPrefill | ParameterPrefillModification_objectQueryPropertyValue | ParameterPrefillModification_objectSetRidPrefill | ParameterPrefillModification_redacted;
8451
+ export type ParameterPrefillModification = ParameterPrefillModification_staticValue | ParameterPrefillModification_staticObject | ParameterPrefillModification_objectParameterPropertyValue | ParameterPrefillModification_interfaceParameterPropertyValue | ParameterPrefillModification_interfaceParameterPropertyValueV2 | ParameterPrefillModification_objectQueryPrefill | ParameterPrefillModification_objectQueryPropertyValue | ParameterPrefillModification_objectSetRidPrefill | ParameterPrefillModification_redacted;
8372
8452
  export interface ParameterPrefillOverride {
8373
8453
  prefill: ParameterPrefill;
8374
8454
  }
@@ -8661,6 +8741,15 @@ export interface PrePostFix {
8661
8741
  prefix?: PropertyTypeReferenceOrStringConstant | null | undefined;
8662
8742
  }
8663
8743
  export interface PrimaryKeyPropertySecurityGroupType {}
8744
+ export interface PrimitiveOrStructLogicRuleModification_logicRuleValueModification {
8745
+ type: "logicRuleValueModification";
8746
+ logicRuleValueModification: LogicRuleValueModification;
8747
+ }
8748
+ export interface PrimitiveOrStructLogicRuleModification_structLogicRuleValueModification {
8749
+ type: "structLogicRuleValueModification";
8750
+ structLogicRuleValueModification: Array<StructFieldLogicRuleValueMappingModification>;
8751
+ }
8752
+ export type PrimitiveOrStructLogicRuleModification = PrimitiveOrStructLogicRuleModification_logicRuleValueModification | PrimitiveOrStructLogicRuleModification_structLogicRuleValueModification;
8664
8753
  /**
8665
8754
  * The id of a Multipass Principal(Everyone/User/Group)
8666
8755
  */
@@ -9210,7 +9299,11 @@ export interface ResolvedInterfacePropertyType {
9210
9299
  type: Type;
9211
9300
  }
9212
9301
  export interface ResolvedInterfacePropertyTypeConstraints {
9302
+ dataConstraints?: DataConstraints | null | undefined;
9303
+ indexedForSearch: boolean;
9213
9304
  requireImplementation: boolean;
9305
+ typeClasses: Array<TypeClass>;
9306
+ valueType?: ValueTypeReference | null | undefined;
9214
9307
  }
9215
9308
  export interface ResolvedNonDefaultBranch {
9216
9309
  rid: OntologyBranchRid;
@@ -10035,6 +10128,7 @@ export interface StringPropertyType {
10035
10128
  isLongText: boolean;
10036
10129
  supportsEfficientLeadingWildcard?: boolean | null | undefined;
10037
10130
  supportsExactMatching: boolean;
10131
+ supportsFullTextRegex?: boolean | null | undefined;
10038
10132
  }
10039
10133
  export interface StringTypeDataConstraints_regex {
10040
10134
  type: "regex";
@@ -10140,10 +10234,18 @@ export interface StructFieldPrefill_objectParameterStructListFieldValue {
10140
10234
  type: "objectParameterStructListFieldValue";
10141
10235
  objectParameterStructListFieldValue: ObjectParameterStructListFieldValue;
10142
10236
  }
10237
+ export interface StructFieldPrefill_interfaceObjectParameterStructFieldValue {
10238
+ type: "interfaceObjectParameterStructFieldValue";
10239
+ interfaceObjectParameterStructFieldValue: InterfaceObjectParameterStructFieldValue;
10240
+ }
10241
+ export interface StructFieldPrefill_interfaceObjectParameterStructListFieldValue {
10242
+ type: "interfaceObjectParameterStructListFieldValue";
10243
+ interfaceObjectParameterStructListFieldValue: InterfaceObjectParameterStructListFieldValue;
10244
+ }
10143
10245
  /**
10144
10246
  * StructFieldPrefill specifies what should initially suggested to users for a struct parameter's field.
10145
10247
  */
10146
- export type StructFieldPrefill = StructFieldPrefill_objectParameterStructFieldValue | StructFieldPrefill_objectParameterStructListFieldValue;
10248
+ export type StructFieldPrefill = StructFieldPrefill_objectParameterStructFieldValue | StructFieldPrefill_objectParameterStructListFieldValue | StructFieldPrefill_interfaceObjectParameterStructFieldValue | StructFieldPrefill_interfaceObjectParameterStructListFieldValue;
10147
10249
  export interface StructFieldPrefillModification_objectParameterStructFieldValue {
10148
10250
  type: "objectParameterStructFieldValue";
10149
10251
  objectParameterStructFieldValue: ObjectParameterStructFieldValueModification;
@@ -10152,10 +10254,18 @@ export interface StructFieldPrefillModification_objectParameterStructListFieldVa
10152
10254
  type: "objectParameterStructListFieldValue";
10153
10255
  objectParameterStructListFieldValue: ObjectParameterStructListFieldValueModification;
10154
10256
  }
10257
+ export interface StructFieldPrefillModification_interfaceObjectParameterStructFieldValue {
10258
+ type: "interfaceObjectParameterStructFieldValue";
10259
+ interfaceObjectParameterStructFieldValue: InterfaceObjectParameterStructFieldValueModification;
10260
+ }
10261
+ export interface StructFieldPrefillModification_interfaceObjectParameterStructListFieldValue {
10262
+ type: "interfaceObjectParameterStructListFieldValue";
10263
+ interfaceObjectParameterStructListFieldValue: InterfaceObjectParameterStructListFieldValueModification;
10264
+ }
10155
10265
  /**
10156
10266
  * StructFieldPrefillModification specifies what should initially suggested to users for a struct parameter's field.
10157
10267
  */
10158
- export type StructFieldPrefillModification = StructFieldPrefillModification_objectParameterStructFieldValue | StructFieldPrefillModification_objectParameterStructListFieldValue;
10268
+ export type StructFieldPrefillModification = StructFieldPrefillModification_objectParameterStructFieldValue | StructFieldPrefillModification_objectParameterStructListFieldValue | StructFieldPrefillModification_interfaceObjectParameterStructFieldValue | StructFieldPrefillModification_interfaceObjectParameterStructListFieldValue;
10159
10269
  export interface StructFieldPrefillOverride {
10160
10270
  prefill: StructFieldPrefill;
10161
10271
  }
@@ -10420,6 +10530,7 @@ export interface TextEmbeddingModel_foundryLiveDeployment {
10420
10530
  foundryLiveDeployment: FoundryLiveDeployment;
10421
10531
  }
10422
10532
  export type TextEmbeddingModel = TextEmbeddingModel_lms | TextEmbeddingModel_foundryLiveDeployment;
10533
+ export interface TextModality {}
10423
10534
  /**
10424
10535
  * A retention policy where the datasource will contain at least data from the specified time window.
10425
10536
  */