@microsoft/typespec-msgraph-reference 1.0.2 → 1.0.4

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.
@@ -9,6 +9,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
9
9
 
10
10
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2021-09-03", "2023-10-01", "The grantedToIdentities property is deprecated. Please refer to grantedToIdentitiesV2")
11
11
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
12
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2022-04-25", "2024-04-25", "Owner property is deprecated and will be removed in April 2024. Please use the container property instead.")
12
13
  @publicNamespace("microsoft.graph")
13
14
  namespace reference.`microsoft.graph` {
14
15
  @complex model aadUserConversationMemberResult extends actionResultPart {
@@ -273,6 +274,9 @@ namespace reference.`microsoft.graph` {
273
274
  value: string | null;
274
275
  }
275
276
 
277
+ @complex model allAllowedScopes extends inheritableScopes {
278
+ }
279
+
276
280
  @complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
277
281
  }
278
282
 
@@ -325,11 +329,23 @@ namespace reference.`microsoft.graph` {
325
329
  result: appliedConditionalAccessPolicyResult | null;
326
330
  }
327
331
 
332
+ @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
333
+ identifierUris: identifierUriConfiguration | null;
334
+ }
335
+
336
+ @abstract
328
337
  @complex model appManagementConfiguration {
329
338
 
330
339
 
331
340
  }
332
341
 
342
+ @complex model appManagementPolicyActorExemptions {
343
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
344
+ }
345
+
346
+ @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
347
+ }
348
+
333
349
  @complex model appRole {
334
350
  allowedMemberTypes: string[];
335
351
  description: string | null;
@@ -553,6 +569,7 @@ namespace reference.`microsoft.graph` {
553
569
  @complex model azureADJoinPolicy {
554
570
  allowedToJoin: deviceRegistrationMembership | null;
555
571
  isAdminConfigurable: boolean | null;
572
+ localAdmins: localAdminSettings | null;
556
573
  }
557
574
 
558
575
  @complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
@@ -1098,6 +1115,14 @@ namespace reference.`microsoft.graph` {
1098
1115
  id: string | null;
1099
1116
  }
1100
1117
 
1118
+ @complex model customAppManagementApplicationConfiguration {
1119
+ identifierUris: identifierUriConfiguration | null;
1120
+ }
1121
+
1122
+ @complex model customAppManagementConfiguration extends appManagementConfiguration {
1123
+ applicationRestrictions: customAppManagementApplicationConfiguration | null;
1124
+ }
1125
+
1101
1126
  @abstract
1102
1127
  @complex model customExtensionAuthenticationConfiguration {
1103
1128
  }
@@ -1140,6 +1165,16 @@ namespace reference.`microsoft.graph` {
1140
1165
  @complex model customExtensionEndpointConfiguration {
1141
1166
  }
1142
1167
 
1168
+ @abstract
1169
+ @complex model customSecurityAttributeExemption {
1170
+ id: string;
1171
+ operator: customSecurityAttributeComparisonOperator;
1172
+ }
1173
+
1174
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
1175
+ value: string | null;
1176
+ }
1177
+
1143
1178
  @open
1144
1179
  @complex model customSecurityAttributeValue {
1145
1180
  }
@@ -1408,6 +1443,10 @@ namespace reference.`microsoft.graph` {
1408
1443
  users: string[] | null;
1409
1444
  }
1410
1445
 
1446
+ @complex model enumeratedScopes extends inheritableScopes {
1447
+ scopes: string[];
1448
+ }
1449
+
1411
1450
  @complex model evaluateDynamicMembershipResult {
1412
1451
  membershipRule: string | null;
1413
1452
  membershipRuleEvaluationDetails: expressionEvaluationDetails | null;
@@ -1624,6 +1663,20 @@ namespace reference.`microsoft.graph` {
1624
1663
  isPicture: boolean | null;
1625
1664
  }
1626
1665
 
1666
+ @complex model identifierUriConfiguration {
1667
+ nonDefaultUriAddition: identifierUriRestriction | null;
1668
+ uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
1669
+ }
1670
+
1671
+ @complex model identifierUriRestriction {
1672
+ excludeActors: appManagementPolicyActorExemptions | null;
1673
+ excludeAppsReceivingV2Tokens: boolean | null;
1674
+ excludeSaml: boolean | null;
1675
+ isStateSetByMicrosoft: boolean;
1676
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
1677
+ state: appManagementRestrictionState;
1678
+ }
1679
+
1627
1680
  @open
1628
1681
  @complex model identity {
1629
1682
  displayName: string | null;
@@ -1662,6 +1715,11 @@ namespace reference.`microsoft.graph` {
1662
1715
  outboundAllowed: boolean | null;
1663
1716
  }
1664
1717
 
1718
+ @complex model includeTarget {
1719
+ id: string;
1720
+ targetType: authenticationMethodTargetType;
1721
+ }
1722
+
1665
1723
  @complex model incomingContext {
1666
1724
  observedParticipantId: string | null;
1667
1725
  onBehalfOf: identitySet | null;
@@ -1683,6 +1741,11 @@ namespace reference.`microsoft.graph` {
1683
1741
  termsOfServiceUrl: string | null;
1684
1742
  }
1685
1743
 
1744
+ @abstract
1745
+ @complex model inheritableScopes {
1746
+ kind: scopeCollectionKind;
1747
+ }
1748
+
1686
1749
  @open
1687
1750
  @complex model initiator extends identity {
1688
1751
  initiatorType: initiatorType | null;
@@ -1834,6 +1897,11 @@ namespace reference.`microsoft.graph` {
1834
1897
  isEnabled: boolean | null;
1835
1898
  }
1836
1899
 
1900
+ @complex model localAdminSettings {
1901
+ enableGlobalAdmins: boolean | null;
1902
+ registeringUsers: deviceRegistrationMembership | null;
1903
+ }
1904
+
1837
1905
  @complex model localeInfo {
1838
1906
  displayName: string | null;
1839
1907
  locale: string | null;
@@ -2134,6 +2202,9 @@ namespace reference.`microsoft.graph` {
2134
2202
  @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
2135
2203
  }
2136
2204
 
2205
+ @complex model noScopes extends inheritableScopes {
2206
+ }
2207
+
2137
2208
  @complex model notifyUserAction extends dlpActionInfo {
2138
2209
  @computed actionLastModifiedDateTime: offsetDateTime | null;
2139
2210
  emailText: string | null;
@@ -2414,6 +2485,86 @@ namespace reference.`microsoft.graph` {
2414
2485
  street: string | null;
2415
2486
  }
2416
2487
 
2488
+ @open
2489
+ @complex model plannerAppliedCategories {
2490
+ }
2491
+
2492
+ @complex model plannerAssignment {
2493
+ assignedBy: identitySet | null;
2494
+ assignedDateTime: offsetDateTime | null;
2495
+ orderHint: string | null;
2496
+ }
2497
+
2498
+ @open
2499
+ @complex model plannerAssignments {
2500
+ }
2501
+
2502
+ @complex model plannerCategoryDescriptions {
2503
+ category1: string | null;
2504
+ category10: string | null;
2505
+ category11: string | null;
2506
+ category12: string | null;
2507
+ category13: string | null;
2508
+ category14: string | null;
2509
+ category15: string | null;
2510
+ category16: string | null;
2511
+ category17: string | null;
2512
+ category18: string | null;
2513
+ category19: string | null;
2514
+ category2: string | null;
2515
+ category20: string | null;
2516
+ category21: string | null;
2517
+ category22: string | null;
2518
+ category23: string | null;
2519
+ category24: string | null;
2520
+ category25: string | null;
2521
+ category3: string | null;
2522
+ category4: string | null;
2523
+ category5: string | null;
2524
+ category6: string | null;
2525
+ category7: string | null;
2526
+ category8: string | null;
2527
+ category9: string | null;
2528
+ }
2529
+
2530
+ @complex model plannerChecklistItem {
2531
+ isChecked: boolean | null;
2532
+ lastModifiedBy: identitySet | null;
2533
+ @computed lastModifiedDateTime: offsetDateTime | null;
2534
+ orderHint: string | null;
2535
+ title: string | null;
2536
+ }
2537
+
2538
+ @open
2539
+ @complex model plannerChecklistItems {
2540
+ }
2541
+
2542
+ @complex model plannerExternalReference {
2543
+ `alias`: string | null;
2544
+ lastModifiedBy: identitySet | null;
2545
+ @computed lastModifiedDateTime: offsetDateTime | null;
2546
+ previewPriority: string | null;
2547
+ type: string | null;
2548
+ }
2549
+
2550
+ @open
2551
+ @complex model plannerExternalReferences {
2552
+ }
2553
+
2554
+ @open
2555
+ @complex model plannerOrderHintsByAssignee {
2556
+ }
2557
+
2558
+ @complex model plannerPlanContainer {
2559
+ containerId: string | null;
2560
+ type: plannerContainerType | null;
2561
+ url: string | null;
2562
+ }
2563
+
2564
+ @open
2565
+ @complex model plannerUserIds {
2566
+ }
2567
+
2417
2568
  @complex model preAuthorizedApplication {
2418
2569
  appId: string | null;
2419
2570
  delegatedPermissionIds: string[];
@@ -2455,6 +2606,12 @@ namespace reference.`microsoft.graph` {
2455
2606
  localizations: displayNameLocalization[] | null;
2456
2607
  }
2457
2608
 
2609
+ @complex model profileSourceLocalization {
2610
+ displayName: string | null;
2611
+ languageTag: string | null;
2612
+ webUrl: string | null;
2613
+ }
2614
+
2458
2615
  @abstract
2459
2616
  @complex model prompt {
2460
2617
  }
@@ -3559,6 +3716,12 @@ namespace reference.`microsoft.graph` {
3559
3716
  userId: string | null;
3560
3717
  }
3561
3718
 
3719
+ @complex model userWorkLocation {
3720
+ placeId: string | null;
3721
+ source: workLocationSource;
3722
+ workLocationType: workLocationType;
3723
+ }
3724
+
3562
3725
  @complex model verifiedDomain {
3563
3726
  capabilities: string | null;
3564
3727
  isDefault: boolean | null;
@@ -3619,6 +3782,65 @@ namespace reference.`microsoft.graph` {
3619
3782
  type: websiteType | null;
3620
3783
  }
3621
3784
 
3785
+ @complex model workbookFilterCriteria {
3786
+ color: string | null;
3787
+ criterion1: string | null;
3788
+ criterion2: string | null;
3789
+ dynamicCriteria: string;
3790
+ filterOn: string;
3791
+ icon: workbookIcon | null;
3792
+ operator: string;
3793
+ values: Json | null;
3794
+ }
3795
+
3796
+ @complex model workbookFilterDatetime {
3797
+ date: string | null;
3798
+ specificity: string;
3799
+ }
3800
+
3801
+ @complex model workbookIcon {
3802
+ index: int32;
3803
+ set: string;
3804
+ }
3805
+
3806
+ @complex model workbookOperationError {
3807
+ code: string | null;
3808
+ innerError: workbookOperationError | null;
3809
+ message: string | null;
3810
+ }
3811
+
3812
+ @complex model workbookRangeReference {
3813
+ address: string | null;
3814
+ }
3815
+
3816
+ @complex model workbookSessionInfo {
3817
+ id: string | null;
3818
+ persistChanges: boolean | null;
3819
+ }
3820
+
3821
+ @complex model workbookSortField {
3822
+ ascending: boolean;
3823
+ color: string | null;
3824
+ dataOption: string;
3825
+ icon: workbookIcon | null;
3826
+ key: int32;
3827
+ sortOn: string;
3828
+ }
3829
+
3830
+ @complex model workbookWorksheetProtectionOptions {
3831
+ allowAutoFilter: boolean;
3832
+ allowDeleteColumns: boolean;
3833
+ allowDeleteRows: boolean;
3834
+ allowFormatCells: boolean;
3835
+ allowFormatColumns: boolean;
3836
+ allowFormatRows: boolean;
3837
+ allowInsertColumns: boolean;
3838
+ allowInsertHyperlinks: boolean;
3839
+ allowInsertRows: boolean;
3840
+ allowPivotTables: boolean;
3841
+ allowSort: boolean;
3842
+ }
3843
+
3622
3844
  @complex model workingHours {
3623
3845
  daysOfWeek: dayOfWeek[] | null;
3624
3846
  endTime: offsetDateTime | null;
@@ -3632,11 +3854,21 @@ namespace reference.`microsoft.graph` {
3632
3854
  x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
3633
3855
  }
3634
3856
 
3857
+ @complex model x509CertificateAuthorityScope {
3858
+ includeTargets: includeTarget[] | null;
3859
+ publicKeyInfrastructureIdentifier: string | null;
3860
+ subjectKeyIdentifier: string | null;
3861
+ }
3862
+
3635
3863
  @complex model x509CertificateCRLValidationConfiguration {
3636
3864
  exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
3637
3865
  state: x509CertificateCRLValidationConfigurationState;
3638
3866
  }
3639
3867
 
3868
+ @complex model x509CertificateIssuerHintsConfiguration {
3869
+ state: x509CertificateIssuerHintsState | null;
3870
+ }
3871
+
3640
3872
  @complex model x509CertificateRule {
3641
3873
  identifier: string | null;
3642
3874
  issuerSubjectIdentifier: string | null;
@@ -3949,6 +4181,30 @@ namespace reference.`microsoft.graph` {
3949
4181
  @contains scopedRoleMembers: scopedRoleMembership[];
3950
4182
  }
3951
4183
 
4184
+ @open
4185
+ @entity model agentIdentity extends servicePrincipal {
4186
+ agentIdentityBlueprintId: string;
4187
+ @computed createdDateTime: offsetDateTime | null;
4188
+ @references sponsors: directoryObject[];
4189
+ }
4190
+
4191
+ @open
4192
+ @entity model agentIdentityBlueprint extends application {
4193
+ defaultRedirectUri: string | null;
4194
+ @contains inheritablePermissions: inheritablePermission[];
4195
+ @references sponsors: directoryObject[];
4196
+ }
4197
+
4198
+ @open
4199
+ @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
4200
+ signInAudience: string | null;
4201
+ @references sponsors: directoryObject[];
4202
+ }
4203
+
4204
+ @open
4205
+ @entity model agentUser extends user {
4206
+ }
4207
+
3952
4208
  @entity model agreement extends entity {
3953
4209
  displayName: string | null;
3954
4210
  isPerDeviceAcceptanceRequired: boolean | null;
@@ -4066,6 +4322,7 @@ namespace reference.`microsoft.graph` {
4066
4322
  applicationTemplateId: string | null;
4067
4323
  appRoles: appRole[];
4068
4324
  authenticationBehaviors: authenticationBehaviors | null;
4325
+ createdByAppId: string | null;
4069
4326
  @computed createdDateTime: offsetDateTime | null;
4070
4327
  description: string | null;
4071
4328
  disabledByMicrosoftStatus: string | null;
@@ -4074,9 +4331,11 @@ namespace reference.`microsoft.graph` {
4074
4331
  identifierUris: string[];
4075
4332
  info: informationalUrl | null;
4076
4333
  isDeviceOnlyAuthSupported: boolean | null;
4334
+ isDisabled: boolean | null;
4077
4335
  isFallbackPublicClient: boolean | null;
4078
4336
  keyCredentials: keyCredential[];
4079
4337
  logo: stream;
4338
+ managerApplications: guid;
4080
4339
  notes: string | null;
4081
4340
  oauth2RequirePostResponse: boolean;
4082
4341
  optionalClaims: optionalClaims | null;
@@ -4117,7 +4376,7 @@ namespace reference.`microsoft.graph` {
4117
4376
 
4118
4377
  @entity model appManagementPolicy extends policyBase {
4119
4378
  isEnabled: boolean;
4120
- restrictions: appManagementConfiguration | null;
4379
+ restrictions: customAppManagementConfiguration | null;
4121
4380
  @references appliesTo: directoryObject[];
4122
4381
  }
4123
4382
 
@@ -4145,6 +4404,10 @@ namespace reference.`microsoft.graph` {
4145
4404
  status: string | null;
4146
4405
  }
4147
4406
 
4407
+ @entity model approvedClientApp extends entity {
4408
+ displayName: string | null;
4409
+ }
4410
+
4148
4411
  @entity model appScope extends entity {
4149
4412
  displayName: string | null;
4150
4413
  type: string | null;
@@ -5071,6 +5334,7 @@ namespace reference.`microsoft.graph` {
5071
5334
  @contains subscriptions: subscription[];
5072
5335
  @contains thumbnails: thumbnailSet[];
5073
5336
  @contains versions: driveItemVersion[];
5337
+ @contains workbook: workbook | null;
5074
5338
  }
5075
5339
 
5076
5340
  @entity model driveItemVersion extends baseItemVersion {
@@ -5261,6 +5525,11 @@ namespace reference.`microsoft.graph` {
5261
5525
  targetObjects: string[];
5262
5526
  }
5263
5527
 
5528
+ @entity model externalAuthenticationMethod extends authenticationMethod {
5529
+ configurationId: string;
5530
+ displayName: string;
5531
+ }
5532
+
5264
5533
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
5265
5534
  appId: string;
5266
5535
  displayName: string;
@@ -5348,6 +5617,7 @@ namespace reference.`microsoft.graph` {
5348
5617
  hasMembersWithLicenseErrors: boolean | null;
5349
5618
  hideFromAddressLists: boolean | null;
5350
5619
  hideFromOutlookClients: boolean | null;
5620
+ infoCatalogs: string[];
5351
5621
  isArchived: boolean | null;
5352
5622
  isAssignableToRole: boolean | null;
5353
5623
  isManagementRestricted: boolean | null;
@@ -5378,6 +5648,7 @@ namespace reference.`microsoft.graph` {
5378
5648
  uniqueName: string | null;
5379
5649
  unseenCount: int32 | null;
5380
5650
  visibility: string | null;
5651
+ welcomeMessageEnabled: boolean | null;
5381
5652
  @contains acceptedSenders: directoryObject[];
5382
5653
  @contains appRoleAssignments: appRoleAssignment[];
5383
5654
  @contains calendar: calendar | null;
@@ -5396,6 +5667,7 @@ namespace reference.`microsoft.graph` {
5396
5667
  @references owners: directoryObject[];
5397
5668
  @contains photo: profilePhoto | null;
5398
5669
  @contains photos: profilePhoto[];
5670
+ @contains planner: plannerGroup | null;
5399
5671
  @contains rejectedSenders: directoryObject[];
5400
5672
  @contains settings: groupSetting[];
5401
5673
  @contains sites: site[];
@@ -5484,6 +5756,11 @@ namespace reference.`microsoft.graph` {
5484
5756
  @contains sensitivityPolicySettings: sensitivityPolicySettings | null;
5485
5757
  }
5486
5758
 
5759
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
5760
+ inheritableScopes: inheritableScopes | null;
5761
+ @computed @key resourceAppId: string;
5762
+ }
5763
+
5487
5764
  @entity model insightsSettings extends entity {
5488
5765
  disabledForGroup: string | null;
5489
5766
  isEnabledInOrganization: boolean | null;
@@ -5918,6 +6195,8 @@ namespace reference.`microsoft.graph` {
5918
6195
  @entity model peopleAdminSettings extends entity {
5919
6196
  @contains itemInsights: insightsSettings | null;
5920
6197
  @contains profileCardProperties: profileCardProperty[];
6198
+ @contains profilePropertySettings: profilePropertySetting[];
6199
+ @contains profileSources: profileSource[];
5921
6200
  @contains pronouns: pronounsSettings | null;
5922
6201
  }
5923
6202
 
@@ -5999,6 +6278,94 @@ namespace reference.`microsoft.graph` {
5999
6278
  phone: string | null;
6000
6279
  }
6001
6280
 
6281
+ @entity model planner extends entity {
6282
+ @contains buckets: plannerBucket[];
6283
+ @contains plans: plannerPlan[];
6284
+ @contains tasks: plannerTask[];
6285
+ }
6286
+
6287
+ @entity model plannerAssignedToTaskBoardTaskFormat extends entity {
6288
+ orderHintsByAssignee: plannerOrderHintsByAssignee | null;
6289
+ unassignedOrderHint: string | null;
6290
+ }
6291
+
6292
+ @entity model plannerBucket extends entity {
6293
+ name: string;
6294
+ orderHint: string | null;
6295
+ planId: string | null;
6296
+ @references tasks: plannerTask[];
6297
+ }
6298
+
6299
+ @entity model plannerBucketTaskBoardTaskFormat extends entity {
6300
+ orderHint: string | null;
6301
+ }
6302
+
6303
+ @entity model plannerGroup extends entity {
6304
+ @references plans: plannerPlan[];
6305
+ }
6306
+
6307
+ @entity model plannerPlan extends entity {
6308
+ container: plannerPlanContainer | null;
6309
+ createdBy: identitySet | null;
6310
+ @computed createdDateTime: offsetDateTime | null;
6311
+
6312
+ @graphDeprecated("Tasks_And_Plans")
6313
+ owner: string | null;
6314
+ title: string;
6315
+ @references buckets: plannerBucket[];
6316
+ @contains details: plannerPlanDetails | null;
6317
+ @references tasks: plannerTask[];
6318
+ }
6319
+
6320
+ @entity model plannerPlanDetails extends entity {
6321
+ categoryDescriptions: plannerCategoryDescriptions | null;
6322
+ sharedWith: plannerUserIds | null;
6323
+ }
6324
+
6325
+ @entity model plannerProgressTaskBoardTaskFormat extends entity {
6326
+ orderHint: string | null;
6327
+ }
6328
+
6329
+ @entity model plannerTask extends entity {
6330
+ activeChecklistItemCount: int32 | null;
6331
+ appliedCategories: plannerAppliedCategories | null;
6332
+ assigneePriority: string | null;
6333
+ assignments: plannerAssignments | null;
6334
+ bucketId: string | null;
6335
+ checklistItemCount: int32 | null;
6336
+ completedBy: identitySet | null;
6337
+ completedDateTime: offsetDateTime | null;
6338
+ conversationThreadId: string | null;
6339
+ createdBy: identitySet | null;
6340
+ @computed createdDateTime: offsetDateTime | null;
6341
+ dueDateTime: offsetDateTime | null;
6342
+ hasDescription: boolean | null;
6343
+ orderHint: string | null;
6344
+ percentComplete: int32 | null;
6345
+ planId: string | null;
6346
+ previewType: plannerPreviewType | null;
6347
+ priority: int32 | null;
6348
+ referenceCount: int32 | null;
6349
+ startDateTime: offsetDateTime | null;
6350
+ title: string;
6351
+ @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
6352
+ @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
6353
+ @contains details: plannerTaskDetails | null;
6354
+ @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
6355
+ }
6356
+
6357
+ @entity model plannerTaskDetails extends entity {
6358
+ checklist: plannerChecklistItems | null;
6359
+ description: string | null;
6360
+ previewType: plannerPreviewType | null;
6361
+ references: plannerExternalReferences | null;
6362
+ }
6363
+
6364
+ @entity model plannerUser extends entity {
6365
+ @references plans: plannerPlan[];
6366
+ @references tasks: plannerTask[];
6367
+ }
6368
+
6002
6369
  @entity model platformCredentialAuthenticationMethod extends authenticationMethod {
6003
6370
  displayName: string | null;
6004
6371
  keyStrength: authenticationMethodKeyStrength | null;
@@ -6059,6 +6426,7 @@ namespace reference.`microsoft.graph` {
6059
6426
  activity: string | null;
6060
6427
  availability: string | null;
6061
6428
  statusMessage: presenceStatusMessage | null;
6429
+ workLocation: userWorkLocation | null;
6062
6430
  }
6063
6431
 
6064
6432
  @entity model privilegedAccessGroup extends entity {
@@ -6172,6 +6540,20 @@ namespace reference.`microsoft.graph` {
6172
6540
  width: int32 | null;
6173
6541
  }
6174
6542
 
6543
+ @entity model profilePropertySetting extends entity {
6544
+ displayName: string | null;
6545
+ name: string | null;
6546
+ prioritizedSourceUrls: string[];
6547
+ }
6548
+
6549
+ @entity model profileSource extends entity {
6550
+ displayName: string | null;
6551
+ kind: string | null;
6552
+ localizations: profileSourceLocalization[];
6553
+ sourceId: string | null;
6554
+ webUrl: string | null;
6555
+ }
6556
+
6175
6557
  @entity model pronounsSettings extends entity {
6176
6558
  isEnabledInOrganization: boolean;
6177
6559
  }
@@ -6222,6 +6604,7 @@ namespace reference.`microsoft.graph` {
6222
6604
 
6223
6605
  @entity model remoteDesktopSecurityConfiguration extends entity {
6224
6606
  isRemoteDesktopProtocolEnabled: boolean;
6607
+ @contains approvedClientApps: approvedClientApp[];
6225
6608
  @contains targetDeviceGroups: targetDeviceGroup[];
6226
6609
  }
6227
6610
 
@@ -6497,12 +6880,14 @@ namespace reference.`microsoft.graph` {
6497
6880
  appOwnerOrganizationId: guid | null;
6498
6881
  appRoleAssignmentRequired: boolean;
6499
6882
  appRoles: appRole[];
6883
+ createdByAppId: string | null;
6500
6884
  customSecurityAttributes: customSecurityAttributeValue | null;
6501
6885
  description: string | null;
6502
6886
  disabledByMicrosoftStatus: string | null;
6503
6887
  displayName: string | null;
6504
6888
  homepage: string | null;
6505
6889
  info: informationalUrl | null;
6890
+ isDisabled: boolean | null;
6506
6891
  keyCredentials: keyCredential[];
6507
6892
  loginUrl: string | null;
6508
6893
  logoutUrl: string | null;
@@ -6946,9 +7331,9 @@ namespace reference.`microsoft.graph` {
6946
7331
  }
6947
7332
 
6948
7333
  @entity model tenantAppManagementPolicy extends policyBase {
6949
- applicationRestrictions: appManagementConfiguration | null;
7334
+ applicationRestrictions: appManagementApplicationConfiguration | null;
6950
7335
  isEnabled: boolean;
6951
- servicePrincipalRestrictions: appManagementConfiguration | null;
7336
+ servicePrincipalRestrictions: appManagementServicePrincipalConfiguration | null;
6952
7337
  }
6953
7338
 
6954
7339
  @entity model tenantRelationship extends MsGraph.SharedModels.entity {
@@ -7240,6 +7625,7 @@ namespace reference.`microsoft.graph` {
7240
7625
  givenName: string | null;
7241
7626
  hireDate: offsetDateTime;
7242
7627
  identities: objectIdentity[] | null;
7628
+ identityParentId: string | null;
7243
7629
  imAddresses: string[] | null;
7244
7630
  interests: string[] | null;
7245
7631
  isManagementRestricted: boolean | null;
@@ -7322,6 +7708,7 @@ namespace reference.`microsoft.graph` {
7322
7708
  @contains people: person[];
7323
7709
  @contains photo: profilePhoto | null;
7324
7710
  @contains photos: profilePhoto[];
7711
+ @contains planner: plannerUser | null;
7325
7712
  @contains presence: presence | null;
7326
7713
  @references registeredDevices: directoryObject[];
7327
7714
  @contains scopedRoleMemberOf: scopedRoleMembership[];
@@ -7403,10 +7790,337 @@ namespace reference.`microsoft.graph` {
7403
7790
  @references device: device | null;
7404
7791
  }
7405
7792
 
7793
+ @entity model workbook extends entity {
7794
+ @contains application: workbookApplication | null;
7795
+ @contains comments: workbookComment[];
7796
+ @contains functions: workbookFunctions | null;
7797
+ @contains names: workbookNamedItem[];
7798
+ @contains operations: workbookOperation[];
7799
+ @contains tables: workbookTable[];
7800
+ @contains worksheets: workbookWorksheet[];
7801
+ }
7802
+
7803
+ @entity model workbookApplication extends entity {
7804
+ calculationMode: string;
7805
+ }
7806
+
7807
+ @entity model workbookChart extends entity {
7808
+ height: float64;
7809
+ left: float64;
7810
+ name: string | null;
7811
+ top: float64;
7812
+ width: float64;
7813
+ @contains axes: workbookChartAxes | null;
7814
+ @contains dataLabels: workbookChartDataLabels | null;
7815
+ @contains format: workbookChartAreaFormat | null;
7816
+ @contains legend: workbookChartLegend | null;
7817
+ @contains series: workbookChartSeries[];
7818
+ @contains title: workbookChartTitle | null;
7819
+ @contains worksheet: workbookWorksheet | null;
7820
+ }
7821
+
7822
+ @entity model workbookChartAreaFormat extends entity {
7823
+ @contains fill: workbookChartFill | null;
7824
+ @contains font: workbookChartFont | null;
7825
+ }
7826
+
7827
+ @entity model workbookChartAxes extends entity {
7828
+ @contains categoryAxis: workbookChartAxis | null;
7829
+ @contains seriesAxis: workbookChartAxis | null;
7830
+ @contains valueAxis: workbookChartAxis | null;
7831
+ }
7832
+
7833
+ @entity model workbookChartAxis extends entity {
7834
+ majorUnit: Json | null;
7835
+ maximum: Json | null;
7836
+ minimum: Json | null;
7837
+ minorUnit: Json | null;
7838
+ @contains format: workbookChartAxisFormat | null;
7839
+ @contains majorGridlines: workbookChartGridlines | null;
7840
+ @contains minorGridlines: workbookChartGridlines | null;
7841
+ @contains title: workbookChartAxisTitle | null;
7842
+ }
7843
+
7844
+ @entity model workbookChartAxisFormat extends entity {
7845
+ @contains font: workbookChartFont | null;
7846
+ @contains line: workbookChartLineFormat | null;
7847
+ }
7848
+
7849
+ @entity model workbookChartAxisTitle extends entity {
7850
+ text: string | null;
7851
+ visible: boolean;
7852
+ @contains format: workbookChartAxisTitleFormat | null;
7853
+ }
7854
+
7855
+ @entity model workbookChartAxisTitleFormat extends entity {
7856
+ @contains font: workbookChartFont | null;
7857
+ }
7858
+
7859
+ @entity model workbookChartDataLabelFormat extends entity {
7860
+ @contains fill: workbookChartFill | null;
7861
+ @contains font: workbookChartFont | null;
7862
+ }
7863
+
7864
+ @entity model workbookChartDataLabels extends entity {
7865
+ position: string | null;
7866
+ separator: string | null;
7867
+ showBubbleSize: boolean | null;
7868
+ showCategoryName: boolean | null;
7869
+ showLegendKey: boolean | null;
7870
+ showPercentage: boolean | null;
7871
+ showSeriesName: boolean | null;
7872
+ showValue: boolean | null;
7873
+ @contains format: workbookChartDataLabelFormat | null;
7874
+ }
7875
+
7876
+ @entity model workbookChartFill extends entity {
7877
+ }
7878
+
7879
+ @entity model workbookChartFont extends entity {
7880
+ bold: boolean | null;
7881
+ color: string | null;
7882
+ italic: boolean | null;
7883
+ name: string | null;
7884
+ size: float64 | null;
7885
+ underline: string | null;
7886
+ }
7887
+
7888
+ @entity model workbookChartGridlines extends entity {
7889
+ visible: boolean;
7890
+ @contains format: workbookChartGridlinesFormat | null;
7891
+ }
7892
+
7893
+ @entity model workbookChartGridlinesFormat extends entity {
7894
+ @contains line: workbookChartLineFormat | null;
7895
+ }
7896
+
7897
+ @entity model workbookChartLegend extends entity {
7898
+ overlay: boolean | null;
7899
+ position: string | null;
7900
+ visible: boolean;
7901
+ @contains format: workbookChartLegendFormat | null;
7902
+ }
7903
+
7904
+ @entity model workbookChartLegendFormat extends entity {
7905
+ @contains fill: workbookChartFill | null;
7906
+ @contains font: workbookChartFont | null;
7907
+ }
7908
+
7909
+ @entity model workbookChartLineFormat extends entity {
7910
+ color: string | null;
7911
+ }
7912
+
7913
+ @entity model workbookChartPoint extends entity {
7914
+ value: Json | null;
7915
+ @contains format: workbookChartPointFormat | null;
7916
+ }
7917
+
7918
+ @entity model workbookChartPointFormat extends entity {
7919
+ @contains fill: workbookChartFill | null;
7920
+ }
7921
+
7922
+ @entity model workbookChartSeries extends entity {
7923
+ name: string | null;
7924
+ @contains format: workbookChartSeriesFormat | null;
7925
+ @contains points: workbookChartPoint[];
7926
+ }
7927
+
7928
+ @entity model workbookChartSeriesFormat extends entity {
7929
+ @contains fill: workbookChartFill | null;
7930
+ @contains line: workbookChartLineFormat | null;
7931
+ }
7932
+
7933
+ @entity model workbookChartTitle extends entity {
7934
+ overlay: boolean | null;
7935
+ text: string | null;
7936
+ visible: boolean;
7937
+ @contains format: workbookChartTitleFormat | null;
7938
+ }
7939
+
7940
+ @entity model workbookChartTitleFormat extends entity {
7941
+ @contains fill: workbookChartFill | null;
7942
+ @contains font: workbookChartFont | null;
7943
+ }
7944
+
7945
+ @entity model workbookComment extends entity {
7946
+ content: string | null;
7947
+ contentType: string;
7948
+ @contains replies: workbookCommentReply[];
7949
+ }
7950
+
7951
+ @entity model workbookCommentReply extends entity {
7952
+ content: string | null;
7953
+ contentType: string;
7954
+ }
7955
+
7956
+ @entity model workbookFilter extends entity {
7957
+ criteria: workbookFilterCriteria | null;
7958
+ }
7959
+
7960
+ @entity model workbookFormatProtection extends entity {
7961
+ formulaHidden: boolean | null;
7962
+ locked: boolean | null;
7963
+ }
7964
+
7965
+ @entity model workbookFunctionResult extends entity {
7966
+ error: string | null;
7967
+ value: Json | null;
7968
+ }
7969
+
7970
+ @entity model workbookFunctions extends entity {
7971
+ }
7972
+
7973
+ @entity model workbookNamedItem extends entity {
7974
+ comment: string | null;
7975
+ name: string | null;
7976
+ scope: string;
7977
+ type: string | null;
7978
+ value: Json | null;
7979
+ visible: boolean;
7980
+ @contains worksheet: workbookWorksheet | null;
7981
+ }
7982
+
7983
+ @entity model workbookOperation extends entity {
7984
+ error: workbookOperationError | null;
7985
+ resourceLocation: string | null;
7986
+ status: workbookOperationStatus;
7987
+ }
7988
+
7989
+ @entity model workbookPivotTable extends entity {
7990
+ name: string | null;
7991
+ @contains worksheet: workbookWorksheet | null;
7992
+ }
7993
+
7994
+ @entity model workbookRange extends entity {
7995
+ address: string | null;
7996
+ addressLocal: string | null;
7997
+ cellCount: int32;
7998
+ columnCount: int32;
7999
+ columnHidden: boolean | null;
8000
+ columnIndex: int32;
8001
+ formulas: Json | null;
8002
+ formulasLocal: Json | null;
8003
+ formulasR1C1: Json | null;
8004
+ hidden: boolean | null;
8005
+ numberFormat: Json | null;
8006
+ rowCount: int32;
8007
+ rowHidden: boolean | null;
8008
+ rowIndex: int32;
8009
+ text: Json | null;
8010
+ values: Json | null;
8011
+ valueTypes: Json | null;
8012
+ @contains format: workbookRangeFormat | null;
8013
+ @contains sort: workbookRangeSort | null;
8014
+ @contains worksheet: workbookWorksheet | null;
8015
+ }
8016
+
8017
+ @entity model workbookRangeBorder extends entity {
8018
+ color: string | null;
8019
+ sideIndex: string | null;
8020
+ style: string | null;
8021
+ weight: string | null;
8022
+ }
8023
+
8024
+ @entity model workbookRangeFill extends entity {
8025
+ color: string | null;
8026
+ }
8027
+
8028
+ @entity model workbookRangeFont extends entity {
8029
+ bold: boolean | null;
8030
+ color: string | null;
8031
+ italic: boolean | null;
8032
+ name: string | null;
8033
+ size: float64 | null;
8034
+ underline: string | null;
8035
+ }
8036
+
8037
+ @entity model workbookRangeFormat extends entity {
8038
+ columnWidth: float64 | null;
8039
+ horizontalAlignment: string | null;
8040
+ rowHeight: float64 | null;
8041
+ verticalAlignment: string | null;
8042
+ wrapText: boolean | null;
8043
+ @contains borders: workbookRangeBorder[];
8044
+ @contains fill: workbookRangeFill | null;
8045
+ @contains font: workbookRangeFont | null;
8046
+ @contains protection: workbookFormatProtection | null;
8047
+ }
8048
+
8049
+ @entity model workbookRangeSort extends entity {
8050
+ }
8051
+
8052
+ @entity model workbookRangeView extends entity {
8053
+ cellAddresses: Json | null;
8054
+ columnCount: int32;
8055
+ formulas: Json | null;
8056
+ formulasLocal: Json | null;
8057
+ formulasR1C1: Json | null;
8058
+ index: int32;
8059
+ numberFormat: Json | null;
8060
+ rowCount: int32;
8061
+ text: Json | null;
8062
+ values: Json | null;
8063
+ valueTypes: Json | null;
8064
+ @contains rows: workbookRangeView[];
8065
+ }
8066
+
8067
+ @entity model workbookTable extends entity {
8068
+ highlightFirstColumn: boolean;
8069
+ highlightLastColumn: boolean;
8070
+ legacyId: string | null;
8071
+ name: string | null;
8072
+ showBandedColumns: boolean;
8073
+ showBandedRows: boolean;
8074
+ showFilterButton: boolean;
8075
+ showHeaders: boolean;
8076
+ showTotals: boolean;
8077
+ style: string | null;
8078
+ @contains columns: workbookTableColumn[];
8079
+ @contains rows: workbookTableRow[];
8080
+ @contains sort: workbookTableSort | null;
8081
+ @contains worksheet: workbookWorksheet | null;
8082
+ }
8083
+
8084
+ @entity model workbookTableColumn extends entity {
8085
+ index: int32;
8086
+ name: string | null;
8087
+ values: Json | null;
8088
+ @contains filter: workbookFilter | null;
8089
+ }
8090
+
8091
+ @entity model workbookTableRow extends entity {
8092
+ index: int32;
8093
+ values: Json | null;
8094
+ }
8095
+
8096
+ @entity model workbookTableSort extends entity {
8097
+ fields: workbookSortField[] | null;
8098
+ matchCase: boolean;
8099
+ method: string;
8100
+ }
8101
+
8102
+ @entity model workbookWorksheet extends entity {
8103
+ name: string | null;
8104
+ position: int32;
8105
+ visibility: string;
8106
+ @contains charts: workbookChart[];
8107
+ @contains names: workbookNamedItem[];
8108
+ @contains pivotTables: workbookPivotTable[];
8109
+ @contains protection: workbookWorksheetProtection | null;
8110
+ @contains tables: workbookTable[];
8111
+ }
8112
+
8113
+ @entity model workbookWorksheetProtection extends entity {
8114
+ options: workbookWorksheetProtectionOptions | null;
8115
+ protected: boolean;
8116
+ }
8117
+
7406
8118
  @entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
7407
8119
  authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
8120
+ certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
7408
8121
  certificateUserBindings: x509CertificateUserBinding[] | null;
7409
8122
  crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
8123
+ issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
7410
8124
  @contains includeTargets: authenticationMethodTarget[];
7411
8125
  }
7412
8126
 
@@ -7498,6 +8212,7 @@ namespace reference.`microsoft.graph` {
7498
8212
  systemRemove: 9,
7499
8213
  onBehalfAdd: 10,
7500
8214
  unknownFutureValue: 11,
8215
+ approverRemove: 12,
7501
8216
  }
7502
8217
 
7503
8218
  enum accessPackageSubjectType {
@@ -7665,6 +8380,12 @@ namespace reference.`microsoft.graph` {
7665
8380
  reportOnlyInterrupted: 9,
7666
8381
  }
7667
8382
 
8383
+ enum appManagementRestrictionState {
8384
+ enabled: 1,
8385
+ disabled: 2,
8386
+ unknownFutureValue: 3,
8387
+ }
8388
+
7668
8389
  enum approvalFilterByCurrentUserOptions {
7669
8390
  target: 0,
7670
8391
  createdBy: 1,
@@ -8271,6 +8992,11 @@ namespace reference.`microsoft.graph` {
8271
8992
  unknownFutureValue: 6,
8272
8993
  }
8273
8994
 
8995
+ enum customSecurityAttributeComparisonOperator {
8996
+ equals: 1,
8997
+ unknownFutureValue: 2,
8998
+ }
8999
+
8274
9000
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8275
9001
  enum dayOfWeek {
8276
9002
  sunday: 0,
@@ -8899,6 +9625,21 @@ namespace reference.`microsoft.graph` {
8899
9625
  radio: 9,
8900
9626
  }
8901
9627
 
9628
+ enum plannerContainerType {
9629
+ group: 1,
9630
+ unknownFutureValue: 2,
9631
+ roster: 3,
9632
+ }
9633
+
9634
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9635
+ enum plannerPreviewType {
9636
+ automatic: 0,
9637
+ noPreview: 1,
9638
+ checklist: 2,
9639
+ description: 3,
9640
+ reference: 4,
9641
+ }
9642
+
8902
9643
  enum postType {
8903
9644
  regular: 0,
8904
9645
  quick: 1,
@@ -9111,6 +9852,7 @@ namespace reference.`microsoft.graph` {
9111
9852
  userChangedPasswordOnPremises: 15,
9112
9853
  adminDismissedRiskForSignIn: 16,
9113
9854
  adminConfirmedAccountSafe: 17,
9855
+ microsoftRevokedSessions: 18,
9114
9856
  }
9115
9857
 
9116
9858
  enum riskDetectionTimingType {
@@ -9221,6 +9963,14 @@ namespace reference.`microsoft.graph` {
9221
9963
  unknownFutureValue: 10,
9222
9964
  }
9223
9965
 
9966
+ enum scopeCollectionKind {
9967
+ allAllowed: 0,
9968
+ enumerated: 1,
9969
+ none: 2,
9970
+ scopeKindNotSet: 3,
9971
+ unknownFutureValue: 4,
9972
+ }
9973
+
9224
9974
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9225
9975
  enum scopeOperatorMultiValuedComparisonType {
9226
9976
  All: 0,
@@ -9839,6 +10589,30 @@ namespace reference.`microsoft.graph` {
9839
10589
  unknownFutureValue: 524288,
9840
10590
  }
9841
10591
 
10592
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
10593
+ enum workbookOperationStatus {
10594
+ notStarted: 0,
10595
+ running: 1,
10596
+ succeeded: 2,
10597
+ failed: 3,
10598
+ }
10599
+
10600
+ enum workLocationSource {
10601
+ none: 0,
10602
+ manual: 1,
10603
+ scheduled: 2,
10604
+ automatic: 3,
10605
+ unknownFutureValue: 4,
10606
+ }
10607
+
10608
+ enum workLocationType {
10609
+ unspecified: 0,
10610
+ office: 1,
10611
+ remote: 2,
10612
+ timeOff: 3,
10613
+ unknownFutureValue: 4,
10614
+ }
10615
+
9842
10616
  enum x509CertificateAffinityLevel {
9843
10617
  low: 0,
9844
10618
  high: 1,
@@ -9857,6 +10631,12 @@ namespace reference.`microsoft.graph` {
9857
10631
  unknownFutureValue: 2,
9858
10632
  }
9859
10633
 
10634
+ enum x509CertificateIssuerHintsState {
10635
+ disabled: 0,
10636
+ enabled: 1,
10637
+ unknownFutureValue: 2,
10638
+ }
10639
+
9860
10640
  enum x509CertificateRuleType {
9861
10641
  issuerSubject: 0,
9862
10642
  policyOID: 1,
@@ -10254,6 +11034,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
10254
11034
  }
10255
11035
 
10256
11036
  }
11037
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
10257
11038
  @publicNamespace("microsoft.graph.security")
10258
11039
  namespace reference.`microsoft.graph.security` {
10259
11040
  @complex model activeDirectoryDomainEvidence extends alertEvidence {
@@ -10648,6 +11429,10 @@ namespace reference.`microsoft.graph.security` {
10648
11429
  processes: processEvidence[] | null;
10649
11430
  }
10650
11431
 
11432
+ @complex model mergeResponse {
11433
+ targetIncidentId: string;
11434
+ }
11435
+
10651
11436
  @complex model networkConnectionEvidence extends alertEvidence {
10652
11437
  destinationAddress: ipEvidence | null;
10653
11438
  destinationPort: int32 | null;
@@ -10818,6 +11603,7 @@ namespace reference.`microsoft.graph.security` {
10818
11603
  displayName: string | null;
10819
11604
  domainName: string | null;
10820
11605
  resourceAccessEvents: resourceAccessEvent[] | null;
11606
+ tenantId: string | null;
10821
11607
  userPrincipalName: string | null;
10822
11608
  userSid: string | null;
10823
11609
  }
@@ -10840,6 +11626,9 @@ namespace reference.`microsoft.graph.security` {
10840
11626
  alertPolicyId: string | null;
10841
11627
  alertWebUrl: string | null;
10842
11628
  assignedTo: string | null;
11629
+ categories: string[] | null;
11630
+
11631
+ @graphDeprecated("Tasks_And_Plans")
10843
11632
  category: string | null;
10844
11633
  classification: alertClassification | null;
10845
11634
  comments: alertComment[] | null;
@@ -11005,6 +11794,7 @@ namespace reference.`microsoft.graph.security` {
11005
11794
  }
11006
11795
 
11007
11796
  @entity model ediscoveryPurgeDataOperation extends caseOperation {
11797
+ reportFileMetadata: reportFileMetadata[] | null;
11008
11798
  }
11009
11799
 
11010
11800
  @entity model ediscoveryReviewSet extends dataSet {
@@ -11256,6 +12046,28 @@ namespace reference.`microsoft.graph.security` {
11256
12046
  unknownFutureValue: 3,
11257
12047
  }
11258
12048
 
12049
+ @graphFlags
12050
+ enum correlationReason {
12051
+ repeatedAlertOccurrence: 1,
12052
+ sameGeography: 2,
12053
+ similarArtifacts: 4,
12054
+ sameTargetedAsset: 8,
12055
+ sameNetworkSegment: 16,
12056
+ eventSequence: 32,
12057
+ timeFrame: 64,
12058
+ sameThreatSource: 128,
12059
+ similarTTPsOrBehavior: 256,
12060
+ sameActor: 512,
12061
+ sameCampaign: 1024,
12062
+ sharedIndicators: 2048,
12063
+ sameAsset: 4096,
12064
+ networkProximity: 8192,
12065
+ eventCasualSequence: 16384,
12066
+ temporalProximity: 32768,
12067
+ lateralMovementPath: 65536,
12068
+ unknownFutureValue: 131072,
12069
+ }
12070
+
11259
12071
  enum dataSourceContainerStatus {
11260
12072
  active: 1,
11261
12073
  released: 2,