File tree 7 files changed +71
-5
lines changed
7 files changed +71
-5
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ const createEndpoint = (
144
144
routePath : string ,
145
145
endpointPath : string ,
146
146
) : Endpoint => {
147
- if ( ! isOpenApiPath ( endpointPath ) ) {
147
+ if ( ! isOpenapiPath ( endpointPath ) ) {
148
148
throw new Error ( `Did not find ${ endpointPath } in OpenAPI spec` )
149
149
}
150
150
const spec = openapi . paths [ endpointPath ]
@@ -174,7 +174,7 @@ const deriveResource = (
174
174
return endpointResources [ endpointPath ] ?? null
175
175
}
176
176
177
- if ( isOpenApiPath ( endpointPath ) ) {
177
+ if ( isOpenapiPath ( endpointPath ) ) {
178
178
const spec = openapi . paths [ endpointPath ]
179
179
const methodKey = method . toLowerCase ( )
180
180
@@ -213,7 +213,7 @@ const isEndpointResource = (
213
213
key : string ,
214
214
) : key is keyof typeof endpointResources => key in endpointResources
215
215
216
- const isOpenApiPath = ( key : string ) : key is keyof typeof openapi . paths =>
216
+ const isOpenapiPath = ( key : string ) : key is keyof typeof openapi . paths =>
217
217
key in openapi . paths
218
218
219
219
const isEndpointUnderRoute = (
Original file line number Diff line number Diff line change 118
118
"eslint-plugin-unused-imports" : " ^3.0.0" ,
119
119
"execa" : " ^8.0.1" ,
120
120
"landlubber" : " ^1.0.0" ,
121
+ "nock" : " ^13.4.0" ,
121
122
"node-fetch" : " ^3.3.2" ,
122
123
"prettier" : " ^3.0.0" ,
123
124
"tsc-alias" : " ^1.8.2" ,
Original file line number Diff line number Diff line change 1
1
export { SeamHttpInvalidTokenError } from './auth.js'
2
2
export * from './error-interceptor.js'
3
+ export * from './openapi.js'
3
4
export * from './options.js'
4
5
export {
5
6
isSeamActionAttemptError ,
Original file line number Diff line number Diff line change
1
+ import type { openapi } from '@seamapi/types/connect'
2
+
3
+ import { createClient } from './client.js'
4
+ import { defaultEndpoint , sdkHeaders } from './parse-options.js'
5
+
6
+ export const getOpenapiSchema = async (
7
+ endpoint = defaultEndpoint ,
8
+ ) : Promise < typeof openapi > => {
9
+ const client = createClient ( {
10
+ axiosOptions : {
11
+ baseURL : endpoint ,
12
+ headers : sdkHeaders ,
13
+ } ,
14
+ } )
15
+ const { data } = await client . get < typeof openapi > ( '/openapi.json' )
16
+ return data
17
+ }
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import {
11
11
type SeamHttpRequestOptions ,
12
12
} from './options.js'
13
13
14
- const defaultEndpoint = 'https://connect.getseam.com'
14
+ export const defaultEndpoint = 'https://connect.getseam.com'
15
15
16
- const sdkHeaders = {
16
+ export const sdkHeaders = {
17
17
'seam-sdk-name' : 'seamapi/javascript-http' ,
18
18
'seam-sdk-version' : version ,
19
19
}
Original file line number Diff line number Diff line change
1
+ import { openapi } from '@seamapi/types/connect'
2
+ import test from 'ava'
3
+ import { getTestServer } from 'fixtures/seam/connect/api.js'
4
+ import nock from 'nock'
5
+
6
+ import { getOpenapiSchema } from '@seamapi/http/connect'
7
+
8
+ test ( 'SeamHttp: getOpenapiSchema returns data' , async ( t ) => {
9
+ const { endpoint } = await getTestServer ( t )
10
+
11
+ // UPSTREAM: Must use nock since fake-seam-connect returns 404 for /openapi.json.
12
+ // https://github.com/seamapi/fake-seam-connect/issues/132
13
+ nock ( endpoint ) . get ( '/openapi.json' ) . reply ( 200 , openapi )
14
+
15
+ const data = await getOpenapiSchema ( endpoint )
16
+ t . truthy ( data . info . title )
17
+ } )
You can’t perform that action at this time.
0 commit comments