@osdk/client.unstable 2.3.0-beta.2 → 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.
Files changed (33) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build/cjs/index.d.cts +147 -10
  3. package/build/types/generated/ontology-metadata/api/__components.d.ts +146 -10
  4. package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
  5. package/build/types/generated/ontology-metadata/api/audit/__components.d.ts +1 -1
  6. package/build/types/generated/ontology-metadata/api/audit/__components.d.ts.map +1 -1
  7. package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
  8. package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
  9. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +26 -2
  10. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
  11. package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
  12. package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
  13. package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService/migrateEntitiesToProjects.d.ts +10 -0
  14. package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService/migrateEntitiesToProjects.d.ts.map +1 -0
  15. package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService.d.ts +1 -0
  16. package/build/types/generated/ontology-metadata/api/permissions/OntologyPermissionService.d.ts.map +1 -1
  17. package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts +139 -1
  18. package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts.map +1 -1
  19. package/build/types/generated/ontology-metadata/api/permissions/index.d.ts +1 -1
  20. package/build/types/generated/ontology-metadata/api/permissions/index.d.ts.map +1 -1
  21. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +33 -10
  22. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
  23. package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
  24. package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
  25. package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService/discardChangesOnBranch.d.ts +9 -0
  26. package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService/discardChangesOnBranch.d.ts.map +1 -0
  27. package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService.d.ts +1 -0
  28. package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService.d.ts.map +1 -1
  29. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +55 -1
  30. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
  31. package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
  32. package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
  33. package/package.json +1 -1
@@ -1,5 +1,22 @@
1
1
  import type { WorkflowRid as _workflow_api_WorkflowRid } from "../../workflow/api/__components.js";
2
- import type { ActionTypeRid as _api_ActionTypeRid, DatasourceRid as _api_DatasourceRid, GroupId as _api_GroupId, InterfaceTypeRid as _api_InterfaceTypeRid, LinkTypeRid as _api_LinkTypeRid, ObjectTypeRid as _api_ObjectTypeRid, OntologyBranchRid as _api_OntologyBranchRid, OntologyPackageRid as _api_OntologyPackageRid, OntologyRid as _api_OntologyRid, PackagedEntityRid as _api_PackagedEntityRid, PrincipalId as _api_PrincipalId, RoleId as _api_RoleId, SharedPropertyTypeRid as _api_SharedPropertyTypeRid, TypeGroupRid as _api_TypeGroupRid, UserId as _api_UserId } from "../__components.js";
2
+ import type { ActionTypeRid as _api_ActionTypeRid, CompassProjectRid as _api_CompassProjectRid, DatasourceRid as _api_DatasourceRid, GroupId as _api_GroupId, InterfaceTypeRid as _api_InterfaceTypeRid, LinkTypeRid as _api_LinkTypeRid, ObjectTypeRid as _api_ObjectTypeRid, OntologyBranchRid as _api_OntologyBranchRid, OntologyPackageRid as _api_OntologyPackageRid, OntologyRid as _api_OntologyRid, PackagedEntityRid as _api_PackagedEntityRid, PrincipalId as _api_PrincipalId, ProjectEntityRid as _api_ProjectEntityRid, RoleId as _api_RoleId, SharedPropertyTypeRid as _api_SharedPropertyTypeRid, TypeGroupRid as _api_TypeGroupRid, UserId as _api_UserId } from "../__components.js";
3
+ export interface ActionTypePermissionModel_preRoles {
4
+ type: "preRoles";
5
+ preRoles: PreRolesPermissionModel;
6
+ }
7
+ export interface ActionTypePermissionModel_roles {
8
+ type: "roles";
9
+ roles: RolesPermissionModel;
10
+ }
11
+ export interface ActionTypePermissionModel_package {
12
+ type: "package";
13
+ package: PackagePermissionModel;
14
+ }
15
+ export interface ActionTypePermissionModel_publicProject {
16
+ type: "publicProject";
17
+ publicProject: PublicProjectPermissionModel;
18
+ }
19
+ export type ActionTypePermissionModel = ActionTypePermissionModel_preRoles | ActionTypePermissionModel_roles | ActionTypePermissionModel_package | ActionTypePermissionModel_publicProject;
3
20
  /**
4
21
  * Request to update the roles on an ontology entity.
5
22
  * - The RoleSet of the ontology project must be in the Ontology context.
@@ -24,6 +41,10 @@ export interface DatasourcePermissions {
24
41
  canDelete: boolean;
25
42
  canEdit: boolean;
26
43
  }
44
+ /**
45
+ * The entity is fully visible to the org, but modifications are gated by datasource access.
46
+ */
47
+ export interface EditRestrictedByDatasourcesPermissionModel {}
27
48
  export interface EntityAndGrantPatches {
28
49
  entity: PermissionsOntologyEntity;
29
50
  grantPatches: Array<RoleGrantPatch>;
@@ -48,11 +69,13 @@ export interface EveryPrincipal {}
48
69
  */
49
70
  export interface GetActionTypePermissionsResponse {
50
71
  canEdit: boolean;
72
+ canOverrideNotificationRedaction: boolean;
51
73
  canUpdateRoles: boolean;
52
74
  canUseNotifications: boolean;
53
75
  canView: boolean;
54
76
  hasRolesApplied: boolean;
55
77
  packageRid?: _api_OntologyPackageRid | null | undefined;
78
+ permissionModel: ActionTypePermissionModel;
56
79
  }
57
80
  /**
58
81
  * Single user and action type pair to check permissions for
@@ -245,6 +268,7 @@ export interface GetInterfaceTypePermissionsResponse {
245
268
  canEdit: boolean;
246
269
  canUpdateRoles: boolean;
247
270
  packageRid?: _api_OntologyPackageRid | null | undefined;
271
+ permissionModel: InterfaceTypePermissionModel;
248
272
  }
249
273
  /**
250
274
  * The operations the user has on the provided LinkType.
@@ -258,6 +282,7 @@ export interface GetLinkTypePermissionsResponse {
258
282
  datasourcePermissions: Record<_api_DatasourceRid, DatasourcePermissions>;
259
283
  isEditRestrictedByDatasources: boolean;
260
284
  packageRid?: _api_OntologyPackageRid | null | undefined;
285
+ permissionModel: LinkTypePermissionModel;
261
286
  }
262
287
  /**
263
288
  * The operations the user has on the provided ObjectType.
@@ -271,6 +296,7 @@ export interface GetObjectTypePermissionsResponse {
271
296
  datasourcePermissions: Record<_api_DatasourceRid, DatasourcePermissions>;
272
297
  isEditRestrictedByDatasources: boolean;
273
298
  packageRid?: _api_OntologyPackageRid | null | undefined;
299
+ permissionModel: ObjectTypePermissionModel;
274
300
  }
275
301
  /**
276
302
  * The operations the user has on the provided ontology.
@@ -304,6 +330,7 @@ export interface GetSharedPropertyTypePermissionsResponse {
304
330
  canUpdateRoles: boolean;
305
331
  importedInto: Array<_api_OntologyRid>;
306
332
  packageRid?: _api_OntologyPackageRid | null | undefined;
333
+ permissionModel: SharedPropertyTypePermissionModel;
307
334
  }
308
335
  /**
309
336
  * The set of principals suggested to have the editor or owner role on the entity.
@@ -326,6 +353,7 @@ export interface GetTypeGroupPermissionsResponse {
326
353
  canDelete: boolean;
327
354
  canEdit: boolean;
328
355
  canUpdateRoles: boolean;
356
+ permissionModel: TypeGroupPermissionModel;
329
357
  }
330
358
  /**
331
359
  * The operations the user has on the provided Workflow.
@@ -342,11 +370,80 @@ export interface GetWorkflowPermissionsResponse {
342
370
  export interface GroupPrincipal {
343
371
  group: _api_GroupId;
344
372
  }
373
+ export interface InterfaceTypePermissionModel_roles {
374
+ type: "roles";
375
+ roles: RolesPermissionModel;
376
+ }
377
+ export interface InterfaceTypePermissionModel_package {
378
+ type: "package";
379
+ package: PackagePermissionModel;
380
+ }
381
+ export interface InterfaceTypePermissionModel_publicProject {
382
+ type: "publicProject";
383
+ publicProject: PublicProjectPermissionModel;
384
+ }
385
+ export type InterfaceTypePermissionModel = InterfaceTypePermissionModel_roles | InterfaceTypePermissionModel_package | InterfaceTypePermissionModel_publicProject;
386
+ export interface LinkTypePermissionModel_viewRestricted {
387
+ type: "viewRestricted";
388
+ viewRestricted: ViewRestrictedByDatasourcesPermissionModel;
389
+ }
390
+ export interface LinkTypePermissionModel_editRestricted {
391
+ type: "editRestricted";
392
+ editRestricted: EditRestrictedByDatasourcesPermissionModel;
393
+ }
394
+ export interface LinkTypePermissionModel_roles {
395
+ type: "roles";
396
+ roles: RolesPermissionModel;
397
+ }
398
+ export interface LinkTypePermissionModel_package {
399
+ type: "package";
400
+ package: PackagePermissionModel;
401
+ }
402
+ export interface LinkTypePermissionModel_publicProject {
403
+ type: "publicProject";
404
+ publicProject: PublicProjectPermissionModel;
405
+ }
406
+ export type LinkTypePermissionModel = LinkTypePermissionModel_viewRestricted | LinkTypePermissionModel_editRestricted | LinkTypePermissionModel_roles | LinkTypePermissionModel_package | LinkTypePermissionModel_publicProject;
407
+ export interface MigrateEntitiesToProjectsRequest {
408
+ entitiesToMove: Record<_api_CompassProjectRid, Array<_api_ProjectEntityRid>>;
409
+ }
410
+ /**
411
+ * Response to MoveEntitiesToProjectsRequest. Intentionally left empty for future extensibility.
412
+ */
413
+ export interface MigrateEntitiesToProjectsResponse {}
414
+ export interface ObjectTypePermissionModel_viewRestricted {
415
+ type: "viewRestricted";
416
+ viewRestricted: ViewRestrictedByDatasourcesPermissionModel;
417
+ }
418
+ export interface ObjectTypePermissionModel_editRestricted {
419
+ type: "editRestricted";
420
+ editRestricted: EditRestrictedByDatasourcesPermissionModel;
421
+ }
422
+ export interface ObjectTypePermissionModel_roles {
423
+ type: "roles";
424
+ roles: RolesPermissionModel;
425
+ }
426
+ export interface ObjectTypePermissionModel_package {
427
+ type: "package";
428
+ package: PackagePermissionModel;
429
+ }
430
+ export interface ObjectTypePermissionModel_publicProject {
431
+ type: "publicProject";
432
+ publicProject: PublicProjectPermissionModel;
433
+ }
434
+ export type ObjectTypePermissionModel = ObjectTypePermissionModel_viewRestricted | ObjectTypePermissionModel_editRestricted | ObjectTypePermissionModel_roles | ObjectTypePermissionModel_package | ObjectTypePermissionModel_publicProject;
345
435
  export interface OntologyParent {}
346
436
  export interface PackageParent {
347
437
  packageRid: _api_OntologyPackageRid;
348
438
  }
349
439
  /**
440
+ * The entity is fully visible to the org and modifiable by users with roles on the specified package, as well as
441
+ * ontology owners.
442
+ */
443
+ export interface PackagePermissionModel {
444
+ packageRid: _api_OntologyPackageRid;
445
+ }
446
+ /**
350
447
  * Operation to specify whether the patch is added or removed
351
448
  */
352
449
  export type PatchOperation = "ADD" | "REMOVE";
@@ -398,6 +495,11 @@ export interface PermissionsOntologyEntity_typeGroup {
398
495
  * The ontology entity to apply role grants to.
399
496
  */
400
497
  export type PermissionsOntologyEntity = PermissionsOntologyEntity_objectType | PermissionsOntologyEntity_linkType | PermissionsOntologyEntity_actionType | PermissionsOntologyEntity_workflow | PermissionsOntologyEntity_sharedPropertyType | PermissionsOntologyEntity_interfaceType | PermissionsOntologyEntity_typeGroup;
498
+ /**
499
+ * The entity is is fully visible to the org and modifiable by everyone who is in the editors group, as well
500
+ * ass ontology owners.
501
+ */
502
+ export interface PreRolesPermissionModel {}
401
503
  export interface Principal_everyone {
402
504
  type: "everyone";
403
505
  everyone: EveryPrincipal;
@@ -415,6 +517,11 @@ export interface Principal_user {
415
517
  */
416
518
  export type Principal = Principal_everyone | Principal_group | Principal_user;
417
519
  /**
520
+ * The visibility and modifiability of the entity is entirely controlled by the Compass project it belongs to.
521
+ * OMS does not keep track of which project an entity is in.
522
+ */
523
+ export interface PublicProjectPermissionModel {}
524
+ /**
418
525
  * The role to add/remove and to which principal
419
526
  */
420
527
  export interface RoleGrant {
@@ -437,6 +544,33 @@ export interface RolesEnabled {}
437
544
  */
438
545
  export interface RolesEnforced {}
439
546
  /**
547
+ * The entity is fully visible to the org and modifiable by users with the specified roles, as well as ontology
548
+ * owners.
549
+ */
550
+ export interface RolesPermissionModel {}
551
+ export interface SharedPropertyTypePermissionModel_roles {
552
+ type: "roles";
553
+ roles: RolesPermissionModel;
554
+ }
555
+ export interface SharedPropertyTypePermissionModel_package {
556
+ type: "package";
557
+ package: PackagePermissionModel;
558
+ }
559
+ export interface SharedPropertyTypePermissionModel_publicProject {
560
+ type: "publicProject";
561
+ publicProject: PublicProjectPermissionModel;
562
+ }
563
+ export type SharedPropertyTypePermissionModel = SharedPropertyTypePermissionModel_roles | SharedPropertyTypePermissionModel_package | SharedPropertyTypePermissionModel_publicProject;
564
+ export interface TypeGroupPermissionModel_roles {
565
+ type: "roles";
566
+ roles: RolesPermissionModel;
567
+ }
568
+ export interface TypeGroupPermissionModel_publicProject {
569
+ type: "publicProject";
570
+ publicProject: PublicProjectPermissionModel;
571
+ }
572
+ export type TypeGroupPermissionModel = TypeGroupPermissionModel_roles | TypeGroupPermissionModel_publicProject;
573
+ /**
440
574
  * Adds or removes the requested entities to/from a package. Removing means moving the resources to the default
441
575
  * ontology project in the same ontology as the given package.
442
576
  */
@@ -480,3 +614,7 @@ export interface UpdatePackageRolesResponse {}
480
614
  export interface UserPrincipal {
481
615
  user: _api_UserId;
482
616
  }
617
+ /**
618
+ * All access to the entity is denied unless the user has access to at least one datasource
619
+ */
620
+ export interface ViewRestrictedByDatasourcesPermissionModel {}
@@ -1 +1 @@
1
- {"mappings":"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","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/permissions/__components.ts"],"version":3,"file":"__components.d.ts"}
1
+ {"mappings":"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","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/permissions/__components.ts"],"version":3,"file":"__components.d.ts"}
@@ -1,2 +1,2 @@
1
1
  export * as OntologyPermissionService from "./OntologyPermissionService.js";
2
- export type { BulkUpdateEntityRolesRequest, BulkUpdateEntityRolesResponse, DatasourceDerived, DatasourcePermissions, EntityAndGrantPatches, EntityParent, EveryPrincipal, GetActionTypePermissionsResponse, GetBulkActionTypePermissionsForUsersQuery, GetBulkActionTypePermissionsForUsersRequest, GetBulkActionTypePermissionsForUsersResponse, GetBulkActionTypePermissionsForUsersResult, GetBulkActionTypePermissionsRequest, GetBulkActionTypePermissionsResponse, GetBulkInterfaceTypePermissionsRequest, GetBulkInterfaceTypePermissionsResponse, GetBulkLinkTypePermissionsForUsersQuery, GetBulkLinkTypePermissionsForUsersRequest, GetBulkLinkTypePermissionsForUsersResponse, GetBulkLinkTypePermissionsForUsersResult, GetBulkLinkTypePermissionsRequest, GetBulkLinkTypePermissionsResponse, GetBulkObjectTypePermissionsForUsersQuery, GetBulkObjectTypePermissionsForUsersRequest, GetBulkObjectTypePermissionsForUsersResponse, GetBulkObjectTypePermissionsForUsersResult, GetBulkObjectTypePermissionsRequest, GetBulkObjectTypePermissionsResponse, GetBulkSharedPropertyTypePermissionsRequest, GetBulkSharedPropertyTypePermissionsResponse, GetBulkTypeGroupPermissionsRequest, GetBulkTypeGroupPermissionsResponse, GetCreateOntologyPermissionsResponse, GetEditorsForObjectTypeRequest, GetEditorsForObjectTypeResponse, GetInterfaceTypePermissionsResponse, GetLinkTypePermissionsResponse, GetObjectTypePermissionsResponse, GetOntologyPermissionsResponse, GetRuleSetPermissionsResponse, GetSharedPropertyTypePermissionsResponse, GetSuggestedRolesDatasourceResponse, GetSuggestedRolesResponse, GetTypeGroupPermissionsResponse, GetWorkflowPermissionsResponse, GroupPrincipal, OntologyParent, PackageParent, PatchOperation, PermissionModel, PermissionsOntologyEntity, Principal, RoleGrant, RoleGrantPatch, RolesEnabled, RolesEnforced, UpdateEntitiesInPackageRequest, UpdateEntitiesInPackageResponse, UpdateEntityRolesRequest, UpdateEntityRolesResponse, UpdatePackageRolesRequest, UpdatePackageRolesResponse, UserPrincipal } from "./__components.js";
2
+ export type { ActionTypePermissionModel, BulkUpdateEntityRolesRequest, BulkUpdateEntityRolesResponse, DatasourceDerived, DatasourcePermissions, EditRestrictedByDatasourcesPermissionModel, EntityAndGrantPatches, EntityParent, EveryPrincipal, GetActionTypePermissionsResponse, GetBulkActionTypePermissionsForUsersQuery, GetBulkActionTypePermissionsForUsersRequest, GetBulkActionTypePermissionsForUsersResponse, GetBulkActionTypePermissionsForUsersResult, GetBulkActionTypePermissionsRequest, GetBulkActionTypePermissionsResponse, GetBulkInterfaceTypePermissionsRequest, GetBulkInterfaceTypePermissionsResponse, GetBulkLinkTypePermissionsForUsersQuery, GetBulkLinkTypePermissionsForUsersRequest, GetBulkLinkTypePermissionsForUsersResponse, GetBulkLinkTypePermissionsForUsersResult, GetBulkLinkTypePermissionsRequest, GetBulkLinkTypePermissionsResponse, GetBulkObjectTypePermissionsForUsersQuery, GetBulkObjectTypePermissionsForUsersRequest, GetBulkObjectTypePermissionsForUsersResponse, GetBulkObjectTypePermissionsForUsersResult, GetBulkObjectTypePermissionsRequest, GetBulkObjectTypePermissionsResponse, GetBulkSharedPropertyTypePermissionsRequest, GetBulkSharedPropertyTypePermissionsResponse, GetBulkTypeGroupPermissionsRequest, GetBulkTypeGroupPermissionsResponse, GetCreateOntologyPermissionsResponse, GetEditorsForObjectTypeRequest, GetEditorsForObjectTypeResponse, GetInterfaceTypePermissionsResponse, GetLinkTypePermissionsResponse, GetObjectTypePermissionsResponse, GetOntologyPermissionsResponse, GetRuleSetPermissionsResponse, GetSharedPropertyTypePermissionsResponse, GetSuggestedRolesDatasourceResponse, GetSuggestedRolesResponse, GetTypeGroupPermissionsResponse, GetWorkflowPermissionsResponse, GroupPrincipal, InterfaceTypePermissionModel, LinkTypePermissionModel, MigrateEntitiesToProjectsRequest, MigrateEntitiesToProjectsResponse, ObjectTypePermissionModel, OntologyParent, PackageParent, PackagePermissionModel, PatchOperation, PermissionModel, PermissionsOntologyEntity, PreRolesPermissionModel, Principal, PublicProjectPermissionModel, RoleGrant, RoleGrantPatch, RolesEnabled, RolesEnforced, RolesPermissionModel, SharedPropertyTypePermissionModel, TypeGroupPermissionModel, UpdateEntitiesInPackageRequest, UpdateEntitiesInPackageResponse, UpdateEntityRolesRequest, UpdateEntityRolesResponse, UpdatePackageRolesRequest, UpdatePackageRolesResponse, UserPrincipal, ViewRestrictedByDatasourcesPermissionModel } from "./__components.js";
@@ -1 +1 @@
1
- {"mappings":"AAgBA,YAAY,+BAA+B;AAE3C,cACE,8BACA,+BACA,mBACA,uBACA,uBACA,cACA,gBACA,kCACA,2CACA,6CACA,8CACA,4CACA,qCACA,sCACA,wCACA,yCACA,yCACA,2CACA,4CACA,0CACA,mCACA,oCACA,2CACA,6CACA,8CACA,4CACA,qCACA,sCACA,6CACA,8CACA,oCACA,qCACA,sCACA,gCACA,iCACA,qCACA,gCACA,kCACA,gCACA,+BACA,0CACA,qCACA,2BACA,iCACA,gCACA,gBACA,gBACA,eACA,gBACA,iBACA,2BACA,WACA,WACA,gBACA,cACA,eACA,gCACA,iCACA,0BACA,2BACA,2BACA,4BACA,qBACK","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/permissions/index.ts"],"version":3,"file":"index.d.ts"}
1
+ {"mappings":"AAgBA,YAAY,+BAA+B;AAE3C,cACE,2BACA,8BACA,+BACA,mBACA,uBACA,4CACA,uBACA,cACA,gBACA,kCACA,2CACA,6CACA,8CACA,4CACA,qCACA,sCACA,wCACA,yCACA,yCACA,2CACA,4CACA,0CACA,mCACA,oCACA,2CACA,6CACA,8CACA,4CACA,qCACA,sCACA,6CACA,8CACA,oCACA,qCACA,sCACA,gCACA,iCACA,qCACA,gCACA,kCACA,gCACA,+BACA,0CACA,qCACA,2BACA,iCACA,gCACA,gBACA,8BACA,yBACA,kCACA,mCACA,2BACA,gBACA,eACA,wBACA,gBACA,iBACA,2BACA,yBACA,WACA,8BACA,WACA,gBACA,cACA,eACA,sBACA,mCACA,0BACA,gCACA,iCACA,0BACA,2BACA,2BACA,4BACA,eACA,kDACK","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/permissions/index.ts"],"version":3,"file":"index.d.ts"}
@@ -733,10 +733,6 @@ export interface ErrorType_interfaceTypeContainsDuplicateProperties {
733
733
  type: "interfaceTypeContainsDuplicateProperties";
734
734
  interfaceTypeContainsDuplicateProperties: InterfaceTypeContainsDuplicateProperties;
735
735
  }
736
- export interface ErrorType_interfaceTypeContainsInheritedSharedPropertyTypes {
737
- type: "interfaceTypeContainsInheritedSharedPropertyTypes";
738
- interfaceTypeContainsInheritedSharedPropertyTypes: InterfaceTypeContainsInheritedSharedPropertyTypes;
739
- }
740
736
  export interface ErrorType_interfaceTypeExtendedDoesNotExistOrDeleted {
741
737
  type: "interfaceTypeExtendedDoesNotExistOrDeleted";
742
738
  interfaceTypeExtendedDoesNotExistOrDeleted: InterfaceTypeExtendedDoesNotExistOrDeleted;
@@ -2301,6 +2297,22 @@ export interface ErrorType_typeGroupDescriptionTooLong {
2301
2297
  type: "typeGroupDescriptionTooLong";
2302
2298
  typeGroupDescriptionTooLong: TypeGroupDescriptionTooLong;
2303
2299
  }
2300
+ export interface ErrorType_propertySecurityGroupNameTooLong {
2301
+ type: "propertySecurityGroupNameTooLong";
2302
+ propertySecurityGroupNameTooLong: PropertySecurityGroupNameTooLong;
2303
+ }
2304
+ export interface ErrorType_primaryKeyReferencesInMultiplePropertySecurityGroups {
2305
+ type: "primaryKeyReferencesInMultiplePropertySecurityGroups";
2306
+ primaryKeyReferencesInMultiplePropertySecurityGroups: PrimaryKeyReferencesInMultiplePropertySecurityGroups;
2307
+ }
2308
+ export interface ErrorType_missingPropertySecurityGroupTypes {
2309
+ type: "missingPropertySecurityGroupTypes";
2310
+ missingPropertySecurityGroupTypes: MissingPropertySecurityGroupTypes;
2311
+ }
2312
+ export interface ErrorType_nonUniquePropertySecurityGroupNames {
2313
+ type: "nonUniquePropertySecurityGroupNames";
2314
+ nonUniquePropertySecurityGroupNames: NonUniquePropertySecurityGroupNames;
2315
+ }
2304
2316
  export interface ErrorType_objectEditsCannotBeCopiedForObjectTypeOnBranchNeedsRebasing {
2305
2317
  type: "objectEditsCannotBeCopiedForObjectTypeOnBranchNeedsRebasing";
2306
2318
  objectEditsCannotBeCopiedForObjectTypeOnBranchNeedsRebasing: ObjectEditsCannotBeCopiedForObjectTypeOnBranchNeedsRebasing;
@@ -2316,7 +2328,7 @@ export interface ErrorType_parentObjectTypeBranchIndexingConfigCanOnlyBeSetForOb
2316
2328
  /**
2317
2329
  * A union that represents all possible ontology modification validation errors.
2318
2330
  */
2319
- export type ErrorType = ErrorType_ontologyEntityApiNameConflicts | ErrorType_ontologyBranchConflictsWithMain | ErrorType_intermediaryLinkTypeInvalidAssociatedLinkType | ErrorType_intermediaryLinkTypeMustBeOsv2 | ErrorType_intermediaryLinkTypeReferencedObjectTypesMustBeOsv2 | ErrorType_linkTypeStreamDatasourceInvalidRetentionWindow | ErrorType_linkTypeReferencedDatasourceNotFound | ErrorType_linkTypePropertiesReferenceSameColumn | ErrorType_linkTypeDatasourceSchemaNotFound | ErrorType_linkTypeColumnMissingFromBackingDatasource | ErrorType_linkTypePropertyIncompatibleBackingColumnType | ErrorType_linkTypeManyToManyWritebackDatasetPresentOnOsv2 | ErrorType_linkTypeDatasourceAlreadyExists | ErrorType_linkTypeStatusAndObjectTypeStatusConflict | ErrorType_linkTypeReferencedLinkTypesNotFound | ErrorType_linkTypeReferencedLinkTypesDeleted | ErrorType_linkTypeHasMultipleDatasources | ErrorType_linkTypeToDeleteIsReferencedByExistingTypes | ErrorType_linkTypeHasNoDatasources | ErrorType_linkTypeOneToManyWithDatasourcesNotAllowed | ErrorType_linkTypeStatusAndObjectTypePropertyTypeStatusConflict | ErrorType_linkTypeInvalidOneToManyCardinalityHint | ErrorType_linkTypeReferencedObjectTypesNotFound | ErrorType_linkTypeReferencedObjectTypesDeleted | ErrorType_linkTypeInvalidApiName | ErrorType_linkTypeInvalidDeletionsWithReferencingDatasources | ErrorType_linkTypeStatusAndPropertyTypeStatusConflict | ErrorType_linkTypeInvalidVisibility | ErrorType_linkTypeCannotEditPrivilegedProvenance | ErrorType_linkTypeReadOnlyV1V2NotAllowed | ErrorType_linkTypeEntityMetadataModifyRequestWithInvalidObjectDbType | ErrorType_linkTypeEntityMetadataModifyRequestWithInvalidObjectDbRid | ErrorType_linkTypeOsv1NotAllowed | ErrorType_linkTypeReadOnlyV2WithPatchesEnabled | ErrorType_linkTypeV1WithOsv2ObjectDbsEnabled | ErrorType_linkTypeInvalidRevertV1ToV2Migration | ErrorType_linkTypeOsv2WithMultipleClustersEnabled | ErrorType_linkTypeEditabilityChangeDuringV1ToV2Migration | ErrorType_linkTypeInvalidPrimaryKeyReference | ErrorType_linkTypeForeignKeyTypeMismatch | ErrorType_linkTypeForeignKeyReferenceDoesNotExist | ErrorType_linkTypePrimaryAndForeignKeyTypeMismatch | ErrorType_linkTypeInvalidDerivedForeignKey | ErrorType_linkTypeManyToManyDatasourcePrimaryKeyDoesNotExist | ErrorType_linkTypeManyToManyCountExceeded | ErrorType_linkTypeOneToManyCountExceeded | ErrorType_linkTypeDisplayNameTooLong | ErrorType_linkTypeTooManyTypeClasses | ErrorType_linkTypeTypeClassKindTooLong | ErrorType_linkTypeTypeClassValueTooLong | ErrorType_linkTypeInvalidApiNamePrefixes | ErrorType_sensorLinkTypeCannotBeSelfReferential | ErrorType_sensorLinkTypeNotAttachedToObjectType | ErrorType_sensorLinkTypesNotFound | ErrorType_sensorLinkTypeLinkedSensorObjectTypeDoesNotHaveSensorTrait | ErrorType_interfaceTypeToDeleteIsReferencedByExistingTypes | ErrorType_interfaceTypeContainsDuplicateProperties | ErrorType_interfaceTypeContainsInheritedSharedPropertyTypes | ErrorType_interfaceTypeExtendedDoesNotExistOrDeleted | ErrorType_interfaceTypeWithActiveStatusRemovingSharedPropertyTypes | ErrorType_interfaceTypeInvalidApiName | ErrorType_interfaceTypeDeclaresRequiredParentPropertyAsOptional | ErrorType_interfaceTypeReferencedSharedPropertyTypesDoNotExistOrDeleted | ErrorType_interfaceTypeExtendsTooManyInterfaces | ErrorType_interfaceTypeLinkedEntityTypeNotFound | ErrorType_interfaceTypeContainsTooManyProperties | ErrorType_interfaceLinkTypeApiNameConflict | ErrorType_interfaceTypeImplementedTooOften | ErrorType_interfaceTypeCountExceeded | ErrorType_interfaceTypeDisplayNameTooLong | ErrorType_interfaceTypeDescriptionTooLong | ErrorType_interfaceLinkTypeDisplayNameTooLong | ErrorType_interfaceLinkTypeDescriptionTooLong | ErrorType_interfaceTypeInvalidApiNamePrefixes | ErrorType_objectTypeRuleSetBindingAssociatedWithDerivedPropertyType | ErrorType_objectTypeMissingPropertiesAssociatedWithWorkflow | ErrorType_objectTypeWorkflowTraitMappingsDoNotExistOnTrait | ErrorType_objectTypeDatasourceGeotimeSeriesIntegrationRidIsInvalid | ErrorType_objectTypeGeotimeSeriesDatasourceDoesNotReferenceExistingProperties | ErrorType_objectTypeGeotimeSeriesDatasourceGeotimeCatalogIsNotInstalled | ErrorType_objectTypeGeotimeSeriesDatasourceDoesNotReferenceGeotimeSeriesProperties | ErrorType_objectTypeDataSecurityModifiedOnBranch | ErrorType_objectTypePropertiesReferenceSameColumnName | ErrorType_objectTypeTimeSeriesDatasourceDoesNotReferenceExistingProperties | ErrorType_objectTypeTimeSeriesSyncRidIsNotTimeSeriesSync | ErrorType_objectTypeTimeSeriesDatasourceDoesNotReferenceTimeDependentProperties | ErrorType_objectTypePropertyTypeDuplicateMappings | ErrorType_objectTypePropertyTypeMarkingMustBeBackedByDatasourceWithGranularPermissions | ErrorType_objectTypeRevDbIntegratedBackedByStreamDatasource | ErrorType_objectTypeDatasourceWithoutPrimaryKeyColumn | ErrorType_objectTypeDatasourceColumnMappingMismatch | ErrorType_objectTypeReferencedDatasourceNotFound | ErrorType_objectTypePrimaryKeyIsDerived | ErrorType_objectTypePropertyTypeMarkingMustBeReferencedInGranularPolicy | ErrorType_objectTypeDatasourceAlreadyExists | ErrorType_objectTypeWithUnmappedTitleProperty | ErrorType_objectTypeInvalidTypeChangeOfExistingDatasource | ErrorType_objectTypeMismatchedSecurityGroupGranularPolicyOperandDataTypes | ErrorType_objectTypeNonEmptyPropertyInSecurityGroupGranularPolicyNotCondition | ErrorType_objectTypeUnmappedPropertiesInPropertySecurityGroup | ErrorType_objectTypeUnexpectedPropertyTypeReferencedInSecurityGroupGranularPolicy | ErrorType_objectTypeUnsupportedSecurityGroupGranularPolicyOperands | ErrorType_objectTypeUnsupportedSecurityGroupGranularPolicyOperandDataType | ErrorType_objectTypeInvalidOperatorForSecurityGroupGranularPolicyOperands | ErrorType_objectTypeUnmappedPropertyInSecurityGroupGranularPolicy | ErrorType_objectTypeAssumedMarkingSpecifiedWithoutBackingDatasource | ErrorType_objectTypeNullablePropertyInSecurityGroupGranularPolicyMarkingCondition | ErrorType_objectTypeInvalidNumberOfPropertyReferencesInPropertySecurityGroup | ErrorType_objectTypePropertySecurityGroupsNotSupportedWithMultipleDatasources | ErrorType_objectTypePropertySecurityGroupsNotSupportedOnBranches | ErrorType_objectTypePropertyIncompatibleBackingColumnType | ErrorType_objectTypeStructColumnFieldMissingFromBackingDatasource | ErrorType_objectTypeDatasourceSchemaNotFound | ErrorType_objectTypeColumnMissingFromBackingDatasource | ErrorType_objectTypeDerivedPropertyTypeIsTitle | ErrorType_objectTypeNotAllPropertyTypesAreMappedToDatasource | ErrorType_objectTypePropertyTypeMarkingMustHaveAssociatedMarkingConstraintsOnDatasource | ErrorType_objectTypeGpsPolicyColumnsFromRestrictedViewsAreMapped | ErrorType_objectTypeDatasourceUpdateModificationCannotChangeAssumedMarkings | ErrorType_objectTypeMediaDatasourceDoesNotReferenceExistingProperties | ErrorType_objectTypeMediaSetViewLocatorsDoNotExist | ErrorType_objectTypeMediaDatasourceDoesNotReferenceMediaReferenceProperties | ErrorType_objectTypeMediaDatasourceDoesNotHaveAnyMediaSourceRids | ErrorType_objectTypeHasNoDatasources | ErrorType_objectTypePrimaryKeyPropertyTypeDoesNotExist | ErrorType_objectTypePrimaryKeyInvalidTypesWithWriteback | ErrorType_objectTypeInvalidApiName | ErrorType_objectTypeTooManyAliases | ErrorType_objectTypeDerivedPropertyDefinitionLinkTypeNotFoundOrDeleted | ErrorType_objectTypeDerivedPropertyMultiHopLinkExceedsMaximumStepCount | ErrorType_objectTypeDerivedPropertyIncompatibleDefinitionAndForeignPropertyBaseType | ErrorType_objectTypeDerivedPropertyLinkDefinitionCardinalityInvalid | ErrorType_objectTypeDerivedPropertyLinkDoesNotFormChain | ErrorType_objectTypeDerivedPropertyTypeDependOnAnotherDerivedProperty | ErrorType_objectTypeDerivedPropertyMultiHopLinkIsEmpty | ErrorType_objectTypeDerivedPropertyBaseTypeChangedWhenObjectTypeIsNotModified | ErrorType_objectTypeDerivedPropertyDefinitionDoesNotMatchSharedPropertyType | ErrorType_objectTypeForeignPropertyTypeInDerivedPropertyDefinitionNotFound | ErrorType_objectTypeTitlePropertyTypeNotFound | ErrorType_objectTypePrimaryKeyUsesEditOnlyPropertyTypeInDataBackedDatasource | ErrorType_objectTypeEventMetadataReferencesNonExistentProperty | ErrorType_objectTypeTimeseriesMetadataReferencesNonExistentProperty | ErrorType_objectTypeActionLogDeletionStillReferencesEnabledActionType | ErrorType_objectTypeSensorTraitReferencesNonExistentProperty | ErrorType_objectTypeReadingPropertyTypeMustBeTimeDependent | ErrorType_objectTypeCompositePrimaryKeysNotAllowed | ErrorType_objectTypeInvalidDeletionsWithReferencingDatasources | ErrorType_objectTypeInvalidStatus | ErrorType_objectTypeWithEditsHistoryCannotAddUnsupportedPropertyTypes | ErrorType_objectTypeCannotEnableEditsHistoryWithUnsupportedPropertyTypes | ErrorType_objectTypeGeotimeSeriesReferencePropertyIsTitle | ErrorType_objectTypeGeotimeSeriesReferencePropertyTypeHasNoDatasources | ErrorType_objectTypeGeotimeSeriesReferencePropertyShouldNotHaveRenderHints | ErrorType_objectTypeGeotimeSeriesReferenceIsNotOnObjectStorageV2 | ErrorType_objectTypeInvalidTypeForDerivedProperty | ErrorType_objectTypeValueTypeAssociatedWithDerivedPropertyType | ErrorType_objectTypeDataConstraintAssociatedWithDerivedPropertyType | ErrorType_objectTypeInlineActionAssociatedWithDerivedPropertyType | ErrorType_objectTypeReferencedPropertyDoesNotExist | ErrorType_objectTypeTimeDependentPropertyShouldNotBeSearchable | ErrorType_objectTypeInvalidSeriesMetadata | ErrorType_objectTypeTimeDependentPropertyShouldNotBePrimaryKeyOrTitle | ErrorType_objectTypeTimeDependentPropertyMustBeReferencedByExactlyOneTimeSeriesDatasource | ErrorType_objectTypeInvalidNonNumericInternalInterpolation | ErrorType_objectTypeTimeDependentPropertyShouldNotHaveRenderHints | ErrorType_objectTypeInvalidNumericInternalInterpolation | ErrorType_objectTypeTimeDependentPropertyTypeHasNoDatasources | ErrorType_objectTypePhonographNumberOfReplicasTypeclassMustBeOnPrimaryKey | ErrorType_objectTypeInvalidArrayBasePropertyType | ErrorType_objectTypeInvalidPropertyTypeApiName | ErrorType_objectTypeAtMostOneOfReplacedByAndReplacedByIdCanBeSetOnPropertyTypeStatus | ErrorType_objectTypePropertyTypeWithReplaceByIdNotFound | ErrorType_objectTypeInvalidPropertyTypeVisibility | ErrorType_objectTypeStructPropertyTypeFieldDisplayNameTooLong | ErrorType_objectTypeStructPropertyTypeFieldsDuplicateApiNames | ErrorType_objectTypeStructPropertyTypeIsNotOnObjectStorageV2ObjectType | ErrorType_objectTypeStructPropertyTypeShouldNotHaveRenderHints | ErrorType_objectTypeStructPropertyCannotChangeBaseTypes | ErrorType_objectTypeStructPropertyTypeFieldTypeClassKindTooLong | ErrorType_objectTypeStructPropertyTypeFieldHasInvalidApiName | ErrorType_objectTypeStructPropertyTypeFieldAliasTooLong | ErrorType_objectTypeStructPropertyTypeMustHaveAtLeastOneField | ErrorType_objectTypeStructPropertyTypeFieldHasTooManyTypeClasses | ErrorType_objectTypeStructPropertyTypeFieldHasTooManyAliases | ErrorType_objectTypeStructPropertyTypeFieldTypeClassNameTooLong | ErrorType_objectTypeStructFieldBasePropertyTypeInvalid | ErrorType_objectTypeStructPropertyTypeIsTitle | ErrorType_objectTypeStructPropertyTypeFieldDescriptionTooLong | ErrorType_objectTypeStructPropertyTypeShouldNotHaveRenderHintsError | ErrorType_objectTypeReferencedPropertyMustBeDifferent | ErrorType_objectTypeReferencedPropertyTypeMismatch | ErrorType_objectTypeInvalidAnalyzer | ErrorType_objectTypeInvalidLanguageAnalyzer | ErrorType_objectTypeCannotUseAnalyzerExperimentalAndAnalyzerOverride | ErrorType_objectTypePrimaryKeyTypeForbidden | ErrorType_objectTypeReferenceDeletedInlineActionTypes | ErrorType_objectTypePrimaryKeyTimeDependentPropertyMustBeIndexedForSearch | ErrorType_objectTypePropertyTypeStatusAndObjectTypeStatusConflict | ErrorType_objectTypeBaseFormatterReferencedPropertiesDoNotExist | ErrorType_objectTypeAttachmentPropertyShouldNotBePrimaryKeyOrTitle | ErrorType_objectTypeAttachmentPropertyShouldNotBeSearchable | ErrorType_objectTypeAttachmentPropertyShouldNotHaveRenderHints | ErrorType_objectTypeInlineActionTypesCannotBeAssociatedWithObjectTypePrimaryKeys | ErrorType_objectTypeVectorPropertyIsNotOnObjectStorageV2ObjectType | ErrorType_objectTypeVectorPropertyTypeDimensionInvalid | ErrorType_objectTypeVectorPropertyTypeEmbeddingModelUnknown | ErrorType_objectTypeVectorPropertySimilarityFunctionConfigurationInvalid | ErrorType_objectTypeDataNullabilityV2NotEnabled | ErrorType_objectTypeMultipleDataNullabilitiesConfigured | ErrorType_objectTypeNoEmptyCollectionsDataConstraintOnlyAllowedForArrayType | ErrorType_objectTypeMediaReferencePropertyTypeHasNoDatasources | ErrorType_objectTypeMediaReferencePropertyIsReferencedByMoreThanOneMediaSourceDatasource | ErrorType_objectTypeMediaReferencePropertyIsReferencedByMoreThanOneMediaDatasourceType | ErrorType_objectTypeMediaReferenceIsNotOnObjectStorageV2ObjectType | ErrorType_objectTypeMediaReferencePropertyIsTitle | ErrorType_objectTypeMediaReferencePropertyShouldNotHaveRenderHints | ErrorType_objectTypeGothamMappingAlreadyInUse | ErrorType_objectTypeMissingPermissionToEnableTypeMapping | ErrorType_objectTypeObjectStorageV1MappedToGotham | ErrorType_objectTypeRevDbIntegrationHasNoMappedProperties | ErrorType_objectTypeContainsUnmappedSharedPropertyTypes | ErrorType_objectTypeHasModifiedLocalPropertyGothamMapping | ErrorType_objectTypeViewRestrictedContainsGothamMapping | ErrorType_objectTypeInPrivatePackageContainsGothamMapping | ErrorType_objectTypeHasModifiedGothamUris | ErrorType_objectTypeInvalidVisibility | ErrorType_objectTypeHasNoPrimaryKey | ErrorType_objectTypeHasTooManyDatasources | ErrorType_objectTypeCannotEditPrivilegedProvenance | ErrorType_objectTypeBothDerivedPropertyTypeAndObjectStorageV1MappedToGotham | ErrorType_objectTypeEditsResolutionStrategyModificationOnlyAllowedForOsv2 | ErrorType_objectTypeInvalidRevertOsv1ToOsv2Migration | ErrorType_objectTypeEditsResolutionStrategyModificationTimestampPropertyNotInDatasource | ErrorType_objectTypeReadOnlyOsv2WithPatchesEnabled | ErrorType_objectTypeOsv1WithOsv2ObjectDbsEnabled | ErrorType_objectTypeEnablingEditsHistoryNotSupported | ErrorType_objectTypeStreamDatasourceSupportedOnlyWithObjectStorageV2 | ErrorType_objectTypeOsv1CannotCreate | ErrorType_objectTypeReadOnlyV1V2NotAllowed | ErrorType_objectTypeRestrictedViewDatasourceV2SupportedOnlyWithObjectStorageV2 | ErrorType_objectTypeOsv2WithMultipleClustersEnabled | ErrorType_objectTypeEntityMetadataModifyRequestWithInvalidObjectDbType | ErrorType_objectTypeDatasetDatasourceV2SupportedOnlyWithObjectStorageV2 | ErrorType_objectTypeEntityMetadataModifyRequestWithInvalidObjectDbRid | ErrorType_objectTypeEditabilityChangeDuringV1ToV2Migration | ErrorType_objectTypeEditsResolutionStrategyModificationTimestampPropertyNotFound | ErrorType_objectTypeStreamDatasourceWithPatchesEnabled | ErrorType_objectTypeEntityMetadataModifyRequestWithInvalidObjectDbConfigValue | ErrorType_objectTypeToDeleteIsReferencedByExistingInterfaceLinkTypes | ErrorType_objectTypeImplementsTooManyInterfaces | ErrorType_objectTypeInterfaceImplementationInvalidIsIndexedForSearch | ErrorType_objectTypeInterfaceImplementationInvalidDataConstraints | ErrorType_objectTypeInterfaceImplementationConflictingPropertyImplementation | ErrorType_objectTypeInterfaceImplementationPropertyHasDifferentType | ErrorType_objectTypeInterfaceImplementationPropertyNotFound | ErrorType_objectTypeInterfaceImplementationPropertyTypesHaveConflictingApiNames | ErrorType_objectTypeInterfaceImplementationTypeClassesDoNotMatch | ErrorType_objectTypeInterfaceImplementationValueTypeDoesNotMatch | ErrorType_objectTypeInterfaceImplementationImplementsPropertyThatDoesNotExist | ErrorType_objectTypeInterfaceImplementationDoesNotImplementAllProperties | ErrorType_objectTypeInterfaceImplementationInvalidLinkedEntityImplementingLinkType | ErrorType_objectTypeInterfaceImplementationLinkTypeImplementedMoreThanOnce | ErrorType_objectTypePropertyImplementationImplicitAndExplicit | ErrorType_objectTypeInterfaceLinkNotFound | ErrorType_objectTypeInterfaceLinkTypeImplementedTooOften | ErrorType_objectTypeRequiredInterfaceLinkTypeNotImplemented | ErrorType_objectTypeCountExceeded | ErrorType_objectTypeTooManyPropertiesAndStructFields | ErrorType_objectTypeStreamDatasourceTooManyPropertiesAndStructFields | ErrorType_objectTypeDisplayNameTooLong | ErrorType_objectTypeDescriptionTooLong | ErrorType_objectTypePropertyTypeDisplayNameTooLong | ErrorType_objectTypePropertyTypeDescriptionTooLong | ErrorType_objectTypeTooManyTypeClasses | ErrorType_objectTypeTypeClassKindTooLong | ErrorType_objectTypeTypeClassValueTooLong | ErrorType_objectTypeAliasTooLong | ErrorType_objectTypeInvalidApiNamePrefixes | ErrorType_objectTypeInvalidIconColor | ErrorType_objectTypeInvalidIconType | ErrorType_objectTypeInvalidCardinalityImplementingInterfaceLinkType | ErrorType_objectTypeMarkingPropertyTypesOnlyAllowedOnOsv2 | ErrorType_objectTypeInvalidMarkingPropertyType | ErrorType_objectTypeMarkingPropertyTypesMustBeNonNullable | ErrorType_objectTypeCbacMarkingPropertyTypeMustBeNonEmpty | ErrorType_objectTypeWithDerivedPropertiesMappedToGotham | ErrorType_ruleSetBindingReferencingMissingPropertyTypeIds | ErrorType_ruleSetCountExceeded | ErrorType_ruleSetNameTooLong | ErrorType_ruleSetDescriptionTooLong | ErrorType_ruleSetNamedTypeNameTooLong | ErrorType_workflowObjectTypeTraitPropertyTypeMismatch | ErrorType_workflowReferencedLinkTypeDeleted | ErrorType_workflowPropertiesAssociatedMissing | ErrorType_workflowReferencedLinkTypeNotFound | ErrorType_workflowReferencedObjectTypeDeleted | ErrorType_workflowReferencedObjectTypesNotFound | ErrorType_workflowCountExceeded | ErrorType_workflowDisplayNameTooLong | ErrorType_workflowDescriptionTooLong | ErrorType_workflowArchetypeIdTooLong | ErrorType_workflowArchetypeVersionTooLong | ErrorType_sharedPropertyTypeInvalidApiName | ErrorType_sharedPropertyTypeFormatterCannotReferenceOtherPropertyType | ErrorType_sharedPropertyTypeReferencesMissingValueType | ErrorType_sharedPropertyTypeStructPropertyCannotChangeBaseTypes | ErrorType_sharedPropertyTypesToModifyAreImported | ErrorType_sharedPropertyTypeInvalidVisibility | ErrorType_sharedPropertyTypeGothamMappingAlreadyInUse | ErrorType_sharedPropertyTypeHasModifiedGothamUris | ErrorType_sharedPropertyTypeValueTypeUsageMissingStructField | ErrorType_sharedPropertyTypeValueTypeUsageMismatchStructField | ErrorType_sharedPropertyTypeGeotimeSeriesReferencePropertyShouldNotHaveRenderHints | ErrorType_sharedPropertyTypeValueTypeUsageMismatchScaleOrPrecision | ErrorType_sharedPropertyTypeValueTypeUsageMismatch | ErrorType_sharedPropertyTypeAttachmentPropertyShouldNotHaveRenderHints | ErrorType_sharedPropertyTypeAttachmentPropertyShouldNotBeSearchable | ErrorType_sharedPropertyTypeToDeleteIsReferencedByExistingTypes | ErrorType_sharedPropertyTypeMediaReferencePropertyShouldNotHaveRenderHints | ErrorType_sharedPropertyTypeCountExceeded | ErrorType_sharedPropertyTypeDisplayNameTooLong | ErrorType_sharedPropertyTypeDescriptionTooLong | ErrorType_sharedPropertyTypeTooManyTypeClasses | ErrorType_sharedPropertyTypeTypeClassKindTooLong | ErrorType_sharedPropertyTypeTypeClassValueTooLong | ErrorType_sharedPropertyTypeAliasTooLong | ErrorType_sharedPropertyTypeTooManyAliases | ErrorType_sharedPropertyTypeInvalidMarking | ErrorType_sharedPropertyTypesMarkingMustBeNonNullable | ErrorType_sharedPropertyTypeCbacMarkingMustBeNonEmpty | ErrorType_sharedPropertyTypeInvalidApiNamePrefixes | ErrorType_sharedPropertyTypeBacksMultipleProperties | ErrorType_actionTypeHasRevertsEnabledButEmptyEnabledForConfiguration | ErrorType_actionTypeMissingRevertDuration | ErrorType_actionTypeInvalidRevertDuration | ErrorType_actionTypeFormContentOrderingNotExactlySameAsSectionSet | ErrorType_actionTypeParametersInFormContentOrderingDontMatchParameterOrdering | ErrorType_actionTypeFormContentOrderingContainsDuplicates | ErrorType_actionTypeFormContentOrderingNotExactlySameAsParameterSet | ErrorType_actionTypeLinkRuleDoesNotReferenceManyToManyLinkType | ErrorType_actionTypePrimaryKeyInAddObjectRuleDoesNotUseValidLogicRuleValue | ErrorType_actionTypeApiNameMissing | ErrorType_actionTypeDoesNotHaveActionTypeLevelValidation | ErrorType_actionTypeStructParametersNotAllowedInPropertyTypeLogicRuleValueMappings | ErrorType_actionTypeUserValidationFiltersExceedMaximum | ErrorType_actionTypeCannotFindObjectTypes | ErrorType_actionTypeCannotUpdateLegacyMediaPropertyWithLogicRuleValueFromAction | ErrorType_actionTypeStructPropertyFieldMappingHasIncompatibleCardinality | ErrorType_actionTypeStructPropertyFieldMappingHasInconsistentCardinality | ErrorType_actionTypeTypeclassUsageNotAllowed | ErrorType_actionTypeParameterOrderingNotExactlySameAsParameterSet | ErrorType_actionTypeParameterOrderingContainsDuplicates | ErrorType_actionTypeCannotPerformOperationWithRedactedValue | ErrorType_actionTypeStructPropertyFieldMappedToIncompatibleBaseType | ErrorType_actionTypeActionLogObjectsCannotBeEdited | ErrorType_actionTypeNonExistentParametersUsedInLogic | ErrorType_actionTypeObjectMissingPrimaryKey | ErrorType_actionTypeEditingNonEditablePropertyType | ErrorType_actionTypeObjectSetRidsNotAllowedInConditionValues | ErrorType_actionTypeApiNameInvalidFormat | ErrorType_actionTypePropertyTypeDoesNotMatchMappedLogicRuleValue | ErrorType_actionTypeStructPropertyTypesNotAllowedInPropertyTypeLogicRuleValueMappings | ErrorType_actionTypeStructFieldLogicMappingDoesNotMatchStructPropertyDefinition | ErrorType_actionTypeObjectParameterPropertyValueInPrefillsCannotReferenceStructProperty | ErrorType_actionTypeParameterTypeDoesNotMatchParameterValidationType | ErrorType_actionTypeConditionValueCannotReferenceHighCardinalityObjectReferenceParameter | ErrorType_actionTypeStructParameterFieldPrefillReferencesNonexistentObjectPropertyTypeStructField | ErrorType_actionTypeNonExistentParametersUsedInConditionValue | ErrorType_actionTypeModifyObjectRuleDoesNotReferenceObjectTypeParameter | ErrorType_actionTypeCannotUseMediaReferenceForObjectOrInterfaceParameterProperty | ErrorType_actionTypeStructParameterFieldPrefillReferencesIncompatibleObjectPropertyTypeStructField | ErrorType_actionTypeCannotUseTimeSeriesReferenceForObjectOrInterfaceParameterProperty | ErrorType_actionTypeParameterValidationNotFound | ErrorType_actionTypeInvalidObjectDropdownStartingParameter | ErrorType_actionTypeObjectSetObjectTypeDoesntMatchParameterObjectType | ErrorType_actionTypeTooManyObjectDropdownSearchArounds | ErrorType_actionTypeMissingConditionValuesInActionsObjectSet | ErrorType_actionTypeStructParameterPrefillsMustBeDefinedForAllFieldsOrNone | ErrorType_actionTypeParametersDoNotMatchParameterOrdering | ErrorType_actionTypeParameterPrefillCannotReferenceHighCardinalityObjectReferenceParameter | ErrorType_actionTypeParameterValidationReferencesLaterParameters | ErrorType_actionTypeDeletingAndEditingSameParameterRid | ErrorType_actionTypeAddingAndEditingSameParameterId | ErrorType_actionTypeDataConstraintsPropertyMappedToOptionalParameter | ErrorType_actionTypeNonExistentParametersUsedInParameterPrefill | ErrorType_actionTypeObjectReferenceTypeCreateObjectOptionValue | ErrorType_actionTypeStructParameterPrefillReferencesStructPropertyWithIncompatibleCardinality | ErrorType_actionTypeStructParameterPrefillsNotReferencingSameObjectTypeProperty | ErrorType_actionTypeInvalidLogicRuleForObjectType | ErrorType_actionTypeConditionsAreNotIndexedCorrectly | ErrorType_actionTypeApiNameConflict | ErrorType_actionTypeObjectParameterPropertyValueCannotReferenceStructProperty | ErrorType_actionTypeHasRevertsEnabledAndSynchronousWebhook | ErrorType_actionTypeValidationsOrderingNotExactlySameAsValidationRuleSet | ErrorType_actionTypeValidationsOrderingContainsDuplicates | ErrorType_actionTypeHasRevertsEnabledForInvalidObjectTypeStorageBackendCategory | ErrorType_actionTypeHasRevertsEnabledForInvalidLinkTypeStorageBackendCategory | ErrorType_actionTypeReferencesNonExistentSharedPropertyTypesInInterfaceTypes | ErrorType_actionTypeReferencesNonExistentPropertyTypesInObjectTypes | ErrorType_actionTypeReferencesNonExistentEntityTypes | ErrorType_actionTypeReferencesOptionalSharedPropertyTypesInInterfaceTypes | ErrorType_actionTypeActionLogConfiguredForFunctionButFunctionProvenanceIsNotSet | ErrorType_actionTypeActionLogReferencesPropertiesOfNonSingletonObject | ErrorType_actionTypeActionTypeParametersReferencedInActionLogRuleDoNotExist | ErrorType_actionTypeActionLogSummaryContainsObjectParameters | ErrorType_actionTypeActionLogReasonCodePropertiesNotMapped | ErrorType_actionTypeActionTypeObjectTypesEditedDoNotHaveCorrespondingActionLogValue | ErrorType_actionTypeActionLogContainsValuesNotGeneratedByAction | ErrorType_actionTypeActionLogRequiredValuesNotAllPresentExactlyOnce | ErrorType_actionTypeActionLogObjectTypeIdSuppliedEmpty | ErrorType_actionTypeActionLogObjectTypeDoesNotExist | ErrorType_actionTypeActionLogPropertyTypeIdReferencedDoesNotExist | ErrorType_actionTypeActionLogValueDoesNotMatchObjectPropertyTypes | ErrorType_actionTypeActionLogRequiredButNotEnabled | ErrorType_actionTypeActionLogSummaryMessagePartTooLong | ErrorType_actionTypeActionLogSummaryTooManyMessageParts | ErrorType_actionTypeCountExceeded | ErrorType_actionTypeButtonTextTooLong | ErrorType_actionTypeSuccessMessageTooLong | ErrorType_actionTypeTooManyLogicRules | ErrorType_actionTypeTooManyParameters | ErrorType_actionTypeTooManySections | ErrorType_actionTypeTooManySubmissionCriteria | ErrorType_actionTypeFailureMessageTooLong | ErrorType_actionTypeStaticValueTooLong | ErrorType_actionTypeDefaultStringTooLong | ErrorType_actionTypeDisplayNameTooLong | ErrorType_actionTypeDescriptionTooLong | ErrorType_actionTypeSectionDisplayNameTooLong | ErrorType_actionTypeSectionDescriptionTooLong | ErrorType_actionTypeParameterDisplayNameTooLong | ErrorType_actionTypeParameterDescriptionTooLong | ErrorType_actionTypeStructParameterFieldsListLengthValidationCannotBeDefined | ErrorType_actionTypeStructParameterShouldNotHaveTopLevelPrefillDefined | ErrorType_actionTypeStructParameterFieldAllowedValueIsIncompatibleWithFieldType | ErrorType_actionTypeStructParameterFieldRenderHintIsIncompatibleWithFieldTypeAndAllowedValue | ErrorType_actionTypeStructParameterHasInvalidTopLevelAllowedValues | ErrorType_actionTypeParameterCbacConstraintContainsInvalidMaxClassification | ErrorType_actionTypeCbacConstraintOnNonSecuringCbacParameterMissingMaxClassification | ErrorType_actionTypeStringCbacPickerTypeclassUsedOnNonStringParameter | ErrorType_actionTypeInsufficientPermissionsToAddStringCbacPickerTypeclass | ErrorType_actionTypeInsufficientPermissionsToModifyMaxClassificationOfNonSecuringCbacParameter | ErrorType_actionTypeTooManyTypeClasses | ErrorType_actionTypeTypeClassKindTooLong | ErrorType_actionTypeTypeClassValueTooLong | ErrorType_actionTypeInvalidApiNamePrefixes | ErrorType_typeGroupCountExceeded | ErrorType_typeGroupDisplayNameTooLong | ErrorType_typeGroupDescriptionTooLong | ErrorType_objectEditsCannotBeCopiedForObjectTypeOnBranchNeedsRebasing | ErrorType_objectTypeBranchIndexingConfigCanOnlyBeSetOnNonDefaultBranches | ErrorType_parentObjectTypeBranchIndexingConfigCanOnlyBeSetForObjectTypesPresentOnTheParentBranch;
2331
+ export type ErrorType = ErrorType_ontologyEntityApiNameConflicts | ErrorType_ontologyBranchConflictsWithMain | ErrorType_intermediaryLinkTypeInvalidAssociatedLinkType | ErrorType_intermediaryLinkTypeMustBeOsv2 | ErrorType_intermediaryLinkTypeReferencedObjectTypesMustBeOsv2 | ErrorType_linkTypeStreamDatasourceInvalidRetentionWindow | ErrorType_linkTypeReferencedDatasourceNotFound | ErrorType_linkTypePropertiesReferenceSameColumn | ErrorType_linkTypeDatasourceSchemaNotFound | ErrorType_linkTypeColumnMissingFromBackingDatasource | ErrorType_linkTypePropertyIncompatibleBackingColumnType | ErrorType_linkTypeManyToManyWritebackDatasetPresentOnOsv2 | ErrorType_linkTypeDatasourceAlreadyExists | ErrorType_linkTypeStatusAndObjectTypeStatusConflict | ErrorType_linkTypeReferencedLinkTypesNotFound | ErrorType_linkTypeReferencedLinkTypesDeleted | ErrorType_linkTypeHasMultipleDatasources | ErrorType_linkTypeToDeleteIsReferencedByExistingTypes | ErrorType_linkTypeHasNoDatasources | ErrorType_linkTypeOneToManyWithDatasourcesNotAllowed | ErrorType_linkTypeStatusAndObjectTypePropertyTypeStatusConflict | ErrorType_linkTypeInvalidOneToManyCardinalityHint | ErrorType_linkTypeReferencedObjectTypesNotFound | ErrorType_linkTypeReferencedObjectTypesDeleted | ErrorType_linkTypeInvalidApiName | ErrorType_linkTypeInvalidDeletionsWithReferencingDatasources | ErrorType_linkTypeStatusAndPropertyTypeStatusConflict | ErrorType_linkTypeInvalidVisibility | ErrorType_linkTypeCannotEditPrivilegedProvenance | ErrorType_linkTypeReadOnlyV1V2NotAllowed | ErrorType_linkTypeEntityMetadataModifyRequestWithInvalidObjectDbType | ErrorType_linkTypeEntityMetadataModifyRequestWithInvalidObjectDbRid | ErrorType_linkTypeOsv1NotAllowed | ErrorType_linkTypeReadOnlyV2WithPatchesEnabled | ErrorType_linkTypeV1WithOsv2ObjectDbsEnabled | ErrorType_linkTypeInvalidRevertV1ToV2Migration | ErrorType_linkTypeOsv2WithMultipleClustersEnabled | ErrorType_linkTypeEditabilityChangeDuringV1ToV2Migration | ErrorType_linkTypeInvalidPrimaryKeyReference | ErrorType_linkTypeForeignKeyTypeMismatch | ErrorType_linkTypeForeignKeyReferenceDoesNotExist | ErrorType_linkTypePrimaryAndForeignKeyTypeMismatch | ErrorType_linkTypeInvalidDerivedForeignKey | ErrorType_linkTypeManyToManyDatasourcePrimaryKeyDoesNotExist | ErrorType_linkTypeManyToManyCountExceeded | ErrorType_linkTypeOneToManyCountExceeded | ErrorType_linkTypeDisplayNameTooLong | ErrorType_linkTypeTooManyTypeClasses | ErrorType_linkTypeTypeClassKindTooLong | ErrorType_linkTypeTypeClassValueTooLong | ErrorType_linkTypeInvalidApiNamePrefixes | ErrorType_sensorLinkTypeCannotBeSelfReferential | ErrorType_sensorLinkTypeNotAttachedToObjectType | ErrorType_sensorLinkTypesNotFound | ErrorType_sensorLinkTypeLinkedSensorObjectTypeDoesNotHaveSensorTrait | ErrorType_interfaceTypeToDeleteIsReferencedByExistingTypes | ErrorType_interfaceTypeContainsDuplicateProperties | ErrorType_interfaceTypeExtendedDoesNotExistOrDeleted | ErrorType_interfaceTypeWithActiveStatusRemovingSharedPropertyTypes | ErrorType_interfaceTypeInvalidApiName | ErrorType_interfaceTypeDeclaresRequiredParentPropertyAsOptional | ErrorType_interfaceTypeReferencedSharedPropertyTypesDoNotExistOrDeleted | ErrorType_interfaceTypeExtendsTooManyInterfaces | ErrorType_interfaceTypeLinkedEntityTypeNotFound | ErrorType_interfaceTypeContainsTooManyProperties | ErrorType_interfaceLinkTypeApiNameConflict | ErrorType_interfaceTypeImplementedTooOften | ErrorType_interfaceTypeCountExceeded | ErrorType_interfaceTypeDisplayNameTooLong | ErrorType_interfaceTypeDescriptionTooLong | ErrorType_interfaceLinkTypeDisplayNameTooLong | ErrorType_interfaceLinkTypeDescriptionTooLong | ErrorType_interfaceTypeInvalidApiNamePrefixes | ErrorType_objectTypeRuleSetBindingAssociatedWithDerivedPropertyType | ErrorType_objectTypeMissingPropertiesAssociatedWithWorkflow | ErrorType_objectTypeWorkflowTraitMappingsDoNotExistOnTrait | ErrorType_objectTypeDatasourceGeotimeSeriesIntegrationRidIsInvalid | ErrorType_objectTypeGeotimeSeriesDatasourceDoesNotReferenceExistingProperties | ErrorType_objectTypeGeotimeSeriesDatasourceGeotimeCatalogIsNotInstalled | ErrorType_objectTypeGeotimeSeriesDatasourceDoesNotReferenceGeotimeSeriesProperties | ErrorType_objectTypeDataSecurityModifiedOnBranch | ErrorType_objectTypePropertiesReferenceSameColumnName | ErrorType_objectTypeTimeSeriesDatasourceDoesNotReferenceExistingProperties | ErrorType_objectTypeTimeSeriesSyncRidIsNotTimeSeriesSync | ErrorType_objectTypeTimeSeriesDatasourceDoesNotReferenceTimeDependentProperties | ErrorType_objectTypePropertyTypeDuplicateMappings | ErrorType_objectTypePropertyTypeMarkingMustBeBackedByDatasourceWithGranularPermissions | ErrorType_objectTypeRevDbIntegratedBackedByStreamDatasource | ErrorType_objectTypeDatasourceWithoutPrimaryKeyColumn | ErrorType_objectTypeDatasourceColumnMappingMismatch | ErrorType_objectTypeReferencedDatasourceNotFound | ErrorType_objectTypePrimaryKeyIsDerived | ErrorType_objectTypePropertyTypeMarkingMustBeReferencedInGranularPolicy | ErrorType_objectTypeDatasourceAlreadyExists | ErrorType_objectTypeWithUnmappedTitleProperty | ErrorType_objectTypeInvalidTypeChangeOfExistingDatasource | ErrorType_objectTypeMismatchedSecurityGroupGranularPolicyOperandDataTypes | ErrorType_objectTypeNonEmptyPropertyInSecurityGroupGranularPolicyNotCondition | ErrorType_objectTypeUnmappedPropertiesInPropertySecurityGroup | ErrorType_objectTypeUnexpectedPropertyTypeReferencedInSecurityGroupGranularPolicy | ErrorType_objectTypeUnsupportedSecurityGroupGranularPolicyOperands | ErrorType_objectTypeUnsupportedSecurityGroupGranularPolicyOperandDataType | ErrorType_objectTypeInvalidOperatorForSecurityGroupGranularPolicyOperands | ErrorType_objectTypeUnmappedPropertyInSecurityGroupGranularPolicy | ErrorType_objectTypeAssumedMarkingSpecifiedWithoutBackingDatasource | ErrorType_objectTypeNullablePropertyInSecurityGroupGranularPolicyMarkingCondition | ErrorType_objectTypeInvalidNumberOfPropertyReferencesInPropertySecurityGroup | ErrorType_objectTypePropertySecurityGroupsNotSupportedWithMultipleDatasources | ErrorType_objectTypePropertySecurityGroupsNotSupportedOnBranches | ErrorType_objectTypePropertyIncompatibleBackingColumnType | ErrorType_objectTypeStructColumnFieldMissingFromBackingDatasource | ErrorType_objectTypeDatasourceSchemaNotFound | ErrorType_objectTypeColumnMissingFromBackingDatasource | ErrorType_objectTypeDerivedPropertyTypeIsTitle | ErrorType_objectTypeNotAllPropertyTypesAreMappedToDatasource | ErrorType_objectTypePropertyTypeMarkingMustHaveAssociatedMarkingConstraintsOnDatasource | ErrorType_objectTypeGpsPolicyColumnsFromRestrictedViewsAreMapped | ErrorType_objectTypeDatasourceUpdateModificationCannotChangeAssumedMarkings | ErrorType_objectTypeMediaDatasourceDoesNotReferenceExistingProperties | ErrorType_objectTypeMediaSetViewLocatorsDoNotExist | ErrorType_objectTypeMediaDatasourceDoesNotReferenceMediaReferenceProperties | ErrorType_objectTypeMediaDatasourceDoesNotHaveAnyMediaSourceRids | ErrorType_objectTypeHasNoDatasources | ErrorType_objectTypePrimaryKeyPropertyTypeDoesNotExist | ErrorType_objectTypePrimaryKeyInvalidTypesWithWriteback | ErrorType_objectTypeInvalidApiName | ErrorType_objectTypeTooManyAliases | ErrorType_objectTypeDerivedPropertyDefinitionLinkTypeNotFoundOrDeleted | ErrorType_objectTypeDerivedPropertyMultiHopLinkExceedsMaximumStepCount | ErrorType_objectTypeDerivedPropertyIncompatibleDefinitionAndForeignPropertyBaseType | ErrorType_objectTypeDerivedPropertyLinkDefinitionCardinalityInvalid | ErrorType_objectTypeDerivedPropertyLinkDoesNotFormChain | ErrorType_objectTypeDerivedPropertyTypeDependOnAnotherDerivedProperty | ErrorType_objectTypeDerivedPropertyMultiHopLinkIsEmpty | ErrorType_objectTypeDerivedPropertyBaseTypeChangedWhenObjectTypeIsNotModified | ErrorType_objectTypeDerivedPropertyDefinitionDoesNotMatchSharedPropertyType | ErrorType_objectTypeForeignPropertyTypeInDerivedPropertyDefinitionNotFound | ErrorType_objectTypeTitlePropertyTypeNotFound | ErrorType_objectTypePrimaryKeyUsesEditOnlyPropertyTypeInDataBackedDatasource | ErrorType_objectTypeEventMetadataReferencesNonExistentProperty | ErrorType_objectTypeTimeseriesMetadataReferencesNonExistentProperty | ErrorType_objectTypeActionLogDeletionStillReferencesEnabledActionType | ErrorType_objectTypeSensorTraitReferencesNonExistentProperty | ErrorType_objectTypeReadingPropertyTypeMustBeTimeDependent | ErrorType_objectTypeCompositePrimaryKeysNotAllowed | ErrorType_objectTypeInvalidDeletionsWithReferencingDatasources | ErrorType_objectTypeInvalidStatus | ErrorType_objectTypeWithEditsHistoryCannotAddUnsupportedPropertyTypes | ErrorType_objectTypeCannotEnableEditsHistoryWithUnsupportedPropertyTypes | ErrorType_objectTypeGeotimeSeriesReferencePropertyIsTitle | ErrorType_objectTypeGeotimeSeriesReferencePropertyTypeHasNoDatasources | ErrorType_objectTypeGeotimeSeriesReferencePropertyShouldNotHaveRenderHints | ErrorType_objectTypeGeotimeSeriesReferenceIsNotOnObjectStorageV2 | ErrorType_objectTypeInvalidTypeForDerivedProperty | ErrorType_objectTypeValueTypeAssociatedWithDerivedPropertyType | ErrorType_objectTypeDataConstraintAssociatedWithDerivedPropertyType | ErrorType_objectTypeInlineActionAssociatedWithDerivedPropertyType | ErrorType_objectTypeReferencedPropertyDoesNotExist | ErrorType_objectTypeTimeDependentPropertyShouldNotBeSearchable | ErrorType_objectTypeInvalidSeriesMetadata | ErrorType_objectTypeTimeDependentPropertyShouldNotBePrimaryKeyOrTitle | ErrorType_objectTypeTimeDependentPropertyMustBeReferencedByExactlyOneTimeSeriesDatasource | ErrorType_objectTypeInvalidNonNumericInternalInterpolation | ErrorType_objectTypeTimeDependentPropertyShouldNotHaveRenderHints | ErrorType_objectTypeInvalidNumericInternalInterpolation | ErrorType_objectTypeTimeDependentPropertyTypeHasNoDatasources | ErrorType_objectTypePhonographNumberOfReplicasTypeclassMustBeOnPrimaryKey | ErrorType_objectTypeInvalidArrayBasePropertyType | ErrorType_objectTypeInvalidPropertyTypeApiName | ErrorType_objectTypeAtMostOneOfReplacedByAndReplacedByIdCanBeSetOnPropertyTypeStatus | ErrorType_objectTypePropertyTypeWithReplaceByIdNotFound | ErrorType_objectTypeInvalidPropertyTypeVisibility | ErrorType_objectTypeStructPropertyTypeFieldDisplayNameTooLong | ErrorType_objectTypeStructPropertyTypeFieldsDuplicateApiNames | ErrorType_objectTypeStructPropertyTypeIsNotOnObjectStorageV2ObjectType | ErrorType_objectTypeStructPropertyTypeShouldNotHaveRenderHints | ErrorType_objectTypeStructPropertyCannotChangeBaseTypes | ErrorType_objectTypeStructPropertyTypeFieldTypeClassKindTooLong | ErrorType_objectTypeStructPropertyTypeFieldHasInvalidApiName | ErrorType_objectTypeStructPropertyTypeFieldAliasTooLong | ErrorType_objectTypeStructPropertyTypeMustHaveAtLeastOneField | ErrorType_objectTypeStructPropertyTypeFieldHasTooManyTypeClasses | ErrorType_objectTypeStructPropertyTypeFieldHasTooManyAliases | ErrorType_objectTypeStructPropertyTypeFieldTypeClassNameTooLong | ErrorType_objectTypeStructFieldBasePropertyTypeInvalid | ErrorType_objectTypeStructPropertyTypeIsTitle | ErrorType_objectTypeStructPropertyTypeFieldDescriptionTooLong | ErrorType_objectTypeStructPropertyTypeShouldNotHaveRenderHintsError | ErrorType_objectTypeReferencedPropertyMustBeDifferent | ErrorType_objectTypeReferencedPropertyTypeMismatch | ErrorType_objectTypeInvalidAnalyzer | ErrorType_objectTypeInvalidLanguageAnalyzer | ErrorType_objectTypeCannotUseAnalyzerExperimentalAndAnalyzerOverride | ErrorType_objectTypePrimaryKeyTypeForbidden | ErrorType_objectTypeReferenceDeletedInlineActionTypes | ErrorType_objectTypePrimaryKeyTimeDependentPropertyMustBeIndexedForSearch | ErrorType_objectTypePropertyTypeStatusAndObjectTypeStatusConflict | ErrorType_objectTypeBaseFormatterReferencedPropertiesDoNotExist | ErrorType_objectTypeAttachmentPropertyShouldNotBePrimaryKeyOrTitle | ErrorType_objectTypeAttachmentPropertyShouldNotBeSearchable | ErrorType_objectTypeAttachmentPropertyShouldNotHaveRenderHints | ErrorType_objectTypeInlineActionTypesCannotBeAssociatedWithObjectTypePrimaryKeys | ErrorType_objectTypeVectorPropertyIsNotOnObjectStorageV2ObjectType | ErrorType_objectTypeVectorPropertyTypeDimensionInvalid | ErrorType_objectTypeVectorPropertyTypeEmbeddingModelUnknown | ErrorType_objectTypeVectorPropertySimilarityFunctionConfigurationInvalid | ErrorType_objectTypeDataNullabilityV2NotEnabled | ErrorType_objectTypeMultipleDataNullabilitiesConfigured | ErrorType_objectTypeNoEmptyCollectionsDataConstraintOnlyAllowedForArrayType | ErrorType_objectTypeMediaReferencePropertyTypeHasNoDatasources | ErrorType_objectTypeMediaReferencePropertyIsReferencedByMoreThanOneMediaSourceDatasource | ErrorType_objectTypeMediaReferencePropertyIsReferencedByMoreThanOneMediaDatasourceType | ErrorType_objectTypeMediaReferenceIsNotOnObjectStorageV2ObjectType | ErrorType_objectTypeMediaReferencePropertyIsTitle | ErrorType_objectTypeMediaReferencePropertyShouldNotHaveRenderHints | ErrorType_objectTypeGothamMappingAlreadyInUse | ErrorType_objectTypeMissingPermissionToEnableTypeMapping | ErrorType_objectTypeObjectStorageV1MappedToGotham | ErrorType_objectTypeRevDbIntegrationHasNoMappedProperties | ErrorType_objectTypeContainsUnmappedSharedPropertyTypes | ErrorType_objectTypeHasModifiedLocalPropertyGothamMapping | ErrorType_objectTypeViewRestrictedContainsGothamMapping | ErrorType_objectTypeInPrivatePackageContainsGothamMapping | ErrorType_objectTypeHasModifiedGothamUris | ErrorType_objectTypeInvalidVisibility | ErrorType_objectTypeHasNoPrimaryKey | ErrorType_objectTypeHasTooManyDatasources | ErrorType_objectTypeCannotEditPrivilegedProvenance | ErrorType_objectTypeBothDerivedPropertyTypeAndObjectStorageV1MappedToGotham | ErrorType_objectTypeEditsResolutionStrategyModificationOnlyAllowedForOsv2 | ErrorType_objectTypeInvalidRevertOsv1ToOsv2Migration | ErrorType_objectTypeEditsResolutionStrategyModificationTimestampPropertyNotInDatasource | ErrorType_objectTypeReadOnlyOsv2WithPatchesEnabled | ErrorType_objectTypeOsv1WithOsv2ObjectDbsEnabled | ErrorType_objectTypeEnablingEditsHistoryNotSupported | ErrorType_objectTypeStreamDatasourceSupportedOnlyWithObjectStorageV2 | ErrorType_objectTypeOsv1CannotCreate | ErrorType_objectTypeReadOnlyV1V2NotAllowed | ErrorType_objectTypeRestrictedViewDatasourceV2SupportedOnlyWithObjectStorageV2 | ErrorType_objectTypeOsv2WithMultipleClustersEnabled | ErrorType_objectTypeEntityMetadataModifyRequestWithInvalidObjectDbType | ErrorType_objectTypeDatasetDatasourceV2SupportedOnlyWithObjectStorageV2 | ErrorType_objectTypeEntityMetadataModifyRequestWithInvalidObjectDbRid | ErrorType_objectTypeEditabilityChangeDuringV1ToV2Migration | ErrorType_objectTypeEditsResolutionStrategyModificationTimestampPropertyNotFound | ErrorType_objectTypeStreamDatasourceWithPatchesEnabled | ErrorType_objectTypeEntityMetadataModifyRequestWithInvalidObjectDbConfigValue | ErrorType_objectTypeToDeleteIsReferencedByExistingInterfaceLinkTypes | ErrorType_objectTypeImplementsTooManyInterfaces | ErrorType_objectTypeInterfaceImplementationInvalidIsIndexedForSearch | ErrorType_objectTypeInterfaceImplementationInvalidDataConstraints | ErrorType_objectTypeInterfaceImplementationConflictingPropertyImplementation | ErrorType_objectTypeInterfaceImplementationPropertyHasDifferentType | ErrorType_objectTypeInterfaceImplementationPropertyNotFound | ErrorType_objectTypeInterfaceImplementationPropertyTypesHaveConflictingApiNames | ErrorType_objectTypeInterfaceImplementationTypeClassesDoNotMatch | ErrorType_objectTypeInterfaceImplementationValueTypeDoesNotMatch | ErrorType_objectTypeInterfaceImplementationImplementsPropertyThatDoesNotExist | ErrorType_objectTypeInterfaceImplementationDoesNotImplementAllProperties | ErrorType_objectTypeInterfaceImplementationInvalidLinkedEntityImplementingLinkType | ErrorType_objectTypeInterfaceImplementationLinkTypeImplementedMoreThanOnce | ErrorType_objectTypePropertyImplementationImplicitAndExplicit | ErrorType_objectTypeInterfaceLinkNotFound | ErrorType_objectTypeInterfaceLinkTypeImplementedTooOften | ErrorType_objectTypeRequiredInterfaceLinkTypeNotImplemented | ErrorType_objectTypeCountExceeded | ErrorType_objectTypeTooManyPropertiesAndStructFields | ErrorType_objectTypeStreamDatasourceTooManyPropertiesAndStructFields | ErrorType_objectTypeDisplayNameTooLong | ErrorType_objectTypeDescriptionTooLong | ErrorType_objectTypePropertyTypeDisplayNameTooLong | ErrorType_objectTypePropertyTypeDescriptionTooLong | ErrorType_objectTypeTooManyTypeClasses | ErrorType_objectTypeTypeClassKindTooLong | ErrorType_objectTypeTypeClassValueTooLong | ErrorType_objectTypeAliasTooLong | ErrorType_objectTypeInvalidApiNamePrefixes | ErrorType_objectTypeInvalidIconColor | ErrorType_objectTypeInvalidIconType | ErrorType_objectTypeInvalidCardinalityImplementingInterfaceLinkType | ErrorType_objectTypeMarkingPropertyTypesOnlyAllowedOnOsv2 | ErrorType_objectTypeInvalidMarkingPropertyType | ErrorType_objectTypeMarkingPropertyTypesMustBeNonNullable | ErrorType_objectTypeCbacMarkingPropertyTypeMustBeNonEmpty | ErrorType_objectTypeWithDerivedPropertiesMappedToGotham | ErrorType_ruleSetBindingReferencingMissingPropertyTypeIds | ErrorType_ruleSetCountExceeded | ErrorType_ruleSetNameTooLong | ErrorType_ruleSetDescriptionTooLong | ErrorType_ruleSetNamedTypeNameTooLong | ErrorType_workflowObjectTypeTraitPropertyTypeMismatch | ErrorType_workflowReferencedLinkTypeDeleted | ErrorType_workflowPropertiesAssociatedMissing | ErrorType_workflowReferencedLinkTypeNotFound | ErrorType_workflowReferencedObjectTypeDeleted | ErrorType_workflowReferencedObjectTypesNotFound | ErrorType_workflowCountExceeded | ErrorType_workflowDisplayNameTooLong | ErrorType_workflowDescriptionTooLong | ErrorType_workflowArchetypeIdTooLong | ErrorType_workflowArchetypeVersionTooLong | ErrorType_sharedPropertyTypeInvalidApiName | ErrorType_sharedPropertyTypeFormatterCannotReferenceOtherPropertyType | ErrorType_sharedPropertyTypeReferencesMissingValueType | ErrorType_sharedPropertyTypeStructPropertyCannotChangeBaseTypes | ErrorType_sharedPropertyTypesToModifyAreImported | ErrorType_sharedPropertyTypeInvalidVisibility | ErrorType_sharedPropertyTypeGothamMappingAlreadyInUse | ErrorType_sharedPropertyTypeHasModifiedGothamUris | ErrorType_sharedPropertyTypeValueTypeUsageMissingStructField | ErrorType_sharedPropertyTypeValueTypeUsageMismatchStructField | ErrorType_sharedPropertyTypeGeotimeSeriesReferencePropertyShouldNotHaveRenderHints | ErrorType_sharedPropertyTypeValueTypeUsageMismatchScaleOrPrecision | ErrorType_sharedPropertyTypeValueTypeUsageMismatch | ErrorType_sharedPropertyTypeAttachmentPropertyShouldNotHaveRenderHints | ErrorType_sharedPropertyTypeAttachmentPropertyShouldNotBeSearchable | ErrorType_sharedPropertyTypeToDeleteIsReferencedByExistingTypes | ErrorType_sharedPropertyTypeMediaReferencePropertyShouldNotHaveRenderHints | ErrorType_sharedPropertyTypeCountExceeded | ErrorType_sharedPropertyTypeDisplayNameTooLong | ErrorType_sharedPropertyTypeDescriptionTooLong | ErrorType_sharedPropertyTypeTooManyTypeClasses | ErrorType_sharedPropertyTypeTypeClassKindTooLong | ErrorType_sharedPropertyTypeTypeClassValueTooLong | ErrorType_sharedPropertyTypeAliasTooLong | ErrorType_sharedPropertyTypeTooManyAliases | ErrorType_sharedPropertyTypeInvalidMarking | ErrorType_sharedPropertyTypesMarkingMustBeNonNullable | ErrorType_sharedPropertyTypeCbacMarkingMustBeNonEmpty | ErrorType_sharedPropertyTypeInvalidApiNamePrefixes | ErrorType_sharedPropertyTypeBacksMultipleProperties | ErrorType_actionTypeHasRevertsEnabledButEmptyEnabledForConfiguration | ErrorType_actionTypeMissingRevertDuration | ErrorType_actionTypeInvalidRevertDuration | ErrorType_actionTypeFormContentOrderingNotExactlySameAsSectionSet | ErrorType_actionTypeParametersInFormContentOrderingDontMatchParameterOrdering | ErrorType_actionTypeFormContentOrderingContainsDuplicates | ErrorType_actionTypeFormContentOrderingNotExactlySameAsParameterSet | ErrorType_actionTypeLinkRuleDoesNotReferenceManyToManyLinkType | ErrorType_actionTypePrimaryKeyInAddObjectRuleDoesNotUseValidLogicRuleValue | ErrorType_actionTypeApiNameMissing | ErrorType_actionTypeDoesNotHaveActionTypeLevelValidation | ErrorType_actionTypeStructParametersNotAllowedInPropertyTypeLogicRuleValueMappings | ErrorType_actionTypeUserValidationFiltersExceedMaximum | ErrorType_actionTypeCannotFindObjectTypes | ErrorType_actionTypeCannotUpdateLegacyMediaPropertyWithLogicRuleValueFromAction | ErrorType_actionTypeStructPropertyFieldMappingHasIncompatibleCardinality | ErrorType_actionTypeStructPropertyFieldMappingHasInconsistentCardinality | ErrorType_actionTypeTypeclassUsageNotAllowed | ErrorType_actionTypeParameterOrderingNotExactlySameAsParameterSet | ErrorType_actionTypeParameterOrderingContainsDuplicates | ErrorType_actionTypeCannotPerformOperationWithRedactedValue | ErrorType_actionTypeStructPropertyFieldMappedToIncompatibleBaseType | ErrorType_actionTypeActionLogObjectsCannotBeEdited | ErrorType_actionTypeNonExistentParametersUsedInLogic | ErrorType_actionTypeObjectMissingPrimaryKey | ErrorType_actionTypeEditingNonEditablePropertyType | ErrorType_actionTypeObjectSetRidsNotAllowedInConditionValues | ErrorType_actionTypeApiNameInvalidFormat | ErrorType_actionTypePropertyTypeDoesNotMatchMappedLogicRuleValue | ErrorType_actionTypeStructPropertyTypesNotAllowedInPropertyTypeLogicRuleValueMappings | ErrorType_actionTypeStructFieldLogicMappingDoesNotMatchStructPropertyDefinition | ErrorType_actionTypeObjectParameterPropertyValueInPrefillsCannotReferenceStructProperty | ErrorType_actionTypeParameterTypeDoesNotMatchParameterValidationType | ErrorType_actionTypeConditionValueCannotReferenceHighCardinalityObjectReferenceParameter | ErrorType_actionTypeStructParameterFieldPrefillReferencesNonexistentObjectPropertyTypeStructField | ErrorType_actionTypeNonExistentParametersUsedInConditionValue | ErrorType_actionTypeModifyObjectRuleDoesNotReferenceObjectTypeParameter | ErrorType_actionTypeCannotUseMediaReferenceForObjectOrInterfaceParameterProperty | ErrorType_actionTypeStructParameterFieldPrefillReferencesIncompatibleObjectPropertyTypeStructField | ErrorType_actionTypeCannotUseTimeSeriesReferenceForObjectOrInterfaceParameterProperty | ErrorType_actionTypeParameterValidationNotFound | ErrorType_actionTypeInvalidObjectDropdownStartingParameter | ErrorType_actionTypeObjectSetObjectTypeDoesntMatchParameterObjectType | ErrorType_actionTypeTooManyObjectDropdownSearchArounds | ErrorType_actionTypeMissingConditionValuesInActionsObjectSet | ErrorType_actionTypeStructParameterPrefillsMustBeDefinedForAllFieldsOrNone | ErrorType_actionTypeParametersDoNotMatchParameterOrdering | ErrorType_actionTypeParameterPrefillCannotReferenceHighCardinalityObjectReferenceParameter | ErrorType_actionTypeParameterValidationReferencesLaterParameters | ErrorType_actionTypeDeletingAndEditingSameParameterRid | ErrorType_actionTypeAddingAndEditingSameParameterId | ErrorType_actionTypeDataConstraintsPropertyMappedToOptionalParameter | ErrorType_actionTypeNonExistentParametersUsedInParameterPrefill | ErrorType_actionTypeObjectReferenceTypeCreateObjectOptionValue | ErrorType_actionTypeStructParameterPrefillReferencesStructPropertyWithIncompatibleCardinality | ErrorType_actionTypeStructParameterPrefillsNotReferencingSameObjectTypeProperty | ErrorType_actionTypeInvalidLogicRuleForObjectType | ErrorType_actionTypeConditionsAreNotIndexedCorrectly | ErrorType_actionTypeApiNameConflict | ErrorType_actionTypeObjectParameterPropertyValueCannotReferenceStructProperty | ErrorType_actionTypeHasRevertsEnabledAndSynchronousWebhook | ErrorType_actionTypeValidationsOrderingNotExactlySameAsValidationRuleSet | ErrorType_actionTypeValidationsOrderingContainsDuplicates | ErrorType_actionTypeHasRevertsEnabledForInvalidObjectTypeStorageBackendCategory | ErrorType_actionTypeHasRevertsEnabledForInvalidLinkTypeStorageBackendCategory | ErrorType_actionTypeReferencesNonExistentSharedPropertyTypesInInterfaceTypes | ErrorType_actionTypeReferencesNonExistentPropertyTypesInObjectTypes | ErrorType_actionTypeReferencesNonExistentEntityTypes | ErrorType_actionTypeReferencesOptionalSharedPropertyTypesInInterfaceTypes | ErrorType_actionTypeActionLogConfiguredForFunctionButFunctionProvenanceIsNotSet | ErrorType_actionTypeActionLogReferencesPropertiesOfNonSingletonObject | ErrorType_actionTypeActionTypeParametersReferencedInActionLogRuleDoNotExist | ErrorType_actionTypeActionLogSummaryContainsObjectParameters | ErrorType_actionTypeActionLogReasonCodePropertiesNotMapped | ErrorType_actionTypeActionTypeObjectTypesEditedDoNotHaveCorrespondingActionLogValue | ErrorType_actionTypeActionLogContainsValuesNotGeneratedByAction | ErrorType_actionTypeActionLogRequiredValuesNotAllPresentExactlyOnce | ErrorType_actionTypeActionLogObjectTypeIdSuppliedEmpty | ErrorType_actionTypeActionLogObjectTypeDoesNotExist | ErrorType_actionTypeActionLogPropertyTypeIdReferencedDoesNotExist | ErrorType_actionTypeActionLogValueDoesNotMatchObjectPropertyTypes | ErrorType_actionTypeActionLogRequiredButNotEnabled | ErrorType_actionTypeActionLogSummaryMessagePartTooLong | ErrorType_actionTypeActionLogSummaryTooManyMessageParts | ErrorType_actionTypeCountExceeded | ErrorType_actionTypeButtonTextTooLong | ErrorType_actionTypeSuccessMessageTooLong | ErrorType_actionTypeTooManyLogicRules | ErrorType_actionTypeTooManyParameters | ErrorType_actionTypeTooManySections | ErrorType_actionTypeTooManySubmissionCriteria | ErrorType_actionTypeFailureMessageTooLong | ErrorType_actionTypeStaticValueTooLong | ErrorType_actionTypeDefaultStringTooLong | ErrorType_actionTypeDisplayNameTooLong | ErrorType_actionTypeDescriptionTooLong | ErrorType_actionTypeSectionDisplayNameTooLong | ErrorType_actionTypeSectionDescriptionTooLong | ErrorType_actionTypeParameterDisplayNameTooLong | ErrorType_actionTypeParameterDescriptionTooLong | ErrorType_actionTypeStructParameterFieldsListLengthValidationCannotBeDefined | ErrorType_actionTypeStructParameterShouldNotHaveTopLevelPrefillDefined | ErrorType_actionTypeStructParameterFieldAllowedValueIsIncompatibleWithFieldType | ErrorType_actionTypeStructParameterFieldRenderHintIsIncompatibleWithFieldTypeAndAllowedValue | ErrorType_actionTypeStructParameterHasInvalidTopLevelAllowedValues | ErrorType_actionTypeParameterCbacConstraintContainsInvalidMaxClassification | ErrorType_actionTypeCbacConstraintOnNonSecuringCbacParameterMissingMaxClassification | ErrorType_actionTypeStringCbacPickerTypeclassUsedOnNonStringParameter | ErrorType_actionTypeInsufficientPermissionsToAddStringCbacPickerTypeclass | ErrorType_actionTypeInsufficientPermissionsToModifyMaxClassificationOfNonSecuringCbacParameter | ErrorType_actionTypeTooManyTypeClasses | ErrorType_actionTypeTypeClassKindTooLong | ErrorType_actionTypeTypeClassValueTooLong | ErrorType_actionTypeInvalidApiNamePrefixes | ErrorType_typeGroupCountExceeded | ErrorType_typeGroupDisplayNameTooLong | ErrorType_typeGroupDescriptionTooLong | ErrorType_propertySecurityGroupNameTooLong | ErrorType_primaryKeyReferencesInMultiplePropertySecurityGroups | ErrorType_missingPropertySecurityGroupTypes | ErrorType_nonUniquePropertySecurityGroupNames | ErrorType_objectEditsCannotBeCopiedForObjectTypeOnBranchNeedsRebasing | ErrorType_objectTypeBranchIndexingConfigCanOnlyBeSetOnNonDefaultBranches | ErrorType_parentObjectTypeBranchIndexingConfigCanOnlyBeSetForObjectTypesPresentOnTheParentBranch;
2320
2332
  export interface IndeterminateErrorCategory {}
2321
2333
  /**
2322
2334
  * Two interface link types have the same API name. API Names must be unique within the context of an interface. I.e. across all links in an interface and its super interfaces.
@@ -2335,11 +2347,6 @@ export interface InterfaceLinkTypeDisplayNameTooLong {}
2335
2347
  */
2336
2348
  export interface InterfaceTypeContainsDuplicateProperties {}
2337
2349
  /**
2338
- * The interface contains shared property types that are inherited from an extended interface. Removing the
2339
- * shared property type from the child interface will keep the interface definition but resolve the error.
2340
- */
2341
- export interface InterfaceTypeContainsInheritedSharedPropertyTypes {}
2342
- /**
2343
2350
  * An interface contains too many properties. This includes both properties coming from the interface as well as those coming from extended interfaces. It also counts both optional and required properties.
2344
2351
  */
2345
2352
  export interface InterfaceTypeContainsTooManyProperties {}
@@ -2802,6 +2809,14 @@ export interface LinkTypeTypeClassValueTooLong {}
2802
2809
  * Invalid LinkTypeEntityMetadata encountered. Storage Backend set to ObjectStorageV1 but one or more ObjectStorageV2 ObjectDbs are enabled.
2803
2810
  */
2804
2811
  export interface LinkTypeV1WithOsv2ObjectDbsEnabled {}
2812
+ /**
2813
+ * Property security groups must have types.
2814
+ */
2815
+ export interface MissingPropertySecurityGroupTypes {}
2816
+ /**
2817
+ * Property security group names must be unique within the object type.
2818
+ */
2819
+ export interface NonUniquePropertySecurityGroupNames {}
2805
2820
  export interface NotFoundErrorCategory {}
2806
2821
  /**
2807
2822
  * Edits from parent ontology branch cannot be copied for this object type, because ontology needs to be rebased.
@@ -3723,6 +3738,14 @@ export interface OntologyValidationError {
3723
3738
  */
3724
3739
  export interface ParentObjectTypeBranchIndexingConfigCanOnlyBeSetForObjectTypesPresentOnTheParentBranch {}
3725
3740
  /**
3741
+ * Primary keys referenced in multiple property security groups.
3742
+ */
3743
+ export interface PrimaryKeyReferencesInMultiplePropertySecurityGroups {}
3744
+ /**
3745
+ * Property security group name is too long.
3746
+ */
3747
+ export interface PropertySecurityGroupNameTooLong {}
3748
+ /**
3726
3749
  * A RuleSetBinding is referencing missing PropertyTypeIds.
3727
3750
  */
3728
3751
  export interface RuleSetBindingReferencingMissingPropertyTypeIds {}