@microsoft/msgraph-sdk-users 1.0.0-preview.48 → 1.0.0-preview.49

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/users/index.d.ts CHANGED
@@ -41,16 +41,16 @@ 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-onboarding-user-list?view=graph-rest-1.0|Find more info here}
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
  /**
48
- * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties.
48
+ * Create a new user object.
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 {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/user-post-users?view=graph-rest-1.0|Find more info here}
53
+ * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-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
  /**
@@ -60,7 +60,7 @@ export interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuil
60
60
  */
61
61
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<UsersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
62
62
  /**
63
- * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties.
63
+ * Create a new user object.
64
64
  * @param body The request body
65
65
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
66
66
  * @returns {RequestInformation}
@@ -395,7 +395,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
395
395
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
396
396
  * @returns {Promise<User>}
397
397
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
398
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-get?view=graph-rest-1.0|Find more info here}
398
+ * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0|Find more info here}
399
399
  */
400
400
  get(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
401
401
  /**
@@ -404,7 +404,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
404
404
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
405
405
  * @returns {Promise<User>}
406
406
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
407
- * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-update?view=graph-rest-1.0|Find more info here}
407
+ * @see {@link https://learn.microsoft.com/graph/api/user-update?view=graph-rest-1.0|Find more info here}
408
408
  */
409
409
  patch(body: User, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<User | undefined>;
410
410
  /**
@@ -36,11 +36,11 @@ export interface PresenceRequestBuilder extends BaseRequestBuilder<PresenceReque
36
36
  */
37
37
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
38
38
  /**
39
- * Set a presence status message for a user. An optional expiration date and time can be supplied.
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-setstatusmessage?view=graph-rest-1.0|Find more info here}
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
- * Set a presence status message for a user. An optional expiration date and time can be supplied.
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
- * Set a presence status message for a user. An optional expiration date and time can be supplied.
75
+ * Get a user's presence information.
76
76
  */
77
77
  export interface PresenceRequestBuilderGetQueryParameters {
78
78
  /**
@@ -4,14 +4,14 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
4
4
  */
5
5
  export interface RetryServiceProvisioningRequestBuilder extends BaseRequestBuilder<RetryServiceProvisioningRequestBuilder> {
6
6
  /**
7
- * Retry the user service provisioning.
7
+ * Retry the provisioning of a user object in Microsoft Entra ID.
8
8
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9
9
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
10
10
  * @see {@link https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-1.0|Find more info here}
11
11
  */
12
12
  post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
13
  /**
14
- * Retry the user service provisioning.
14
+ * Retry the provisioning of a user object in Microsoft Entra ID.
15
15
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
16
  * @returns {RequestInformation}
17
17
  */