File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -420,8 +420,8 @@ This API is used internally and is not directly supported.
420420
421421#### Inspecting the Request
422422
423- All client methods return an instance of ` SeamRequest ` .
424- Inspect the request before it is sent to the server by intentionally not awaiting the ` SeamRequest ` :
423+ All client methods return an instance of ` SeamHttpRequest ` .
424+ Inspect the request before it is sent to the server by intentionally not awaiting the ` SeamHttpRequest ` :
425425
426426``` ts
427427const seam = new Seam (' your-api-key' )
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ async function writeReadmeUsage(content: string): Promise<void> {
6262 . replaceAll ( '@seamapi/webhook' , 'seam' )
6363 . replaceAll ( '@seamapi/http' , 'seam' )
6464 . replaceAll ( 'SeamHttp' , 'Seam' )
65+ . replaceAll ( 'SeamRequest' , 'SeamHttpRequest' )
6566 . replaceAll ( 'seam/connect' , 'seam' )
6667
6768 const currentUsageSection = matches [ 1 ]
Original file line number Diff line number Diff line change 5252 "lint" : " eslint --ignore-path .gitignore ." ,
5353 "prelint" : " prettier --check --ignore-path .gitignore ." ,
5454 "postversion" : " git push --follow-tags" ,
55- "generate" : " tsx generate-readme.ts" ,
56- "postgenerate" : " markdown-toc -i README.md --bullets '-'" ,
55+ "generate" : " markdown-toc -i README.md --bullets '-'" ,
56+ "pregenerate" : " tsx generate-readme.ts" ,
57+ "postgenerate" : " prettier --write README.md" ,
5758 "example" : " tsx examples" ,
5859 "example:inspect" : " tsx --inspect examples" ,
5960 "format" : " eslint --ignore-path .gitignore --fix ." ,
Original file line number Diff line number Diff line change 1- import { SeamHttp as Seam } from '@seamapi/http/connect'
1+ import {
2+ SeamHttp as Seam ,
3+ SeamHttpMultiWorkspace as SeamMultiWorkspace ,
4+ type SeamHttpMultiWorkspaceOptions as SeamMultiWorkspaceOptions ,
5+ type SeamHttpOptions as SeamOptions ,
6+ } from '@seamapi/http/connect'
27
38export * from '@seamapi/http/connect'
49export type * from '@seamapi/types/connect'
510export * from '@seamapi/webhook'
6- export { Seam }
11+ export { Seam , SeamMultiWorkspace }
12+ export type { SeamMultiWorkspaceOptions , SeamOptions }
You can’t perform that action at this time.
0 commit comments