@softeria/ms-365-mcp-server 0.20.1 → 0.20.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.
@@ -272,7 +272,11 @@ const microsoft_graph_chatMessagePolicyViolation = z.object({
272
272
  userAction: microsoft_graph_chatMessagePolicyViolationUserActionTypes.optional(),
273
273
  verdictDetails: microsoft_graph_chatMessagePolicyViolationVerdictDetailsTypes.optional()
274
274
  }).strict();
275
- const microsoft_graph_chatMessageHostedContent = z.object({}).strict();
275
+ const microsoft_graph_chatMessageHostedContent = z.object({
276
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
277
+ contentBytes: z.string().describe("Write only. Bytes for the hosted content (such as images).").nullish(),
278
+ contentType: z.string().describe("Write only. Content type. such as image/png, image/jpg.").nullish()
279
+ }).strict();
276
280
  const microsoft_graph_chatMessage = z.lazy(
277
281
  () => z.object({
278
282
  id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
@@ -1195,6 +1199,7 @@ const microsoft_graph_attachment = z.object({
1195
1199
  name: z.string().describe("The attachment's file name.").nullish(),
1196
1200
  size: z.number().gte(-2147483648).lte(2147483647).describe("The length of the attachment in bytes.").optional()
1197
1201
  }).strict();
1202
+ const microsoft_graph_attendeeType = z.enum(["required", "optional", "resource"]);
1198
1203
  const microsoft_graph_dateTimeTimeZone = z.object({
1199
1204
  dateTime: z.string().describe(
1200
1205
  "A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000)."
@@ -1224,6 +1229,8 @@ const microsoft_graph_responseStatus = z.object({
1224
1229
  ).nullish()
1225
1230
  }).strict();
1226
1231
  const microsoft_graph_attendee = z.object({
1232
+ emailAddress: microsoft_graph_emailAddress.optional(),
1233
+ type: microsoft_graph_attendeeType.optional(),
1227
1234
  proposedNewTime: microsoft_graph_timeSlot.optional(),
1228
1235
  status: microsoft_graph_responseStatus.optional()
1229
1236
  }).strict();
@@ -1275,42 +1282,28 @@ const microsoft_graph_location = z.object({
1275
1282
  uniqueId: z.string().describe("For internal use only.").nullish(),
1276
1283
  uniqueIdType: microsoft_graph_locationUniqueIdType.optional()
1277
1284
  }).strict();
1278
- const microsoft_graph_phoneType = z.enum([
1279
- "home",
1280
- "business",
1281
- "mobile",
1282
- "other",
1283
- "assistant",
1284
- "homeFax",
1285
- "businessFax",
1286
- "otherFax",
1287
- "pager",
1288
- "radio"
1289
- ]);
1290
- const microsoft_graph_phone = z.object({
1291
- language: z.string().nullish(),
1292
- number: z.string().describe("The phone number.").nullish(),
1293
- region: z.string().nullish(),
1294
- type: microsoft_graph_phoneType.optional()
1295
- }).strict();
1296
- const microsoft_graph_onlineMeetingInfo = z.object({
1297
- conferenceId: z.string().describe("The ID of the conference.").nullish(),
1298
- joinUrl: z.string().describe(
1299
- "The external link that launches the online meeting. This is a URL that clients launch into a browser and will redirect the user to join the meeting."
1300
- ).nullish(),
1301
- phones: z.array(microsoft_graph_phone).describe("All of the phone numbers associated with this conference.").optional(),
1302
- quickDial: z.string().describe("The preformatted quick dial for this call.").nullish(),
1303
- tollFreeNumbers: z.array(z.string().nullable()).describe("The toll free numbers that can be used to join the conference.").optional(),
1304
- tollNumber: z.string().describe("The toll number that can be used to join the conference.").nullish()
1305
- }).strict();
1306
- const microsoft_graph_recipient = z.object({ emailAddress: microsoft_graph_emailAddress.optional() }).strict();
1307
1285
  const microsoft_graph_event = z.object({
1286
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
1287
+ createdDateTime: z.string().regex(
1288
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
1289
+ ).datetime({ offset: true }).describe(
1290
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
1291
+ ).nullish(),
1292
+ lastModifiedDateTime: z.string().regex(
1293
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
1294
+ ).datetime({ offset: true }).describe(
1295
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
1296
+ ).nullish(),
1308
1297
  type: microsoft_graph_eventType.optional(),
1309
1298
  body: microsoft_graph_itemBody.optional(),
1310
1299
  subject: z.string().describe("The text of the event's subject line.").nullish(),
1311
1300
  attachments: z.array(microsoft_graph_attachment).describe(
1312
1301
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
1313
1302
  ).optional(),
1303
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
1304
+ changeKey: z.string().describe(
1305
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
1306
+ ).nullish(),
1314
1307
  allowNewTimeProposals: z.boolean().describe(
1315
1308
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
1316
1309
  ).nullish(),
@@ -1342,16 +1335,7 @@ const microsoft_graph_event = z.object({
1342
1335
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
1343
1336
  ).nullish(),
1344
1337
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
1345
- location: microsoft_graph_location.optional(),
1346
- locations: z.array(microsoft_graph_location).describe(
1347
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
1348
- ).optional(),
1349
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
1350
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
1351
- onlineMeetingUrl: z.string().describe(
1352
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
1353
- ).nullish(),
1354
- organizer: microsoft_graph_recipient.optional()
1338
+ location: microsoft_graph_location.optional()
1355
1339
  }).strict().passthrough();
1356
1340
  const microsoft_graph_multiValueLegacyExtendedProperty = z.object({
1357
1341
  id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
@@ -1418,10 +1402,25 @@ const microsoft_graph_chatCollectionResponse = z.object({
1418
1402
  value: z.array(microsoft_graph_chat)
1419
1403
  }).partial().strict();
1420
1404
  const microsoft_graph_contact = z.object({
1405
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
1421
1406
  displayName: z.string().describe(
1422
1407
  "The contact's display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation."
1423
1408
  ).nullish(),
1409
+ createdDateTime: z.string().regex(
1410
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
1411
+ ).datetime({ offset: true }).describe(
1412
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
1413
+ ).nullish(),
1414
+ lastModifiedDateTime: z.string().regex(
1415
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
1416
+ ).datetime({ offset: true }).describe(
1417
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
1418
+ ).nullish(),
1424
1419
  title: z.string().describe("The contact's title.").nullish(),
1420
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
1421
+ changeKey: z.string().describe(
1422
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
1423
+ ).nullish(),
1425
1424
  assistantName: z.string().describe("The name of the contact's assistant.").nullish(),
1426
1425
  birthday: z.string().regex(
1427
1426
  /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
@@ -1443,12 +1442,7 @@ const microsoft_graph_contact = z.object({
1443
1442
  imAddresses: z.array(z.string().nullable()).describe("The contact's instant messaging (IM) addresses.").optional(),
1444
1443
  initials: z.string().describe("The contact's initials.").nullish(),
1445
1444
  jobTitle: z.string().describe("The contact\u2019s job title.").nullish(),
1446
- manager: z.string().describe("The name of the contact's manager.").nullish(),
1447
- middleName: z.string().describe("The contact's middle name.").nullish(),
1448
- mobilePhone: z.string().describe("The contact's mobile phone number.").nullish(),
1449
- nickName: z.string().describe("The contact's nickname.").nullish(),
1450
- officeLocation: z.string().describe("The location of the contact's office.").nullish(),
1451
- otherAddress: microsoft_graph_physicalAddress.optional()
1445
+ manager: z.string().describe("The name of the contact's manager.").nullish()
1452
1446
  }).strict().passthrough();
1453
1447
  const microsoft_graph_contactCollectionResponse = z.object({
1454
1448
  "@odata.count": z.number().int().nullable(),
@@ -1704,12 +1698,29 @@ const microsoft_graph_itemAnalytics = z.object({
1704
1698
  itemActivityStats: z.array(microsoft_graph_itemActivityStat).optional(),
1705
1699
  lastSevenDays: microsoft_graph_itemActivityStat.optional()
1706
1700
  }).strict();
1701
+ const microsoft_graph_publicationFacet = z.object({
1702
+ checkedOutBy: microsoft_graph_identitySet.optional(),
1703
+ level: z.string().describe(
1704
+ "The state of publication for this document. Either published or checkout. Read-only."
1705
+ ).nullish(),
1706
+ versionId: z.string().describe(
1707
+ "The unique identifier for the version that is visible to the current caller. Read-only."
1708
+ ).nullish()
1709
+ }).strict();
1710
+ const microsoft_graph_fieldValueSet = z.object({ id: z.string().describe("The unique identifier for an entity. Read-only.").optional() }).strict();
1707
1711
  const microsoft_graph_documentSetVersionItem = z.object({
1708
1712
  itemId: z.string().describe("The unique identifier for the item.").nullish(),
1709
1713
  title: z.string().describe("The title of the item.").nullish(),
1710
1714
  versionId: z.string().describe("The version ID of the item.").nullish()
1711
1715
  }).strict();
1712
1716
  const microsoft_graph_documentSetVersion = z.object({
1717
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
1718
+ lastModifiedBy: microsoft_graph_identitySet.optional(),
1719
+ lastModifiedDateTime: z.string().regex(
1720
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
1721
+ ).datetime({ offset: true }).describe("Date and time the version was last modified. Read-only.").nullish(),
1722
+ publication: microsoft_graph_publicationFacet.optional(),
1723
+ fields: microsoft_graph_fieldValueSet.optional(),
1713
1724
  comment: z.string().describe("Comment about the captured version.").nullish(),
1714
1725
  createdBy: microsoft_graph_identitySet.optional(),
1715
1726
  createdDateTime: z.string().regex(
@@ -1720,16 +1731,6 @@ const microsoft_graph_documentSetVersion = z.object({
1720
1731
  "If true, minor versions of items are also captured; otherwise, only major versions are captured. The default value is false."
1721
1732
  ).nullish()
1722
1733
  }).strict();
1723
- const microsoft_graph_fieldValueSet = z.object({ id: z.string().describe("The unique identifier for an entity. Read-only.").optional() }).strict();
1724
- const microsoft_graph_publicationFacet = z.object({
1725
- checkedOutBy: microsoft_graph_identitySet.optional(),
1726
- level: z.string().describe(
1727
- "The state of publication for this document. Either published or checkout. Read-only."
1728
- ).nullish(),
1729
- versionId: z.string().describe(
1730
- "The unique identifier for the version that is visible to the current caller. Read-only."
1731
- ).nullish()
1732
- }).strict();
1733
1734
  const microsoft_graph_listItemVersion = z.object({
1734
1735
  id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
1735
1736
  lastModifiedBy: microsoft_graph_identitySet.optional(),
@@ -1991,39 +1992,49 @@ const microsoft_graph_channelSummary = z.object({
1991
1992
  membersCount: z.number().gte(-2147483648).lte(2147483647).describe("Count of members in a channel.").nullish(),
1992
1993
  ownersCount: z.number().gte(-2147483648).lte(2147483647).describe("Count of owners in a channel.").nullish()
1993
1994
  }).strict();
1994
- const microsoft_graph_sharedWithChannelTeamInfo = z.object({
1995
- isHostTeam: z.boolean().describe("Indicates whether the team is the host of the channel.").nullish(),
1996
- allowedMembers: z.array(microsoft_graph_conversationMember).describe("A collection of team members who have access to the shared channel.").optional()
1997
- }).strict();
1998
- const microsoft_graph_channel = z.object({
1999
- id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2000
- createdDateTime: z.string().regex(
2001
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2002
- ).datetime({ offset: true }).describe("Read only. Timestamp at which the channel was created.").nullish(),
2003
- description: z.string().describe("Optional textual description for the channel.").nullish(),
2004
- displayName: z.string().describe(
2005
- "Channel name as it will appear to the user in Microsoft Teams. The maximum length is 50 characters."
2006
- ).optional(),
2007
- email: z.string().describe("The email address for sending messages to the channel. Read-only.").nullish(),
2008
- isArchived: z.boolean().describe("Indicates whether the channel is archived. Read-only.").nullish(),
2009
- isFavoriteByDefault: z.boolean().describe(
2010
- "Indicates whether the channel should be marked as recommended for all members of the team to show in their channel list. Note: All recommended channels automatically show in the channels list for education and frontline worker users. The property can only be set programmatically via the Create team method. The default value is false."
2011
- ).nullish(),
2012
- membershipType: microsoft_graph_channelMembershipType.optional(),
2013
- summary: microsoft_graph_channelSummary.optional(),
2014
- tenantId: z.string().describe("The ID of the Microsoft Entra tenant.").nullish(),
2015
- webUrl: z.string().describe(
2016
- "A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only."
2017
- ).nullish(),
2018
- allMembers: z.array(microsoft_graph_conversationMember).describe(
2019
- "A collection of membership records associated with the channel, including both direct and indirect members of shared channels."
2020
- ).optional(),
2021
- filesFolder: microsoft_graph_driveItem.describe("[Note: Simplified from 45 properties to 25 most common ones]").optional(),
2022
- members: z.array(microsoft_graph_conversationMember).describe("A collection of membership records associated with the channel.").optional(),
2023
- messages: z.array(microsoft_graph_chatMessage).describe("A collection of all the messages in the channel. A navigation property. Nullable.").optional(),
2024
- sharedWithTeams: z.array(microsoft_graph_sharedWithChannelTeamInfo).describe("A collection of teams with which a channel is shared.").optional(),
2025
- tabs: z.array(microsoft_graph_teamsTab).describe("A collection of all the tabs in the channel. A navigation property.").optional()
2026
- }).strict();
1995
+ const microsoft_graph_sharedWithChannelTeamInfo = z.lazy(
1996
+ () => z.object({
1997
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
1998
+ displayName: z.string().describe("The name of the team.").nullish(),
1999
+ tenantId: z.string().describe("The ID of the Microsoft Entra tenant.").nullish(),
2000
+ team: microsoft_graph_team.describe("[Note: Simplified from 30 properties to 25 most common ones]").optional(),
2001
+ isHostTeam: z.boolean().describe("Indicates whether the team is the host of the channel.").nullish(),
2002
+ allowedMembers: z.array(microsoft_graph_conversationMember).describe("A collection of team members who have access to the shared channel.").optional()
2003
+ }).strict()
2004
+ );
2005
+ const microsoft_graph_channel = z.lazy(
2006
+ () => z.object({
2007
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2008
+ createdDateTime: z.string().regex(
2009
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2010
+ ).datetime({ offset: true }).describe("Read only. Timestamp at which the channel was created.").nullish(),
2011
+ description: z.string().describe("Optional textual description for the channel.").nullish(),
2012
+ displayName: z.string().describe(
2013
+ "Channel name as it will appear to the user in Microsoft Teams. The maximum length is 50 characters."
2014
+ ).optional(),
2015
+ email: z.string().describe("The email address for sending messages to the channel. Read-only.").nullish(),
2016
+ isArchived: z.boolean().describe("Indicates whether the channel is archived. Read-only.").nullish(),
2017
+ isFavoriteByDefault: z.boolean().describe(
2018
+ "Indicates whether the channel should be marked as recommended for all members of the team to show in their channel list. Note: All recommended channels automatically show in the channels list for education and frontline worker users. The property can only be set programmatically via the Create team method. The default value is false."
2019
+ ).nullish(),
2020
+ membershipType: microsoft_graph_channelMembershipType.optional(),
2021
+ summary: microsoft_graph_channelSummary.optional(),
2022
+ tenantId: z.string().describe("The ID of the Microsoft Entra tenant.").nullish(),
2023
+ webUrl: z.string().describe(
2024
+ "A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only."
2025
+ ).nullish(),
2026
+ allMembers: z.array(microsoft_graph_conversationMember).describe(
2027
+ "A collection of membership records associated with the channel, including both direct and indirect members of shared channels."
2028
+ ).optional(),
2029
+ filesFolder: microsoft_graph_driveItem.describe("[Note: Simplified from 45 properties to 25 most common ones]").optional(),
2030
+ members: z.array(microsoft_graph_conversationMember).describe("A collection of membership records associated with the channel.").optional(),
2031
+ messages: z.array(microsoft_graph_chatMessage).describe(
2032
+ "A collection of all the messages in the channel. A navigation property. Nullable."
2033
+ ).optional(),
2034
+ sharedWithTeams: z.array(microsoft_graph_sharedWithChannelTeamInfo).describe("A collection of teams with which a channel is shared.").optional(),
2035
+ tabs: z.array(microsoft_graph_teamsTab).describe("A collection of all the tabs in the channel. A navigation property.").optional()
2036
+ }).strict()
2037
+ );
2027
2038
  const microsoft_graph_assignedLabel = z.object({
2028
2039
  displayName: z.string().describe("The display name of the label. Read-only.").nullish(),
2029
2040
  labelId: z.string().describe("The unique identifier of the label.").nullish()
@@ -2153,48 +2164,51 @@ const microsoft_graph_teamsAsyncOperation = z.object({
2153
2164
  "The location of the object that's created or modified as result of this async operation. This URL should be treated as an opaque value and not parsed into its component paths."
2154
2165
  ).nullish()
2155
2166
  }).strict();
2156
- const microsoft_graph_team = z.object({
2157
- id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2158
- displayName: z.string().describe("The name of the team.").nullish(),
2159
- description: z.string().describe("An optional description for the team. Maximum length: 1,024 characters.").nullish(),
2160
- createdDateTime: z.string().regex(
2161
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2162
- ).datetime({ offset: true }).describe("Timestamp at which the team was created.").nullish(),
2163
- classification: z.string().describe(
2164
- "An optional label. Typically describes the data or business sensitivity of the team. Must match one of a preconfigured set in the tenant's directory."
2165
- ).nullish(),
2166
- firstChannelName: z.string().describe(
2167
- "The name of the first channel in the team. This is an optional property, only used during team creation and isn't returned in methods to get and list teams."
2168
- ).nullish(),
2169
- funSettings: microsoft_graph_teamFunSettings.optional(),
2170
- guestSettings: microsoft_graph_teamGuestSettings.optional(),
2171
- internalId: z.string().describe(
2172
- "A unique ID for the team that was used in a few places such as the audit log/Office 365 Management Activity API."
2173
- ).nullish(),
2174
- isArchived: z.boolean().describe("Whether this team is in read-only mode.").nullish(),
2175
- memberSettings: microsoft_graph_teamMemberSettings.optional(),
2176
- messagingSettings: microsoft_graph_teamMessagingSettings.optional(),
2177
- specialization: microsoft_graph_teamSpecialization.optional(),
2178
- summary: microsoft_graph_teamSummary.optional(),
2179
- tenantId: z.string().describe("The ID of the Microsoft Entra tenant.").nullish(),
2180
- visibility: microsoft_graph_teamVisibilityType.optional(),
2181
- webUrl: z.string().describe(
2182
- "A hyperlink that goes to the team in the Microsoft Teams client. You get this URL when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed."
2183
- ).nullish(),
2184
- allChannels: z.array(microsoft_graph_channel).describe("List of channels either hosted in or shared with the team (incoming channels).").optional(),
2185
- channels: z.array(microsoft_graph_channel).describe("The collection of channels and messages associated with the team.").optional(),
2186
- group: microsoft_graph_group.describe("[Note: Simplified from 70 properties to 25 most common ones]").optional(),
2187
- incomingChannels: z.array(microsoft_graph_channel).describe("List of channels shared with the team.").optional(),
2188
- installedApps: z.array(microsoft_graph_teamsAppInstallation).describe("The apps installed in this team.").optional(),
2189
- members: z.array(microsoft_graph_conversationMember).describe("Members and owners of the team.").optional(),
2190
- operations: z.array(microsoft_graph_teamsAsyncOperation).describe("The async operations that ran or are running on this team.").optional(),
2191
- permissionGrants: z.array(microsoft_graph_resourceSpecificPermissionGrant).describe("A collection of permissions granted to apps to access the team.").optional()
2192
- }).strict().passthrough();
2167
+ const microsoft_graph_team = z.lazy(
2168
+ () => z.object({
2169
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2170
+ displayName: z.string().describe("The name of the team.").nullish(),
2171
+ description: z.string().describe("An optional description for the team. Maximum length: 1,024 characters.").nullish(),
2172
+ createdDateTime: z.string().regex(
2173
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2174
+ ).datetime({ offset: true }).describe("Timestamp at which the team was created.").nullish(),
2175
+ classification: z.string().describe(
2176
+ "An optional label. Typically describes the data or business sensitivity of the team. Must match one of a preconfigured set in the tenant's directory."
2177
+ ).nullish(),
2178
+ firstChannelName: z.string().describe(
2179
+ "The name of the first channel in the team. This is an optional property, only used during team creation and isn't returned in methods to get and list teams."
2180
+ ).nullish(),
2181
+ funSettings: microsoft_graph_teamFunSettings.optional(),
2182
+ guestSettings: microsoft_graph_teamGuestSettings.optional(),
2183
+ internalId: z.string().describe(
2184
+ "A unique ID for the team that was used in a few places such as the audit log/Office 365 Management Activity API."
2185
+ ).nullish(),
2186
+ isArchived: z.boolean().describe("Whether this team is in read-only mode.").nullish(),
2187
+ memberSettings: microsoft_graph_teamMemberSettings.optional(),
2188
+ messagingSettings: microsoft_graph_teamMessagingSettings.optional(),
2189
+ specialization: microsoft_graph_teamSpecialization.optional(),
2190
+ summary: microsoft_graph_teamSummary.optional(),
2191
+ tenantId: z.string().describe("The ID of the Microsoft Entra tenant.").nullish(),
2192
+ visibility: microsoft_graph_teamVisibilityType.optional(),
2193
+ webUrl: z.string().describe(
2194
+ "A hyperlink that goes to the team in the Microsoft Teams client. You get this URL when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed."
2195
+ ).nullish(),
2196
+ allChannels: z.array(microsoft_graph_channel).describe("List of channels either hosted in or shared with the team (incoming channels).").optional(),
2197
+ channels: z.array(microsoft_graph_channel).describe("The collection of channels and messages associated with the team.").optional(),
2198
+ group: microsoft_graph_group.describe("[Note: Simplified from 70 properties to 25 most common ones]").optional(),
2199
+ incomingChannels: z.array(microsoft_graph_channel).describe("List of channels shared with the team.").optional(),
2200
+ installedApps: z.array(microsoft_graph_teamsAppInstallation).describe("The apps installed in this team.").optional(),
2201
+ members: z.array(microsoft_graph_conversationMember).describe("Members and owners of the team.").optional(),
2202
+ operations: z.array(microsoft_graph_teamsAsyncOperation).describe("The async operations that ran or are running on this team.").optional(),
2203
+ permissionGrants: z.array(microsoft_graph_resourceSpecificPermissionGrant).describe("A collection of permissions granted to apps to access the team.").optional()
2204
+ }).strict().passthrough()
2205
+ );
2193
2206
  const microsoft_graph_teamCollectionResponse = z.object({
2194
2207
  "@odata.count": z.number().int().nullable(),
2195
2208
  "@odata.nextLink": z.string().nullable(),
2196
2209
  value: z.array(microsoft_graph_team)
2197
2210
  }).partial().strict();
2211
+ const microsoft_graph_recipient = z.object({ emailAddress: microsoft_graph_emailAddress.optional() }).strict();
2198
2212
  const microsoft_graph_messageRuleActions = z.object({
2199
2213
  assignCategories: z.array(z.string().nullable()).describe("A list of categories to be assigned to a message.").optional(),
2200
2214
  copyToFolder: z.string().describe("The ID of a folder that a message is to be copied to.").nullish(),
@@ -2323,9 +2337,24 @@ const microsoft_graph_internetMessageHeader = z.object({
2323
2337
  value: z.string().describe("The value in a key-value pair.").nullish()
2324
2338
  }).strict();
2325
2339
  const microsoft_graph_message = z.object({
2340
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2341
+ createdDateTime: z.string().regex(
2342
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2343
+ ).datetime({ offset: true }).describe(
2344
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
2345
+ ).nullish(),
2346
+ lastModifiedDateTime: z.string().regex(
2347
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2348
+ ).datetime({ offset: true }).describe(
2349
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
2350
+ ).nullish(),
2326
2351
  body: microsoft_graph_itemBody.optional(),
2327
2352
  subject: z.string().describe("The subject of the message.").nullish(),
2328
2353
  attachments: z.array(microsoft_graph_attachment).describe("The fileAttachment and itemAttachment attachments for the message.").optional(),
2354
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
2355
+ changeKey: z.string().describe(
2356
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
2357
+ ).nullish(),
2329
2358
  bccRecipients: z.array(microsoft_graph_recipient).describe("The Bcc: recipients for the message.").optional(),
2330
2359
  bodyPreview: z.string().describe("The first 255 characters of the message body. It is in text format.").nullish(),
2331
2360
  ccRecipients: z.array(microsoft_graph_recipient).describe("The Cc: recipients for the message.").optional(),
@@ -2348,20 +2377,7 @@ const microsoft_graph_message = z.object({
2348
2377
  ).nullish(),
2349
2378
  isRead: z.boolean().describe("Indicates whether the message has been read.").nullish(),
2350
2379
  isReadReceiptRequested: z.boolean().describe("Indicates whether a read receipt is requested for the message.").nullish(),
2351
- parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish(),
2352
- receivedDateTime: z.string().regex(
2353
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2354
- ).datetime({ offset: true }).describe(
2355
- "The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
2356
- ).nullish(),
2357
- replyTo: z.array(microsoft_graph_recipient).describe("The email addresses to use when replying.").optional(),
2358
- sender: microsoft_graph_recipient.optional(),
2359
- sentDateTime: z.string().regex(
2360
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2361
- ).datetime({ offset: true }).describe(
2362
- "The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
2363
- ).nullish(),
2364
- toRecipients: z.array(microsoft_graph_recipient).describe("The To: recipients for the message.").optional()
2380
+ parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish()
2365
2381
  }).strict().passthrough();
2366
2382
  const microsoft_graph_mailFolder = z.lazy(
2367
2383
  () => z.object({
@@ -2402,7 +2418,7 @@ const microsoft_graph_attachmentCollectionResponse = z.object({
2402
2418
  }).partial().strict();
2403
2419
  const send_mail_Body = z.object({
2404
2420
  Message: microsoft_graph_message.describe(
2405
- "[Note: Simplified from 30 properties to 25 most common ones]"
2421
+ "[Note: Simplified from 35 properties to 25 most common ones]"
2406
2422
  ),
2407
2423
  SaveToSentItems: z.boolean().nullable().default(false)
2408
2424
  }).partial().strict();
@@ -2448,6 +2464,13 @@ const microsoft_graph_onenotePage = z.lazy(
2448
2464
  );
2449
2465
  const microsoft_graph_onenoteSection = z.lazy(
2450
2466
  () => z.object({
2467
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2468
+ self: z.string().describe("The endpoint where you can get details about the page. Read-only.").nullish(),
2469
+ createdDateTime: z.string().regex(
2470
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2471
+ ).datetime({ offset: true }).describe(
2472
+ "The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only."
2473
+ ).nullish(),
2451
2474
  createdBy: microsoft_graph_identitySet.optional(),
2452
2475
  displayName: z.string().describe("The name of the notebook.").nullish(),
2453
2476
  lastModifiedBy: microsoft_graph_identitySet.optional(),
@@ -2468,6 +2491,13 @@ const microsoft_graph_onenoteSection = z.lazy(
2468
2491
  );
2469
2492
  const microsoft_graph_sectionGroup = z.lazy(
2470
2493
  () => z.object({
2494
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2495
+ self: z.string().describe("The endpoint where you can get details about the page. Read-only.").nullish(),
2496
+ createdDateTime: z.string().regex(
2497
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2498
+ ).datetime({ offset: true }).describe(
2499
+ "The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only."
2500
+ ).nullish(),
2471
2501
  createdBy: microsoft_graph_identitySet.optional(),
2472
2502
  displayName: z.string().describe("The name of the notebook.").nullish(),
2473
2503
  lastModifiedBy: microsoft_graph_identitySet.optional(),
@@ -2490,6 +2520,21 @@ const microsoft_graph_sectionGroup = z.lazy(
2490
2520
  );
2491
2521
  const microsoft_graph_notebook = z.lazy(
2492
2522
  () => z.object({
2523
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
2524
+ self: z.string().describe("The endpoint where you can get details about the page. Read-only.").nullish(),
2525
+ createdDateTime: z.string().regex(
2526
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2527
+ ).datetime({ offset: true }).describe(
2528
+ "The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only."
2529
+ ).nullish(),
2530
+ createdBy: microsoft_graph_identitySet.optional(),
2531
+ displayName: z.string().describe("The name of the notebook.").nullish(),
2532
+ lastModifiedBy: microsoft_graph_identitySet.optional(),
2533
+ lastModifiedDateTime: z.string().regex(
2534
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
2535
+ ).datetime({ offset: true }).describe(
2536
+ "The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only."
2537
+ ).nullish(),
2493
2538
  isDefault: z.boolean().describe("Indicates whether this is the user's default notebook. Read-only.").nullish(),
2494
2539
  isShared: z.boolean().describe(
2495
2540
  "Indicates whether the notebook is shared. If true, the contents of the notebook can be seen by people other than the owner. Read-only."
@@ -3276,6 +3321,7 @@ const schemas = {
3276
3321
  microsoft_graph_calendarPermission,
3277
3322
  microsoft_graph_eventType,
3278
3323
  microsoft_graph_attachment,
3324
+ microsoft_graph_attendeeType,
3279
3325
  microsoft_graph_dateTimeTimeZone,
3280
3326
  microsoft_graph_timeSlot,
3281
3327
  microsoft_graph_responseType,
@@ -3287,10 +3333,6 @@ const schemas = {
3287
3333
  microsoft_graph_locationType,
3288
3334
  microsoft_graph_locationUniqueIdType,
3289
3335
  microsoft_graph_location,
3290
- microsoft_graph_phoneType,
3291
- microsoft_graph_phone,
3292
- microsoft_graph_onlineMeetingInfo,
3293
- microsoft_graph_recipient,
3294
3336
  microsoft_graph_event,
3295
3337
  microsoft_graph_multiValueLegacyExtendedProperty,
3296
3338
  microsoft_graph_singleValueLegacyExtendedProperty,
@@ -3330,10 +3372,10 @@ const schemas = {
3330
3372
  microsoft_graph_itemActivity,
3331
3373
  microsoft_graph_itemActivityStat,
3332
3374
  microsoft_graph_itemAnalytics,
3375
+ microsoft_graph_publicationFacet,
3376
+ microsoft_graph_fieldValueSet,
3333
3377
  microsoft_graph_documentSetVersionItem,
3334
3378
  microsoft_graph_documentSetVersion,
3335
- microsoft_graph_fieldValueSet,
3336
- microsoft_graph_publicationFacet,
3337
3379
  microsoft_graph_listItemVersion,
3338
3380
  microsoft_graph_listItem,
3339
3381
  microsoft_graph_longRunningOperationStatus,
@@ -3366,6 +3408,7 @@ const schemas = {
3366
3408
  microsoft_graph_teamsAsyncOperation,
3367
3409
  microsoft_graph_team,
3368
3410
  microsoft_graph_teamCollectionResponse,
3411
+ microsoft_graph_recipient,
3369
3412
  microsoft_graph_messageRuleActions,
3370
3413
  microsoft_graph_messageActionFlag,
3371
3414
  microsoft_graph_sensitivity,
@@ -4474,12 +4517,27 @@ const endpoints = makeApi([
4474
4517
  description: `New navigation property`,
4475
4518
  type: "Body",
4476
4519
  schema: z.object({
4520
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
4521
+ createdDateTime: z.string().regex(
4522
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4523
+ ).datetime({ offset: true }).describe(
4524
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4525
+ ).nullish(),
4526
+ lastModifiedDateTime: z.string().regex(
4527
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4528
+ ).datetime({ offset: true }).describe(
4529
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4530
+ ).nullish(),
4477
4531
  type: microsoft_graph_eventType.optional(),
4478
4532
  body: microsoft_graph_itemBody.optional(),
4479
4533
  subject: z.string().describe("The text of the event's subject line.").nullish(),
4480
4534
  attachments: z.array(microsoft_graph_attachment).describe(
4481
4535
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
4482
4536
  ).optional(),
4537
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
4538
+ changeKey: z.string().describe(
4539
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
4540
+ ).nullish(),
4483
4541
  allowNewTimeProposals: z.boolean().describe(
4484
4542
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
4485
4543
  ).nullish(),
@@ -4513,16 +4571,7 @@ const endpoints = makeApi([
4513
4571
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
4514
4572
  ).nullish(),
4515
4573
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
4516
- location: microsoft_graph_location.optional(),
4517
- locations: z.array(microsoft_graph_location).describe(
4518
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
4519
- ).optional(),
4520
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
4521
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
4522
- onlineMeetingUrl: z.string().describe(
4523
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
4524
- ).nullish(),
4525
- organizer: microsoft_graph_recipient.optional()
4574
+ location: microsoft_graph_location.optional()
4526
4575
  }).strict().passthrough()
4527
4576
  }
4528
4577
  ],
@@ -4532,12 +4581,27 @@ const endpoints = makeApi([
4532
4581
  status: NaN,
4533
4582
  description: `Created navigation property.`,
4534
4583
  schema: z.object({
4584
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
4585
+ createdDateTime: z.string().regex(
4586
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4587
+ ).datetime({ offset: true }).describe(
4588
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4589
+ ).nullish(),
4590
+ lastModifiedDateTime: z.string().regex(
4591
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4592
+ ).datetime({ offset: true }).describe(
4593
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4594
+ ).nullish(),
4535
4595
  type: microsoft_graph_eventType.optional(),
4536
4596
  body: microsoft_graph_itemBody.optional(),
4537
4597
  subject: z.string().describe("The text of the event's subject line.").nullish(),
4538
4598
  attachments: z.array(microsoft_graph_attachment).describe(
4539
4599
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
4540
4600
  ).optional(),
4601
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
4602
+ changeKey: z.string().describe(
4603
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
4604
+ ).nullish(),
4541
4605
  allowNewTimeProposals: z.boolean().describe(
4542
4606
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
4543
4607
  ).nullish(),
@@ -4571,16 +4635,7 @@ const endpoints = makeApi([
4571
4635
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
4572
4636
  ).nullish(),
4573
4637
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
4574
- location: microsoft_graph_location.optional(),
4575
- locations: z.array(microsoft_graph_location).describe(
4576
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
4577
- ).optional(),
4578
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
4579
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
4580
- onlineMeetingUrl: z.string().describe(
4581
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
4582
- ).nullish(),
4583
- organizer: microsoft_graph_recipient.optional()
4638
+ location: microsoft_graph_location.optional()
4584
4639
  }).strict().passthrough()
4585
4640
  },
4586
4641
  {
@@ -4619,12 +4674,27 @@ const endpoints = makeApi([
4619
4674
  status: NaN,
4620
4675
  description: `Retrieved navigation property`,
4621
4676
  schema: z.object({
4677
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
4678
+ createdDateTime: z.string().regex(
4679
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4680
+ ).datetime({ offset: true }).describe(
4681
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4682
+ ).nullish(),
4683
+ lastModifiedDateTime: z.string().regex(
4684
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4685
+ ).datetime({ offset: true }).describe(
4686
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4687
+ ).nullish(),
4622
4688
  type: microsoft_graph_eventType.optional(),
4623
4689
  body: microsoft_graph_itemBody.optional(),
4624
4690
  subject: z.string().describe("The text of the event's subject line.").nullish(),
4625
4691
  attachments: z.array(microsoft_graph_attachment).describe(
4626
4692
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
4627
4693
  ).optional(),
4694
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
4695
+ changeKey: z.string().describe(
4696
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
4697
+ ).nullish(),
4628
4698
  allowNewTimeProposals: z.boolean().describe(
4629
4699
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
4630
4700
  ).nullish(),
@@ -4658,16 +4728,7 @@ const endpoints = makeApi([
4658
4728
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
4659
4729
  ).nullish(),
4660
4730
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
4661
- location: microsoft_graph_location.optional(),
4662
- locations: z.array(microsoft_graph_location).describe(
4663
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
4664
- ).optional(),
4665
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
4666
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
4667
- onlineMeetingUrl: z.string().describe(
4668
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
4669
- ).nullish(),
4670
- organizer: microsoft_graph_recipient.optional()
4731
+ location: microsoft_graph_location.optional()
4671
4732
  }).strict().passthrough()
4672
4733
  },
4673
4734
  {
@@ -4694,12 +4755,27 @@ const endpoints = makeApi([
4694
4755
  description: `New navigation property values`,
4695
4756
  type: "Body",
4696
4757
  schema: z.object({
4758
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
4759
+ createdDateTime: z.string().regex(
4760
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4761
+ ).datetime({ offset: true }).describe(
4762
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4763
+ ).nullish(),
4764
+ lastModifiedDateTime: z.string().regex(
4765
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4766
+ ).datetime({ offset: true }).describe(
4767
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4768
+ ).nullish(),
4697
4769
  type: microsoft_graph_eventType.optional(),
4698
4770
  body: microsoft_graph_itemBody.optional(),
4699
4771
  subject: z.string().describe("The text of the event's subject line.").nullish(),
4700
4772
  attachments: z.array(microsoft_graph_attachment).describe(
4701
4773
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
4702
4774
  ).optional(),
4775
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
4776
+ changeKey: z.string().describe(
4777
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
4778
+ ).nullish(),
4703
4779
  allowNewTimeProposals: z.boolean().describe(
4704
4780
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
4705
4781
  ).nullish(),
@@ -4733,16 +4809,7 @@ const endpoints = makeApi([
4733
4809
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
4734
4810
  ).nullish(),
4735
4811
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
4736
- location: microsoft_graph_location.optional(),
4737
- locations: z.array(microsoft_graph_location).describe(
4738
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
4739
- ).optional(),
4740
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
4741
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
4742
- onlineMeetingUrl: z.string().describe(
4743
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
4744
- ).nullish(),
4745
- organizer: microsoft_graph_recipient.optional()
4812
+ location: microsoft_graph_location.optional()
4746
4813
  }).strict().passthrough()
4747
4814
  }
4748
4815
  ],
@@ -4752,12 +4819,27 @@ const endpoints = makeApi([
4752
4819
  status: NaN,
4753
4820
  description: `Success`,
4754
4821
  schema: z.object({
4822
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
4823
+ createdDateTime: z.string().regex(
4824
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4825
+ ).datetime({ offset: true }).describe(
4826
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4827
+ ).nullish(),
4828
+ lastModifiedDateTime: z.string().regex(
4829
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
4830
+ ).datetime({ offset: true }).describe(
4831
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
4832
+ ).nullish(),
4755
4833
  type: microsoft_graph_eventType.optional(),
4756
4834
  body: microsoft_graph_itemBody.optional(),
4757
4835
  subject: z.string().describe("The text of the event's subject line.").nullish(),
4758
4836
  attachments: z.array(microsoft_graph_attachment).describe(
4759
4837
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
4760
4838
  ).optional(),
4839
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
4840
+ changeKey: z.string().describe(
4841
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
4842
+ ).nullish(),
4761
4843
  allowNewTimeProposals: z.boolean().describe(
4762
4844
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
4763
4845
  ).nullish(),
@@ -4791,16 +4873,7 @@ const endpoints = makeApi([
4791
4873
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
4792
4874
  ).nullish(),
4793
4875
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
4794
- location: microsoft_graph_location.optional(),
4795
- locations: z.array(microsoft_graph_location).describe(
4796
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
4797
- ).optional(),
4798
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
4799
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
4800
- onlineMeetingUrl: z.string().describe(
4801
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
4802
- ).nullish(),
4803
- organizer: microsoft_graph_recipient.optional()
4876
+ location: microsoft_graph_location.optional()
4804
4877
  }).strict().passthrough()
4805
4878
  },
4806
4879
  {
@@ -5070,10 +5143,25 @@ or from some other calendar of the user.`,
5070
5143
  description: `New navigation property`,
5071
5144
  type: "Body",
5072
5145
  schema: z.object({
5146
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5073
5147
  displayName: z.string().describe(
5074
5148
  "The contact's display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation."
5075
5149
  ).nullish(),
5150
+ createdDateTime: z.string().regex(
5151
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5152
+ ).datetime({ offset: true }).describe(
5153
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5154
+ ).nullish(),
5155
+ lastModifiedDateTime: z.string().regex(
5156
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5157
+ ).datetime({ offset: true }).describe(
5158
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5159
+ ).nullish(),
5076
5160
  title: z.string().describe("The contact's title.").nullish(),
5161
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5162
+ changeKey: z.string().describe(
5163
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5164
+ ).nullish(),
5077
5165
  assistantName: z.string().describe("The name of the contact's assistant.").nullish(),
5078
5166
  birthday: z.string().regex(
5079
5167
  /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
@@ -5095,12 +5183,7 @@ or from some other calendar of the user.`,
5095
5183
  imAddresses: z.array(z.string().nullable()).describe("The contact's instant messaging (IM) addresses.").optional(),
5096
5184
  initials: z.string().describe("The contact's initials.").nullish(),
5097
5185
  jobTitle: z.string().describe("The contact\u2019s job title.").nullish(),
5098
- manager: z.string().describe("The name of the contact's manager.").nullish(),
5099
- middleName: z.string().describe("The contact's middle name.").nullish(),
5100
- mobilePhone: z.string().describe("The contact's mobile phone number.").nullish(),
5101
- nickName: z.string().describe("The contact's nickname.").nullish(),
5102
- officeLocation: z.string().describe("The location of the contact's office.").nullish(),
5103
- otherAddress: microsoft_graph_physicalAddress.optional()
5186
+ manager: z.string().describe("The name of the contact's manager.").nullish()
5104
5187
  }).strict().passthrough()
5105
5188
  }
5106
5189
  ],
@@ -5110,10 +5193,25 @@ or from some other calendar of the user.`,
5110
5193
  status: NaN,
5111
5194
  description: `Created navigation property.`,
5112
5195
  schema: z.object({
5196
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5113
5197
  displayName: z.string().describe(
5114
5198
  "The contact's display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation."
5115
5199
  ).nullish(),
5200
+ createdDateTime: z.string().regex(
5201
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5202
+ ).datetime({ offset: true }).describe(
5203
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5204
+ ).nullish(),
5205
+ lastModifiedDateTime: z.string().regex(
5206
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5207
+ ).datetime({ offset: true }).describe(
5208
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5209
+ ).nullish(),
5116
5210
  title: z.string().describe("The contact's title.").nullish(),
5211
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5212
+ changeKey: z.string().describe(
5213
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5214
+ ).nullish(),
5117
5215
  assistantName: z.string().describe("The name of the contact's assistant.").nullish(),
5118
5216
  birthday: z.string().regex(
5119
5217
  /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
@@ -5135,12 +5233,7 @@ or from some other calendar of the user.`,
5135
5233
  imAddresses: z.array(z.string().nullable()).describe("The contact's instant messaging (IM) addresses.").optional(),
5136
5234
  initials: z.string().describe("The contact's initials.").nullish(),
5137
5235
  jobTitle: z.string().describe("The contact\u2019s job title.").nullish(),
5138
- manager: z.string().describe("The name of the contact's manager.").nullish(),
5139
- middleName: z.string().describe("The contact's middle name.").nullish(),
5140
- mobilePhone: z.string().describe("The contact's mobile phone number.").nullish(),
5141
- nickName: z.string().describe("The contact's nickname.").nullish(),
5142
- officeLocation: z.string().describe("The location of the contact's office.").nullish(),
5143
- otherAddress: microsoft_graph_physicalAddress.optional()
5236
+ manager: z.string().describe("The name of the contact's manager.").nullish()
5144
5237
  }).strict().passthrough()
5145
5238
  },
5146
5239
  {
@@ -5179,10 +5272,25 @@ or from some other calendar of the user.`,
5179
5272
  status: NaN,
5180
5273
  description: `Retrieved navigation property`,
5181
5274
  schema: z.object({
5275
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5182
5276
  displayName: z.string().describe(
5183
5277
  "The contact's display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation."
5184
5278
  ).nullish(),
5279
+ createdDateTime: z.string().regex(
5280
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5281
+ ).datetime({ offset: true }).describe(
5282
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5283
+ ).nullish(),
5284
+ lastModifiedDateTime: z.string().regex(
5285
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5286
+ ).datetime({ offset: true }).describe(
5287
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5288
+ ).nullish(),
5185
5289
  title: z.string().describe("The contact's title.").nullish(),
5290
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5291
+ changeKey: z.string().describe(
5292
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5293
+ ).nullish(),
5186
5294
  assistantName: z.string().describe("The name of the contact's assistant.").nullish(),
5187
5295
  birthday: z.string().regex(
5188
5296
  /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
@@ -5204,12 +5312,7 @@ or from some other calendar of the user.`,
5204
5312
  imAddresses: z.array(z.string().nullable()).describe("The contact's instant messaging (IM) addresses.").optional(),
5205
5313
  initials: z.string().describe("The contact's initials.").nullish(),
5206
5314
  jobTitle: z.string().describe("The contact\u2019s job title.").nullish(),
5207
- manager: z.string().describe("The name of the contact's manager.").nullish(),
5208
- middleName: z.string().describe("The contact's middle name.").nullish(),
5209
- mobilePhone: z.string().describe("The contact's mobile phone number.").nullish(),
5210
- nickName: z.string().describe("The contact's nickname.").nullish(),
5211
- officeLocation: z.string().describe("The location of the contact's office.").nullish(),
5212
- otherAddress: microsoft_graph_physicalAddress.optional()
5315
+ manager: z.string().describe("The name of the contact's manager.").nullish()
5213
5316
  }).strict().passthrough()
5214
5317
  },
5215
5318
  {
@@ -5236,10 +5339,25 @@ or from some other calendar of the user.`,
5236
5339
  description: `New navigation property values`,
5237
5340
  type: "Body",
5238
5341
  schema: z.object({
5342
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5239
5343
  displayName: z.string().describe(
5240
5344
  "The contact's display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation."
5241
5345
  ).nullish(),
5346
+ createdDateTime: z.string().regex(
5347
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5348
+ ).datetime({ offset: true }).describe(
5349
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5350
+ ).nullish(),
5351
+ lastModifiedDateTime: z.string().regex(
5352
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5353
+ ).datetime({ offset: true }).describe(
5354
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5355
+ ).nullish(),
5242
5356
  title: z.string().describe("The contact's title.").nullish(),
5357
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5358
+ changeKey: z.string().describe(
5359
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5360
+ ).nullish(),
5243
5361
  assistantName: z.string().describe("The name of the contact's assistant.").nullish(),
5244
5362
  birthday: z.string().regex(
5245
5363
  /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
@@ -5261,12 +5379,7 @@ or from some other calendar of the user.`,
5261
5379
  imAddresses: z.array(z.string().nullable()).describe("The contact's instant messaging (IM) addresses.").optional(),
5262
5380
  initials: z.string().describe("The contact's initials.").nullish(),
5263
5381
  jobTitle: z.string().describe("The contact\u2019s job title.").nullish(),
5264
- manager: z.string().describe("The name of the contact's manager.").nullish(),
5265
- middleName: z.string().describe("The contact's middle name.").nullish(),
5266
- mobilePhone: z.string().describe("The contact's mobile phone number.").nullish(),
5267
- nickName: z.string().describe("The contact's nickname.").nullish(),
5268
- officeLocation: z.string().describe("The location of the contact's office.").nullish(),
5269
- otherAddress: microsoft_graph_physicalAddress.optional()
5382
+ manager: z.string().describe("The name of the contact's manager.").nullish()
5270
5383
  }).strict().passthrough()
5271
5384
  }
5272
5385
  ],
@@ -5276,10 +5389,25 @@ or from some other calendar of the user.`,
5276
5389
  status: NaN,
5277
5390
  description: `Success`,
5278
5391
  schema: z.object({
5392
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5279
5393
  displayName: z.string().describe(
5280
5394
  "The contact's display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation."
5281
5395
  ).nullish(),
5396
+ createdDateTime: z.string().regex(
5397
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5398
+ ).datetime({ offset: true }).describe(
5399
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5400
+ ).nullish(),
5401
+ lastModifiedDateTime: z.string().regex(
5402
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5403
+ ).datetime({ offset: true }).describe(
5404
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5405
+ ).nullish(),
5282
5406
  title: z.string().describe("The contact's title.").nullish(),
5407
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5408
+ changeKey: z.string().describe(
5409
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5410
+ ).nullish(),
5283
5411
  assistantName: z.string().describe("The name of the contact's assistant.").nullish(),
5284
5412
  birthday: z.string().regex(
5285
5413
  /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
@@ -5301,12 +5429,7 @@ or from some other calendar of the user.`,
5301
5429
  imAddresses: z.array(z.string().nullable()).describe("The contact's instant messaging (IM) addresses.").optional(),
5302
5430
  initials: z.string().describe("The contact's initials.").nullish(),
5303
5431
  jobTitle: z.string().describe("The contact\u2019s job title.").nullish(),
5304
- manager: z.string().describe("The name of the contact's manager.").nullish(),
5305
- middleName: z.string().describe("The contact's middle name.").nullish(),
5306
- mobilePhone: z.string().describe("The contact's mobile phone number.").nullish(),
5307
- nickName: z.string().describe("The contact's nickname.").nullish(),
5308
- officeLocation: z.string().describe("The location of the contact's office.").nullish(),
5309
- otherAddress: microsoft_graph_physicalAddress.optional()
5432
+ manager: z.string().describe("The name of the contact's manager.").nullish()
5310
5433
  }).strict().passthrough()
5311
5434
  },
5312
5435
  {
@@ -5502,12 +5625,27 @@ or their delegates can book a private meeting room. If you're organizing an
5502
5625
  description: `New navigation property`,
5503
5626
  type: "Body",
5504
5627
  schema: z.object({
5628
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5629
+ createdDateTime: z.string().regex(
5630
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5631
+ ).datetime({ offset: true }).describe(
5632
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5633
+ ).nullish(),
5634
+ lastModifiedDateTime: z.string().regex(
5635
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5636
+ ).datetime({ offset: true }).describe(
5637
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5638
+ ).nullish(),
5505
5639
  type: microsoft_graph_eventType.optional(),
5506
5640
  body: microsoft_graph_itemBody.optional(),
5507
5641
  subject: z.string().describe("The text of the event's subject line.").nullish(),
5508
5642
  attachments: z.array(microsoft_graph_attachment).describe(
5509
5643
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
5510
5644
  ).optional(),
5645
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5646
+ changeKey: z.string().describe(
5647
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5648
+ ).nullish(),
5511
5649
  allowNewTimeProposals: z.boolean().describe(
5512
5650
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
5513
5651
  ).nullish(),
@@ -5541,16 +5679,7 @@ or their delegates can book a private meeting room. If you're organizing an
5541
5679
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
5542
5680
  ).nullish(),
5543
5681
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
5544
- location: microsoft_graph_location.optional(),
5545
- locations: z.array(microsoft_graph_location).describe(
5546
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
5547
- ).optional(),
5548
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
5549
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
5550
- onlineMeetingUrl: z.string().describe(
5551
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
5552
- ).nullish(),
5553
- organizer: microsoft_graph_recipient.optional()
5682
+ location: microsoft_graph_location.optional()
5554
5683
  }).strict().passthrough()
5555
5684
  }
5556
5685
  ],
@@ -5560,12 +5689,27 @@ or their delegates can book a private meeting room. If you're organizing an
5560
5689
  status: NaN,
5561
5690
  description: `Created navigation property.`,
5562
5691
  schema: z.object({
5692
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5693
+ createdDateTime: z.string().regex(
5694
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5695
+ ).datetime({ offset: true }).describe(
5696
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5697
+ ).nullish(),
5698
+ lastModifiedDateTime: z.string().regex(
5699
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5700
+ ).datetime({ offset: true }).describe(
5701
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5702
+ ).nullish(),
5563
5703
  type: microsoft_graph_eventType.optional(),
5564
5704
  body: microsoft_graph_itemBody.optional(),
5565
5705
  subject: z.string().describe("The text of the event's subject line.").nullish(),
5566
5706
  attachments: z.array(microsoft_graph_attachment).describe(
5567
5707
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
5568
5708
  ).optional(),
5709
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5710
+ changeKey: z.string().describe(
5711
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5712
+ ).nullish(),
5569
5713
  allowNewTimeProposals: z.boolean().describe(
5570
5714
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
5571
5715
  ).nullish(),
@@ -5599,16 +5743,7 @@ or their delegates can book a private meeting room. If you're organizing an
5599
5743
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
5600
5744
  ).nullish(),
5601
5745
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
5602
- location: microsoft_graph_location.optional(),
5603
- locations: z.array(microsoft_graph_location).describe(
5604
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
5605
- ).optional(),
5606
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
5607
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
5608
- onlineMeetingUrl: z.string().describe(
5609
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
5610
- ).nullish(),
5611
- organizer: microsoft_graph_recipient.optional()
5746
+ location: microsoft_graph_location.optional()
5612
5747
  }).strict().passthrough()
5613
5748
  },
5614
5749
  {
@@ -5647,12 +5782,27 @@ or their delegates can book a private meeting room. If you're organizing an
5647
5782
  status: NaN,
5648
5783
  description: `Retrieved navigation property`,
5649
5784
  schema: z.object({
5785
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5786
+ createdDateTime: z.string().regex(
5787
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5788
+ ).datetime({ offset: true }).describe(
5789
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5790
+ ).nullish(),
5791
+ lastModifiedDateTime: z.string().regex(
5792
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5793
+ ).datetime({ offset: true }).describe(
5794
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5795
+ ).nullish(),
5650
5796
  type: microsoft_graph_eventType.optional(),
5651
5797
  body: microsoft_graph_itemBody.optional(),
5652
5798
  subject: z.string().describe("The text of the event's subject line.").nullish(),
5653
5799
  attachments: z.array(microsoft_graph_attachment).describe(
5654
5800
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
5655
5801
  ).optional(),
5802
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5803
+ changeKey: z.string().describe(
5804
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5805
+ ).nullish(),
5656
5806
  allowNewTimeProposals: z.boolean().describe(
5657
5807
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
5658
5808
  ).nullish(),
@@ -5686,16 +5836,7 @@ or their delegates can book a private meeting room. If you're organizing an
5686
5836
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
5687
5837
  ).nullish(),
5688
5838
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
5689
- location: microsoft_graph_location.optional(),
5690
- locations: z.array(microsoft_graph_location).describe(
5691
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
5692
- ).optional(),
5693
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
5694
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
5695
- onlineMeetingUrl: z.string().describe(
5696
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
5697
- ).nullish(),
5698
- organizer: microsoft_graph_recipient.optional()
5839
+ location: microsoft_graph_location.optional()
5699
5840
  }).strict().passthrough()
5700
5841
  },
5701
5842
  {
@@ -5722,12 +5863,27 @@ or their delegates can book a private meeting room. If you're organizing an
5722
5863
  description: `New navigation property values`,
5723
5864
  type: "Body",
5724
5865
  schema: z.object({
5866
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5867
+ createdDateTime: z.string().regex(
5868
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5869
+ ).datetime({ offset: true }).describe(
5870
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5871
+ ).nullish(),
5872
+ lastModifiedDateTime: z.string().regex(
5873
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5874
+ ).datetime({ offset: true }).describe(
5875
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5876
+ ).nullish(),
5725
5877
  type: microsoft_graph_eventType.optional(),
5726
5878
  body: microsoft_graph_itemBody.optional(),
5727
5879
  subject: z.string().describe("The text of the event's subject line.").nullish(),
5728
5880
  attachments: z.array(microsoft_graph_attachment).describe(
5729
5881
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
5730
5882
  ).optional(),
5883
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5884
+ changeKey: z.string().describe(
5885
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5886
+ ).nullish(),
5731
5887
  allowNewTimeProposals: z.boolean().describe(
5732
5888
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
5733
5889
  ).nullish(),
@@ -5761,16 +5917,7 @@ or their delegates can book a private meeting room. If you're organizing an
5761
5917
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
5762
5918
  ).nullish(),
5763
5919
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
5764
- location: microsoft_graph_location.optional(),
5765
- locations: z.array(microsoft_graph_location).describe(
5766
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
5767
- ).optional(),
5768
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
5769
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
5770
- onlineMeetingUrl: z.string().describe(
5771
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
5772
- ).nullish(),
5773
- organizer: microsoft_graph_recipient.optional()
5920
+ location: microsoft_graph_location.optional()
5774
5921
  }).strict().passthrough()
5775
5922
  }
5776
5923
  ],
@@ -5780,12 +5927,27 @@ or their delegates can book a private meeting room. If you're organizing an
5780
5927
  status: NaN,
5781
5928
  description: `Success`,
5782
5929
  schema: z.object({
5930
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
5931
+ createdDateTime: z.string().regex(
5932
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5933
+ ).datetime({ offset: true }).describe(
5934
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5935
+ ).nullish(),
5936
+ lastModifiedDateTime: z.string().regex(
5937
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
5938
+ ).datetime({ offset: true }).describe(
5939
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
5940
+ ).nullish(),
5783
5941
  type: microsoft_graph_eventType.optional(),
5784
5942
  body: microsoft_graph_itemBody.optional(),
5785
5943
  subject: z.string().describe("The text of the event's subject line.").nullish(),
5786
5944
  attachments: z.array(microsoft_graph_attachment).describe(
5787
5945
  "The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable."
5788
5946
  ).optional(),
5947
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
5948
+ changeKey: z.string().describe(
5949
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
5950
+ ).nullish(),
5789
5951
  allowNewTimeProposals: z.boolean().describe(
5790
5952
  "true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true."
5791
5953
  ).nullish(),
@@ -5819,16 +5981,7 @@ or their delegates can book a private meeting room. If you're organizing an
5819
5981
  "Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner."
5820
5982
  ).nullish(),
5821
5983
  isReminderOn: z.boolean().describe("Set to true if an alert is set to remind the user of the event.").nullish(),
5822
- location: microsoft_graph_location.optional(),
5823
- locations: z.array(microsoft_graph_location).describe(
5824
- "The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value."
5825
- ).optional(),
5826
- onlineMeeting: microsoft_graph_onlineMeetingInfo.optional(),
5827
- onlineMeetingProvider: microsoft_graph_onlineMeetingProviderType.optional(),
5828
- onlineMeetingUrl: z.string().describe(
5829
- "A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future."
5830
- ).nullish(),
5831
- organizer: microsoft_graph_recipient.optional()
5984
+ location: microsoft_graph_location.optional()
5832
5985
  }).strict().passthrough()
5833
5986
  },
5834
5987
  {
@@ -6160,9 +6313,24 @@ or their delegates can book a private meeting room. If you're organizing an
6160
6313
  description: `New navigation property`,
6161
6314
  type: "Body",
6162
6315
  schema: z.object({
6316
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
6317
+ createdDateTime: z.string().regex(
6318
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6319
+ ).datetime({ offset: true }).describe(
6320
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6321
+ ).nullish(),
6322
+ lastModifiedDateTime: z.string().regex(
6323
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6324
+ ).datetime({ offset: true }).describe(
6325
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6326
+ ).nullish(),
6163
6327
  body: microsoft_graph_itemBody.optional(),
6164
6328
  subject: z.string().describe("The subject of the message.").nullish(),
6165
6329
  attachments: z.array(microsoft_graph_attachment).describe("The fileAttachment and itemAttachment attachments for the message.").optional(),
6330
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
6331
+ changeKey: z.string().describe(
6332
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
6333
+ ).nullish(),
6166
6334
  bccRecipients: z.array(microsoft_graph_recipient).describe("The Bcc: recipients for the message.").optional(),
6167
6335
  bodyPreview: z.string().describe("The first 255 characters of the message body. It is in text format.").nullish(),
6168
6336
  ccRecipients: z.array(microsoft_graph_recipient).describe("The Cc: recipients for the message.").optional(),
@@ -6185,20 +6353,7 @@ or their delegates can book a private meeting room. If you're organizing an
6185
6353
  ).nullish(),
6186
6354
  isRead: z.boolean().describe("Indicates whether the message has been read.").nullish(),
6187
6355
  isReadReceiptRequested: z.boolean().describe("Indicates whether a read receipt is requested for the message.").nullish(),
6188
- parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish(),
6189
- receivedDateTime: z.string().regex(
6190
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6191
- ).datetime({ offset: true }).describe(
6192
- "The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6193
- ).nullish(),
6194
- replyTo: z.array(microsoft_graph_recipient).describe("The email addresses to use when replying.").optional(),
6195
- sender: microsoft_graph_recipient.optional(),
6196
- sentDateTime: z.string().regex(
6197
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6198
- ).datetime({ offset: true }).describe(
6199
- "The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6200
- ).nullish(),
6201
- toRecipients: z.array(microsoft_graph_recipient).describe("The To: recipients for the message.").optional()
6356
+ parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish()
6202
6357
  }).strict().passthrough()
6203
6358
  }
6204
6359
  ],
@@ -6208,9 +6363,24 @@ or their delegates can book a private meeting room. If you're organizing an
6208
6363
  status: NaN,
6209
6364
  description: `Created navigation property.`,
6210
6365
  schema: z.object({
6366
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
6367
+ createdDateTime: z.string().regex(
6368
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6369
+ ).datetime({ offset: true }).describe(
6370
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6371
+ ).nullish(),
6372
+ lastModifiedDateTime: z.string().regex(
6373
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6374
+ ).datetime({ offset: true }).describe(
6375
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6376
+ ).nullish(),
6211
6377
  body: microsoft_graph_itemBody.optional(),
6212
6378
  subject: z.string().describe("The subject of the message.").nullish(),
6213
6379
  attachments: z.array(microsoft_graph_attachment).describe("The fileAttachment and itemAttachment attachments for the message.").optional(),
6380
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
6381
+ changeKey: z.string().describe(
6382
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
6383
+ ).nullish(),
6214
6384
  bccRecipients: z.array(microsoft_graph_recipient).describe("The Bcc: recipients for the message.").optional(),
6215
6385
  bodyPreview: z.string().describe("The first 255 characters of the message body. It is in text format.").nullish(),
6216
6386
  ccRecipients: z.array(microsoft_graph_recipient).describe("The Cc: recipients for the message.").optional(),
@@ -6233,20 +6403,7 @@ or their delegates can book a private meeting room. If you're organizing an
6233
6403
  ).nullish(),
6234
6404
  isRead: z.boolean().describe("Indicates whether the message has been read.").nullish(),
6235
6405
  isReadReceiptRequested: z.boolean().describe("Indicates whether a read receipt is requested for the message.").nullish(),
6236
- parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish(),
6237
- receivedDateTime: z.string().regex(
6238
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6239
- ).datetime({ offset: true }).describe(
6240
- "The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6241
- ).nullish(),
6242
- replyTo: z.array(microsoft_graph_recipient).describe("The email addresses to use when replying.").optional(),
6243
- sender: microsoft_graph_recipient.optional(),
6244
- sentDateTime: z.string().regex(
6245
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6246
- ).datetime({ offset: true }).describe(
6247
- "The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6248
- ).nullish(),
6249
- toRecipients: z.array(microsoft_graph_recipient).describe("The To: recipients for the message.").optional()
6406
+ parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish()
6250
6407
  }).strict().passthrough()
6251
6408
  },
6252
6409
  {
@@ -6291,9 +6448,24 @@ open extensions or extended properties, and how to specify extended properties.`
6291
6448
  status: NaN,
6292
6449
  description: `Retrieved navigation property`,
6293
6450
  schema: z.object({
6451
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
6452
+ createdDateTime: z.string().regex(
6453
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6454
+ ).datetime({ offset: true }).describe(
6455
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6456
+ ).nullish(),
6457
+ lastModifiedDateTime: z.string().regex(
6458
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6459
+ ).datetime({ offset: true }).describe(
6460
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6461
+ ).nullish(),
6294
6462
  body: microsoft_graph_itemBody.optional(),
6295
6463
  subject: z.string().describe("The subject of the message.").nullish(),
6296
6464
  attachments: z.array(microsoft_graph_attachment).describe("The fileAttachment and itemAttachment attachments for the message.").optional(),
6465
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
6466
+ changeKey: z.string().describe(
6467
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
6468
+ ).nullish(),
6297
6469
  bccRecipients: z.array(microsoft_graph_recipient).describe("The Bcc: recipients for the message.").optional(),
6298
6470
  bodyPreview: z.string().describe("The first 255 characters of the message body. It is in text format.").nullish(),
6299
6471
  ccRecipients: z.array(microsoft_graph_recipient).describe("The Cc: recipients for the message.").optional(),
@@ -6316,20 +6488,7 @@ open extensions or extended properties, and how to specify extended properties.`
6316
6488
  ).nullish(),
6317
6489
  isRead: z.boolean().describe("Indicates whether the message has been read.").nullish(),
6318
6490
  isReadReceiptRequested: z.boolean().describe("Indicates whether a read receipt is requested for the message.").nullish(),
6319
- parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish(),
6320
- receivedDateTime: z.string().regex(
6321
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6322
- ).datetime({ offset: true }).describe(
6323
- "The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6324
- ).nullish(),
6325
- replyTo: z.array(microsoft_graph_recipient).describe("The email addresses to use when replying.").optional(),
6326
- sender: microsoft_graph_recipient.optional(),
6327
- sentDateTime: z.string().regex(
6328
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6329
- ).datetime({ offset: true }).describe(
6330
- "The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6331
- ).nullish(),
6332
- toRecipients: z.array(microsoft_graph_recipient).describe("The To: recipients for the message.").optional()
6491
+ parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish()
6333
6492
  }).strict().passthrough()
6334
6493
  },
6335
6494
  {
@@ -6556,9 +6715,24 @@ resource.`,
6556
6715
  status: NaN,
6557
6716
  description: `Success`,
6558
6717
  schema: z.object({
6718
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
6719
+ createdDateTime: z.string().regex(
6720
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6721
+ ).datetime({ offset: true }).describe(
6722
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6723
+ ).nullish(),
6724
+ lastModifiedDateTime: z.string().regex(
6725
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6726
+ ).datetime({ offset: true }).describe(
6727
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
6728
+ ).nullish(),
6559
6729
  body: microsoft_graph_itemBody.optional(),
6560
6730
  subject: z.string().describe("The subject of the message.").nullish(),
6561
6731
  attachments: z.array(microsoft_graph_attachment).describe("The fileAttachment and itemAttachment attachments for the message.").optional(),
6732
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
6733
+ changeKey: z.string().describe(
6734
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
6735
+ ).nullish(),
6562
6736
  bccRecipients: z.array(microsoft_graph_recipient).describe("The Bcc: recipients for the message.").optional(),
6563
6737
  bodyPreview: z.string().describe("The first 255 characters of the message body. It is in text format.").nullish(),
6564
6738
  ccRecipients: z.array(microsoft_graph_recipient).describe("The Cc: recipients for the message.").optional(),
@@ -6581,20 +6755,7 @@ resource.`,
6581
6755
  ).nullish(),
6582
6756
  isRead: z.boolean().describe("Indicates whether the message has been read.").nullish(),
6583
6757
  isReadReceiptRequested: z.boolean().describe("Indicates whether a read receipt is requested for the message.").nullish(),
6584
- parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish(),
6585
- receivedDateTime: z.string().regex(
6586
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6587
- ).datetime({ offset: true }).describe(
6588
- "The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6589
- ).nullish(),
6590
- replyTo: z.array(microsoft_graph_recipient).describe("The email addresses to use when replying.").optional(),
6591
- sender: microsoft_graph_recipient.optional(),
6592
- sentDateTime: z.string().regex(
6593
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
6594
- ).datetime({ offset: true }).describe(
6595
- "The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
6596
- ).nullish(),
6597
- toRecipients: z.array(microsoft_graph_recipient).describe("The To: recipients for the message.").optional()
6758
+ parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish()
6598
6759
  }).strict().passthrough()
6599
6760
  },
6600
6761
  {
@@ -9116,9 +9277,24 @@ To monitor future changes, call the delta API by using the @odata.deltaLink in t
9116
9277
  status: NaN,
9117
9278
  description: `Retrieved navigation property`,
9118
9279
  schema: z.object({
9280
+ id: z.string().describe("The unique identifier for an entity. Read-only.").optional(),
9281
+ createdDateTime: z.string().regex(
9282
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
9283
+ ).datetime({ offset: true }).describe(
9284
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
9285
+ ).nullish(),
9286
+ lastModifiedDateTime: z.string().regex(
9287
+ /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
9288
+ ).datetime({ offset: true }).describe(
9289
+ "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z"
9290
+ ).nullish(),
9119
9291
  body: microsoft_graph_itemBody.optional(),
9120
9292
  subject: z.string().describe("The subject of the message.").nullish(),
9121
9293
  attachments: z.array(microsoft_graph_attachment).describe("The fileAttachment and itemAttachment attachments for the message.").optional(),
9294
+ categories: z.array(z.string().nullable()).describe("The categories associated with the item").optional(),
9295
+ changeKey: z.string().describe(
9296
+ "Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only."
9297
+ ).nullish(),
9122
9298
  bccRecipients: z.array(microsoft_graph_recipient).describe("The Bcc: recipients for the message.").optional(),
9123
9299
  bodyPreview: z.string().describe("The first 255 characters of the message body. It is in text format.").nullish(),
9124
9300
  ccRecipients: z.array(microsoft_graph_recipient).describe("The Cc: recipients for the message.").optional(),
@@ -9141,20 +9317,7 @@ To monitor future changes, call the delta API by using the @odata.deltaLink in t
9141
9317
  ).nullish(),
9142
9318
  isRead: z.boolean().describe("Indicates whether the message has been read.").nullish(),
9143
9319
  isReadReceiptRequested: z.boolean().describe("Indicates whether a read receipt is requested for the message.").nullish(),
9144
- parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish(),
9145
- receivedDateTime: z.string().regex(
9146
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
9147
- ).datetime({ offset: true }).describe(
9148
- "The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
9149
- ).nullish(),
9150
- replyTo: z.array(microsoft_graph_recipient).describe("The email addresses to use when replying.").optional(),
9151
- sender: microsoft_graph_recipient.optional(),
9152
- sentDateTime: z.string().regex(
9153
- /^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$/
9154
- ).datetime({ offset: true }).describe(
9155
- "The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z."
9156
- ).nullish(),
9157
- toRecipients: z.array(microsoft_graph_recipient).describe("The To: recipients for the message.").optional()
9320
+ parentFolderId: z.string().describe("The unique identifier for the message's parent mailFolder.").nullish()
9158
9321
  }).strict().passthrough()
9159
9322
  },
9160
9323
  {