@microsoft/msgraph-sdk-groups 1.0.0-preview.74 → 1.0.0-preview.77

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.
@@ -225,7 +225,7 @@ export interface GroupItemRequestBuilder extends BaseRequestBuilder<GroupItemReq
225
225
  */
226
226
  get validateProperties(): ValidatePropertiesRequestBuilder;
227
227
  /**
228
- * Delete a group. When deleted, Microsoft 365 groups are moved to a temporary container and can be restored within 30 days. After that time, they're permanently deleted. This isn't applicable to Security groups and Distribution groups which are permanently deleted immediately. To learn more, see deletedItems.
228
+ * Delete a group. When deleted, both Microsoft 365 and security groups are moved to a temporary container and can be restored within 30 days. After that time, they're permanently deleted. This doesn't apply to Distribution groups which are permanently deleted immediately. To learn more, see deletedItems.
229
229
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
230
230
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
231
231
  * @see {@link https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0|Find more info here}
@@ -249,7 +249,7 @@ export interface GroupItemRequestBuilder extends BaseRequestBuilder<GroupItemReq
249
249
  */
250
250
  patch(body: Group, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Group | undefined>;
251
251
  /**
252
- * Delete a group. When deleted, Microsoft 365 groups are moved to a temporary container and can be restored within 30 days. After that time, they're permanently deleted. This isn't applicable to Security groups and Distribution groups which are permanently deleted immediately. To learn more, see deletedItems.
252
+ * Delete a group. When deleted, both Microsoft 365 and security groups are moved to a temporary container and can be restored within 30 days. After that time, they're permanently deleted. This doesn't apply to Distribution groups which are permanently deleted immediately. To learn more, see deletedItems.
253
253
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
254
254
  * @returns {RequestInformation}
255
255
  */
@@ -5,7 +5,7 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface RestoreRequestBuilder extends BaseRequestBuilder<RestoreRequestBuilder> {
7
7
  /**
8
- * Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. Restore a recently deleted directory object from deleted items. The following types are supported:- administrativeUnit- application- certificateBasedAuthPki- certificateAuthorityDetail- group- servicePrincipal
8
+ * Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. Restore a recently deleted directory object from deleted items. The following types are supported:- administrativeUnit- application- certificateBasedAuthPki- certificateAuthorityDetail- group- servicePrincipal- user If an item is accidentally deleted, you can fully restore the item. Additionally, restoring an application doesn't automatically restore the associated service principal automatically. You must call this API to explicitly restore the deleted service principal. A recently deleted item remains available for up to 30 days. After 30 days, the item is permanently deleted.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<DirectoryObject>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -13,7 +13,7 @@ export interface RestoreRequestBuilder extends BaseRequestBuilder<RestoreRequest
13
13
  */
14
14
  post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DirectoryObject | undefined>;
15
15
  /**
16
- * Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. Restore a recently deleted directory object from deleted items. The following types are supported:- administrativeUnit- application- certificateBasedAuthPki- certificateAuthorityDetail- group- servicePrincipal
16
+ * Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. Restore a recently deleted directory object from deleted items. The following types are supported:- administrativeUnit- application- certificateBasedAuthPki- certificateAuthorityDetail- group- servicePrincipal- user If an item is accidentally deleted, you can fully restore the item. Additionally, restoring an application doesn't automatically restore the associated service principal automatically. You must call this API to explicitly restore the deleted service principal. A recently deleted item remains available for up to 30 days. After 30 days, the item is permanently deleted.
17
17
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
18
18
  * @returns {RequestInformation}
19
19
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-groups",
3
- "version": "1.0.0-preview.74",
3
+ "version": "1.0.0-preview.77",
4
4
  "description": "Groups fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -36,6 +36,5 @@
36
36
  "devDependencies": {
37
37
  "typescript": "^5.3.3"
38
38
  },
39
- "type": "module",
40
- "gitHead": "a827e685eb91d40ef31e113f30cf7b3cf105e608"
39
+ "type": "module"
41
40
  }