File tree Expand file tree Collapse file tree 6 files changed +781
-16
lines changed Expand file tree Collapse file tree 6 files changed +781
-16
lines changed Original file line number Diff line number Diff line change @@ -223,8 +223,9 @@ Methods:
223
223
224
224
Types:
225
225
226
- - <code ><a href =" ./src/resources/conversations/conversations.ts " >ConversationList </a ></code >
226
+ - <code ><a href =" ./src/resources/conversations/conversations.ts " >Conversation </a ></code >
227
227
- <code ><a href =" ./src/resources/conversations/conversations.ts " >ConversationListResponse</a ></code >
228
+ - <code ><a href =" ./src/resources/conversations/conversations.ts " >ConversationSearchResponse</a ></code >
228
229
229
230
Methods:
230
231
@@ -234,7 +235,7 @@ Methods:
234
235
- <code title =" get /conversations " >client.conversations.<a href =" ./src/resources/conversations/conversations.ts " >list</a >({ ...params }) -> ConversationListResponsesCursorPagination</code >
235
236
- <code title =" post /conversations/{id}/convert " >client.conversations.<a href =" ./src/resources/conversations/conversations.ts " >convert</a >(id, { ...params }) -> Ticket | null</code >
236
237
- <code title =" post /conversations/redact " >client.conversations.<a href =" ./src/resources/conversations/conversations.ts " >redact</a >({ ...params }) -> Conversation</code >
237
- - <code title =" post /conversations/search " >client.conversations.<a href =" ./src/resources/conversations/conversations.ts " >search</a >({ ...params }) -> ConversationList </code >
238
+ - <code title =" post /conversations/search " >client.conversations.<a href =" ./src/resources/conversations/conversations.ts " >search</a >({ ...params }) -> ConversationSearchResponse </code >
238
239
239
240
## Tags
240
241
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ echo "==> Starting mock server with URL ${URL}"
21
21
22
22
# Run prism mock on the given spec
23
23
if [ " $1 " == " --daemon" ]; then
24
- npm
exec --package=@
stainless-api /
[email protected] .4 -- prism mock
" $URL " & > .prism.log
&
24
+ npm exec --package=@stoplight /prism-cli@~ 5.8 -- prism mock " $URL " & > .prism.log &
25
25
26
26
# Wait for server to come online
27
27
echo -n " Waiting for server"
@@ -37,5 +37,5 @@ if [ "$1" == "--daemon" ]; then
37
37
38
38
echo
39
39
else
40
- npm
exec --package=@
stainless-api /
[email protected] .4 -- prism mock
" $URL "
40
+ npm exec --package=@stoplight /prism-cli@~ 5.8 -- prism mock " $URL "
41
41
fi
Original file line number Diff line number Diff line change @@ -289,8 +289,9 @@ export namespace Intercom {
289
289
export import ContactUnarchiveParams = API . ContactUnarchiveParams ;
290
290
291
291
export import Conversations = API . Conversations ;
292
- export import ConversationList = API . ConversationList ;
292
+ export import Conversation = API . Conversation ;
293
293
export import ConversationListResponse = API . ConversationListResponse ;
294
+ export import ConversationSearchResponse = API . ConversationSearchResponse ;
294
295
export import ConversationCreateParams = API . ConversationCreateParams ;
295
296
export import ConversationRetrieveParams = API . ConversationRetrieveParams ;
296
297
export import ConversationUpdateParams = API . ConversationUpdateParams ;
You can’t perform that action at this time.
0 commit comments