@microsoft/msgraph-sdk-users 1.0.0-preview.18 → 1.0.0-preview.19
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/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/users/index.d.ts +2 -2
- package/users/item/chats/item/messages/index.d.ts +3 -3
- package/users/item/events/index.d.ts +3 -3
- package/users/item/index.d.ts +10 -5
- package/users/item/index.d.ts.map +1 -1
- package/users/item/index.js +5 -0
- package/users/item/joinedTeams/item/channels/item/members/index.d.ts +3 -3
- package/users/item/joinedTeams/item/channels/item/members/item/index.d.ts +3 -3
- package/users/item/joinedTeams/item/primaryChannel/members/index.d.ts +3 -3
- package/users/item/joinedTeams/item/primaryChannel/members/item/index.d.ts +3 -3
- package/users/item/mailFolders/item/childFolders/index.d.ts +3 -3
- package/users/item/mailFolders/item/childFolders/item/messages/item/attachments/index.d.ts +7 -7
- package/users/item/mailFolders/item/messages/item/attachments/index.d.ts +7 -7
- package/users/item/messages/index.d.ts +1 -1
- package/users/item/messages/item/attachments/index.d.ts +7 -7
- package/users/item/messages/item/index.d.ts +4 -4
- package/users/item/messages/item/value/index.d.ts +1 -1
- package/users/item/photo/index.d.ts +12 -0
- package/users/item/photo/index.d.ts.map +1 -1
- package/users/item/photo/index.js +8 -0
- package/users/item/presence/index.d.ts +4 -4
- package/users/item/sponsors/count/index.d.ts +41 -0
- package/users/item/sponsors/count/index.d.ts.map +1 -0
- package/users/item/sponsors/count/index.js +35 -0
- package/users/item/sponsors/index.d.ts +82 -0
- package/users/item/sponsors/index.d.ts.map +1 -0
- package/users/item/sponsors/index.js +56 -0
- package/users/item/sponsors/item/index.d.ts +42 -0
- package/users/item/sponsors/item/index.d.ts.map +1 -0
- package/users/item/sponsors/item/index.js +36 -0
package/users/index.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuil
|
|
|
41
41
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
42
|
* @returns {Promise<UserCollectionResponse>}
|
|
43
43
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
44
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-
|
|
44
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0|Find more info here}
|
|
45
45
|
*/
|
|
46
46
|
get(requestConfiguration?: RequestConfiguration<UsersRequestBuilderGetQueryParameters> | undefined): Promise<UserCollectionResponse | undefined>;
|
|
47
47
|
/**
|
|
@@ -50,7 +50,7 @@ export interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuil
|
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {Promise<User>}
|
|
52
52
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
53
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-
|
|
53
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0|Find more info here}
|
|
54
54
|
*/
|
|
55
55
|
post(body: User, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<User | undefined>;
|
|
56
56
|
/**
|
|
@@ -30,12 +30,12 @@ export interface MessagesRequestBuilder extends BaseRequestBuilder<MessagesReque
|
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<MessagesRequestBuilderGetQueryParameters> | undefined): Promise<ChatMessageCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Send a new chatMessage in the specified
|
|
33
|
+
* Send a new chatMessage in the specified channel or a chat.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<ChatMessage>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: ChatMessage, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ChatMessage | undefined>;
|
|
41
41
|
/**
|
|
@@ -45,7 +45,7 @@ export interface MessagesRequestBuilder extends BaseRequestBuilder<MessagesReque
|
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MessagesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Send a new chatMessage in the specified
|
|
48
|
+
* Send a new chatMessage in the specified channel or a chat.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -30,12 +30,12 @@ export interface EventsRequestBuilder extends BaseRequestBuilder<EventsRequestBu
|
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<EventsRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Create one or more
|
|
33
|
+
* Create one or more multi-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources are supported: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<Event>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/multivaluelegacyextendedproperty-post-multivalueextendedproperties?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: Event, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Event | undefined>;
|
|
41
41
|
/**
|
|
@@ -45,7 +45,7 @@ export interface EventsRequestBuilder extends BaseRequestBuilder<EventsRequestBu
|
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Create one or more
|
|
48
|
+
* Create one or more multi-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources are supported: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
package/users/item/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ import { type ScopedRoleMemberOfRequestBuilder } from './scopedRoleMemberOf/';
|
|
|
68
68
|
import { type SendMailRequestBuilder } from './sendMail/';
|
|
69
69
|
import { type ServiceProvisioningErrorsRequestBuilder } from './serviceProvisioningErrors/';
|
|
70
70
|
import { type SettingsRequestBuilder } from './settings/';
|
|
71
|
+
import { type SponsorsRequestBuilder } from './sponsors/';
|
|
71
72
|
import { type TeamworkRequestBuilder } from './teamwork/';
|
|
72
73
|
import { type TodoRequestBuilder } from './todo/';
|
|
73
74
|
import { type TransitiveMemberOfRequestBuilder } from './transitiveMemberOf/';
|
|
@@ -346,6 +347,10 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
346
347
|
* Provides operations to manage the settings property of the microsoft.graph.user entity.
|
|
347
348
|
*/
|
|
348
349
|
get settings(): SettingsRequestBuilder;
|
|
350
|
+
/**
|
|
351
|
+
* Provides operations to manage the sponsors property of the microsoft.graph.user entity.
|
|
352
|
+
*/
|
|
353
|
+
get sponsors(): SponsorsRequestBuilder;
|
|
349
354
|
/**
|
|
350
355
|
* Provides operations to manage the teamwork property of the microsoft.graph.user entity.
|
|
351
356
|
*/
|
|
@@ -370,7 +375,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
370
375
|
* Deletes a user.
|
|
371
376
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
372
377
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
373
|
-
* @see {@link https://learn.microsoft.com/graph/api/intune-
|
|
378
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-delete?view=graph-rest-1.0|Find more info here}
|
|
374
379
|
*/
|
|
375
380
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
376
381
|
/**
|
|
@@ -381,11 +386,11 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
381
386
|
*/
|
|
382
387
|
exportDeviceAndAppManagementDataWithSkipWithTop(skip: number | undefined, top: number | undefined): ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder;
|
|
383
388
|
/**
|
|
384
|
-
*
|
|
389
|
+
* Read properties and relationships of the user object.
|
|
385
390
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
386
391
|
* @returns {Promise<User>}
|
|
387
392
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
388
|
-
* @see {@link https://learn.microsoft.com/graph/api/user-get?view=graph-rest-1.0|Find more info here}
|
|
393
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0|Find more info here}
|
|
389
394
|
*/
|
|
390
395
|
get(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
|
|
391
396
|
/**
|
|
@@ -411,7 +416,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
411
416
|
*/
|
|
412
417
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
413
418
|
/**
|
|
414
|
-
*
|
|
419
|
+
* Read properties and relationships of the user object.
|
|
415
420
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
416
421
|
* @returns {RequestInformation}
|
|
417
422
|
*/
|
|
@@ -425,7 +430,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
|
|
|
425
430
|
toPatchRequestInformation(body: User, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
426
431
|
}
|
|
427
432
|
/**
|
|
428
|
-
*
|
|
433
|
+
* Read properties and relationships of the user object.
|
|
429
434
|
*/
|
|
430
435
|
export interface UserItemRequestBuilderGetQueryParameters {
|
|
431
436
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
|
package/users/item/index.js
CHANGED
|
@@ -75,6 +75,7 @@ const scopedRoleMemberOf_1 = require("./scopedRoleMemberOf/");
|
|
|
75
75
|
const sendMail_1 = require("./sendMail/");
|
|
76
76
|
const serviceProvisioningErrors_1 = require("./serviceProvisioningErrors/");
|
|
77
77
|
const settings_1 = require("./settings/");
|
|
78
|
+
const sponsors_1 = require("./sponsors/");
|
|
78
79
|
const teamwork_1 = require("./teamwork/");
|
|
79
80
|
const todo_1 = require("./todo/");
|
|
80
81
|
const transitiveMemberOf_1 = require("./transitiveMemberOf/");
|
|
@@ -348,6 +349,10 @@ exports.UserItemRequestBuilderNavigationMetadata = {
|
|
|
348
349
|
requestsMetadata: settings_1.SettingsRequestBuilderRequestsMetadata,
|
|
349
350
|
navigationMetadata: settings_1.SettingsRequestBuilderNavigationMetadata,
|
|
350
351
|
},
|
|
352
|
+
sponsors: {
|
|
353
|
+
requestsMetadata: sponsors_1.SponsorsRequestBuilderRequestsMetadata,
|
|
354
|
+
navigationMetadata: sponsors_1.SponsorsRequestBuilderNavigationMetadata,
|
|
355
|
+
},
|
|
351
356
|
teamwork: {
|
|
352
357
|
requestsMetadata: teamwork_1.TeamworkRequestBuilderRequestsMetadata,
|
|
353
358
|
navigationMetadata: teamwork_1.TeamworkRequestBuilderNavigationMetadata,
|
|
@@ -30,12 +30,12 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
|
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<MembersRequestBuilderGetQueryParameters> | undefined): Promise<ConversationMemberCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Add a conversationMember to a channel.
|
|
33
|
+
* Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<ConversationMember>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ConversationMember | undefined>;
|
|
41
41
|
/**
|
|
@@ -45,7 +45,7 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
|
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MembersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Add a conversationMember to a channel.
|
|
48
|
+
* Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -20,12 +20,12 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
|
|
|
20
20
|
*/
|
|
21
21
|
get(requestConfiguration?: RequestConfiguration<ConversationMemberItemRequestBuilderGetQueryParameters> | undefined): Promise<ConversationMember | undefined>;
|
|
22
22
|
/**
|
|
23
|
-
* Update the role of a conversationMember in a
|
|
23
|
+
* Update the role of a conversationMember in a team or channel.
|
|
24
24
|
* @param body The request body
|
|
25
25
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
26
|
* @returns {Promise<ConversationMember>}
|
|
27
27
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
28
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
28
|
+
* @see {@link https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0|Find more info here}
|
|
29
29
|
*/
|
|
30
30
|
patch(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ConversationMember | undefined>;
|
|
31
31
|
/**
|
|
@@ -41,7 +41,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
|
|
|
41
41
|
*/
|
|
42
42
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ConversationMemberItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
43
43
|
/**
|
|
44
|
-
* Update the role of a conversationMember in a
|
|
44
|
+
* Update the role of a conversationMember in a team or channel.
|
|
45
45
|
* @param body The request body
|
|
46
46
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
47
47
|
* @returns {RequestInformation}
|
|
@@ -30,12 +30,12 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
|
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<MembersRequestBuilderGetQueryParameters> | undefined): Promise<ConversationMemberCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Add a conversationMember to a channel.
|
|
33
|
+
* Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<ConversationMember>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ConversationMember | undefined>;
|
|
41
41
|
/**
|
|
@@ -45,7 +45,7 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
|
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MembersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Add a conversationMember to a channel.
|
|
48
|
+
* Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -20,12 +20,12 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
|
|
|
20
20
|
*/
|
|
21
21
|
get(requestConfiguration?: RequestConfiguration<ConversationMemberItemRequestBuilderGetQueryParameters> | undefined): Promise<ConversationMember | undefined>;
|
|
22
22
|
/**
|
|
23
|
-
* Update the role of a conversationMember in a
|
|
23
|
+
* Update the role of a conversationMember in a team or channel.
|
|
24
24
|
* @param body The request body
|
|
25
25
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
26
|
* @returns {Promise<ConversationMember>}
|
|
27
27
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
28
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
28
|
+
* @see {@link https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0|Find more info here}
|
|
29
29
|
*/
|
|
30
30
|
patch(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ConversationMember | undefined>;
|
|
31
31
|
/**
|
|
@@ -41,7 +41,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
|
|
|
41
41
|
*/
|
|
42
42
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ConversationMemberItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
43
43
|
/**
|
|
44
|
-
* Update the role of a conversationMember in a
|
|
44
|
+
* Update the role of a conversationMember in a team or channel.
|
|
45
45
|
* @param body The request body
|
|
46
46
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
47
47
|
* @returns {RequestInformation}
|
|
@@ -30,12 +30,12 @@ export interface ChildFoldersRequestBuilder extends BaseRequestBuilder<ChildFold
|
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<ChildFoldersRequestBuilderGetQueryParameters> | undefined): Promise<MailFolderCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Create a new mailSearchFolder in the specified user's mailbox.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<MailFolder>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/mailsearchfolder-post?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: MailFolder, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MailFolder | undefined>;
|
|
41
41
|
/**
|
|
@@ -45,7 +45,7 @@ export interface ChildFoldersRequestBuilder extends BaseRequestBuilder<ChildFold
|
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ChildFoldersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Create a new mailSearchFolder in the specified user's mailbox.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -22,30 +22,30 @@ export interface AttachmentsRequestBuilder extends BaseRequestBuilder<Attachment
|
|
|
22
22
|
*/
|
|
23
23
|
byAttachmentId(attachmentId: string): AttachmentItemRequestBuilder;
|
|
24
24
|
/**
|
|
25
|
-
* Retrieve a list of attachment objects
|
|
25
|
+
* Retrieve a list of attachment objects.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<AttachmentCollectionResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
29
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
29
|
+
* @see {@link https://learn.microsoft.com/graph/api/eventmessage-list-attachments?view=graph-rest-1.0|Find more info here}
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<AttachmentsRequestBuilderGetQueryParameters> | undefined): Promise<AttachmentCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Use this API to
|
|
33
|
+
* Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<Attachment>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/message-post-attachments?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: Attachment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Attachment | undefined>;
|
|
41
41
|
/**
|
|
42
|
-
* Retrieve a list of attachment objects
|
|
42
|
+
* Retrieve a list of attachment objects.
|
|
43
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
44
|
* @returns {RequestInformation}
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AttachmentsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Use this API to
|
|
48
|
+
* Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -53,7 +53,7 @@ export interface AttachmentsRequestBuilder extends BaseRequestBuilder<Attachment
|
|
|
53
53
|
toPostRequestInformation(body: Attachment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
|
-
* Retrieve a list of attachment objects
|
|
56
|
+
* Retrieve a list of attachment objects.
|
|
57
57
|
*/
|
|
58
58
|
export interface AttachmentsRequestBuilderGetQueryParameters {
|
|
59
59
|
/**
|
|
@@ -22,30 +22,30 @@ export interface AttachmentsRequestBuilder extends BaseRequestBuilder<Attachment
|
|
|
22
22
|
*/
|
|
23
23
|
byAttachmentId(attachmentId: string): AttachmentItemRequestBuilder;
|
|
24
24
|
/**
|
|
25
|
-
* Retrieve a list of attachment objects
|
|
25
|
+
* Retrieve a list of attachment objects.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<AttachmentCollectionResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
29
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
29
|
+
* @see {@link https://learn.microsoft.com/graph/api/eventmessage-list-attachments?view=graph-rest-1.0|Find more info here}
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<AttachmentsRequestBuilderGetQueryParameters> | undefined): Promise<AttachmentCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Use this API to
|
|
33
|
+
* Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<Attachment>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/message-post-attachments?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: Attachment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Attachment | undefined>;
|
|
41
41
|
/**
|
|
42
|
-
* Retrieve a list of attachment objects
|
|
42
|
+
* Retrieve a list of attachment objects.
|
|
43
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
44
|
* @returns {RequestInformation}
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AttachmentsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Use this API to
|
|
48
|
+
* Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -53,7 +53,7 @@ export interface AttachmentsRequestBuilder extends BaseRequestBuilder<Attachment
|
|
|
53
53
|
toPostRequestInformation(body: Attachment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
|
-
* Retrieve a list of attachment objects
|
|
56
|
+
* Retrieve a list of attachment objects.
|
|
57
57
|
*/
|
|
58
58
|
export interface AttachmentsRequestBuilderGetQueryParameters {
|
|
59
59
|
/**
|
|
@@ -26,7 +26,7 @@ export interface MessagesRequestBuilder extends BaseRequestBuilder<MessagesReque
|
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<MessageCollectionResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
29
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
29
|
+
* @see {@link https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0|Find more info here}
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<MessagesRequestBuilderGetQueryParameters> | undefined): Promise<MessageCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
@@ -22,30 +22,30 @@ export interface AttachmentsRequestBuilder extends BaseRequestBuilder<Attachment
|
|
|
22
22
|
*/
|
|
23
23
|
byAttachmentId(attachmentId: string): AttachmentItemRequestBuilder;
|
|
24
24
|
/**
|
|
25
|
-
* Retrieve a list of attachment objects
|
|
25
|
+
* Retrieve a list of attachment objects.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<AttachmentCollectionResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
29
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
29
|
+
* @see {@link https://learn.microsoft.com/graph/api/eventmessage-list-attachments?view=graph-rest-1.0|Find more info here}
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<AttachmentsRequestBuilderGetQueryParameters> | undefined): Promise<AttachmentCollectionResponse | undefined>;
|
|
32
32
|
/**
|
|
33
|
-
* Use this API to
|
|
33
|
+
* Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB.
|
|
34
34
|
* @param body The request body
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {Promise<Attachment>}
|
|
37
37
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
38
|
+
* @see {@link https://learn.microsoft.com/graph/api/message-post-attachments?view=graph-rest-1.0|Find more info here}
|
|
39
39
|
*/
|
|
40
40
|
post(body: Attachment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Attachment | undefined>;
|
|
41
41
|
/**
|
|
42
|
-
* Retrieve a list of attachment objects
|
|
42
|
+
* Retrieve a list of attachment objects.
|
|
43
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
44
|
* @returns {RequestInformation}
|
|
45
45
|
*/
|
|
46
46
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AttachmentsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Use this API to
|
|
48
|
+
* Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB.
|
|
49
49
|
* @param body The request body
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {RequestInformation}
|
|
@@ -53,7 +53,7 @@ export interface AttachmentsRequestBuilder extends BaseRequestBuilder<Attachment
|
|
|
53
53
|
toPostRequestInformation(body: Attachment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
|
-
* Retrieve a list of attachment objects
|
|
56
|
+
* Retrieve a list of attachment objects.
|
|
57
57
|
*/
|
|
58
58
|
export interface AttachmentsRequestBuilderGetQueryParameters {
|
|
59
59
|
/**
|
|
@@ -65,10 +65,10 @@ export interface MessageItemRequestBuilder extends BaseRequestBuilder<MessageIte
|
|
|
65
65
|
*/
|
|
66
66
|
get send(): SendRequestBuilder;
|
|
67
67
|
/**
|
|
68
|
-
* Delete
|
|
68
|
+
* Delete eventMessage.
|
|
69
69
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
70
70
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
71
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
71
|
+
* @see {@link https://learn.microsoft.com/graph/api/eventmessage-delete?view=graph-rest-1.0|Find more info here}
|
|
72
72
|
*/
|
|
73
73
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
74
74
|
/**
|
|
@@ -76,7 +76,7 @@ export interface MessageItemRequestBuilder extends BaseRequestBuilder<MessageIte
|
|
|
76
76
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
77
77
|
* @returns {Promise<Message>}
|
|
78
78
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
79
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
79
|
+
* @see {@link https://learn.microsoft.com/graph/api/message-get?view=graph-rest-1.0|Find more info here}
|
|
80
80
|
*/
|
|
81
81
|
get(requestConfiguration?: RequestConfiguration<MessageItemRequestBuilderGetQueryParameters> | undefined): Promise<Message | undefined>;
|
|
82
82
|
/**
|
|
@@ -89,7 +89,7 @@ export interface MessageItemRequestBuilder extends BaseRequestBuilder<MessageIte
|
|
|
89
89
|
*/
|
|
90
90
|
patch(body: Message, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Message | undefined>;
|
|
91
91
|
/**
|
|
92
|
-
* Delete
|
|
92
|
+
* Delete eventMessage.
|
|
93
93
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
94
94
|
* @returns {RequestInformation}
|
|
95
95
|
*/
|
|
@@ -8,7 +8,7 @@ export interface ContentRequestBuilder extends BaseRequestBuilder<ContentRequest
|
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @returns {Promise<ArrayBuffer>}
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
11
|
+
* @see {@link https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0|Find more info here}
|
|
12
12
|
*/
|
|
13
13
|
get(requestConfiguration?: RequestConfiguration<ContentRequestBuilderGetQueryParameters> | undefined): Promise<ArrayBuffer | undefined>;
|
|
14
14
|
/**
|
|
@@ -9,6 +9,12 @@ export interface PhotoRequestBuilder extends BaseRequestBuilder<PhotoRequestBuil
|
|
|
9
9
|
* Provides operations to manage the media for the user entity.
|
|
10
10
|
*/
|
|
11
11
|
get content(): ContentRequestBuilder;
|
|
12
|
+
/**
|
|
13
|
+
* Delete navigation property photo for users
|
|
14
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
16
|
+
*/
|
|
17
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
12
18
|
/**
|
|
13
19
|
* Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download.
|
|
14
20
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -25,6 +31,12 @@ export interface PhotoRequestBuilder extends BaseRequestBuilder<PhotoRequestBuil
|
|
|
25
31
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
32
|
*/
|
|
27
33
|
patch(body: ProfilePhoto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProfilePhoto | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* Delete navigation property photo for users
|
|
36
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
+
* @returns {RequestInformation}
|
|
38
|
+
*/
|
|
39
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
28
40
|
/**
|
|
29
41
|
* Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download.
|
|
30
42
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAEpI,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC7F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IACzI;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9I;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,mDAAmD,CAAC;AAO/F;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mBAAmB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAIpJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAEpI,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC7F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IACzI;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC9I;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,mDAAmD,CAAC;AAO/F;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,mBAAmB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAIpJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBA+BjD,CAAC"}
|
|
@@ -29,6 +29,14 @@ exports.PhotoRequestBuilderNavigationMetadata = {
|
|
|
29
29
|
* Metadata for all the requests in the request builder.
|
|
30
30
|
*/
|
|
31
31
|
exports.PhotoRequestBuilderRequestsMetadata = {
|
|
32
|
+
delete: {
|
|
33
|
+
uriTemplate: exports.PhotoRequestBuilderUriTemplate,
|
|
34
|
+
responseBodyContentType: "application/json",
|
|
35
|
+
errorMappings: {
|
|
36
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
37
|
+
},
|
|
38
|
+
adapterMethodName: "sendNoResponseContent",
|
|
39
|
+
},
|
|
32
40
|
get: {
|
|
33
41
|
uriTemplate: exports.PhotoRequestBuilderUriTemplate,
|
|
34
42
|
responseBodyContentType: "application/json",
|
|
@@ -36,11 +36,11 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder<PresenceReque
|
|
|
36
36
|
*/
|
|
37
37
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Get a user's presence information.
|
|
40
40
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
41
|
* @returns {Promise<Presence>}
|
|
42
42
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
43
|
-
* @see {@link https://learn.microsoft.com/graph/api/presence-
|
|
43
|
+
* @see {@link https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0|Find more info here}
|
|
44
44
|
*/
|
|
45
45
|
get(requestConfiguration?: RequestConfiguration<PresenceRequestBuilderGetQueryParameters> | undefined): Promise<Presence | undefined>;
|
|
46
46
|
/**
|
|
@@ -58,7 +58,7 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder<PresenceReque
|
|
|
58
58
|
*/
|
|
59
59
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* Get a user's presence information.
|
|
62
62
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
63
63
|
* @returns {RequestInformation}
|
|
64
64
|
*/
|
|
@@ -72,7 +72,7 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder<PresenceReque
|
|
|
72
72
|
toPatchRequestInformation(body: Presence, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Get a user's presence information.
|
|
76
76
|
*/
|
|
77
77
|
export interface PresenceRequestBuilderGetQueryParameters {
|
|
78
78
|
/**
|