@osdk/client.unstable 2.3.0-beta.1 → 2.3.0-beta.3
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 +8 -0
- package/build/cjs/index.d.cts +147 -10
- package/build/types/generated/ontology-metadata/api/__components.d.ts +146 -10
- package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/audit/__components.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/audit/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +26 -2
- package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService/migrateEntitiesToProjects.d.ts +10 -0
- package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService/migrateEntitiesToProjects.d.ts.map +1 -0
- package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService.d.ts +1 -0
- package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts +139 -1
- package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +33 -10
- package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService/discardChangesOnBranch.d.ts +9 -0
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService/discardChangesOnBranch.d.ts.map +1 -0
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService.d.ts +1 -0
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +55 -1
- package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1070,7 +1070,11 @@ export interface AllowedParameterValues_struct {
|
|
|
1070
1070
|
type: "struct";
|
|
1071
1071
|
struct: ParameterStructOrEmpty;
|
|
1072
1072
|
}
|
|
1073
|
-
export
|
|
1073
|
+
export interface AllowedParameterValues_valueType {
|
|
1074
|
+
type: "valueType";
|
|
1075
|
+
valueType: ParameterValueTypeOrEmpty;
|
|
1076
|
+
}
|
|
1077
|
+
export type AllowedParameterValues = AllowedParameterValues_oneOf | AllowedParameterValues_range | AllowedParameterValues_objectQuery | AllowedParameterValues_interfaceObjectQuery | AllowedParameterValues_objectPropertyValue | AllowedParameterValues_interfacePropertyValue | AllowedParameterValues_objectList | AllowedParameterValues_user | AllowedParameterValues_multipassGroup | AllowedParameterValues_text | AllowedParameterValues_datetime | AllowedParameterValues_boolean | AllowedParameterValues_objectSetRid | AllowedParameterValues_attachment | AllowedParameterValues_cbacMarking | AllowedParameterValues_mandatoryMarking | AllowedParameterValues_mediaReference | AllowedParameterValues_objectTypeReference | AllowedParameterValues_timeSeriesReference | AllowedParameterValues_geohash | AllowedParameterValues_geoshape | AllowedParameterValues_geotimeSeriesReference | AllowedParameterValues_redacted | AllowedParameterValues_struct | AllowedParameterValues_valueType;
|
|
1074
1078
|
export interface AllowedParameterValuesModification_oneOf {
|
|
1075
1079
|
type: "oneOf";
|
|
1076
1080
|
oneOf: ParameterValueOneOfOrEmpty;
|
|
@@ -1167,7 +1171,11 @@ export interface AllowedParameterValuesModification_struct {
|
|
|
1167
1171
|
type: "struct";
|
|
1168
1172
|
struct: ParameterStructOrEmpty;
|
|
1169
1173
|
}
|
|
1170
|
-
export
|
|
1174
|
+
export interface AllowedParameterValuesModification_valueType {
|
|
1175
|
+
type: "valueType";
|
|
1176
|
+
valueType: ParameterValueTypeOrEmpty;
|
|
1177
|
+
}
|
|
1178
|
+
export type AllowedParameterValuesModification = AllowedParameterValuesModification_oneOf | AllowedParameterValuesModification_range | AllowedParameterValuesModification_objectQuery | AllowedParameterValuesModification_interfaceObjectQuery | AllowedParameterValuesModification_objectPropertyValue | AllowedParameterValuesModification_interfacePropertyValue | AllowedParameterValuesModification_objectList | AllowedParameterValuesModification_user | AllowedParameterValuesModification_multipassGroup | AllowedParameterValuesModification_text | AllowedParameterValuesModification_datetime | AllowedParameterValuesModification_boolean | AllowedParameterValuesModification_objectSetRid | AllowedParameterValuesModification_attachment | AllowedParameterValuesModification_cbacMarking | AllowedParameterValuesModification_mandatoryMarking | AllowedParameterValuesModification_mediaReference | AllowedParameterValuesModification_objectTypeReference | AllowedParameterValuesModification_timeSeriesReference | AllowedParameterValuesModification_geohash | AllowedParameterValuesModification_geoshape | AllowedParameterValuesModification_geotimeSeriesReference | AllowedParameterValuesModification_redacted | AllowedParameterValuesModification_struct | AllowedParameterValuesModification_valueType;
|
|
1171
1179
|
export interface AllowedStructFieldValues_oneOf {
|
|
1172
1180
|
type: "oneOf";
|
|
1173
1181
|
oneOf: ParameterValueOneOfOrEmpty;
|
|
@@ -1278,6 +1286,11 @@ export interface ArrayTypeDataConstraints {
|
|
|
1278
1286
|
export type ArrayTypeDataValue = Array<PropertyTypeDataValue>;
|
|
1279
1287
|
export type ArrayTypeElementsUniqueConstraint = boolean;
|
|
1280
1288
|
export type ArrayTypeSizeConstraint = RangeSizeConstraint;
|
|
1289
|
+
/**
|
|
1290
|
+
* Convert Artifact GIDs into human-readable format. Displays the artifact icon and
|
|
1291
|
+
* title as opposed to its GID.
|
|
1292
|
+
*/
|
|
1293
|
+
export interface ArtifactGidFormatter {}
|
|
1281
1294
|
export interface AsynchronousPostWritebackWebhook_staticDirectInput {
|
|
1282
1295
|
type: "staticDirectInput";
|
|
1283
1296
|
staticDirectInput: StaticWebhookWithDirectInput;
|
|
@@ -1841,7 +1854,7 @@ export type DatasourceIdentifier = DatasourceIdentifier_datasetRidAndBranchId |
|
|
|
1841
1854
|
* and is safe to log.
|
|
1842
1855
|
*/
|
|
1843
1856
|
export type DatasourceRid = string;
|
|
1844
|
-
export type DatasourceType = "DATASET" | "RESTRICTED_VIEW" | "TIME_SERIES" | "STREAM" | "STREAM_V2" | "DATASET_V2" | "RESTRICTED_VIEW_V2" | "RESTRICTED_STREAM" | "MEDIA" | "MEDIA_SET_VIEW" | "GEOTIME_SERIES" | "TABLE" | "EDITS_ONLY" | "DIRECT" | "DERIVED" | "DATASET_V3";
|
|
1857
|
+
export type DatasourceType = "DATASET" | "RESTRICTED_VIEW" | "TIME_SERIES" | "STREAM" | "STREAM_V2" | "STREAM_V3" | "DATASET_V2" | "RESTRICTED_VIEW_V2" | "RESTRICTED_STREAM" | "MEDIA" | "MEDIA_SET_VIEW" | "GEOTIME_SERIES" | "TABLE" | "EDITS_ONLY" | "DIRECT" | "DERIVED" | "DATASET_V3";
|
|
1845
1858
|
export interface DataType_baseType {
|
|
1846
1859
|
type: "baseType";
|
|
1847
1860
|
baseType: BasePropertyType;
|
|
@@ -2828,6 +2841,25 @@ export interface InterfaceParameterPropertyValueModification {
|
|
|
2828
2841
|
export interface InterfacePropertyImplementation {
|
|
2829
2842
|
propertyTypeRid: PropertyTypeRid;
|
|
2830
2843
|
}
|
|
2844
|
+
/**
|
|
2845
|
+
* Reference to a InterfacePropertyType. Used when referencing an InterfacePropertyType in the same request it is
|
|
2846
|
+
* created in.
|
|
2847
|
+
*/
|
|
2848
|
+
export type InterfacePropertyTypeIdInRequest = string;
|
|
2849
|
+
/**
|
|
2850
|
+
* A rid identifying an InterfacePropertyType. This rid is generated randomly and is safe for logging purposes.
|
|
2851
|
+
* The InterfacePropertyTypeRid for an InterfacePropertyType is immutable.
|
|
2852
|
+
*/
|
|
2853
|
+
export type InterfacePropertyTypeRid = string;
|
|
2854
|
+
export interface InterfacePropertyTypeRidOrIdInRequest_rid {
|
|
2855
|
+
type: "rid";
|
|
2856
|
+
rid: InterfacePropertyTypeRid;
|
|
2857
|
+
}
|
|
2858
|
+
export interface InterfacePropertyTypeRidOrIdInRequest_idInRequest {
|
|
2859
|
+
type: "idInRequest";
|
|
2860
|
+
idInRequest: InterfacePropertyTypeIdInRequest;
|
|
2861
|
+
}
|
|
2862
|
+
export type InterfacePropertyTypeRidOrIdInRequest = InterfacePropertyTypeRidOrIdInRequest_rid | InterfacePropertyTypeRidOrIdInRequest_idInRequest;
|
|
2831
2863
|
export interface InterfaceSharedPropertyType {
|
|
2832
2864
|
required: boolean;
|
|
2833
2865
|
sharedPropertyType: SharedPropertyType;
|
|
@@ -2980,6 +3012,10 @@ export interface JoinDefinition_joinTable {
|
|
|
2980
3012
|
* There are two types of JoinDefinitions - singleKey and joinTable. The singleKey definition should be used when defining a relationship that is ONE_TO_ONE or ONE_TO_MANY. MANY_TO_MANY relationships should be defined with a joinTable definition.
|
|
2981
3013
|
*/
|
|
2982
3014
|
export type JoinDefinition = JoinDefinition_singleKey | JoinDefinition_joinTable;
|
|
3015
|
+
export interface KnownFormatter_artifactGidFormatter {
|
|
3016
|
+
type: "artifactGidFormatter";
|
|
3017
|
+
artifactGidFormatter: ArtifactGidFormatter;
|
|
3018
|
+
}
|
|
2983
3019
|
export interface KnownFormatter_userId {
|
|
2984
3020
|
type: "userId";
|
|
2985
3021
|
userId: FormatterUserId;
|
|
@@ -2991,7 +3027,7 @@ export interface KnownFormatter_ridFormatter {
|
|
|
2991
3027
|
/**
|
|
2992
3028
|
* Contains a known format that informs the Front-End consumer to use a specific formatter.
|
|
2993
3029
|
*/
|
|
2994
|
-
export type KnownFormatter = KnownFormatter_userId | KnownFormatter_ridFormatter;
|
|
3030
|
+
export type KnownFormatter = KnownFormatter_artifactGidFormatter | KnownFormatter_userId | KnownFormatter_ridFormatter;
|
|
2995
3031
|
export interface LabelledValue {
|
|
2996
3032
|
label: string;
|
|
2997
3033
|
value: StaticValue;
|
|
@@ -3349,7 +3385,9 @@ export type LoadAllObjectTypesPageToken = string;
|
|
|
3349
3385
|
/**
|
|
3350
3386
|
* Request to load all visible Ontologies.
|
|
3351
3387
|
*/
|
|
3352
|
-
export interface LoadAllOntologiesRequest {
|
|
3388
|
+
export interface LoadAllOntologiesRequest {
|
|
3389
|
+
includeEmptyDefaultOntology?: boolean | null | undefined;
|
|
3390
|
+
}
|
|
3353
3391
|
/**
|
|
3354
3392
|
* Response to LoadAllOntologiesRequest. This includes information
|
|
3355
3393
|
* about the Ontologies where the user has the "ontology:view-ontology"
|
|
@@ -4326,6 +4364,10 @@ export interface ObjectTypeDatasourceDefinition_streamV2 {
|
|
|
4326
4364
|
type: "streamV2";
|
|
4327
4365
|
streamV2: ObjectTypeStreamDatasourceV2;
|
|
4328
4366
|
}
|
|
4367
|
+
export interface ObjectTypeDatasourceDefinition_streamV3 {
|
|
4368
|
+
type: "streamV3";
|
|
4369
|
+
streamV3: ObjectTypeStreamDatasourceV3;
|
|
4370
|
+
}
|
|
4329
4371
|
export interface ObjectTypeDatasourceDefinition_restrictedView {
|
|
4330
4372
|
type: "restrictedView";
|
|
4331
4373
|
restrictedView: ObjectTypeRestrictedViewDatasource;
|
|
@@ -4381,7 +4423,7 @@ export interface ObjectTypeDatasourceDefinition_derived {
|
|
|
4381
4423
|
/**
|
|
4382
4424
|
* Wrapper type for all supported object type datasource types.
|
|
4383
4425
|
*/
|
|
4384
|
-
export type ObjectTypeDatasourceDefinition = ObjectTypeDatasourceDefinition_dataset | ObjectTypeDatasourceDefinition_stream | ObjectTypeDatasourceDefinition_streamV2 | ObjectTypeDatasourceDefinition_restrictedView | ObjectTypeDatasourceDefinition_timeSeries | ObjectTypeDatasourceDefinition_datasetV2 | ObjectTypeDatasourceDefinition_datasetV3 | ObjectTypeDatasourceDefinition_restrictedViewV2 | ObjectTypeDatasourceDefinition_restrictedStream | ObjectTypeDatasourceDefinition_media | ObjectTypeDatasourceDefinition_mediaSetView | ObjectTypeDatasourceDefinition_geotimeSeries | ObjectTypeDatasourceDefinition_table | ObjectTypeDatasourceDefinition_editsOnly | ObjectTypeDatasourceDefinition_direct | ObjectTypeDatasourceDefinition_derived;
|
|
4426
|
+
export type ObjectTypeDatasourceDefinition = ObjectTypeDatasourceDefinition_dataset | ObjectTypeDatasourceDefinition_stream | ObjectTypeDatasourceDefinition_streamV2 | ObjectTypeDatasourceDefinition_streamV3 | ObjectTypeDatasourceDefinition_restrictedView | ObjectTypeDatasourceDefinition_timeSeries | ObjectTypeDatasourceDefinition_datasetV2 | ObjectTypeDatasourceDefinition_datasetV3 | ObjectTypeDatasourceDefinition_restrictedViewV2 | ObjectTypeDatasourceDefinition_restrictedStream | ObjectTypeDatasourceDefinition_media | ObjectTypeDatasourceDefinition_mediaSetView | ObjectTypeDatasourceDefinition_geotimeSeries | ObjectTypeDatasourceDefinition_table | ObjectTypeDatasourceDefinition_editsOnly | ObjectTypeDatasourceDefinition_direct | ObjectTypeDatasourceDefinition_derived;
|
|
4385
4427
|
export interface ObjectTypeDeletedEvent {
|
|
4386
4428
|
deletionMetadata?: DeletionMetadata | null | undefined;
|
|
4387
4429
|
objectTypeRid: ObjectTypeRid;
|
|
@@ -4696,6 +4738,17 @@ export interface ObjectTypeStreamDatasourceV2 {
|
|
|
4696
4738
|
streamLocator: StreamLocator;
|
|
4697
4739
|
}
|
|
4698
4740
|
/**
|
|
4741
|
+
* Object type datasource that is backed by a stream in foundry, uniquely identified by its locator.
|
|
4742
|
+
* Supports property security groups and struct property mappings, and should be used instead of
|
|
4743
|
+
* ObjectTypeRestrictedStreamDatasourceV2, as that will be deprecated in the near future.
|
|
4744
|
+
*/
|
|
4745
|
+
export interface ObjectTypeStreamDatasourceV3 {
|
|
4746
|
+
propertyMapping: Record<PropertyTypeRid, PropertyTypeMappingInfo>;
|
|
4747
|
+
propertySecurityGroups?: PropertySecurityGroups | null | undefined;
|
|
4748
|
+
retentionPolicy: RetentionPolicy;
|
|
4749
|
+
streamLocator: StreamLocator;
|
|
4750
|
+
}
|
|
4751
|
+
/**
|
|
4699
4752
|
* Object type datasource that is backed by a table in foundry, uniquely identified by its locator.
|
|
4700
4753
|
* Supports edit only property types through PropertyTypeMappingInfo.
|
|
4701
4754
|
*/
|
|
@@ -5241,7 +5294,11 @@ export interface OntologyIrAllowedParameterValues_redacted {
|
|
|
5241
5294
|
type: "redacted";
|
|
5242
5295
|
redacted: Redacted;
|
|
5243
5296
|
}
|
|
5244
|
-
export
|
|
5297
|
+
export interface OntologyIrAllowedParameterValues_valueType {
|
|
5298
|
+
type: "valueType";
|
|
5299
|
+
valueType: ParameterValueTypeOrEmpty;
|
|
5300
|
+
}
|
|
5301
|
+
export type OntologyIrAllowedParameterValues = OntologyIrAllowedParameterValues_oneOf | OntologyIrAllowedParameterValues_range | OntologyIrAllowedParameterValues_objectQuery | OntologyIrAllowedParameterValues_interfaceObjectQuery | OntologyIrAllowedParameterValues_objectPropertyValue | OntologyIrAllowedParameterValues_interfacePropertyValue | OntologyIrAllowedParameterValues_objectList | OntologyIrAllowedParameterValues_user | OntologyIrAllowedParameterValues_multipassGroup | OntologyIrAllowedParameterValues_text | OntologyIrAllowedParameterValues_datetime | OntologyIrAllowedParameterValues_boolean | OntologyIrAllowedParameterValues_objectSetRid | OntologyIrAllowedParameterValues_attachment | OntologyIrAllowedParameterValues_cbacMarking | OntologyIrAllowedParameterValues_mandatoryMarking | OntologyIrAllowedParameterValues_mediaReference | OntologyIrAllowedParameterValues_objectTypeReference | OntologyIrAllowedParameterValues_timeSeriesReference | OntologyIrAllowedParameterValues_geohash | OntologyIrAllowedParameterValues_geoshape | OntologyIrAllowedParameterValues_geotimeSeriesReference | OntologyIrAllowedParameterValues_redacted | OntologyIrAllowedParameterValues_valueType;
|
|
5245
5302
|
export interface OntologyIrAllowedStructFieldValues_oneOf {
|
|
5246
5303
|
type: "oneOf";
|
|
5247
5304
|
oneOf: OntologyIrParameterValueOneOfOrEmpty;
|
|
@@ -5760,7 +5817,15 @@ export interface OntologyIrLogicRule_modifyInterfaceRule {
|
|
|
5760
5817
|
type: "modifyInterfaceRule";
|
|
5761
5818
|
modifyInterfaceRule: OntologyIrModifyInterfaceRule;
|
|
5762
5819
|
}
|
|
5763
|
-
export
|
|
5820
|
+
export interface OntologyIrLogicRule_addLinkRule {
|
|
5821
|
+
type: "addLinkRule";
|
|
5822
|
+
addLinkRule: AddLinkRule;
|
|
5823
|
+
}
|
|
5824
|
+
export interface OntologyIrLogicRule_deleteLinkRule {
|
|
5825
|
+
type: "deleteLinkRule";
|
|
5826
|
+
deleteLinkRule: DeleteLinkRule;
|
|
5827
|
+
}
|
|
5828
|
+
export type OntologyIrLogicRule = OntologyIrLogicRule_addObjectRule | OntologyIrLogicRule_addOrModifyObjectRuleV2 | OntologyIrLogicRule_modifyObjectRule | OntologyIrLogicRule_deleteObjectRule | OntologyIrLogicRule_addInterfaceRule | OntologyIrLogicRule_modifyInterfaceRule | OntologyIrLogicRule_addLinkRule | OntologyIrLogicRule_deleteLinkRule;
|
|
5764
5829
|
export interface OntologyIrLogicRuleValue_parameterId {
|
|
5765
5830
|
type: "parameterId";
|
|
5766
5831
|
parameterId: ParameterId;
|
|
@@ -6153,6 +6218,10 @@ export interface OntologyIrObjectTypeDatasourceDefinition_streamV2 {
|
|
|
6153
6218
|
type: "streamV2";
|
|
6154
6219
|
streamV2: OntologyIrObjectTypeStreamDatasourceV2;
|
|
6155
6220
|
}
|
|
6221
|
+
export interface OntologyIrObjectTypeDatasourceDefinition_streamV3 {
|
|
6222
|
+
type: "streamV3";
|
|
6223
|
+
streamV3: OntologyIrObjectTypeStreamDatasourceV3;
|
|
6224
|
+
}
|
|
6156
6225
|
export interface OntologyIrObjectTypeDatasourceDefinition_timeSeries {
|
|
6157
6226
|
type: "timeSeries";
|
|
6158
6227
|
timeSeries: OntologyIrObjectTypeTimeSeriesDatasource;
|
|
@@ -6200,7 +6269,7 @@ export interface OntologyIrObjectTypeDatasourceDefinition_derived {
|
|
|
6200
6269
|
/**
|
|
6201
6270
|
* Wrapper type for all supported object type datasource types.
|
|
6202
6271
|
*/
|
|
6203
|
-
export type OntologyIrObjectTypeDatasourceDefinition = OntologyIrObjectTypeDatasourceDefinition_streamV2 | OntologyIrObjectTypeDatasourceDefinition_timeSeries | OntologyIrObjectTypeDatasourceDefinition_datasetV2 | OntologyIrObjectTypeDatasourceDefinition_datasetV3 | OntologyIrObjectTypeDatasourceDefinition_restrictedViewV2 | OntologyIrObjectTypeDatasourceDefinition_restrictedStream | OntologyIrObjectTypeDatasourceDefinition_mediaSetView | OntologyIrObjectTypeDatasourceDefinition_geotimeSeries | OntologyIrObjectTypeDatasourceDefinition_table | OntologyIrObjectTypeDatasourceDefinition_editsOnly | OntologyIrObjectTypeDatasourceDefinition_direct | OntologyIrObjectTypeDatasourceDefinition_derived;
|
|
6272
|
+
export type OntologyIrObjectTypeDatasourceDefinition = OntologyIrObjectTypeDatasourceDefinition_streamV2 | OntologyIrObjectTypeDatasourceDefinition_streamV3 | OntologyIrObjectTypeDatasourceDefinition_timeSeries | OntologyIrObjectTypeDatasourceDefinition_datasetV2 | OntologyIrObjectTypeDatasourceDefinition_datasetV3 | OntologyIrObjectTypeDatasourceDefinition_restrictedViewV2 | OntologyIrObjectTypeDatasourceDefinition_restrictedStream | OntologyIrObjectTypeDatasourceDefinition_mediaSetView | OntologyIrObjectTypeDatasourceDefinition_geotimeSeries | OntologyIrObjectTypeDatasourceDefinition_table | OntologyIrObjectTypeDatasourceDefinition_editsOnly | OntologyIrObjectTypeDatasourceDefinition_direct | OntologyIrObjectTypeDatasourceDefinition_derived;
|
|
6204
6273
|
/**
|
|
6205
6274
|
* Object type datasource which is backed by derived properties definition.
|
|
6206
6275
|
*
|
|
@@ -6340,6 +6409,17 @@ export interface OntologyIrObjectTypeStreamDatasourceV2 {
|
|
|
6340
6409
|
streamLocator: _api_blockdata_StreamName;
|
|
6341
6410
|
}
|
|
6342
6411
|
/**
|
|
6412
|
+
* Object type datasource that is backed by a stream in foundry, uniquely identified by its locator.
|
|
6413
|
+
* Supports property security groups and struct property mappings, and should be used instead of
|
|
6414
|
+
* ObjectTypeRestrictedStreamDatasourceV2, as that will be deprecated in the near future.
|
|
6415
|
+
*/
|
|
6416
|
+
export interface OntologyIrObjectTypeStreamDatasourceV3 {
|
|
6417
|
+
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
6418
|
+
propertySecurityGroups?: OntologyIrPropertySecurityGroups | null | undefined;
|
|
6419
|
+
retentionPolicy: RetentionPolicy;
|
|
6420
|
+
streamLocator: _api_blockdata_StreamName;
|
|
6421
|
+
}
|
|
6422
|
+
/**
|
|
6343
6423
|
* Object type datasource that is backed by a table in foundry, uniquely identified by its locator.
|
|
6344
6424
|
* Supports edit only property types through PropertyTypeMappingInfo.
|
|
6345
6425
|
*/
|
|
@@ -6618,6 +6698,7 @@ export interface OntologyIrPropertySecurityGroup {
|
|
|
6618
6698
|
properties: Array<ObjectTypeFieldApiName>;
|
|
6619
6699
|
rid: PropertySecurityGroupRid;
|
|
6620
6700
|
security: OntologyIrSecurityGroupSecurityDefinition;
|
|
6701
|
+
type?: PropertySecurityGroupType | null | undefined;
|
|
6621
6702
|
}
|
|
6622
6703
|
/**
|
|
6623
6704
|
* Groupings of properties into different security "buckets." Every property of the entity type must belong
|
|
@@ -8187,6 +8268,14 @@ export interface ParameterValueOneOfOrEmpty_oneOf {
|
|
|
8187
8268
|
oneOf: ParameterValueOneOf;
|
|
8188
8269
|
}
|
|
8189
8270
|
export type ParameterValueOneOfOrEmpty = ParameterValueOneOfOrEmpty_empty | ParameterValueOneOfOrEmpty_oneOf;
|
|
8271
|
+
export interface ParameterValueType {
|
|
8272
|
+
valueType: ValueType;
|
|
8273
|
+
}
|
|
8274
|
+
export interface ParameterValueTypeOrEmpty_valueType {
|
|
8275
|
+
type: "valueType";
|
|
8276
|
+
valueType: ParameterValueType;
|
|
8277
|
+
}
|
|
8278
|
+
export type ParameterValueTypeOrEmpty = ParameterValueTypeOrEmpty_valueType;
|
|
8190
8279
|
export interface PartialObjectType {
|
|
8191
8280
|
authorizationRidColumnLocator?: ColumnLocator | null | undefined;
|
|
8192
8281
|
description?: string | null | undefined;
|
|
@@ -8244,10 +8333,36 @@ export interface PrePostFix {
|
|
|
8244
8333
|
postfix?: PropertyTypeReferenceOrStringConstant | null | undefined;
|
|
8245
8334
|
prefix?: PropertyTypeReferenceOrStringConstant | null | undefined;
|
|
8246
8335
|
}
|
|
8336
|
+
export interface PrimaryKeyPropertySecurityGroupType {}
|
|
8247
8337
|
/**
|
|
8248
8338
|
* The id of a Multipass Principal(Everyone/User/Group)
|
|
8249
8339
|
*/
|
|
8250
8340
|
export type PrincipalId = string;
|
|
8341
|
+
export interface ProjectEntityRid_objectTypeRid {
|
|
8342
|
+
type: "objectTypeRid";
|
|
8343
|
+
objectTypeRid: ObjectTypeRid;
|
|
8344
|
+
}
|
|
8345
|
+
export interface ProjectEntityRid_linkTypeRid {
|
|
8346
|
+
type: "linkTypeRid";
|
|
8347
|
+
linkTypeRid: LinkTypeRid;
|
|
8348
|
+
}
|
|
8349
|
+
export interface ProjectEntityRid_actionTypeRid {
|
|
8350
|
+
type: "actionTypeRid";
|
|
8351
|
+
actionTypeRid: ActionTypeRid;
|
|
8352
|
+
}
|
|
8353
|
+
export interface ProjectEntityRid_sharedPropertyTypeRid {
|
|
8354
|
+
type: "sharedPropertyTypeRid";
|
|
8355
|
+
sharedPropertyTypeRid: SharedPropertyTypeRid;
|
|
8356
|
+
}
|
|
8357
|
+
export interface ProjectEntityRid_interfaceTypeRid {
|
|
8358
|
+
type: "interfaceTypeRid";
|
|
8359
|
+
interfaceTypeRid: InterfaceTypeRid;
|
|
8360
|
+
}
|
|
8361
|
+
export interface ProjectEntityRid_typeGroupRid {
|
|
8362
|
+
type: "typeGroupRid";
|
|
8363
|
+
typeGroupRid: TypeGroupRid;
|
|
8364
|
+
}
|
|
8365
|
+
export type ProjectEntityRid = ProjectEntityRid_objectTypeRid | ProjectEntityRid_linkTypeRid | ProjectEntityRid_actionTypeRid | ProjectEntityRid_sharedPropertyTypeRid | ProjectEntityRid_interfaceTypeRid | ProjectEntityRid_typeGroupRid;
|
|
8251
8366
|
export interface PropertiesReferenceDuplicateColumnNameWrapper {
|
|
8252
8367
|
columnName: string;
|
|
8253
8368
|
datasourceAuthorizationRid: Array<string>;
|
|
@@ -8268,6 +8383,9 @@ export interface Property {
|
|
|
8268
8383
|
* The id for a Property.
|
|
8269
8384
|
*/
|
|
8270
8385
|
export type PropertyId = string;
|
|
8386
|
+
export interface PropertyPropertySecurityGroupType {
|
|
8387
|
+
name: PropertySecurityGroupName;
|
|
8388
|
+
}
|
|
8271
8389
|
/**
|
|
8272
8390
|
* Render hints provide additional information about the shape of the data to improve the default way the object is presented
|
|
8273
8391
|
*/
|
|
@@ -8285,6 +8403,7 @@ export interface PropertySecurityGroup {
|
|
|
8285
8403
|
properties: Array<PropertyTypeRid>;
|
|
8286
8404
|
rid: PropertySecurityGroupRid;
|
|
8287
8405
|
security: SecurityGroupSecurityDefinition;
|
|
8406
|
+
type?: PropertySecurityGroupType | null | undefined;
|
|
8288
8407
|
}
|
|
8289
8408
|
/**
|
|
8290
8409
|
* Modification of PropertySecurityGroup. A globally unique identifier will be generated for each unique
|
|
@@ -8299,8 +8418,13 @@ export interface PropertySecurityGroup {
|
|
|
8299
8418
|
export interface PropertySecurityGroupModification {
|
|
8300
8419
|
properties: Array<PropertyTypeId>;
|
|
8301
8420
|
security: SecurityGroupSecurityDefinitionModification;
|
|
8421
|
+
type?: PropertySecurityGroupType | null | undefined;
|
|
8302
8422
|
}
|
|
8303
8423
|
/**
|
|
8424
|
+
* A user-defined name that labels a PropertySecurityGroup.
|
|
8425
|
+
*/
|
|
8426
|
+
export type PropertySecurityGroupName = string;
|
|
8427
|
+
/**
|
|
8304
8428
|
* A randomly generated rid that identifies a unique PropertySecurityGroup.
|
|
8305
8429
|
*/
|
|
8306
8430
|
export type PropertySecurityGroupRid = string;
|
|
@@ -8314,6 +8438,15 @@ export interface PropertySecurityGroups {
|
|
|
8314
8438
|
export interface PropertySecurityGroupsModification {
|
|
8315
8439
|
groups: Array<PropertySecurityGroupModification>;
|
|
8316
8440
|
}
|
|
8441
|
+
export interface PropertySecurityGroupType_primaryKey {
|
|
8442
|
+
type: "primaryKey";
|
|
8443
|
+
primaryKey: PrimaryKeyPropertySecurityGroupType;
|
|
8444
|
+
}
|
|
8445
|
+
export interface PropertySecurityGroupType_property {
|
|
8446
|
+
type: "property";
|
|
8447
|
+
property: PropertyPropertySecurityGroupType;
|
|
8448
|
+
}
|
|
8449
|
+
export type PropertySecurityGroupType = PropertySecurityGroupType_primaryKey | PropertySecurityGroupType_property;
|
|
8317
8450
|
/**
|
|
8318
8451
|
* A PropertyType is a typed attribute of an ObjectType.
|
|
8319
8452
|
*/
|
|
@@ -9341,7 +9474,7 @@ export interface SharedPropertyTypeLogicRuleValueModification {
|
|
|
9341
9474
|
sharedPropertyTypeRidOrIdInRequest: SharedPropertyTypeRidOrIdInRequest;
|
|
9342
9475
|
}
|
|
9343
9476
|
/**
|
|
9344
|
-
*
|
|
9477
|
+
* A rid identifying the SharedPropertyType. This rid is generated randomly and is safe for logging purposes.
|
|
9345
9478
|
* The SharedPropertyTypeRid for a SharedPropertyType is immutable.
|
|
9346
9479
|
*/
|
|
9347
9480
|
export type SharedPropertyTypeRid = string;
|
|
@@ -10400,6 +10533,9 @@ export interface ValueReferenceSource_propertyTypeRid {
|
|
|
10400
10533
|
propertyTypeRid: PropertyTypeRid;
|
|
10401
10534
|
}
|
|
10402
10535
|
export type ValueReferenceSource = ValueReferenceSource_propertyTypeRid;
|
|
10536
|
+
export interface ValueType {
|
|
10537
|
+
valueTypeRid: ValueTypeRid;
|
|
10538
|
+
}
|
|
10403
10539
|
export interface ValueTypeApiNameReference {
|
|
10404
10540
|
apiName: string;
|
|
10405
10541
|
version: string;
|