@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.10

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.
@@ -12485,6 +12485,56 @@ Each data source key can include a filter expression to narrow results and a lis
12485
12485
  uri: string;
12486
12486
  }
12487
12487
 
12488
+ @complex model mediaMetadata {
12489
+ modality: contentModality;
12490
+ isRealTime: boolean;
12491
+ mimeType: string;
12492
+ byteSize: int64;
12493
+ `duration`: int32;
12494
+ videoMetadata: videoMetadata | null;
12495
+ audioMetadata: audioMetadata | null;
12496
+ streamingMetadata: streamingMetadata | null;
12497
+ }
12498
+
12499
+ @complex model videoMetadata {
12500
+ codec: string;
12501
+ frameRate: float64;
12502
+ bitrateKbps: int32;
12503
+ }
12504
+
12505
+ @complex model audioMetadata {
12506
+ sampleRateHz: int32;
12507
+ bitDepth: int32;
12508
+ channels: int32;
12509
+ }
12510
+
12511
+ @complex model streamingMetadata {
12512
+ latencyMs: int32;
12513
+ frameDropRate: float64;
12514
+ networkJitterMs: int32;
12515
+ }
12516
+
12517
+ @complex model syntheticMediaDetectionDetail {
12518
+ modelName: string;
12519
+ modality: contentModality;
12520
+ modelTasks: string[];
12521
+ segment: mediaSegment;
12522
+ confidence: float64;
12523
+ }
12524
+
12525
+ @complex model mediaSegment {
12526
+ startTimeSec: int32;
12527
+ endTimeSec: int32;
12528
+ frameIndices: int32[];
12529
+ }
12530
+
12531
+ @complex model syntheticMediaDetectionInfo {
12532
+ detectionId: guid;
12533
+ syntheticConfidence: float64;
12534
+ detectorBot: string;
12535
+ isParticipantTrusted: boolean;
12536
+ }
12537
+
12488
12538
  @complex model mediaPrompt extends prompt {
12489
12539
  loop: int32 | null;
12490
12540
  mediaInfo: mediaInfo;
@@ -14561,6 +14611,8 @@ Each data source key can include a filter expression to narrow results and a lis
14561
14611
  }
14562
14612
 
14563
14613
  @complex model policyTipAction extends dlpActionInfo {
14614
+ complianceUrl: string | null;
14615
+ matchedConditionsDescription: string | null;
14564
14616
  policyTip: string | null;
14565
14617
  }
14566
14618
 
@@ -36143,17 +36195,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
36143
36195
  members: member[];
36144
36196
  notes: string | null;
36145
36197
  personIdentifier: string | null;
36146
- @contains distributionListMembers: distributionListMember[];
36147
36198
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
36148
36199
  }
36149
36200
 
36150
- @entity model distributionListMember extends entity {
36151
- contactId: string | null;
36152
- displayName: string | null;
36153
- recipientType: recipientType;
36154
- @references contact: contact | null;
36155
- }
36156
-
36157
36201
  @entity model dlpEvaluatePoliciesJobResponse extends jobResponseBase {
36158
36202
  result: dlpPoliciesJobResult | null;
36159
36203
  }
@@ -47685,6 +47729,7 @@ within the time frame of their original request.
47685
47729
  removedState: removedState | null;
47686
47730
  restrictedExperience: onlineMeetingRestricted | null;
47687
47731
  rosterSequenceNumber: int64 | null;
47732
+ syntheticMediaDetection: syntheticMediaDetectionInfo | null;
47688
47733
  }
47689
47734
 
47690
47735
  @entity model participantJoiningNotification extends entity {
@@ -53456,6 +53501,7 @@ within the time frame of their original request.
53456
53501
  @contains security: reference.`microsoft.graph.security`.security | null;
53457
53502
  @contains settings: userSettings | null;
53458
53503
  @contains solutions: userSolutionRoot | null;
53504
+ @references sponsorOf: directoryObject[];
53459
53505
  @references sponsors: directoryObject[];
53460
53506
  @contains teamwork: userTeamwork | null;
53461
53507
  @contains todo: todo | null;
@@ -68602,6 +68648,22 @@ within the time frame of their original request.
68602
68648
  unknownFutureValue: 6,
68603
68649
  }
68604
68650
 
68651
+ enum contentModality {
68652
+ audio: 0,
68653
+ video: 1,
68654
+ image: 2,
68655
+ text: 3,
68656
+ multimodal: 4,
68657
+ unknownFutureValue: 5,
68658
+ }
68659
+
68660
+ enum detectionSeverity {
68661
+ low: 0,
68662
+ medium: 1,
68663
+ high: 2,
68664
+ unknownFutureValue: 3,
68665
+ }
68666
+
68605
68667
  enum contentProcessingErrorType {
68606
68668
  transient: 0,
68607
68669
  permanent: 1,
@@ -98229,6 +98291,7 @@ namespace reference.`microsoft.graph.security` {
98229
98291
 
98230
98292
  @entity model caseManagementRoot extends reference.`microsoft.graph`.entity {
98231
98293
  @contains cases: reference.`microsoft.graph.security.caseManagement`.case[];
98294
+ @contains caseTypeConfigurations: reference.`microsoft.graph.security.caseManagement`.caseTypeConfiguration[];
98232
98295
  }
98233
98296
 
98234
98297
  @entity model caseOperation extends reference.`microsoft.graph`.entity {
@@ -101383,6 +101446,13 @@ namespace reference.`microsoft.graph.security.caseManagement` {
101383
101446
  @complex model customFieldValues {
101384
101447
  }
101385
101448
 
101449
+ @complex model customStatusDefinition {
101450
+ customStatusId: string;
101451
+ displayName: string;
101452
+ isFinal: boolean;
101453
+ sortOrder: int32;
101454
+ }
101455
+
101386
101456
  @complex model exposureCaseAutomation {
101387
101457
  ruleId: string | null;
101388
101458
  }
@@ -101503,10 +101573,29 @@ namespace reference.`microsoft.graph.security.caseManagement` {
101503
101573
  @computed lastModifiedDateTime: offsetDateTime | null;
101504
101574
  }
101505
101575
 
101576
+ @entity model caseTypeConfiguration extends reference.`microsoft.graph`.entity {
101577
+ defaultStatusId: string;
101578
+ displayName: string;
101579
+ @contains customFields: customFieldDefinition[];
101580
+ @contains statuses: statusDefinition[];
101581
+ }
101582
+
101506
101583
  @entity model comment extends activity {
101507
101584
  message: string | null;
101508
101585
  }
101509
101586
 
101587
+ @abstract
101588
+ @entity model customFieldDefinition extends reference.`microsoft.graph`.entity {
101589
+ description: string | null;
101590
+ displayName: string;
101591
+ isDisabled: boolean;
101592
+ isRequired: boolean;
101593
+ }
101594
+
101595
+ @entity model dateTimeCustomFieldDefinition extends customFieldDefinition {
101596
+ defaultDateTime: offsetDateTime | null;
101597
+ }
101598
+
101510
101599
  @entity model exposureCase extends case {
101511
101600
  assignedTo: string | null;
101512
101601
  automation: exposureCaseAutomation | null;
@@ -101569,6 +101658,15 @@ namespace reference.`microsoft.graph.security.caseManagement` {
101569
101658
  @entity model incidentRelation extends relation {
101570
101659
  }
101571
101660
 
101661
+ @entity model numberCustomFieldDefinition extends customFieldDefinition {
101662
+ defaultValue: int32 | null;
101663
+ }
101664
+
101665
+ @entity model optionsCustomFieldDefinition extends customFieldDefinition {
101666
+ defaultValues: string[];
101667
+ options: string[];
101668
+ }
101669
+
101572
101670
  @entity model recommendationRelation extends relation {
101573
101671
  recommendationType: string | null;
101574
101672
  resourceGroupName: string | null;
@@ -101580,6 +101678,16 @@ namespace reference.`microsoft.graph.security.caseManagement` {
101580
101678
  relatedResourceId: string | null;
101581
101679
  }
101582
101680
 
101681
+ @entity model statusDefinition extends reference.`microsoft.graph`.entity {
101682
+ customStatuses: customStatusDefinition[];
101683
+ displayName: string;
101684
+ sortOrder: int32;
101685
+ }
101686
+
101687
+ @entity model stringCustomFieldDefinition extends customFieldDefinition {
101688
+ defaultValue: string | null;
101689
+ }
101690
+
101583
101691
  @entity model task extends caseManagementEntity {
101584
101692
  assignedTo: string | null;
101585
101693
  category: caseTaskCategory;
@@ -6112,6 +6112,7 @@ namespace reference.`microsoft.graph` {
6112
6112
  @abstract
6113
6113
  @complex model processContentMetadataBase {
6114
6114
  content: contentBase | null;
6115
+ contentCategory: contentCategory | null;
6115
6116
  correlationId: string | null;
6116
6117
  @computed createdDateTime: offsetDateTime;
6117
6118
  identifier: string;
@@ -12172,6 +12173,7 @@ files, events, and updates for people sharing a common interest or goal.
12172
12173
  @computed @key tenantId: string;
12173
12174
  tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
12174
12175
  @contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
12176
+ @contains serviceProviderConstraints: serviceProviderConstraints | null;
12175
12177
  }
12176
12178
 
12177
12179
  @entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
@@ -12359,6 +12361,12 @@ files, events, and updates for people sharing a common interest or goal.
12359
12361
  serviceName: string;
12360
12362
  }
12361
12363
 
12364
+ @entity model delegatedAdminServiceProviderConstraints extends serviceProviderConstraints {
12365
+ allowedRoleTemplateIds: string[] | null;
12366
+ @computed createdDateTime: offsetDateTime;
12367
+ @computed lastModifiedDateTime: offsetDateTime;
12368
+ }
12369
+
12362
12370
  @entity model delegatedPermissionClassification extends entity {
12363
12371
  classification: permissionClassificationType | null;
12364
12372
  permissionId: string | null;
@@ -15059,6 +15067,7 @@ within the time frame of their original request.
15059
15067
  onPremisesSamAccountName: string | null;
15060
15068
  onPremisesSecurityIdentifier: string | null;
15061
15069
  onPremisesSyncEnabled: boolean | null;
15070
+ organizationId: string | null;
15062
15071
  preferredDataLocation: string | null;
15063
15072
  preferredLanguage: string | null;
15064
15073
  proxyAddresses: string[];
@@ -20157,6 +20166,9 @@ within the time frame of their original request.
20157
20166
  tokenIssuerType: tokenIssuerType | null;
20158
20167
  }
20159
20168
 
20169
+ @entity model serviceProviderConstraints extends entity {
20170
+ }
20171
+
20160
20172
  @entity model serviceStorageQuotaBreakdown extends storageQuotaBreakdown {
20161
20173
  }
20162
20174
 
@@ -21312,6 +21324,7 @@ within the time frame of their original request.
21312
21324
  condition: string | null;
21313
21325
  directoryScopeId: string | null;
21314
21326
  principalId: string | null;
21327
+ principalOrganizationId: string | null;
21315
21328
  roleDefinitionId: string | null;
21316
21329
  @contains appScope: appScope | null;
21317
21330
  @references directoryScope: directoryObject | null;
@@ -21658,6 +21671,7 @@ within the time frame of their original request.
21658
21671
  @contains scopedRoleMemberOf: scopedRoleMembership[];
21659
21672
  @contains settings: userSettings | null;
21660
21673
  @contains solutions: userSolutionRoot | null;
21674
+ @references sponsorOf: directoryObject[];
21661
21675
  @references sponsors: directoryObject[];
21662
21676
  @contains teamwork: userTeamwork | null;
21663
21677
  @contains todo: todo | null;
@@ -27832,6 +27846,12 @@ within the time frame of their original request.
27832
27846
  unknownFutureValue: 7,
27833
27847
  }
27834
27848
 
27849
+ enum contentCategory {
27850
+ none: 0,
27851
+ ai: 1,
27852
+ unknownFutureValue: 2,
27853
+ }
27854
+
27835
27855
  enum contentProcessingErrorType {
27836
27856
  transient: 0,
27837
27857
  permanent: 1,
@@ -34627,6 +34647,10 @@ within the time frame of their original request.
34627
34647
  downloadText: 3,
34628
34648
  downloadFile: 4,
34629
34649
  unknownFutureValue: 5,
34650
+ copyToClipboard: 6,
34651
+ pasteFromClipboard: 7,
34652
+ print: 8,
34653
+ accessDebugTools: 9,
34630
34654
  }
34631
34655
 
34632
34656
  @graphFlags
@@ -34637,6 +34661,10 @@ within the time frame of their original request.
34637
34661
  downloadText: 4,
34638
34662
  downloadFile: 8,
34639
34663
  unknownFutureValue: 16,
34664
+ copyToClipboard: 32,
34665
+ pasteFromClipboard: 64,
34666
+ print: 128,
34667
+ accessDebugTools: 256,
34640
34668
  }
34641
34669
 
34642
34670
  enum userDefaultAuthenticationMethod {
@@ -37067,6 +37095,10 @@ namespace reference.`microsoft.graph.externalConnectors` {
37067
37095
  value: string | null;
37068
37096
  }
37069
37097
 
37098
+ @complex model externalItemInformationProtectionLabel {
37099
+ sensitivityLabelId: string | null;
37100
+ }
37101
+
37070
37102
  @complex model itemIdResolver extends urlToItemResolverBase {
37071
37103
  itemId: string;
37072
37104
  urlMatchInfo: urlMatchInfo | null;
@@ -37162,6 +37194,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
37162
37194
  @entity model externalItem extends reference.`microsoft.graph`.entity {
37163
37195
  acl: acl[] | null;
37164
37196
  content: externalItemContent | null;
37197
+ informationProtectionLabel: externalItemInformationProtectionLabel | null;
37165
37198
  properties: properties | null;
37166
37199
  @contains activities: externalActivity[];
37167
37200
  }
@@ -8,7 +8,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
8
8
 
9
9
 
10
10
  @privatePreviewDefinition("MicrosofEntitlementManagementCustomextensions", "2023-03-01", "2023-12-31", "<theOwner>")
11
- @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
11
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2025-03-26", "2026-03-26", "private preview elements are required to be marked as deprecated")
12
12
  // Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
13
13
  @privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
14
14
  @deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
@@ -947,6 +947,20 @@ namespace reference.`microsoft.graph` {
947
947
  messageBodyContentType: chatMessageBodyContentType | null;
948
948
  }
949
949
 
950
+ @complex model chatMessageCitation {
951
+ excerpt: string | null;
952
+ iconType: string | null;
953
+ id: int32 | null;
954
+ sensitivityLabel: chatMessageCitationSensitivityLabel | null;
955
+ title: string | null;
956
+ webUrl: string | null;
957
+ }
958
+
959
+ @complex model chatMessageCitationSensitivityLabel {
960
+ description: string | null;
961
+ displayName: string | null;
962
+ }
963
+
950
964
  @open
951
965
  @complex model chatMessageFromIdentitySet extends identitySet {
952
966
  }
@@ -1398,6 +1412,10 @@ namespace reference.`microsoft.graph` {
1398
1412
  targets: crossTenantAccessPolicyTarget[] | null;
1399
1413
  }
1400
1414
 
1415
+ @complex model crossTenantGroupSyncInbound {
1416
+ isSyncAllowed: boolean;
1417
+ }
1418
+
1401
1419
  @complex model crossTenantUserSyncInbound {
1402
1420
  isSyncAllowed: boolean | null;
1403
1421
  }
@@ -2993,8 +3011,26 @@ namespace reference.`microsoft.graph` {
2993
3011
  internalUrl: string | null;
2994
3012
  }
2995
3013
 
3014
+ @complex model onPremisesCurrentExportData {
3015
+ clientMachineName: string | null;
3016
+ pendingObjectsAddition: int32 | null;
3017
+ pendingObjectsDeletion: int32 | null;
3018
+ pendingObjectsUpdate: int32 | null;
3019
+ serviceAccount: string | null;
3020
+ successfulLinksProvisioningCount: int64 | null;
3021
+ successfulObjectsProvisioningCount: int32 | null;
3022
+ totalConnectorSpaceObjects: int32 | null;
3023
+ }
3024
+
2996
3025
  @complex model onPremisesDirectorySynchronizationConfiguration {
2997
3026
  accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
3027
+ anchorAttribute: string | null;
3028
+ applicationId: string | null;
3029
+ currentExportData: onPremisesCurrentExportData | null;
3030
+ customerRequestedSynchronizationInterval: duration | null;
3031
+ synchronizationClientVersion: string | null;
3032
+ synchronizationInterval: duration | null;
3033
+ writebackConfiguration: onPremisesWritebackConfiguration | null;
2998
3034
  }
2999
3035
 
3000
3036
  @complex model onPremisesDirectorySynchronizationFeature {
@@ -3081,6 +3117,11 @@ namespace reference.`microsoft.graph` {
3081
3117
  singleSignOnMode: singleSignOnMode | null;
3082
3118
  }
3083
3119
 
3120
+ @complex model onPremisesWritebackConfiguration {
3121
+ unifiedGroupContainer: string | null;
3122
+ userContainer: string | null;
3123
+ }
3124
+
3084
3125
  @complex model onTokenIssuanceStartCustomExtensionHandler extends onTokenIssuanceStartHandler {
3085
3126
  configuration: customExtensionOverwriteConfiguration | null;
3086
3127
  @references customExtension: onTokenIssuanceStartCustomExtension | null;
@@ -4456,6 +4497,10 @@ namespace reference.`microsoft.graph` {
4456
4497
  upgradeAvailable: boolean | null;
4457
4498
  }
4458
4499
 
4500
+ @open
4501
+ @complex model stringDictionary extends Dictionary {
4502
+ }
4503
+
4459
4504
  @complex model stringKeyAttributeMappingSourceValuePair {
4460
4505
  key: string | null;
4461
4506
  value: attributeMappingSource | null;
@@ -5871,6 +5916,7 @@ namespace reference.`microsoft.graph` {
5871
5916
  }
5872
5917
 
5873
5918
  @entity model admin extends MsGraph.SharedModels.entity {
5919
+ @contains entra: entra | null;
5874
5920
  @contains people: peopleAdminSettings | null;
5875
5921
  @contains serviceAnnouncement: serviceAnnouncement | null;
5876
5922
  @contains sharepoint: sharepoint | null;
@@ -5903,6 +5949,9 @@ namespace reference.`microsoft.graph` {
5903
5949
  @entity model agentIdentity extends servicePrincipal {
5904
5950
  agentIdentityBlueprintId: string;
5905
5951
  @computed createdDateTime: offsetDateTime | null;
5952
+ managerApplications: guid;
5953
+ @references inheritedAppRoleAssignments: appRoleAssignment[];
5954
+ @references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
5906
5955
  @references sponsors: directoryObject[];
5907
5956
  }
5908
5957
 
@@ -5915,6 +5964,7 @@ namespace reference.`microsoft.graph` {
5915
5964
 
5916
5965
  @open
5917
5966
  @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
5967
+ managerApplications: guid;
5918
5968
  @references sponsors: directoryObject[];
5919
5969
  }
5920
5970
 
@@ -6592,11 +6642,13 @@ namespace reference.`microsoft.graph` {
6592
6642
  body: chatMessageBody;
6593
6643
  channelIdentity: channelIdentity | null;
6594
6644
  chatId: string | null;
6645
+ citations: chatMessageCitation[] | null;
6595
6646
  @computed createdDateTime: offsetDateTime | null;
6596
6647
  deletedDateTime: offsetDateTime | null;
6597
6648
  etag: string | null;
6598
6649
  eventDetail: eventMessageDetail | null;
6599
6650
  from: chatMessageFromIdentitySet | null;
6651
+ hasReplies: boolean;
6600
6652
  importance: chatMessageImportance;
6601
6653
  @computed lastEditedDateTime: offsetDateTime | null;
6602
6654
  @computed lastModifiedDateTime: offsetDateTime | null;
@@ -6940,6 +6992,7 @@ namespace reference.`microsoft.graph` {
6940
6992
 
6941
6993
  @entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
6942
6994
  displayName: string | null;
6995
+ groupSyncInbound: crossTenantGroupSyncInbound | null;
6943
6996
  @computed @key tenantId: string;
6944
6997
  userSyncInbound: crossTenantUserSyncInbound | null;
6945
6998
  }
@@ -7373,6 +7426,9 @@ namespace reference.`microsoft.graph` {
7373
7426
  @computed @key id: string;
7374
7427
  }
7375
7428
 
7429
+ @entity model entra extends entity {
7430
+ }
7431
+
7376
7432
  @entity model evaluateLabelJobResponse extends jobResponseBase {
7377
7433
  result: evaluateLabelJobResultGroup | null;
7378
7434
  }
@@ -8885,6 +8941,9 @@ namespace reference.`microsoft.graph` {
8885
8941
 
8886
8942
  @entity model planner extends entity {
8887
8943
  @contains buckets: plannerBucket[];
8944
+
8945
+ @graphDeprecated("Tasks_And_Plans")
8946
+ @contains goals: plannerGoal[];
8888
8947
  @contains plans: plannerPlan[];
8889
8948
  @contains rosters: plannerRoster[];
8890
8949
  @contains tasks: plannerTask[];
@@ -8912,6 +8971,18 @@ namespace reference.`microsoft.graph` {
8912
8971
  @entity model plannerDelta extends entity {
8913
8972
  }
8914
8973
 
8974
+ @graphDeprecated("Tasks_And_Plans")
8975
+ @entity model plannerGoal extends plannerDelta {
8976
+ displayName: string;
8977
+ finishDate: offsetDateTime | null;
8978
+ notes: itemBody | null;
8979
+ planId: string;
8980
+ priority: int32 | null;
8981
+ startDate: offsetDateTime | null;
8982
+ status: plannerGoalStatus;
8983
+ @references tasks: plannerTask[];
8984
+ }
8985
+
8915
8986
  @entity model plannerGroup extends entity {
8916
8987
  @references plans: plannerPlan[];
8917
8988
  }
@@ -8932,6 +9003,9 @@ namespace reference.`microsoft.graph` {
8932
9003
  title: string;
8933
9004
  @references buckets: plannerBucket[];
8934
9005
  @contains details: plannerPlanDetails | null;
9006
+
9007
+ @graphDeprecated("Tasks_And_Plans")
9008
+ @references goals: plannerGoal[];
8935
9009
  @references tasks: plannerTask[];
8936
9010
  }
8937
9011
 
@@ -8972,6 +9046,9 @@ namespace reference.`microsoft.graph` {
8972
9046
  @computed createdDateTime: offsetDateTime | null;
8973
9047
  creationSource: plannerTaskCreation | null;
8974
9048
  dueDateTime: offsetDateTime | null;
9049
+
9050
+ @graphDeprecated("Tasks_And_Plans")
9051
+ goalIds: string[];
8975
9052
  hasChat: boolean;
8976
9053
  hasDescription: boolean | null;
8977
9054
  isArchived: boolean | null;
@@ -11179,6 +11256,10 @@ namespace reference.`microsoft.graph` {
11179
11256
  @contains installedApps: userScopeTeamsAppInstallation[];
11180
11257
  }
11181
11258
 
11259
+ @entity model uxSetting extends entity {
11260
+ restrictNonAdminAccess: nonAdminSetting;
11261
+ }
11262
+
11182
11263
  @entity model verticalSection extends entity {
11183
11264
  emphasis: sectionEmphasisType | null;
11184
11265
  @contains webparts: webPart[];
@@ -13259,6 +13340,12 @@ namespace reference.`microsoft.graph` {
13259
13340
  unknownFutureValue: 4,
13260
13341
  }
13261
13342
 
13343
+ enum nonAdminSetting {
13344
+ `false`: 0,
13345
+ `true`: 1,
13346
+ unknownFutureValue: 2,
13347
+ }
13348
+
13262
13349
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
13263
13350
  enum objectDefinitionMetadata {
13264
13351
  PropertyNameAccountEnabled: 0,
@@ -13546,6 +13633,15 @@ namespace reference.`microsoft.graph` {
13546
13633
  unknownFutureValue: 3,
13547
13634
  }
13548
13635
 
13636
+ enum plannerGoalStatus {
13637
+ notStarted: 0,
13638
+ onTrack: 1,
13639
+ behind: 2,
13640
+ atRisk: 3,
13641
+ closed: 4,
13642
+ unknownFutureValue: 5,
13643
+ }
13644
+
13549
13645
  enum plannerPlanAccessLevel {
13550
13646
  readAccess: 0,
13551
13647
  readWriteAccess: 1,
@@ -6228,6 +6228,7 @@ namespace reference.`microsoft.graph` {
6228
6228
  joinMeetingIdSettings: joinMeetingIdSettings | null;
6229
6229
  joinWebUrl: string | null;
6230
6230
  lobbyBypassSettings: lobbyBypassSettings | null;
6231
+ meetingType: onlineMeetingType | null;
6231
6232
  recordAutomatically: boolean | null;
6232
6233
  shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
6233
6234
  subject: string | null;
@@ -9780,6 +9781,15 @@ namespace reference.`microsoft.graph` {
9780
9781
  coorganizer: 4,
9781
9782
  }
9782
9783
 
9784
+ enum onlineMeetingType {
9785
+ adhoc: 0,
9786
+ scheduled: 1,
9787
+ recurring: 2,
9788
+ broadcast: 3,
9789
+ meetnow: 4,
9790
+ unknownFutureValue: 5,
9791
+ }
9792
+
9783
9793
  @graphFlags
9784
9794
  enum onlineMeetingVideoDisabledReason {
9785
9795
  watermarkProtection: 1,