We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0669da0 commit 0b80dfeCopy full SHA for 0b80dfe
generate-routes.ts
@@ -271,7 +271,6 @@ export class SeamHttp${pascalCase(namespace)} {
271
client: Axios
272
273
${constructors
274
- .replace(/.*this\.#legacy.*\n/, '')
275
.replaceAll(': SeamHttp ', `: SeamHttp${pascalCase(namespace)} `)
276
.replaceAll('new SeamHttp(', `new SeamHttp${pascalCase(namespace)}(`)}
277
src/lib/seam/connect/seam-http.ts
@@ -31,11 +31,8 @@ import {
31
export class SeamHttp {
32
33
34
- // #legacy: boolean
35
-
36
constructor(apiKeyOrOptions: string | SeamHttpOptions = {}) {
37
const options = parseOptions(apiKeyOrOptions)
38
- // this.#legacy = options.enableLegacyMethodBehaivor
39
this.client = createClient(options)
40
}
41
0 commit comments