@microsoft/msgraph-sdk 1.0.0-preview.57 → 1.0.0-preview.59
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.
- package/models/index.d.ts +88 -136
- package/models/index.d.ts.map +1 -1
- package/models/index.js +8 -38
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +4 -2
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +2 -0
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.d.ts
CHANGED
|
@@ -2180,31 +2180,31 @@ export interface AgreementFileVersionCollectionResponse extends BaseCollectionPa
|
|
|
2180
2180
|
}
|
|
2181
2181
|
export interface AiInteraction extends Entity, Parsable {
|
|
2182
2182
|
/**
|
|
2183
|
-
* The
|
|
2183
|
+
* The data source for Copilot data. For example, IPM.SkypeTeams.Message.Copilot.Excel or IPM.SkypeTeams.Message.Copilot.Loop.
|
|
2184
2184
|
*/
|
|
2185
2185
|
appClass?: string | null;
|
|
2186
2186
|
/**
|
|
2187
|
-
* The
|
|
2187
|
+
* The collection of documents attached to the interaction, such as cards and images.
|
|
2188
2188
|
*/
|
|
2189
2189
|
attachments?: AiInteractionAttachment[] | null;
|
|
2190
2190
|
/**
|
|
2191
|
-
* The body
|
|
2191
|
+
* The body of the message, including the text of the body and its body type.
|
|
2192
2192
|
*/
|
|
2193
2193
|
body?: ItemBody | null;
|
|
2194
2194
|
/**
|
|
2195
|
-
* The contexts
|
|
2195
|
+
* The identifer that maps to all contexts associated with an interaction.
|
|
2196
2196
|
*/
|
|
2197
2197
|
contexts?: AiInteractionContext[] | null;
|
|
2198
2198
|
/**
|
|
2199
|
-
* The
|
|
2199
|
+
* The type of the conversation. For example, appchat or bizchat.
|
|
2200
2200
|
*/
|
|
2201
2201
|
conversationType?: string | null;
|
|
2202
2202
|
/**
|
|
2203
|
-
* The
|
|
2203
|
+
* The time when the interaction was created.
|
|
2204
2204
|
*/
|
|
2205
2205
|
createdDateTime?: Date | null;
|
|
2206
2206
|
/**
|
|
2207
|
-
* The
|
|
2207
|
+
* The timestamp of when the interaction was last modified.
|
|
2208
2208
|
*/
|
|
2209
2209
|
etag?: string | null;
|
|
2210
2210
|
/**
|
|
@@ -2216,139 +2216,91 @@ export interface AiInteraction extends Entity, Parsable {
|
|
|
2216
2216
|
*/
|
|
2217
2217
|
interactionType?: AiInteractionType | null;
|
|
2218
2218
|
/**
|
|
2219
|
-
* The links
|
|
2219
|
+
* The collection of links that appear in the interaction.
|
|
2220
2220
|
*/
|
|
2221
2221
|
links?: AiInteractionLink[] | null;
|
|
2222
2222
|
/**
|
|
2223
|
-
* The locale
|
|
2223
|
+
* The locale of the sender.
|
|
2224
2224
|
*/
|
|
2225
2225
|
locale?: string | null;
|
|
2226
2226
|
/**
|
|
2227
|
-
* The
|
|
2227
|
+
* The collection of the entities that were mentioned in the interaction, including users, bots, and so on.
|
|
2228
2228
|
*/
|
|
2229
2229
|
mentions?: AiInteractionMention[] | null;
|
|
2230
2230
|
/**
|
|
2231
|
-
* The
|
|
2231
|
+
* The identifier that groups a user prompt with its Copilot response.
|
|
2232
2232
|
*/
|
|
2233
2233
|
requestId?: string | null;
|
|
2234
2234
|
/**
|
|
2235
|
-
* The
|
|
2235
|
+
* The thread ID or conversation identifier that maps to all Copilot sessions for the user.
|
|
2236
2236
|
*/
|
|
2237
2237
|
sessionId?: string | null;
|
|
2238
2238
|
}
|
|
2239
|
-
export interface AiInteractionAttachment extends
|
|
2240
|
-
/**
|
|
2241
|
-
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2242
|
-
*/
|
|
2243
|
-
additionalData?: Record<string, unknown>;
|
|
2239
|
+
export interface AiInteractionAttachment extends Entity, Parsable {
|
|
2244
2240
|
/**
|
|
2245
|
-
* The
|
|
2241
|
+
* The identifier for the attachment. This identifier is only unique within the message scope.
|
|
2246
2242
|
*/
|
|
2247
2243
|
attachmentId?: string | null;
|
|
2248
2244
|
/**
|
|
2249
|
-
*
|
|
2250
|
-
*/
|
|
2251
|
-
backingStoreEnabled?: boolean | null;
|
|
2252
|
-
/**
|
|
2253
|
-
* The content property
|
|
2245
|
+
* The content of the attachment.
|
|
2254
2246
|
*/
|
|
2255
2247
|
content?: string | null;
|
|
2256
2248
|
/**
|
|
2257
|
-
* The
|
|
2249
|
+
* The type of the content. For example, reference, file, and image/imageType.
|
|
2258
2250
|
*/
|
|
2259
2251
|
contentType?: string | null;
|
|
2260
2252
|
/**
|
|
2261
|
-
* The
|
|
2253
|
+
* The URL of the content.
|
|
2262
2254
|
*/
|
|
2263
2255
|
contentUrl?: string | null;
|
|
2264
2256
|
/**
|
|
2265
|
-
* The name
|
|
2257
|
+
* The name of the attachment.
|
|
2266
2258
|
*/
|
|
2267
2259
|
name?: string | null;
|
|
2268
|
-
/**
|
|
2269
|
-
* The OdataType property
|
|
2270
|
-
*/
|
|
2271
|
-
odataType?: string | null;
|
|
2272
2260
|
}
|
|
2273
|
-
export interface AiInteractionContext extends
|
|
2261
|
+
export interface AiInteractionContext extends Entity, Parsable {
|
|
2274
2262
|
/**
|
|
2275
|
-
*
|
|
2276
|
-
*/
|
|
2277
|
-
additionalData?: Record<string, unknown>;
|
|
2278
|
-
/**
|
|
2279
|
-
* Stores model information.
|
|
2280
|
-
*/
|
|
2281
|
-
backingStoreEnabled?: boolean | null;
|
|
2282
|
-
/**
|
|
2283
|
-
* The contextReference property
|
|
2263
|
+
* The full file URL where the interaction happened.
|
|
2284
2264
|
*/
|
|
2285
2265
|
contextReference?: string | null;
|
|
2286
2266
|
/**
|
|
2287
|
-
* The
|
|
2267
|
+
* The type of the file.
|
|
2288
2268
|
*/
|
|
2289
2269
|
contextType?: string | null;
|
|
2290
2270
|
/**
|
|
2291
|
-
* The
|
|
2271
|
+
* The name of the file.
|
|
2292
2272
|
*/
|
|
2293
2273
|
displayName?: string | null;
|
|
2294
|
-
/**
|
|
2295
|
-
* The OdataType property
|
|
2296
|
-
*/
|
|
2297
|
-
odataType?: string | null;
|
|
2298
2274
|
}
|
|
2299
2275
|
export interface AiInteractionHistory extends Entity, Parsable {
|
|
2300
2276
|
}
|
|
2301
|
-
export interface AiInteractionLink extends
|
|
2277
|
+
export interface AiInteractionLink extends Entity, Parsable {
|
|
2302
2278
|
/**
|
|
2303
|
-
*
|
|
2304
|
-
*/
|
|
2305
|
-
additionalData?: Record<string, unknown>;
|
|
2306
|
-
/**
|
|
2307
|
-
* Stores model information.
|
|
2308
|
-
*/
|
|
2309
|
-
backingStoreEnabled?: boolean | null;
|
|
2310
|
-
/**
|
|
2311
|
-
* The displayName property
|
|
2279
|
+
* The name of the link.
|
|
2312
2280
|
*/
|
|
2313
2281
|
displayName?: string | null;
|
|
2314
2282
|
/**
|
|
2315
|
-
*
|
|
2283
|
+
* Information about a link in an app chat or Business Chat (BizChat) interaction.
|
|
2316
2284
|
*/
|
|
2317
2285
|
linkType?: string | null;
|
|
2318
2286
|
/**
|
|
2319
|
-
* The
|
|
2287
|
+
* The URL of the link.
|
|
2320
2288
|
*/
|
|
2321
2289
|
linkUrl?: string | null;
|
|
2322
|
-
/**
|
|
2323
|
-
* The OdataType property
|
|
2324
|
-
*/
|
|
2325
|
-
odataType?: string | null;
|
|
2326
2290
|
}
|
|
2327
|
-
export interface AiInteractionMention extends
|
|
2291
|
+
export interface AiInteractionMention extends Entity, Parsable {
|
|
2328
2292
|
/**
|
|
2329
|
-
*
|
|
2330
|
-
*/
|
|
2331
|
-
additionalData?: Record<string, unknown>;
|
|
2332
|
-
/**
|
|
2333
|
-
* Stores model information.
|
|
2334
|
-
*/
|
|
2335
|
-
backingStoreEnabled?: boolean | null;
|
|
2336
|
-
/**
|
|
2337
|
-
* The mentioned property
|
|
2293
|
+
* The entity mentioned in the message.
|
|
2338
2294
|
*/
|
|
2339
2295
|
mentioned?: AiInteractionMentionedIdentitySet | null;
|
|
2340
2296
|
/**
|
|
2341
|
-
* The
|
|
2297
|
+
* The identifier for the mention.
|
|
2342
2298
|
*/
|
|
2343
2299
|
mentionId?: number | null;
|
|
2344
2300
|
/**
|
|
2345
|
-
* The
|
|
2301
|
+
* The text mentioned in the message.
|
|
2346
2302
|
*/
|
|
2347
2303
|
mentionText?: string | null;
|
|
2348
|
-
/**
|
|
2349
|
-
* The OdataType property
|
|
2350
|
-
*/
|
|
2351
|
-
odataType?: string | null;
|
|
2352
2304
|
}
|
|
2353
2305
|
export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable {
|
|
2354
2306
|
/**
|
|
@@ -2356,7 +2308,7 @@ export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable
|
|
|
2356
2308
|
*/
|
|
2357
2309
|
conversation?: TeamworkConversationIdentity | null;
|
|
2358
2310
|
/**
|
|
2359
|
-
* The tag
|
|
2311
|
+
* The tag details.
|
|
2360
2312
|
*/
|
|
2361
2313
|
tag?: TeamworkTagIdentity | null;
|
|
2362
2314
|
}
|
|
@@ -2381,7 +2333,7 @@ export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Par
|
|
|
2381
2333
|
}
|
|
2382
2334
|
export interface AiUser extends Entity, Parsable {
|
|
2383
2335
|
/**
|
|
2384
|
-
* The
|
|
2336
|
+
* The history of interactions between AI agents and users.
|
|
2385
2337
|
*/
|
|
2386
2338
|
interactionHistory?: AiInteractionHistory | null;
|
|
2387
2339
|
}
|
|
@@ -3813,7 +3765,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3813
3765
|
*/
|
|
3814
3766
|
homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[] | null;
|
|
3815
3767
|
/**
|
|
3816
|
-
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
|
|
3768
|
+
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique across Microsoft Entra ID. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
|
|
3817
3769
|
*/
|
|
3818
3770
|
identifierUris?: string[] | null;
|
|
3819
3771
|
/**
|
|
@@ -4340,11 +4292,11 @@ export interface ApprovalStageCollectionResponse extends BaseCollectionPaginatio
|
|
|
4340
4292
|
}
|
|
4341
4293
|
export interface AppScope extends Entity, Parsable {
|
|
4342
4294
|
/**
|
|
4343
|
-
* Provides the display name of the app-specific resource represented by the app scope.
|
|
4295
|
+
* Provides the display name of the app-specific resource represented by the app scope. Read only.
|
|
4344
4296
|
*/
|
|
4345
4297
|
displayName?: string | null;
|
|
4346
4298
|
/**
|
|
4347
|
-
* Describes the type of app-specific resource represented by the app scope
|
|
4299
|
+
* Describes the type of app-specific resource represented by the app scope. Read-only.
|
|
4348
4300
|
*/
|
|
4349
4301
|
type?: string | null;
|
|
4350
4302
|
}
|
|
@@ -5403,7 +5355,7 @@ export interface AuditActivityInitiator extends AdditionalDataHolder, BackedMode
|
|
|
5403
5355
|
*/
|
|
5404
5356
|
additionalData?: Record<string, unknown>;
|
|
5405
5357
|
/**
|
|
5406
|
-
* If the resource initiating the activity is an app, this property indicates all the app related information like appId
|
|
5358
|
+
* If the resource initiating the activity is an app, this property indicates all the app related information like appId and name.
|
|
5407
5359
|
*/
|
|
5408
5360
|
app?: AppIdentity | null;
|
|
5409
5361
|
/**
|
|
@@ -5415,7 +5367,7 @@ export interface AuditActivityInitiator extends AdditionalDataHolder, BackedMode
|
|
|
5415
5367
|
*/
|
|
5416
5368
|
odataType?: string | null;
|
|
5417
5369
|
/**
|
|
5418
|
-
* If the resource initiating the activity is a user, this property Indicates all the user related information like
|
|
5370
|
+
* If the resource initiating the activity is a user, this property Indicates all the user related information like user ID and userPrincipalName.
|
|
5419
5371
|
*/
|
|
5420
5372
|
user?: UserIdentity | null;
|
|
5421
5373
|
}
|
|
@@ -42662,11 +42614,11 @@ export interface DriveProtectionUnitCollectionResponse extends BaseCollectionPag
|
|
|
42662
42614
|
}
|
|
42663
42615
|
export interface DriveProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
|
|
42664
42616
|
/**
|
|
42665
|
-
* The directoryObjectIds
|
|
42617
|
+
* The list of OneDrive directoryObjectIds to add to the OneDrive protection policy.
|
|
42666
42618
|
*/
|
|
42667
42619
|
directoryObjectIds?: string[] | null;
|
|
42668
42620
|
/**
|
|
42669
|
-
* The
|
|
42621
|
+
* The list of email addresses to add to the OneDrive protection policy.
|
|
42670
42622
|
*/
|
|
42671
42623
|
drives?: string[] | null;
|
|
42672
42624
|
}
|
|
@@ -42724,11 +42676,11 @@ export interface DriveRestoreArtifactCollectionResponse extends BaseCollectionPa
|
|
|
42724
42676
|
}
|
|
42725
42677
|
export interface DriveRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
|
|
42726
42678
|
/**
|
|
42727
|
-
* The
|
|
42679
|
+
* The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation.
|
|
42728
42680
|
*/
|
|
42729
42681
|
directoryObjectIds?: string[] | null;
|
|
42730
42682
|
/**
|
|
42731
|
-
* The
|
|
42683
|
+
* The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation.
|
|
42732
42684
|
*/
|
|
42733
42685
|
drives?: string[] | null;
|
|
42734
42686
|
}
|
|
@@ -44897,7 +44849,7 @@ export interface ExchangeRestoreSession extends Parsable, RestoreSessionBase {
|
|
|
44897
44849
|
*/
|
|
44898
44850
|
mailboxRestoreArtifacts?: MailboxRestoreArtifact[] | null;
|
|
44899
44851
|
/**
|
|
44900
|
-
*
|
|
44852
|
+
* A collection of user mailboxes and destination details that can be used to restore Exchange mailboxes.
|
|
44901
44853
|
*/
|
|
44902
44854
|
mailboxRestoreArtifactsBulkAdditionRequests?: MailboxRestoreArtifactsBulkAdditionRequest[] | null;
|
|
44903
44855
|
}
|
|
@@ -50500,11 +50452,11 @@ export interface MailboxProtectionUnitCollectionResponse extends BaseCollectionP
|
|
|
50500
50452
|
}
|
|
50501
50453
|
export interface MailboxProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
|
|
50502
50454
|
/**
|
|
50503
|
-
* The directoryObjectIds
|
|
50455
|
+
* The list of Exchange directoryObjectIds to add to the Exchange protection policy.
|
|
50504
50456
|
*/
|
|
50505
50457
|
directoryObjectIds?: string[] | null;
|
|
50506
50458
|
/**
|
|
50507
|
-
* The
|
|
50459
|
+
* The list of Exchange email addresses to add to the Exchange protection policy.
|
|
50508
50460
|
*/
|
|
50509
50461
|
mailboxes?: string[] | null;
|
|
50510
50462
|
}
|
|
@@ -50532,11 +50484,11 @@ export interface MailboxRestoreArtifactCollectionResponse extends BaseCollection
|
|
|
50532
50484
|
}
|
|
50533
50485
|
export interface MailboxRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
|
|
50534
50486
|
/**
|
|
50535
|
-
* The
|
|
50487
|
+
* The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation.
|
|
50536
50488
|
*/
|
|
50537
50489
|
directoryObjectIds?: string[] | null;
|
|
50538
50490
|
/**
|
|
50539
|
-
* The
|
|
50491
|
+
* The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation.
|
|
50540
50492
|
*/
|
|
50541
50493
|
mailboxes?: string[] | null;
|
|
50542
50494
|
}
|
|
@@ -54189,19 +54141,19 @@ export interface ObjectMappingMetadataEntry extends AdditionalDataHolder, Backed
|
|
|
54189
54141
|
}
|
|
54190
54142
|
export interface OfferShiftRequest extends Parsable, ScheduleChangeRequest {
|
|
54191
54143
|
/**
|
|
54192
|
-
* The
|
|
54144
|
+
* The date and time when the recipient approved or declined the request.
|
|
54193
54145
|
*/
|
|
54194
54146
|
recipientActionDateTime?: Date | null;
|
|
54195
54147
|
/**
|
|
54196
|
-
*
|
|
54148
|
+
* The message sent by the recipient regarding the request.
|
|
54197
54149
|
*/
|
|
54198
54150
|
recipientActionMessage?: string | null;
|
|
54199
54151
|
/**
|
|
54200
|
-
*
|
|
54152
|
+
* The recipient's user ID.
|
|
54201
54153
|
*/
|
|
54202
54154
|
recipientUserId?: string | null;
|
|
54203
54155
|
/**
|
|
54204
|
-
*
|
|
54156
|
+
* The sender's shift ID.
|
|
54205
54157
|
*/
|
|
54206
54158
|
senderShiftId?: string | null;
|
|
54207
54159
|
}
|
|
@@ -54467,11 +54419,11 @@ export interface OneDriveForBusinessProtectionPolicyCollectionResponse extends B
|
|
|
54467
54419
|
}
|
|
54468
54420
|
export interface OneDriveForBusinessRestoreSession extends Parsable, RestoreSessionBase {
|
|
54469
54421
|
/**
|
|
54470
|
-
* A collection of restore points and destination details that can be used to restore a OneDrive for
|
|
54422
|
+
* A collection of restore points and destination details that can be used to restore a OneDrive for work or school drive.
|
|
54471
54423
|
*/
|
|
54472
54424
|
driveRestoreArtifacts?: DriveRestoreArtifact[] | null;
|
|
54473
54425
|
/**
|
|
54474
|
-
*
|
|
54426
|
+
* A collection of user mailboxes and destination details that can be used to restore a OneDrive for work or school drive.
|
|
54475
54427
|
*/
|
|
54476
54428
|
driveRestoreArtifactsBulkAdditionRequests?: DriveRestoreArtifactsBulkAdditionRequest[] | null;
|
|
54477
54429
|
}
|
|
@@ -59487,7 +59439,7 @@ export interface ProtectionRuleBase extends Entity, Parsable {
|
|
|
59487
59439
|
*/
|
|
59488
59440
|
errorEscaped?: PublicError | null;
|
|
59489
59441
|
/**
|
|
59490
|
-
*
|
|
59442
|
+
* The isAutoApplyEnabled property
|
|
59491
59443
|
*/
|
|
59492
59444
|
isAutoApplyEnabled?: boolean | null;
|
|
59493
59445
|
/**
|
|
@@ -59542,27 +59494,27 @@ export interface ProtectionUnitBaseCollectionResponse extends BaseCollectionPagi
|
|
|
59542
59494
|
}
|
|
59543
59495
|
export interface ProtectionUnitsBulkJobBase extends Entity, Parsable {
|
|
59544
59496
|
/**
|
|
59545
|
-
* The
|
|
59497
|
+
* The identity of person who created the job.
|
|
59546
59498
|
*/
|
|
59547
59499
|
createdBy?: IdentitySet | null;
|
|
59548
59500
|
/**
|
|
59549
|
-
* The
|
|
59501
|
+
* The time of creation of the job.
|
|
59550
59502
|
*/
|
|
59551
59503
|
createdDateTime?: Date | null;
|
|
59552
59504
|
/**
|
|
59553
|
-
* The
|
|
59505
|
+
* The name of the protection units bulk addition job.
|
|
59554
59506
|
*/
|
|
59555
59507
|
displayName?: string | null;
|
|
59556
59508
|
/**
|
|
59557
|
-
*
|
|
59509
|
+
* Error details containing resource resolution failures, if any.
|
|
59558
59510
|
*/
|
|
59559
59511
|
errorEscaped?: PublicError | null;
|
|
59560
59512
|
/**
|
|
59561
|
-
* The
|
|
59513
|
+
* The identity of the person who last modified the job.
|
|
59562
59514
|
*/
|
|
59563
59515
|
lastModifiedBy?: IdentitySet | null;
|
|
59564
59516
|
/**
|
|
59565
|
-
*
|
|
59517
|
+
* Timestamp of the last modification made to the job.
|
|
59566
59518
|
*/
|
|
59567
59519
|
lastModifiedDateTime?: Date | null;
|
|
59568
59520
|
/**
|
|
@@ -61226,43 +61178,43 @@ export interface RestoreArtifactBase extends Entity, Parsable {
|
|
|
61226
61178
|
}
|
|
61227
61179
|
export interface RestoreArtifactsBulkRequestBase extends Entity, Parsable {
|
|
61228
61180
|
/**
|
|
61229
|
-
* The
|
|
61181
|
+
* The identity of the person who created the bulk request.
|
|
61230
61182
|
*/
|
|
61231
61183
|
createdBy?: IdentitySet | null;
|
|
61232
61184
|
/**
|
|
61233
|
-
* The
|
|
61185
|
+
* The time when the bulk request was created.
|
|
61234
61186
|
*/
|
|
61235
61187
|
createdDateTime?: Date | null;
|
|
61236
61188
|
/**
|
|
61237
|
-
* The
|
|
61189
|
+
* Indicates the restoration destination. The possible values are: new, inPlace, unknownFutureValue.
|
|
61238
61190
|
*/
|
|
61239
61191
|
destinationType?: DestinationType | null;
|
|
61240
61192
|
/**
|
|
61241
|
-
*
|
|
61193
|
+
* Name of the addition request.
|
|
61242
61194
|
*/
|
|
61243
61195
|
displayName?: string | null;
|
|
61244
61196
|
/**
|
|
61245
|
-
*
|
|
61197
|
+
* Error details are populated for resource resolution failures.
|
|
61246
61198
|
*/
|
|
61247
61199
|
errorEscaped?: PublicError | null;
|
|
61248
61200
|
/**
|
|
61249
|
-
*
|
|
61201
|
+
* Identity of the person who last modified this entity.
|
|
61250
61202
|
*/
|
|
61251
61203
|
lastModifiedBy?: IdentitySet | null;
|
|
61252
61204
|
/**
|
|
61253
|
-
*
|
|
61205
|
+
* Timestamp when this entity was last modified.
|
|
61254
61206
|
*/
|
|
61255
61207
|
lastModifiedDateTime?: Date | null;
|
|
61256
61208
|
/**
|
|
61257
|
-
* The
|
|
61209
|
+
* The start and end date and time of the protection period.
|
|
61258
61210
|
*/
|
|
61259
61211
|
protectionTimePeriod?: TimePeriod | null;
|
|
61260
61212
|
/**
|
|
61261
|
-
*
|
|
61213
|
+
* Indicates which protection units to restore. This property isn't implemented yet. Future value; don't use.
|
|
61262
61214
|
*/
|
|
61263
61215
|
protectionUnitIds?: string[] | null;
|
|
61264
61216
|
/**
|
|
61265
|
-
* The
|
|
61217
|
+
* Indicates which restore point to return. The possible values are: oldest, latest, unknownFutureValue.
|
|
61266
61218
|
*/
|
|
61267
61219
|
restorePointPreference?: RestorePointPreference | null;
|
|
61268
61220
|
/**
|
|
@@ -61270,7 +61222,7 @@ export interface RestoreArtifactsBulkRequestBase extends Entity, Parsable {
|
|
|
61270
61222
|
*/
|
|
61271
61223
|
status?: RestoreArtifactsBulkRequestStatus | null;
|
|
61272
61224
|
/**
|
|
61273
|
-
* The
|
|
61225
|
+
* The type of the restore point. The possible values are: none, fastRestore, unknownFutureValue.
|
|
61274
61226
|
*/
|
|
61275
61227
|
tags?: RestorePointTags[] | null;
|
|
61276
61228
|
}
|
|
@@ -62285,35 +62237,35 @@ export interface Schedule extends Entity, Parsable {
|
|
|
62285
62237
|
}
|
|
62286
62238
|
export interface ScheduleChangeRequest extends ChangeTrackedEntity, Parsable {
|
|
62287
62239
|
/**
|
|
62288
|
-
*
|
|
62240
|
+
* Indicates who the request is assigned to. Possible values are: sender, recipient, manager, system, unknownFutureValue.
|
|
62289
62241
|
*/
|
|
62290
62242
|
assignedTo?: ScheduleChangeRequestActor | null;
|
|
62291
62243
|
/**
|
|
62292
|
-
* The
|
|
62244
|
+
* The date and time when the manager approved or declined the scheduleChangeRequest. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
62293
62245
|
*/
|
|
62294
62246
|
managerActionDateTime?: Date | null;
|
|
62295
62247
|
/**
|
|
62296
|
-
* The
|
|
62248
|
+
* The message sent by the manager regarding the scheduleChangeRequest. Optional.
|
|
62297
62249
|
*/
|
|
62298
62250
|
managerActionMessage?: string | null;
|
|
62299
62251
|
/**
|
|
62300
|
-
* The
|
|
62252
|
+
* The user ID of the manager who approved or declined the scheduleChangeRequest.
|
|
62301
62253
|
*/
|
|
62302
62254
|
managerUserId?: string | null;
|
|
62303
62255
|
/**
|
|
62304
|
-
* The
|
|
62256
|
+
* The date and time when the sender sent the scheduleChangeRequest. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
62305
62257
|
*/
|
|
62306
62258
|
senderDateTime?: Date | null;
|
|
62307
62259
|
/**
|
|
62308
|
-
* The
|
|
62260
|
+
* The message sent by the sender of the scheduleChangeRequest. Optional.
|
|
62309
62261
|
*/
|
|
62310
62262
|
senderMessage?: string | null;
|
|
62311
62263
|
/**
|
|
62312
|
-
* The
|
|
62264
|
+
* The user ID of the sender of the scheduleChangeRequest.
|
|
62313
62265
|
*/
|
|
62314
62266
|
senderUserId?: string | null;
|
|
62315
62267
|
/**
|
|
62316
|
-
* The state
|
|
62268
|
+
* The state of the scheduleChangeRequest. Possible values are: pending, approved, declined, unknownFutureValue.
|
|
62317
62269
|
*/
|
|
62318
62270
|
state?: ScheduleChangeState | null;
|
|
62319
62271
|
}
|
|
@@ -62764,7 +62716,7 @@ export interface SearchRequest extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
62764
62716
|
*/
|
|
62765
62717
|
entityTypes?: EntityType[] | null;
|
|
62766
62718
|
/**
|
|
62767
|
-
* Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default; otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from the content that Microsoft
|
|
62719
|
+
* Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default; otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from the content that Microsoft 365 Copilot connectors bring in. The fields property can use the semantic labels applied to properties. For example, if a property is labeled as title, you can retrieve it using the following syntax: label_title. Optional.
|
|
62768
62720
|
*/
|
|
62769
62721
|
fields?: string[] | null;
|
|
62770
62722
|
/**
|
|
@@ -76199,7 +76151,7 @@ export interface SharePointRestoreSession extends Parsable, RestoreSessionBase {
|
|
|
76199
76151
|
*/
|
|
76200
76152
|
siteRestoreArtifacts?: SiteRestoreArtifact[] | null;
|
|
76201
76153
|
/**
|
|
76202
|
-
*
|
|
76154
|
+
* A collection of SharePoint site URLs and destination details that can be used to restore SharePoint sites.
|
|
76203
76155
|
*/
|
|
76204
76156
|
siteRestoreArtifactsBulkAdditionRequests?: SiteRestoreArtifactsBulkAdditionRequest[] | null;
|
|
76205
76157
|
}
|
|
@@ -77308,11 +77260,11 @@ export interface SiteProtectionUnitCollectionResponse extends BaseCollectionPagi
|
|
|
77308
77260
|
}
|
|
77309
77261
|
export interface SiteProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
|
|
77310
77262
|
/**
|
|
77311
|
-
* The
|
|
77263
|
+
* The list of SharePoint site IDs to add to the SharePoint protection policy.
|
|
77312
77264
|
*/
|
|
77313
77265
|
siteIds?: string[] | null;
|
|
77314
77266
|
/**
|
|
77315
|
-
* The
|
|
77267
|
+
* The list of SharePoint site URLs to add to the SharePoint protection policy.
|
|
77316
77268
|
*/
|
|
77317
77269
|
siteWebUrls?: string[] | null;
|
|
77318
77270
|
}
|
|
@@ -77344,11 +77296,11 @@ export interface SiteRestoreArtifactCollectionResponse extends BaseCollectionPag
|
|
|
77344
77296
|
}
|
|
77345
77297
|
export interface SiteRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
|
|
77346
77298
|
/**
|
|
77347
|
-
* The
|
|
77299
|
+
* The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation.
|
|
77348
77300
|
*/
|
|
77349
77301
|
siteIds?: string[] | null;
|
|
77350
77302
|
/**
|
|
77351
|
-
* The
|
|
77303
|
+
* The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation.
|
|
77352
77304
|
*/
|
|
77353
77305
|
siteWebUrls?: string[] | null;
|
|
77354
77306
|
}
|
|
@@ -78243,7 +78195,7 @@ export interface SubscriptionCollectionResponse extends BaseCollectionPagination
|
|
|
78243
78195
|
}
|
|
78244
78196
|
export interface SwapShiftsChangeRequest extends OfferShiftRequest, Parsable {
|
|
78245
78197
|
/**
|
|
78246
|
-
*
|
|
78198
|
+
* The recipient's Shift ID
|
|
78247
78199
|
*/
|
|
78248
78200
|
recipientShiftId?: string | null;
|
|
78249
78201
|
}
|
|
@@ -80750,11 +80702,11 @@ export interface TimeOffReasonCollectionResponse extends BaseCollectionPaginatio
|
|
|
80750
80702
|
export type TimeOffReasonIconType = (typeof TimeOffReasonIconTypeObject)[keyof typeof TimeOffReasonIconTypeObject];
|
|
80751
80703
|
export interface TimeOffRequest extends Parsable, ScheduleChangeRequest {
|
|
80752
80704
|
/**
|
|
80753
|
-
* The
|
|
80705
|
+
* The date and time the time off ends in ISO 8601 format and in UTC time.
|
|
80754
80706
|
*/
|
|
80755
80707
|
endDateTime?: Date | null;
|
|
80756
80708
|
/**
|
|
80757
|
-
* The
|
|
80709
|
+
* The date and time the time off starts in ISO 8601 format and in UTC time.
|
|
80758
80710
|
*/
|
|
80759
80711
|
startDateTime?: Date | null;
|
|
80760
80712
|
/**
|
|
@@ -85161,7 +85113,7 @@ export interface VirtualEventRegistration extends Entity, Parsable {
|
|
|
85161
85113
|
*/
|
|
85162
85114
|
preferredTimezone?: string | null;
|
|
85163
85115
|
/**
|
|
85164
|
-
* Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC
|
|
85116
|
+
* Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
85165
85117
|
*/
|
|
85166
85118
|
registrationDateTime?: Date | null;
|
|
85167
85119
|
/**
|