@microsoft/msgraph-sdk-groups 1.0.0-preview.66 → 1.0.0-preview.68
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/groups/item/conversations/index.d.ts +3 -3
- package/groups/item/conversations/item/index.d.ts +4 -4
- package/groups/item/conversations/item/threads/item/reply/index.d.ts +3 -3
- package/groups/item/team/index.d.ts +2 -2
- package/groups/item/threads/item/index.d.ts +1 -1
- package/groups/item/threads/item/reply/index.d.ts +3 -3
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -25,12 +25,12 @@ export interface ConversationsRequestBuilder extends BaseRequestBuilder<Conversa
|
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<ConversationsRequestBuilderGetQueryParameters> | undefined): Promise<ConversationCollectionResponse | undefined>;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Use reply thread or reply post to further post to that conversation.
|
|
29
29
|
* @param body The request body
|
|
30
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
31
|
* @returns {Promise<Conversation>}
|
|
32
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/group-post-conversations?view=graph-rest-1.0|Find more info here}
|
|
34
34
|
*/
|
|
35
35
|
post(body: Conversation, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Conversation | undefined>;
|
|
36
36
|
/**
|
|
@@ -40,7 +40,7 @@ export interface ConversationsRequestBuilder extends BaseRequestBuilder<Conversa
|
|
|
40
40
|
*/
|
|
41
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ConversationsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Use reply thread or reply post to further post to that conversation.
|
|
44
44
|
* @param body The request body
|
|
45
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
46
|
* @returns {RequestInformation}
|
|
@@ -17,11 +17,11 @@ export interface ConversationItemRequestBuilder extends BaseRequestBuilder<Conve
|
|
|
17
17
|
*/
|
|
18
18
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* The group's conversations.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<Conversation>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/group-get-conversation?view=graph-rest-1.0|Find more info here}
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<ConversationItemRequestBuilderGetQueryParameters> | undefined): Promise<Conversation | undefined>;
|
|
27
27
|
/**
|
|
@@ -31,14 +31,14 @@ export interface ConversationItemRequestBuilder extends BaseRequestBuilder<Conve
|
|
|
31
31
|
*/
|
|
32
32
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* The group's conversations.
|
|
35
35
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
36
|
* @returns {RequestInformation}
|
|
37
37
|
*/
|
|
38
38
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ConversationItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* The group's conversations.
|
|
42
42
|
*/
|
|
43
43
|
export interface ConversationItemRequestBuilderGetQueryParameters {
|
|
44
44
|
/**
|
|
@@ -27,15 +27,15 @@ export interface ReplyPostRequestBody extends AdditionalDataHolder, BackedModel,
|
|
|
27
27
|
*/
|
|
28
28
|
export interface ReplyRequestBuilder extends BaseRequestBuilder<ReplyRequestBuilder> {
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
|
|
31
31
|
* @param body The request body
|
|
32
32
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
33
33
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
34
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
34
|
+
* @see {@link https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0|Find more info here}
|
|
35
35
|
*/
|
|
36
36
|
post(body: ReplyPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
|
|
39
39
|
* @param body The request body
|
|
40
40
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
41
|
* @returns {RequestInformation}
|
|
@@ -108,7 +108,7 @@ export interface TeamRequestBuilder extends BaseRequestBuilder<TeamRequestBuilde
|
|
|
108
108
|
*/
|
|
109
109
|
get(requestConfiguration?: RequestConfiguration<TeamRequestBuilderGetQueryParameters> | undefined): Promise<Team | undefined>;
|
|
110
110
|
/**
|
|
111
|
-
* Create a new team under a group. In order to create a team, the group must have
|
|
111
|
+
* Create a new team under a group. In order to create a team, the group must have at least one owner. If the group was created less than 15 minutes ago, calls to create a team might fail with a 404 Not Found error code because the group information didn't fully replicate.
|
|
112
112
|
* @param body The request body
|
|
113
113
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
114
114
|
* @returns {Promise<Team>}
|
|
@@ -129,7 +129,7 @@ export interface TeamRequestBuilder extends BaseRequestBuilder<TeamRequestBuilde
|
|
|
129
129
|
*/
|
|
130
130
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<TeamRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
131
131
|
/**
|
|
132
|
-
* Create a new team under a group. In order to create a team, the group must have
|
|
132
|
+
* Create a new team under a group. In order to create a team, the group must have at least one owner. If the group was created less than 15 minutes ago, calls to create a team might fail with a 404 Not Found error code because the group information didn't fully replicate.
|
|
133
133
|
* @param body The request body
|
|
134
134
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
135
135
|
* @returns {RequestInformation}
|
|
@@ -18,7 +18,7 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder
|
|
|
18
18
|
* Delete conversationThread.
|
|
19
19
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
20
20
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
21
|
+
* @see {@link https://learn.microsoft.com/graph/api/conversationthread-delete?view=graph-rest-1.0|Find more info here}
|
|
22
22
|
*/
|
|
23
23
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
24
24
|
/**
|
|
@@ -27,15 +27,15 @@ export interface ReplyPostRequestBody extends AdditionalDataHolder, BackedModel,
|
|
|
27
27
|
*/
|
|
28
28
|
export interface ReplyRequestBuilder extends BaseRequestBuilder<ReplyRequestBuilder> {
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
|
|
31
31
|
* @param body The request body
|
|
32
32
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
33
33
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
34
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
34
|
+
* @see {@link https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0|Find more info here}
|
|
35
35
|
*/
|
|
36
36
|
post(body: ReplyPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
|
|
39
39
|
* @param body The request body
|
|
40
40
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
41
|
* @returns {RequestInformation}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-groups",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.68",
|
|
4
4
|
"description": "Groups fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"typescript": "^5.3.3"
|
|
38
38
|
},
|
|
39
39
|
"type": "module",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "f3f9131f62845ef74363b23df3a2f39bfbea097e"
|
|
41
41
|
}
|