@microsoft/msgraph-sdk-chats 1.0.0-preview.21 → 1.0.0-preview.23
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/chats/item/installedApps/index.d.ts +7 -5
- package/chats/item/installedApps/index.d.ts.map +1 -1
- package/chats/item/installedApps/item/index.d.ts +7 -5
- package/chats/item/installedApps/item/index.d.ts.map +1 -1
- package/chats/item/members/index.d.ts +7 -5
- package/chats/item/members/index.d.ts.map +1 -1
- package/chats/item/members/item/index.d.ts +7 -5
- package/chats/item/members/item/index.d.ts.map +1 -1
- package/chats/item/messages/index.d.ts +7 -5
- package/chats/item/messages/index.d.ts.map +1 -1
- package/chats/item/messages/item/hostedContents/index.d.ts +4 -3
- package/chats/item/messages/item/hostedContents/index.d.ts.map +1 -1
- package/chats/item/messages/item/hostedContents/item/index.d.ts +4 -3
- package/chats/item/messages/item/hostedContents/item/index.d.ts.map +1 -1
- package/chats/item/messages/item/hostedContents/item/value/index.d.ts +16 -4
- package/chats/item/messages/item/hostedContents/item/value/index.d.ts.map +1 -1
- package/chats/item/messages/item/hostedContents/item/value/index.js +8 -0
- package/chats/item/messages/item/index.d.ts +4 -3
- package/chats/item/messages/item/index.d.ts.map +1 -1
- package/chats/item/messages/item/replies/item/hostedContents/item/value/index.d.ts +16 -4
- package/chats/item/messages/item/replies/item/hostedContents/item/value/index.d.ts.map +1 -1
- package/chats/item/messages/item/replies/item/hostedContents/item/value/index.js +8 -0
- package/chats/item/permissionGrants/index.d.ts +4 -3
- package/chats/item/permissionGrants/index.d.ts.map +1 -1
- package/chats/item/pinnedMessages/index.d.ts +7 -5
- package/chats/item/pinnedMessages/index.d.ts.map +1 -1
- package/chats/item/pinnedMessages/item/index.d.ts +3 -2
- package/chats/item/pinnedMessages/item/index.d.ts.map +1 -1
- package/chats/item/tabs/index.d.ts +7 -5
- package/chats/item/tabs/index.d.ts.map +1 -1
- package/chats/item/tabs/item/index.d.ts +10 -7
- package/chats/item/tabs/item/index.d.ts.map +1 -1
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -17,28 +17,30 @@ export interface PinnedMessagesRequestBuilder extends BaseRequestBuilder<PinnedM
|
|
|
17
17
|
*/
|
|
18
18
|
byPinnedChatMessageInfoId(pinnedChatMessageInfoId: string): PinnedChatMessageInfoItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Get a list of pinnedChatMessages in a chat.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<PinnedChatMessageInfoCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-list-pinnedmessages?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<PinnedMessagesRequestBuilderGetQueryParameters> | undefined): Promise<PinnedChatMessageInfoCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
*
|
|
28
|
+
* Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message.
|
|
28
29
|
* @param body The request body
|
|
29
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
31
|
* @returns {Promise<PinnedChatMessageInfo>}
|
|
31
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-post-pinnedmessages?view=graph-rest-1.0|Find more info here}
|
|
32
34
|
*/
|
|
33
35
|
post(body: PinnedChatMessageInfo, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PinnedChatMessageInfo | undefined>;
|
|
34
36
|
/**
|
|
35
|
-
*
|
|
37
|
+
* Get a list of pinnedChatMessages in a chat.
|
|
36
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
39
|
* @returns {RequestInformation}
|
|
38
40
|
*/
|
|
39
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<PinnedMessagesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
42
|
/**
|
|
41
|
-
*
|
|
43
|
+
* Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message.
|
|
42
44
|
* @param body The request body
|
|
43
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
46
|
* @returns {RequestInformation}
|
|
@@ -46,7 +48,7 @@ export interface PinnedMessagesRequestBuilder extends BaseRequestBuilder<PinnedM
|
|
|
46
48
|
toPostRequestInformation(body: PinnedChatMessageInfo, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
49
|
}
|
|
48
50
|
/**
|
|
49
|
-
*
|
|
51
|
+
* Get a list of pinnedChatMessages in a chat.
|
|
50
52
|
*/
|
|
51
53
|
export interface PinnedMessagesRequestBuilderGetQueryParameters {
|
|
52
54
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAIlR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAsH,KAAK,uCAAuC,EAAE,MAAM,SAAS,CAAC;AAE3L,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,4BAA6B,SAAQ,kBAAkB,CAAC,4BAA4B,CAAC;IAClG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAIlR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAsH,KAAK,uCAAuC,EAAE,MAAM,SAAS,CAAC;AAE3L,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,4BAA6B,SAAQ,kBAAkB,CAAC,4BAA4B,CAAC;IAClG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,8CAA8C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IAC7K;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,8CAA8C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACvJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;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;;GAEG;AACH,eAAO,MAAM,uCAAuC,6HAA6H,CAAC;AAclL;;GAEG;AACH,eAAO,MAAM,8CAA8C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,4BAA4B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAStK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,4CAA4C,EAAE,gBAuB1D,CAAC"}
|
|
@@ -10,9 +10,10 @@ export interface PinnedChatMessageInfoItemRequestBuilder extends BaseRequestBuil
|
|
|
10
10
|
*/
|
|
11
11
|
get message(): MessageRequestBuilder;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Unpin a message from a chat.
|
|
14
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
15
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
16
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-delete-pinnedmessages?view=graph-rest-1.0|Find more info here}
|
|
16
17
|
*/
|
|
17
18
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
18
19
|
/**
|
|
@@ -31,7 +32,7 @@ export interface PinnedChatMessageInfoItemRequestBuilder extends BaseRequestBuil
|
|
|
31
32
|
*/
|
|
32
33
|
patch(body: PinnedChatMessageInfo, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PinnedChatMessageInfo | undefined>;
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* Unpin a message from a chat.
|
|
35
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
37
|
* @returns {RequestInformation}
|
|
37
38
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAI/J,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAE/F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAI/J,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAE/F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,yDAAyD;IACtE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kDAAkD,mGAAmG,CAAC;AAQnK;;GAEG;AACH,eAAO,MAAM,yDAAyD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uCAAuC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAI5L,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBA+BrE,CAAC"}
|
|
@@ -17,28 +17,30 @@ export interface TabsRequestBuilder extends BaseRequestBuilder<TabsRequestBuilde
|
|
|
17
17
|
*/
|
|
18
18
|
byTeamsTabId(teamsTabId: string): TeamsTabItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Retrieve the list of tabs in the specified chat.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<TeamsTabCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-list-tabs?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<TabsRequestBuilderGetQueryParameters> | undefined): Promise<TeamsTabCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
*
|
|
28
|
+
* Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat.
|
|
28
29
|
* @param body The request body
|
|
29
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
31
|
* @returns {Promise<TeamsTab>}
|
|
31
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-post-tabs?view=graph-rest-1.0|Find more info here}
|
|
32
34
|
*/
|
|
33
35
|
post(body: TeamsTab, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<TeamsTab | undefined>;
|
|
34
36
|
/**
|
|
35
|
-
*
|
|
37
|
+
* Retrieve the list of tabs in the specified chat.
|
|
36
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
39
|
* @returns {RequestInformation}
|
|
38
40
|
*/
|
|
39
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<TabsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
42
|
/**
|
|
41
|
-
*
|
|
43
|
+
* Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat.
|
|
42
44
|
* @param body The request body
|
|
43
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
46
|
* @returns {RequestInformation}
|
|
@@ -46,7 +48,7 @@ export interface TabsRequestBuilder extends BaseRequestBuilder<TabsRequestBuilde
|
|
|
46
48
|
toPostRequestInformation(body: TeamsTab, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
49
|
}
|
|
48
50
|
/**
|
|
49
|
-
*
|
|
51
|
+
* Retrieve the list of tabs in the specified chat.
|
|
50
52
|
*/
|
|
51
53
|
export interface TabsRequestBuilderGetQueryParameters {
|
|
52
54
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmH,KAAK,QAAQ,EAAE,KAAK,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAIjN,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA4F,KAAK,0BAA0B,EAAE,MAAM,SAAS,CAAC;AAEpJ,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,kBAAmB,SAAQ,kBAAkB,CAAC,kBAAkB,CAAC;IAC9E;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,YAAY,CAAC,UAAU,EAAE,MAAM,GAAI,0BAA0B,CAAC;IAC/D
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmH,KAAK,QAAQ,EAAE,KAAK,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAIjN,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA4F,KAAK,0BAA0B,EAAE,MAAM,SAAS,CAAC;AAEpJ,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,kBAAmB,SAAQ,kBAAkB,CAAC,kBAAkB,CAAC;IAC9E;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,YAAY,CAAC,UAAU,EAAE,MAAM,GAAI,0BAA0B,CAAC;IAC/D;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,oCAAoC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IACtJ;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IACvH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,oCAAoC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC7I;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,QAAQ,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACnI;AACD;;GAEG;AACH,MAAM,WAAW,oCAAoC;IACjD;;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;;GAEG;AACH,eAAO,MAAM,6BAA6B,mHAAmH,CAAC;AAc9J;;GAEG;AACH,eAAO,MAAM,oCAAoC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,kBAAkB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASlJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,kCAAkC,EAAE,gBAuBhD,CAAC"}
|
|
@@ -10,40 +10,43 @@ export interface TeamsTabItemRequestBuilder extends BaseRequestBuilder<TeamsTabI
|
|
|
10
10
|
*/
|
|
11
11
|
get teamsApp(): TeamsAppRequestBuilder;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Remove (unpin) a tab from the specified chat.
|
|
14
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
15
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
16
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-delete-tabs?view=graph-rest-1.0|Find more info here}
|
|
16
17
|
*/
|
|
17
18
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
+
* Retrieve the properties and relationships of the specified tab in a chat.
|
|
20
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
21
22
|
* @returns {Promise<TeamsTab>}
|
|
22
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-get-tabs?view=graph-rest-1.0|Find more info here}
|
|
23
25
|
*/
|
|
24
26
|
get(requestConfiguration?: RequestConfiguration<TeamsTabItemRequestBuilderGetQueryParameters> | undefined): Promise<TeamsTab | undefined>;
|
|
25
27
|
/**
|
|
26
|
-
* Update the
|
|
28
|
+
* Update the properties of the specified tab in a chat. This can be used to configure the content of the tab.
|
|
27
29
|
* @param body The request body
|
|
28
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
31
|
* @returns {Promise<TeamsTab>}
|
|
30
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/chat-patch-tabs?view=graph-rest-1.0|Find more info here}
|
|
31
34
|
*/
|
|
32
35
|
patch(body: TeamsTab, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<TeamsTab | undefined>;
|
|
33
36
|
/**
|
|
34
|
-
*
|
|
37
|
+
* Remove (unpin) a tab from the specified chat.
|
|
35
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
39
|
* @returns {RequestInformation}
|
|
37
40
|
*/
|
|
38
41
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
39
42
|
/**
|
|
40
|
-
*
|
|
43
|
+
* Retrieve the properties and relationships of the specified tab in a chat.
|
|
41
44
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
45
|
* @returns {RequestInformation}
|
|
43
46
|
*/
|
|
44
47
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<TeamsTabItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
45
48
|
/**
|
|
46
|
-
* Update the
|
|
49
|
+
* Update the properties of the specified tab in a chat. This can be used to configure the content of the tab.
|
|
47
50
|
* @param body The request body
|
|
48
51
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
49
52
|
* @returns {RequestInformation}
|
|
@@ -51,7 +54,7 @@ export interface TeamsTabItemRequestBuilder extends BaseRequestBuilder<TeamsTabI
|
|
|
51
54
|
toPatchRequestInformation(body: TeamsTab, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
52
55
|
}
|
|
53
56
|
/**
|
|
54
|
-
*
|
|
57
|
+
* Retrieve the properties and relationships of the specified tab in a chat.
|
|
55
58
|
*/
|
|
56
59
|
export interface TeamsTabItemRequestBuilderGetQueryParameters {
|
|
57
60
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2D,KAAK,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAIxH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,0BAA2B,SAAQ,kBAAkB,CAAC,0BAA0B,CAAC;IAC9F;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2D,KAAK,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAIxH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,0BAA2B,SAAQ,kBAAkB,CAAC,0BAA0B,CAAC;IAC9F;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4CAA4C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IAC5I;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IACxH;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4CAA4C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACrJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,QAAQ,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpI;AACD;;GAEG;AACH,MAAM,WAAW,4CAA4C;IACzD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,qCAAqC,4EAA4E,CAAC;AAQ/H;;GAEG;AACH,eAAO,MAAM,4CAA4C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,0BAA0B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAIlK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,gBA+BxD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-chats",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.23",
|
|
4
4
|
"description": "Chats fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
|
|
38
38
|
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
|
|
39
39
|
"@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
|
|
40
|
-
"@microsoft/msgraph-sdk": "^1.0.0-preview.
|
|
40
|
+
"@microsoft/msgraph-sdk": "^1.0.0-preview.23",
|
|
41
41
|
"guid-typescript": "^1.0.9",
|
|
42
42
|
"tslib": "^2.6.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "^5.3.3"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "70d41d4e29d7de7555b8aa856bc2b7ea590ea6a5"
|
|
48
48
|
}
|