@microsoft/msgraph-sdk-groups 1.0.0-preview.28 → 1.0.0-preview.29
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/assignLicense/index.d.ts +2 -2
- package/groups/item/conversations/index.d.ts +3 -3
- package/groups/item/conversations/item/index.d.ts +4 -4
- package/groups/item/restore/index.d.ts +2 -2
- package/groups/item/team/channels/getAllRetainedMessages/index.d.ts +4 -3
- package/groups/item/team/channels/getAllRetainedMessages/index.d.ts.map +1 -1
- package/groups/item/team/channels/getAllRetainedMessages/index.js.map +1 -1
- package/groups/item/threads/item/index.d.ts +4 -4
- package/groups/item/threads/item/posts/index.d.ts +4 -4
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -24,7 +24,7 @@ export interface AssignLicensePostRequestBody extends AdditionalDataHolder, Back
|
|
|
24
24
|
*/
|
|
25
25
|
export interface AssignLicenseRequestBuilder extends BaseRequestBuilder<AssignLicenseRequestBuilder> {
|
|
26
26
|
/**
|
|
27
|
-
* Add or remove licenses on the group. Licenses assigned to the group will be assigned to all users in the group. To learn more about group-based licensing, see What is group-based licensing in Microsoft Entra ID. To get the subscriptions available in the directory, perform a GET subscribedSkus request.
|
|
27
|
+
* Add or remove licenses on the group. Licenses assigned to the group will be assigned to all users in the group. Group-based licensing is an alternative to direct user licensing. To learn more about group-based licensing, see What is group-based licensing in Microsoft Entra ID. To get the subscriptions available in the directory, perform a GET subscribedSkus request.
|
|
28
28
|
* @param body The request body
|
|
29
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
30
|
* @returns {Promise<Group>}
|
|
@@ -33,7 +33,7 @@ export interface AssignLicenseRequestBuilder extends BaseRequestBuilder<AssignLi
|
|
|
33
33
|
*/
|
|
34
34
|
post(body: AssignLicensePostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Group | undefined>;
|
|
35
35
|
/**
|
|
36
|
-
* Add or remove licenses on the group. Licenses assigned to the group will be assigned to all users in the group. To learn more about group-based licensing, see What is group-based licensing in Microsoft Entra ID. To get the subscriptions available in the directory, perform a GET subscribedSkus request.
|
|
36
|
+
* Add or remove licenses on the group. Licenses assigned to the group will be assigned to all users in the group. Group-based licensing is an alternative to direct user licensing. To learn more about group-based licensing, see What is group-based licensing in Microsoft Entra ID. To get the subscriptions available in the directory, perform a GET subscribedSkus request.
|
|
37
37
|
* @param body The request body
|
|
38
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
39
|
* @returns {RequestInformation}
|
|
@@ -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
|
+
* Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
|
|
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/opentypeextension-post-opentypeextension?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
|
+
* Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
|
|
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
|
+
* Retrieve the properties and relationships of conversation object.
|
|
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/conversation-get?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
|
+
* Retrieve the properties and relationships of conversation object.
|
|
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
|
+
* Retrieve the properties and relationships of conversation object.
|
|
42
42
|
*/
|
|
43
43
|
export interface ConversationItemRequestBuilderGetQueryParameters {
|
|
44
44
|
/**
|
|
@@ -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. If an item was accidentally deleted, you can fully restore the item. However, security groups
|
|
8
|
+
* Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. If an item was accidentally deleted, you can fully restore the item. However, security groups can't be restored. Also, restoring an application doesn't 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. If an item was accidentally deleted, you can fully restore the item. However, security groups
|
|
16
|
+
* Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. If an item was accidentally deleted, you can fully restore the item. However, security groups can't be restored. Also, restoring an application doesn't 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
|
*/
|
|
@@ -22,21 +22,22 @@ export interface GetAllRetainedMessagesGetResponse extends BaseCollectionPaginat
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetAllRetainedMessagesRequestBuilder extends BaseRequestBuilder<GetAllRetainedMessagesRequestBuilder> {
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Get all retained messages across all channels in a team. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<GetAllRetainedMessagesGetResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
29
|
+
* @see {@link https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-1.0|Find more info here}
|
|
29
30
|
*/
|
|
30
31
|
get(requestConfiguration?: RequestConfiguration<GetAllRetainedMessagesRequestBuilderGetQueryParameters> | undefined): Promise<GetAllRetainedMessagesGetResponse | undefined>;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
+
* Get all retained messages across all channels in a team. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs.
|
|
33
34
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
34
35
|
* @returns {RequestInformation}
|
|
35
36
|
*/
|
|
36
37
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<GetAllRetainedMessagesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
37
38
|
}
|
|
38
39
|
/**
|
|
39
|
-
*
|
|
40
|
+
* Get all retained messages across all channels in a team. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs.
|
|
40
41
|
*/
|
|
41
42
|
export interface GetAllRetainedMessagesRequestBuilderGetQueryParameters {
|
|
42
43
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuK,KAAK,qCAAqC,EAAE,KAAK,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAI3R,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElO;;;;GAIG;AAEH,wBAAgB,6DAA6D,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,GAAI,CAAC,CAAC,QAAQ,CAAC,EAAE,QAAQ,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAAC,CAErL;AACD;;;GAGG;AAEH,wBAAgB,gDAAgD,CAAC,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAc,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAK3M;AACD,MAAM,WAAW,iCAAkC,SAAQ,qCAAqC,EAAE,QAAQ;IACtG;;OAEG;IACH,KAAK,CAAC,EAAE,WAAW,EAAE,GAAG,IAAI,CAAC;CAChC;AACD;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuK,KAAK,qCAAqC,EAAE,KAAK,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAI3R,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElO;;;;GAIG;AAEH,wBAAgB,6DAA6D,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,GAAI,CAAC,CAAC,QAAQ,CAAC,EAAE,QAAQ,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAAC,CAErL;AACD;;;GAGG;AAEH,wBAAgB,gDAAgD,CAAC,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAc,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAK3M;AACD,MAAM,WAAW,iCAAkC,SAAQ,qCAAqC,EAAE,QAAQ;IACtG;;OAEG;IACH,KAAK,CAAC,EAAE,WAAW,EAAE,GAAG,IAAI,CAAC;CAChC;AACD;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC/K;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClK;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;;GAGG;AAEH,wBAAgB,0CAA0C,CAAC,MAAM,EAAE,mBAAmB,EAAE,iCAAiC,GAAE,OAAO,CAAC,iCAAiC,CAAC,GAAG,SAAS,GAAG,IAAS,GAAI,IAAI,CAKpM;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,uJAAuJ,CAAC;AAcpN;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBAWlE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,uCAAuC,EAAE,oDAAoD,EAAE,8CAA8C,EAAE,oBAAoB,EAAgE,MAAM,wCAAwC,CAAC;AAC3R,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AAI7H;;;;GAIG;AACH,aAAa;AACb,MAAM,UAAU,6DAA6D,CAAC,SAAgC;IAC1G,OAAO,gDAAgD,CAAC;AAC5D,CAAC;AACD;;;GAGG;AACH,aAAa;AACb,MAAM,UAAU,gDAAgD,CAAC,oCAA4F,EAAE;IAC3J,uCACO,oDAAoD,CAAC,iCAAiC,CAAC,KAC1F,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,iCAAiC,CAAC,KAAK,GAAG,CAAC,CAAC,2BAA2B,CAAc,uCAAuC,CAAC,CAAC,CAAC,CAAC,IACnJ;AACL,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,uCAAuC,EAAE,oDAAoD,EAAE,8CAA8C,EAAE,oBAAoB,EAAgE,MAAM,wCAAwC,CAAC;AAC3R,aAAa;AACb,OAAO,EAAE,sCAAsC,EAAmB,MAAM,oDAAoD,CAAC;AAI7H;;;;GAIG;AACH,aAAa;AACb,MAAM,UAAU,6DAA6D,CAAC,SAAgC;IAC1G,OAAO,gDAAgD,CAAC;AAC5D,CAAC;AACD;;;GAGG;AACH,aAAa;AACb,MAAM,UAAU,gDAAgD,CAAC,oCAA4F,EAAE;IAC3J,uCACO,oDAAoD,CAAC,iCAAiC,CAAC,KAC1F,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,iCAAiC,CAAC,KAAK,GAAG,CAAC,CAAC,2BAA2B,CAAc,uCAAuC,CAAC,CAAC,CAAC,CAAC,IACnJ;AACL,CAAC;AA+DD;;;GAGG;AACH,aAAa;AACb,MAAM,UAAU,0CAA0C,CAAC,MAA2B,EAAE,oCAAmG,EAAE;IACzL,IAAI,iCAAiC,EAAE,CAAC;QACpC,8CAA8C,CAAC,MAAM,EAAE,iCAAiC,CAAC,CAAA;QACzF,MAAM,CAAC,6BAA6B,CAAc,OAAO,EAAE,iCAAiC,CAAC,KAAK,EAAE,oBAAoB,CAAC,CAAC;IAC9H,CAAC;AACL,CAAC;AACD;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAG,oJAAoJ,CAAC;AACpN;;GAEG;AACH,MAAM,4DAA4D,GAA2B;IACzF,OAAO,EAAE,UAAU;IACnB,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;IACrB,SAAS,EAAE,YAAY;IACvB,QAAQ,EAAE,WAAW;IACrB,QAAQ,EAAE,WAAW;IACrB,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,QAAQ;CAClB,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,oDAAoD,GAAqB;IAClF,GAAG,EAAE;QACD,WAAW,EAAE,+CAA+C;QAC5D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,sCAAmE;SAC3E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,6DAA6D;QACnF,qBAAqB,EAAE,4DAA4D;KACtF;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -22,11 +22,11 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder
|
|
|
22
22
|
*/
|
|
23
23
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
24
24
|
/**
|
|
25
|
-
* Get a thread
|
|
25
|
+
* Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<ConversationThread>}
|
|
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/conversationthread-get?view=graph-rest-1.0|Find more info here}
|
|
30
30
|
*/
|
|
31
31
|
get(requestConfiguration?: RequestConfiguration<ConversationThreadItemRequestBuilderGetQueryParameters> | undefined): Promise<ConversationThread | undefined>;
|
|
32
32
|
/**
|
|
@@ -45,7 +45,7 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder
|
|
|
45
45
|
*/
|
|
46
46
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
47
|
/**
|
|
48
|
-
* Get a thread
|
|
48
|
+
* Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
|
|
49
49
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
50
50
|
* @returns {RequestInformation}
|
|
51
51
|
*/
|
|
@@ -59,7 +59,7 @@ export interface ConversationThreadItemRequestBuilder extends BaseRequestBuilder
|
|
|
59
59
|
toPatchRequestInformation(body: ConversationThread, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
|
-
* Get a thread
|
|
62
|
+
* Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
|
|
63
63
|
*/
|
|
64
64
|
export interface ConversationThreadItemRequestBuilderGetQueryParameters {
|
|
65
65
|
/**
|
|
@@ -17,22 +17,22 @@ export interface PostsRequestBuilder extends BaseRequestBuilder<PostsRequestBuil
|
|
|
17
17
|
*/
|
|
18
18
|
byPostId(postId: string): PostItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
* Get the
|
|
20
|
+
* Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<PostCollectionResponse>}
|
|
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/conversationthread-list-posts?view=graph-rest-1.0|Find more info here}
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<PostsRequestBuilderGetQueryParameters> | undefined): Promise<PostCollectionResponse | undefined>;
|
|
27
27
|
/**
|
|
28
|
-
* Get the
|
|
28
|
+
* Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation.
|
|
29
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
30
|
* @returns {RequestInformation}
|
|
31
31
|
*/
|
|
32
32
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PostsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
-
* Get the
|
|
35
|
+
* Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation.
|
|
36
36
|
*/
|
|
37
37
|
export interface PostsRequestBuilderGetQueryParameters {
|
|
38
38
|
/**
|
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.29",
|
|
4
4
|
"description": "Groups fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
|
|
36
36
|
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
|
|
37
37
|
"@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
|
|
38
|
-
"@microsoft/msgraph-sdk": "^1.0.0-preview.
|
|
38
|
+
"@microsoft/msgraph-sdk": "^1.0.0-preview.29",
|
|
39
39
|
"guid-typescript": "^1.0.9",
|
|
40
40
|
"tslib": "^2.6.2"
|
|
41
41
|
},
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
45
|
"type": "module",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "3588db2b255734a43036a0a0e79434a31c821f3b"
|
|
47
47
|
}
|