@microsoft/msgraph-sdk-teamwork
Advanced tools
Comparing version 1.0.0-preview.18 to 1.0.0-preview.19
{ | ||
"name": "@microsoft/msgraph-sdk-teamwork", | ||
"version": "1.0.0-preview.18", | ||
"version": "1.0.0-preview.19", | ||
"description": "Teamwork fluent API for Microsoft Graph", | ||
@@ -40,3 +40,3 @@ "keywords": [ | ||
"@microsoft/kiota-serialization-text": "^1.0.0-preview.36", | ||
"@microsoft/msgraph-sdk": "^1.0.0-preview.18", | ||
"@microsoft/msgraph-sdk": "^1.0.0-preview.19", | ||
"guid-typescript": "^1.0.9", | ||
@@ -48,3 +48,3 @@ "tslib": "^2.6.2" | ||
}, | ||
"gitHead": "676c51d42cfb2332eb189ce7cfbc7e7dc08659b8" | ||
"gitHead": "d171fce012edfc5fac41a8d1ceea638fa462c013" | ||
} |
@@ -33,3 +33,3 @@ import { type ConversationMember, type ConversationMemberCollectionResponse } from '@microsoft/msgraph-sdk/models/'; | ||
/** | ||
* Add a conversationMember to a channel. | ||
* Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. | ||
* @param body The request body | ||
@@ -39,3 +39,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. | ||
* @throws {ODataError} error when the service returns a 4XX or 5XX status code | ||
* @see {@link https://learn.microsoft.com/graph/api/conversationmember-add?view=graph-rest-1.0|Find more info here} | ||
* @see {@link https://learn.microsoft.com/graph/api/channel-post-members?view=graph-rest-1.0|Find more info here} | ||
*/ | ||
@@ -50,3 +50,3 @@ post(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ConversationMember | undefined>; | ||
/** | ||
* Add a conversationMember to a channel. | ||
* Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. | ||
* @param body The request body | ||
@@ -53,0 +53,0 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. |
@@ -23,3 +23,3 @@ import { type ConversationMember } from '@microsoft/msgraph-sdk/models/'; | ||
/** | ||
* Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. | ||
* Update the role of a conversationMember in a team or channel. | ||
* @param body The request body | ||
@@ -29,3 +29,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. | ||
* @throws {ODataError} error when the service returns a 4XX or 5XX status code | ||
* @see {@link https://learn.microsoft.com/graph/api/channel-update-members?view=graph-rest-1.0|Find more info here} | ||
* @see {@link https://learn.microsoft.com/graph/api/conversationmember-update?view=graph-rest-1.0|Find more info here} | ||
*/ | ||
@@ -46,3 +46,3 @@ patch(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ConversationMember | undefined>; | ||
/** | ||
* Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared. | ||
* Update the role of a conversationMember in a team or channel. | ||
* @param body The request body | ||
@@ -49,0 +49,0 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
527701