@microsoft/typespec-msgraph-reference 1.0.6 → 1.0.8

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.
@@ -14,6 +14,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
14
14
  @deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
15
15
  // Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
16
16
  @privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
17
+ @deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
18
+ @deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
17
19
  @deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
18
20
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
19
21
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
@@ -1825,12 +1827,16 @@ namespace reference.`microsoft.graph` {
1825
1827
  }
1826
1828
 
1827
1829
  @complex model conditionalAccessClientApplications {
1830
+ agentIdServicePrincipalFilter: conditionalAccessFilter | null;
1831
+ excludeAgentIdServicePrincipals: string[];
1828
1832
  excludeServicePrincipals: string[];
1833
+ includeAgentIdServicePrincipals: string[];
1829
1834
  includeServicePrincipals: string[];
1830
1835
  servicePrincipalFilter: conditionalAccessFilter | null;
1831
1836
  }
1832
1837
 
1833
1838
  @complex model conditionalAccessConditionSet {
1839
+ agentIdRiskLevels: conditionalAccessAgentIdRiskLevels | null;
1834
1840
  applications: conditionalAccessApplications | null;
1835
1841
  authenticationFlows: conditionalAccessAuthenticationFlows | null;
1836
1842
  clientApplications: conditionalAccessClientApplications | null;
@@ -4774,6 +4780,17 @@ namespace reference.`microsoft.graph` {
4774
4780
  status: deviceScopeActionStatus;
4775
4781
  }
4776
4782
 
4783
+ @complex model deviceSyncStatusResponse {
4784
+ /**
4785
+ * Indicates the collection of sync component statuses representing infrastructure and policy progress. Each entry represents a component that has started reporting during this sync operation. Components appear in the collection only after they begin executing. Read-only. Not nullable.
4786
+ */
4787
+ components: syncComponent[];
4788
+ /**
4789
+ * Indicates the managed device identifier. Used to correlate this sync status snapshot with the device that was synced. This is the same id used in the managedDevice entity. Example: 'd1e2f3a4-b5c6-7890-abcd-ef1234567890'. Read-only. Not nullable.
4790
+ */
4791
+ deviceId: string;
4792
+ }
4793
+
4777
4794
  @open
4778
4795
  @complex model Dictionary {
4779
4796
  }
@@ -9011,6 +9028,11 @@ namespace reference.`microsoft.graph` {
9011
9028
  creationSourceKind: plannerCreationSourceKind | null;
9012
9029
  }
9013
9030
 
9031
+ @complex model plannerBucketPropertyRule extends plannerPropertyRule {
9032
+ order: string[] | null;
9033
+ title: string[] | null;
9034
+ }
9035
+
9014
9036
  @complex model plannerCategoryDescriptions {
9015
9037
  category1: string | null;
9016
9038
  category10: string | null;
@@ -9098,6 +9120,11 @@ namespace reference.`microsoft.graph` {
9098
9120
  @complex model plannerFavoritePlanReferenceCollection {
9099
9121
  }
9100
9122
 
9123
+ @complex model plannerFieldRules {
9124
+ defaultRules: string[] | null;
9125
+ overrides: plannerRuleOverride[] | null;
9126
+ }
9127
+
9101
9128
  @complex model plannerFormReference {
9102
9129
  displayName: string | null;
9103
9130
  formResponse: string | null;
@@ -9150,6 +9177,18 @@ namespace reference.`microsoft.graph` {
9150
9177
  creationSourceKind: plannerCreationSourceKind | null;
9151
9178
  }
9152
9179
 
9180
+ @complex model plannerPlanPropertyRule extends plannerPropertyRule {
9181
+ buckets: string[] | null;
9182
+ categoryDescriptions: plannerFieldRules | null;
9183
+ tasks: string[] | null;
9184
+ title: plannerFieldRules | null;
9185
+ }
9186
+
9187
+ @abstract
9188
+ @complex model plannerPropertyRule {
9189
+ ruleKind: plannerRuleKind | null;
9190
+ }
9191
+
9153
9192
  @complex model plannerRecentPlanReference {
9154
9193
  @computed lastAccessedDateTime: offsetDateTime | null;
9155
9194
  planTitle: string | null;
@@ -9165,10 +9204,31 @@ namespace reference.`microsoft.graph` {
9165
9204
  patternStartDateTime: offsetDateTime | null;
9166
9205
  }
9167
9206
 
9207
+ @complex model plannerRuleOverride {
9208
+ name: string | null;
9209
+ rules: string[] | null;
9210
+ }
9211
+
9168
9212
  @complex model plannerSharedWithContainer extends plannerPlanContainer {
9169
9213
  accessLevel: plannerPlanAccessLevel;
9170
9214
  }
9171
9215
 
9216
+ @complex model plannerTaskChatMention {
9217
+ mentioned: string | null;
9218
+ mentionType: plannerTaskChatMentionType;
9219
+ position: int32;
9220
+ }
9221
+
9222
+ @complex model plannerTaskChatReaction {
9223
+ reactionEvents: plannerTaskChatReactionEvent[];
9224
+ reactionType: string | null;
9225
+ }
9226
+
9227
+ @complex model plannerTaskChatReactionEvent {
9228
+ createdBy: identitySet | null;
9229
+ @computed createdDateTime: offsetDateTime;
9230
+ }
9231
+
9172
9232
  @complex model plannerTaskCompletionRequirementDetails {
9173
9233
  approvalRequirement: plannerApprovalRequirement | null;
9174
9234
  checklistRequirement: plannerChecklistRequirement | null;
@@ -9180,6 +9240,26 @@ namespace reference.`microsoft.graph` {
9180
9240
  teamsPublicationInfo: plannerTeamsPublicationInfo | null;
9181
9241
  }
9182
9242
 
9243
+ @complex model plannerTaskPropertyRule extends plannerPropertyRule {
9244
+ appliedCategories: plannerFieldRules | null;
9245
+ approvalAttachment: plannerFieldRules | null;
9246
+ assignments: plannerFieldRules | null;
9247
+ checkLists: plannerFieldRules | null;
9248
+ completionRequirements: string[] | null;
9249
+ delete: string[] | null;
9250
+ dueDate: string[] | null;
9251
+ forms: plannerFieldRules | null;
9252
+ move: string[] | null;
9253
+ notes: string[] | null;
9254
+ order: string[] | null;
9255
+ percentComplete: string[] | null;
9256
+ previewType: string[] | null;
9257
+ priority: string[] | null;
9258
+ references: plannerFieldRules | null;
9259
+ startDate: string[] | null;
9260
+ title: string[] | null;
9261
+ }
9262
+
9183
9263
  @complex model plannerTaskRecurrence {
9184
9264
  nextInSeriesTaskId: string | null;
9185
9265
  occurrenceId: int32;
@@ -10181,6 +10261,7 @@ namespace reference.`microsoft.graph` {
10181
10261
  appId: string | null;
10182
10262
  serviceArea: string | null;
10183
10263
  tenantId: string | null;
10264
+ throttledRequests: int64 | null;
10184
10265
  usageDateTime: offsetDateTime | null;
10185
10266
  usageMB: int64 | null;
10186
10267
  usageRequests: int64 | null;
@@ -10319,6 +10400,7 @@ namespace reference.`microsoft.graph` {
10319
10400
  }
10320
10401
 
10321
10402
  @complex model signInConditions {
10403
+ agentIdRiskLevel: agentIdRiskLevel | null;
10322
10404
  authenticationFlow: authenticationFlow | null;
10323
10405
  clientAppType: conditionalAccessClientApp | null;
10324
10406
  country: string | null;
@@ -10466,6 +10548,25 @@ namespace reference.`microsoft.graph` {
10466
10548
  nameIdPolicyFormat: string | null;
10467
10549
  }
10468
10550
 
10551
+ @complex model syncComponent {
10552
+ /**
10553
+ * Indicates additional information for this sync stage. This is a flexible string that can be null (no additional info), a progress indicator such as '3/6' (completed out of total), or a list of individual item names. Read-only. Nullable.
10554
+ */
10555
+ moreInfo: string | null;
10556
+ /**
10557
+ * Indicates the sync stage name. The backend abstracts internal infrastructure into 6 user-facing stages. Fixed values are: notifyingDevice, deviceConnecting, policies, applications, scripts, compliance. Read-only. Not nullable.
10558
+ */
10559
+ name: string;
10560
+ /**
10561
+ * Indicates the date and time when this stage last reported status. The date and time information is shown using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. Not nullable.
10562
+ */
10563
+ reportedDateTime: offsetDateTime;
10564
+ /**
10565
+ * Indicates the current status of this sync stage. Default value is none. Possible values are: none, inProgress, success, failure, partialSuccess, unknownFutureValue. Stages only appear in the response once they have started, so none is a schema default and will not typically appear in responses. Read-only. Not nullable.
10566
+ */
10567
+ status: syncComponentStatus;
10568
+ }
10569
+
10469
10570
  @complex model systemCredentialPreferences {
10470
10571
  excludeTargets: excludeTarget[];
10471
10572
  includeTargets: includeTarget[];
@@ -13641,16 +13742,29 @@ namespace reference.`microsoft.graph` {
13641
13742
  @entity model agentRiskDetection extends entity {
13642
13743
  activityDateTime: offsetDateTime | null;
13643
13744
  additionalInfo: string | null;
13644
- agentDisplayName: string;
13645
- agentId: string;
13745
+
13746
+ @graphDeprecated("beta:DisplayNameRename")
13747
+ agentDisplayName: string | null;
13748
+
13749
+ @graphDeprecated("beta:IdentityIDRename")
13750
+ agentId: string | null;
13751
+ blueprintId: string | null;
13752
+ clientSessionId: string | null;
13646
13753
  detectedDateTime: offsetDateTime | null;
13647
13754
  detectionTimingType: riskDetectionTimingType;
13755
+ displayName: string;
13756
+ identityId: string;
13757
+ identityType: agentIdentityType;
13648
13758
  @computed lastModifiedDateTime: offsetDateTime | null;
13649
13759
  riskDetail: riskDetail;
13650
13760
  riskEventType: string;
13651
13761
  riskEvidence: string | null;
13652
13762
  riskLevel: riskLevel;
13653
13763
  riskState: riskState;
13764
+ signInClientDisplayName: string | null;
13765
+ signInCorrelationId: string | null;
13766
+ signInRequestId: string | null;
13767
+ source: string | null;
13654
13768
  }
13655
13769
 
13656
13770
  @open
@@ -33936,6 +34050,7 @@ namespace reference.`microsoft.graph` {
33936
34050
  @computed createdDateTime: offsetDateTime | null;
33937
34051
  creationSource: plannerTaskCreation | null;
33938
34052
  dueDateTime: offsetDateTime | null;
34053
+ hasChat: boolean;
33939
34054
  hasDescription: boolean | null;
33940
34055
  isArchived: boolean | null;
33941
34056
  isOnMyDay: boolean | null;
@@ -33955,9 +34070,22 @@ namespace reference.`microsoft.graph` {
33955
34070
  @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
33956
34071
  @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
33957
34072
  @contains details: plannerTaskDetails | null;
34073
+ @contains messages: plannerTaskChatMessage[];
33958
34074
  @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
33959
34075
  }
33960
34076
 
34077
+ @entity model plannerTaskChatMessage extends entity {
34078
+ content: string | null;
34079
+ createdBy: identitySet | null;
34080
+ @computed createdDateTime: offsetDateTime;
34081
+ deletedDateTime: offsetDateTime | null;
34082
+ editedDateTime: offsetDateTime | null;
34083
+ mentions: plannerTaskChatMention[];
34084
+ messageType: plannerTaskChatMessageType;
34085
+ parentEntityId: string | null;
34086
+ reactions: plannerTaskChatReaction[];
34087
+ }
34088
+
33961
34089
  @entity model plannerTaskDetails extends plannerDelta {
33962
34090
  approvalAttachment: plannerBaseApprovalAttachment | null;
33963
34091
  checklist: plannerChecklistItems | null;
@@ -34686,6 +34814,8 @@ namespace reference.`microsoft.graph` {
34686
34814
 
34687
34815
  @entity model riskyAgent extends entity {
34688
34816
  agentDisplayName: string | null;
34817
+ blueprintId: string | null;
34818
+ identityType: agentIdentityType;
34689
34819
  isDeleted: boolean;
34690
34820
  isEnabled: boolean;
34691
34821
  isProcessing: boolean;
@@ -38335,6 +38465,10 @@ namespace reference.`microsoft.graph` {
38335
38465
  * You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
38336
38466
  */
38337
38467
  @entity model vppToken extends entity {
38468
+ /**
38469
+ * Indicates the delivery protocol used to deliver apps associated with this VPP token. This property is set at token creation and cannot be modified afterward. Default value is default. Possible values are: default, mobileDeviceManagement, declarativeDeviceManagement. Not nullable.
38470
+ */
38471
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
38338
38472
  /**
38339
38473
  * The apple Id associated with the given Apple Volume Purchase Program Token.
38340
38474
  */
@@ -44942,6 +45076,22 @@ namespace reference.`microsoft.graph` {
44942
45076
  unknownFutureValue: 3,
44943
45077
  }
44944
45078
 
45079
+ enum agentIdentityType {
45080
+ agentIdentity: 0,
45081
+ agentUser: 1,
45082
+ unknownFutureValue: 2,
45083
+ agentIdentityBlueprintPrincipal: 3,
45084
+ user: 4,
45085
+ }
45086
+
45087
+ enum agentIdRiskLevel {
45088
+ none: 0,
45089
+ low: 1,
45090
+ medium: 2,
45091
+ high: 4,
45092
+ unknownFutureValue: 8,
45093
+ }
45094
+
44945
45095
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
44946
45096
  enum agentStatus {
44947
45097
  active: 0,
@@ -48090,6 +48240,14 @@ namespace reference.`microsoft.graph` {
48090
48240
  unknownFutureValue: 1,
48091
48241
  }
48092
48242
 
48243
+ @graphFlags
48244
+ enum conditionalAccessAgentIdRiskLevels {
48245
+ low: 1,
48246
+ medium: 2,
48247
+ high: 4,
48248
+ unknownFutureValue: 8,
48249
+ }
48250
+
48093
48251
  enum conditionalAccessClientApp {
48094
48252
  all: 0,
48095
48253
  browser: 1,
@@ -53275,12 +53433,12 @@ namespace reference.`microsoft.graph` {
53275
53433
  enabled: 2,
53276
53434
  }
53277
53435
 
53278
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
53279
53436
  enum groupAccessType {
53280
53437
  none: 0,
53281
53438
  private: 1,
53282
53439
  secret: 2,
53283
53440
  public: 3,
53441
+ unknownFutureValue: 4,
53284
53442
  }
53285
53443
 
53286
53444
  /**
@@ -57208,6 +57366,25 @@ namespace reference.`microsoft.graph` {
57208
57366
  reference: 4,
57209
57367
  }
57210
57368
 
57369
+ enum plannerRuleKind {
57370
+ taskRule: 1,
57371
+ bucketRule: 2,
57372
+ planRule: 3,
57373
+ unknownFutureValue: 4,
57374
+ }
57375
+
57376
+ enum plannerTaskChatMentionType {
57377
+ user: 1,
57378
+ application: 2,
57379
+ unknownFutureValue: 3,
57380
+ }
57381
+
57382
+ enum plannerTaskChatMessageType {
57383
+ richTextHtml: 1,
57384
+ plainText: 2,
57385
+ unknownFutureValue: 3,
57386
+ }
57387
+
57211
57388
  @graphFlags
57212
57389
  enum plannerTaskCompletionRequirements {
57213
57390
  none: 0,
@@ -57215,6 +57392,7 @@ namespace reference.`microsoft.graph` {
57215
57392
  unknownFutureValue: 2,
57216
57393
  formCompletion: 4,
57217
57394
  approvalCompletion: 8,
57395
+ completionInHostedApp: 16,
57218
57396
  }
57219
57397
 
57220
57398
  /**
@@ -58853,6 +59031,10 @@ namespace reference.`microsoft.graph` {
58853
59031
  adminDismissedAllRiskForServicePrincipal: 14,
58854
59032
  adminDismissedRiskForSignIn: 16,
58855
59033
  adminConfirmedAccountSafe: 17,
59034
+ adminConfirmedAgentSafe: 18,
59035
+ adminConfirmedAgentCompromised: 19,
59036
+ adminDismissedRiskForAgent: 20,
59037
+ microsoftRevokedSessions: 21,
58856
59038
  }
58857
59039
 
58858
59040
  enum riskDetectionTimingType {
@@ -59558,6 +59740,33 @@ namespace reference.`microsoft.graph` {
59558
59740
  commonNameAsDurableDeviceId: 9,
59559
59741
  }
59560
59742
 
59743
+ /**
59744
+ * A list of possible status states for a sync infrastructure component or policy during a device sync operation.
59745
+ */
59746
+ enum syncComponentStatus {
59747
+ /**
59748
+ * Default. The component has not yet started reporting status. This is a schema default and will not typically appear in responses, as components only appear once they begin executing.
59749
+ */
59750
+ none: 0,
59751
+ /**
59752
+ * Indicates the component is currently executing. For infrastructure components (PNSv1, DCI, SCGW), this means the notification or check-in is in flight. For policies, this means the policy is being applied to the device.
59753
+ */
59754
+ inProgress: 1,
59755
+ /**
59756
+ * Indicates the component completed successfully. The component has finished its work and reported a successful outcome.
59757
+ */
59758
+ success: 2,
59759
+ /**
59760
+ * Indicates the stage encountered an error. When this value is set, the moreInfo property on the syncComponent will contain additional diagnostic details about the failure.
59761
+ */
59762
+ failure: 3,
59763
+ /**
59764
+ * Indicates the stage completed but not all items succeeded. For example, some policies applied successfully while others failed. The moreInfo property may contain details on the partial outcome.
59765
+ */
59766
+ partialSuccess: 4,
59767
+ unknownFutureValue: 5,
59768
+ }
59769
+
59561
59770
  /**
59562
59771
  * A list of possible System Management Mode levels for a device. System Management Mode levels is determined by report sent from Microsoft Azure Attestation service. Only specific hardwares support System Management Mode. Windows 11 devices will have values "notApplicable", "level1", "level2" or "level3". Windows 10 devices will have value "notApplicable".
59563
59772
  */