httpsnippet-client-api 7.0.0-beta.16 → 7.0.0-beta.17

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.
@@ -0,0 +1,34 @@
1
+
2
+ > httpsnippet-client-api@7.0.0-beta.16 attw
3
+ > attw --pack --format ascii --profile node16
4
+
5
+ 
6
+ httpsnippet-client-api v7.0.0-beta.16
7
+
8
+ Build tools:
9
+ - typescript@^5.8.2
10
+ - tsup@^8.5.0
11
+
12
+  (ignoring resolutions: 'node10')
13
+ 
14
+  No problems found 🌟
15
+
16
+
17
+ "httpsnippet-client-api"
18
+
19
+ node16 (from CJS): 🟢 (CJS)
20
+ node16 (from ESM): 🟢 (ESM)
21
+ bundler: 🟢
22
+ node10: (ignored) 🟢
23
+
24
+ ***********************************
25
+
26
+ "httpsnippet-client-api/package.json"
27
+
28
+ node16 (from CJS): 🟢 (JSON)
29
+ node16 (from ESM): 🟢 (JSON)
30
+ bundler: 🟢 (JSON)
31
+ node10: (ignored) 🟢 (JSON)
32
+
33
+ ***********************************
34
+ â ™
@@ -0,0 +1,9 @@
1
+
2
+ > httpsnippet-client-api@7.0.0-beta.17 prebuild
3
+ > rm -rf dist/
4
+
5
+ â ™
6
+ > httpsnippet-client-api@7.0.0-beta.17 build
7
+ > tsup
8
+
9
+ ⠙⠙
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # httpsnippet-client-api
2
+
3
+ ## 7.0.0-beta.17
4
+
5
+ ### Minor Changes
6
+
7
+ - 14c3f6d: Updating our OpenAPI dependencies and refactoring the way we dereference API definitions.
package/dist/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// src/index.ts
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// src/index.ts
2
2
  var _codebuilder = require('@readme/httpsnippet/helpers/code-builder');
3
3
 
4
4
  // node_modules/camelcase/index.js
@@ -110,10 +110,137 @@ function getOwnEnumerableKeys(object) {
110
110
  ];
111
111
  }
112
112
 
113
+ // ../../node_modules/reserved-identifiers/index.js
114
+ var identifiers = [
115
+ // Keywords
116
+ "await",
117
+ "break",
118
+ "case",
119
+ "catch",
120
+ "class",
121
+ "const",
122
+ "continue",
123
+ "debugger",
124
+ "default",
125
+ "delete",
126
+ "do",
127
+ "else",
128
+ "enum",
129
+ "export",
130
+ "extends",
131
+ "false",
132
+ "finally",
133
+ "for",
134
+ "function",
135
+ "if",
136
+ "import",
137
+ "in",
138
+ "instanceof",
139
+ "new",
140
+ "null",
141
+ "return",
142
+ "super",
143
+ "switch",
144
+ "this",
145
+ "throw",
146
+ "true",
147
+ "try",
148
+ "typeof",
149
+ "var",
150
+ "void",
151
+ "while",
152
+ "with",
153
+ "yield",
154
+ // Future reserved keywords
155
+ "implements",
156
+ "interface",
157
+ "package",
158
+ "private",
159
+ "protected",
160
+ "public",
161
+ // Not keywords, but still restricted
162
+ "arguments",
163
+ "eval"
164
+ ];
165
+ var globalProperties = [
166
+ "globalThis",
167
+ "Infinity",
168
+ "NaN",
169
+ "undefined"
170
+ ];
171
+ function reservedIdentifiers({ includeGlobalProperties = false } = {}) {
172
+ return /* @__PURE__ */ new Set([
173
+ ...identifiers,
174
+ ...includeGlobalProperties ? globalProperties : []
175
+ ]);
176
+ }
177
+
178
+ // ../../node_modules/identifier-regex/index.js
179
+ var baseRegex = /[$_\p{ID_Start}][$_\u200C\u200D\p{ID_Continue}]*/u;
180
+ var basePattern = `(?<![@#$_\\p{ID_Continue}\\p{ID_Start}])(?!(?:${[...reservedIdentifiers({ includeGlobalProperties: true })].join("|")})(?![$_\\p{ID_Continue}]))${baseRegex.source}`;
181
+ var regex = new RegExp(basePattern, "u");
182
+ var regexExact = new RegExp(`^${basePattern}$`, "u");
183
+ function identifierRegex({ exact = true } = {}) {
184
+ return exact ? regexExact : regex;
185
+ }
186
+
187
+ // ../../node_modules/function-timeout/index.js
188
+ var _vm = require('vm'); var _vm2 = _interopRequireDefault(_vm);
189
+ var script = new _vm2.default.Script("returnValue = functionToRun()");
190
+ function functionTimeout(function_, { timeout, context: context2 = _vm2.default.createContext() } = {}) {
191
+ const wrappedFunction = (...arguments_) => {
192
+ context2.functionToRun = () => function_(...arguments_);
193
+ script.runInNewContext(context2, { timeout });
194
+ return context2.returnValue;
195
+ };
196
+ Object.defineProperty(wrappedFunction, "name", {
197
+ value: `functionTimeout(${function_.name || "<anonymous>"})`,
198
+ configurable: true
199
+ });
200
+ return wrappedFunction;
201
+ }
202
+ function isTimeoutError(error) {
203
+ return _optionalChain([error, 'optionalAccess', _2 => _2.code]) === "ERR_SCRIPT_EXECUTION_TIMEOUT";
204
+ }
205
+
206
+ // ../../node_modules/super-regex/index.js
207
+ var context = {};
208
+ function isMatch(regex3, string, { timeout } = {}) {
209
+ try {
210
+ return functionTimeout(() => structuredClone(regex3).test(string), { timeout, context })();
211
+ } catch (error) {
212
+ if (isTimeoutError(error)) {
213
+ return false;
214
+ }
215
+ throw error;
216
+ }
217
+ }
218
+
219
+ // ../../node_modules/is-identifier/index.js
220
+ var regex2 = identifierRegex();
221
+ function isIdentifier(value) {
222
+ if (typeof value !== "string") {
223
+ throw new TypeError(`Expected a string, got \`${typeof value}\`.`);
224
+ }
225
+ if (value.length > 1e5) {
226
+ return false;
227
+ }
228
+ return isMatch(regex2, value, { timeout: 1e3 });
229
+ }
230
+
113
231
  // ../../node_modules/stringify-object/index.js
232
+ var CHARACTER_ESCAPES = {
233
+ "\n": String.raw`\n`,
234
+ "\r": String.raw`\r`,
235
+ " ": String.raw`\t`,
236
+ "\b": String.raw`\b`,
237
+ "\f": String.raw`\f`,
238
+ "\v": String.raw`\v`,
239
+ "\0": String.raw`\0`
240
+ };
114
241
  function stringifyObject(input, options, pad) {
115
242
  const seen = [];
116
- return function stringify2(input2, options2 = {}, pad2 = "") {
243
+ return (function stringify2(input2, options2 = {}, pad2 = "") {
117
244
  const indent = options2.indent || " ";
118
245
  let tokens;
119
246
  if (options2.inlineCharacterLimit === void 0) {
@@ -135,36 +262,70 @@ function stringifyObject(input, options, pad) {
135
262
  if (options2.inlineCharacterLimit === void 0) {
136
263
  return string;
137
264
  }
138
- const oneLined = string.replace(new RegExp(tokens.newline, "g"), "").replace(new RegExp(tokens.newlineOrSpace, "g"), " ").replace(new RegExp(tokens.pad + "|" + tokens.indent, "g"), "");
265
+ const oneLined = string.replaceAll(tokens.newline, "").replaceAll(tokens.newlineOrSpace, " ").replaceAll(tokens.pad, "").replaceAll(tokens.indent, "");
139
266
  if (oneLined.length <= options2.inlineCharacterLimit) {
140
267
  return oneLined;
141
268
  }
142
- return string.replace(new RegExp(tokens.newline + "|" + tokens.newlineOrSpace, "g"), "\n").replace(new RegExp(tokens.pad, "g"), pad2).replace(new RegExp(tokens.indent, "g"), pad2 + indent);
269
+ return string.replaceAll(tokens.newline, "\n").replaceAll(tokens.newlineOrSpace, "\n").replaceAll(tokens.pad, pad2).replaceAll(tokens.indent, pad2 + indent);
143
270
  };
144
271
  if (seen.includes(input2)) {
145
272
  return '"[Circular]"';
146
273
  }
147
- if (input2 === null || input2 === void 0 || typeof input2 === "number" || typeof input2 === "boolean" || typeof input2 === "function" || typeof input2 === "symbol" || isRegexp(input2)) {
274
+ const type = typeof input2;
275
+ if (input2 === null || input2 === void 0 || type === "number" || type === "boolean" || type === "function" || isRegexp(input2)) {
148
276
  return String(input2);
149
277
  }
278
+ if (type === "bigint") {
279
+ return String(input2) + "n";
280
+ }
281
+ if (type === "symbol") {
282
+ const { description } = input2;
283
+ if (description === void 0) {
284
+ return "Symbol()";
285
+ }
286
+ if (_optionalChain([description, 'optionalAccess', _3 => _3.startsWith, 'call', _4 => _4("Symbol.")]) && Symbol[description.slice(7)] === input2) {
287
+ return description;
288
+ }
289
+ const globalKey = Symbol.keyFor(input2);
290
+ if (globalKey !== void 0) {
291
+ return `Symbol.for(${stringify2(globalKey, options2)})`;
292
+ }
293
+ return `Symbol(${stringify2(description, options2)})`;
294
+ }
150
295
  if (input2 instanceof Date) {
151
- return `new Date('${input2.toISOString()}')`;
296
+ return Number.isNaN(input2.getTime()) ? "new Date('Invalid Date')" : `new Date('${input2.toISOString()}')`;
297
+ }
298
+ if (input2 instanceof Map || input2 instanceof Set) {
299
+ const isMap = input2 instanceof Map;
300
+ const name = isMap ? "Map" : "Set";
301
+ if (input2.size === 0) {
302
+ return `new ${name}()`;
303
+ }
304
+ seen.push(input2);
305
+ const items = [...input2].map((item) => {
306
+ if (isMap) {
307
+ const [key, value] = item;
308
+ return tokens.indent + `[${stringify2(key, options2, pad2 + indent)}, ${stringify2(value, options2, pad2 + indent)}]`;
309
+ }
310
+ return tokens.indent + stringify2(item, options2, pad2 + indent);
311
+ }).join("," + tokens.newlineOrSpace);
312
+ seen.pop();
313
+ return expandWhiteSpace(`new ${name}([${tokens.newline}${items}${tokens.newline}${tokens.pad}])`);
152
314
  }
153
315
  if (Array.isArray(input2)) {
154
316
  if (input2.length === 0) {
155
317
  return "[]";
156
318
  }
157
319
  seen.push(input2);
158
- const returnValue = "[" + tokens.newline + input2.map((element, i) => {
159
- const eol = input2.length - 1 === i ? tokens.newline : "," + tokens.newlineOrSpace;
320
+ const items = input2.map((element, index) => {
160
321
  let value = stringify2(element, options2, pad2 + indent);
161
322
  if (options2.transform) {
162
- value = options2.transform(input2, i, value);
323
+ value = options2.transform(input2, index, value);
163
324
  }
164
- return tokens.indent + value + eol;
165
- }).join("") + tokens.pad + "]";
325
+ return tokens.indent + value;
326
+ }).join("," + tokens.newlineOrSpace);
166
327
  seen.pop();
167
- return expandWhiteSpace(returnValue);
328
+ return expandWhiteSpace(`[${tokens.newline}${items}${tokens.newline}${tokens.pad}]`);
168
329
  }
169
330
  if (isObject(input2)) {
170
331
  let objectKeys = getOwnEnumerableKeys(input2);
@@ -175,29 +336,31 @@ function stringifyObject(input, options, pad) {
175
336
  return "{}";
176
337
  }
177
338
  seen.push(input2);
178
- const returnValue = "{" + tokens.newline + objectKeys.map((element, index) => {
179
- const eol = objectKeys.length - 1 === index ? tokens.newline : "," + tokens.newlineOrSpace;
339
+ const pairs = objectKeys.map((element) => {
180
340
  const isSymbol = typeof element === "symbol";
181
- const isClassic = !isSymbol && /^[a-z$_][$\w]*$/i.test(element);
182
- const key = isSymbol || isClassic ? element : stringify2(element, options2);
341
+ let key;
342
+ if (isSymbol) {
343
+ key = `[${stringify2(element, options2)}]`;
344
+ } else if (isIdentifier(element)) {
345
+ key = element;
346
+ } else {
347
+ key = stringify2(element, options2);
348
+ }
183
349
  let value = stringify2(input2[element], options2, pad2 + indent);
184
350
  if (options2.transform) {
185
351
  value = options2.transform(input2, element, value);
186
352
  }
187
- return tokens.indent + String(key) + ": " + value + eol;
188
- }).join("") + tokens.pad + "}";
353
+ return tokens.indent + key + ": " + value;
354
+ }).join("," + tokens.newlineOrSpace);
189
355
  seen.pop();
190
- return expandWhiteSpace(returnValue);
356
+ return expandWhiteSpace(`{${tokens.newline}${pairs}${tokens.newline}${tokens.pad}}`);
191
357
  }
192
- input2 = input2.replace(/\\/g, "\\\\");
193
- input2 = String(input2).replace(/[\r\n]/g, (x) => x === "\n" ? "\\n" : "\\r");
358
+ const stringified = String(input2).replaceAll("\\", "\\\\").replaceAll(/[\u0000-\u001F\u007F]/g, (x) => _nullishCoalesce(CHARACTER_ESCAPES[x], () => ( `\\u${x.codePointAt(0).toString(16).padStart(4, "0")}`)));
194
359
  if (options2.singleQuotes === false) {
195
- input2 = input2.replace(/"/g, '\\"');
196
- return `"${input2}"`;
360
+ return `"${stringified.replaceAll('"', String.raw`\"`)}"`;
197
361
  }
198
- input2 = input2.replace(/'/g, "\\'");
199
- return `'${input2}'`;
200
- }(input, options, pad);
362
+ return `'${stringified.replaceAll("'", String.raw`\'`)}'`;
363
+ })(input, options, pad);
201
364
  }
202
365
 
203
366
  // src/index.ts
@@ -205,9 +368,9 @@ var registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\/?(?<version>.+))?#(?<uui
205
368
  function getProjectPrefixFromRegistryUUID(uri) {
206
369
  const matches = uri.match(registryUUIDRegex);
207
370
  if (!matches) {
208
- return void 0;
371
+ return;
209
372
  }
210
- return _optionalChain([matches, 'access', _2 => _2.groups, 'optionalAccess', _3 => _3.project]);
373
+ return _optionalChain([matches, 'access', _5 => _5.groups, 'optionalAccess', _6 => _6.project]);
211
374
  }
212
375
  function stringify(obj, opts = {}) {
213
376
  return stringifyObject(obj, { indent: " ", ...opts });
@@ -270,11 +433,11 @@ var client = {
270
433
  const opts = {
271
434
  ...options
272
435
  };
273
- if (!_optionalChain([opts, 'optionalAccess', _4 => _4.api])) {
436
+ if (!_optionalChain([opts, 'optionalAccess', _7 => _7.api])) {
274
437
  throw new Error("This HTTPSnippet client must have an `api` config supplied to it.");
275
- } else if (!_optionalChain([opts, 'optionalAccess', _5 => _5.api, 'optionalAccess', _6 => _6.definition])) {
438
+ } else if (!_optionalChain([opts, 'optionalAccess', _8 => _8.api, 'optionalAccess', _9 => _9.definition])) {
276
439
  throw new Error("This HTTPSnippet client must have an `api.definition` option supplied to it.");
277
- } else if (!_optionalChain([opts, 'optionalAccess', _7 => _7.api, 'optionalAccess', _8 => _8.registryURI])) {
440
+ } else if (!_optionalChain([opts, 'optionalAccess', _10 => _10.api, 'optionalAccess', _11 => _11.registryURI])) {
278
441
  throw new Error("This HTTPSnippet client must have an `api.registryURI` option supplied to it.");
279
442
  }
280
443
  const method = source.method.toLowerCase();
@@ -1 +1 @@
1
- {"version":3,"sources":["/Users/erunion/code/readme/api/packages/httpsnippet-client-api/dist/index.cjs","../src/index.ts","../node_modules/camelcase/index.js","../../../node_modules/is-regexp/index.js","../../../node_modules/stringify-object/node_modules/is-obj/index.js","../../../node_modules/get-own-enumerable-keys/index.js","../../../node_modules/stringify-object/index.js"],"names":["preserveConsecutiveUppercase","stringify","input","options","pad"],"mappings":"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","file":"/Users/erunion/code/readme/api/packages/httpsnippet-client-api/dist/index.cjs","sourcesContent":[null,"import type { ReducedHelperObject } from '@readme/httpsnippet/helpers/reducer';\nimport type { Client, ClientPlugin } from '@readme/httpsnippet/targets';\nimport type { Operation } from 'oas/operation';\nimport type { HttpMethods, OASDocument } from 'oas/types';\n\nimport { CodeBuilder } from '@readme/httpsnippet/helpers/code-builder';\nimport camelCase from 'camelcase'; // eslint-disable-line import/no-extraneous-dependencies\nimport contentType from 'content-type';\nimport Oas from 'oas';\nimport { matchesMimeType } from 'oas/utils';\nimport { isReservedOrBuiltinsLC } from 'reserved2';\nimport stringifyObject from 'stringify-object'; // eslint-disable-line import/no-extraneous-dependencies\n\n/**\n * @note This regex also exists in `api/fetcher`.\n *\n * @example @petstore/v1.0#n6kvf10vakpemvplx\n * @example @petstore#n6kvf10vakpemvplx\n */\nconst registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\\/?(?<version>.+))?#(?<uuid>[a-z0-9]+)$/;\n\n/**\n * @note This function also exists in `api/fetcher`.\n */\nfunction getProjectPrefixFromRegistryUUID(uri: string) {\n const matches = uri.match(registryUUIDRegex);\n if (!matches) {\n return undefined;\n }\n\n return matches.groups?.project;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction stringify(obj: any, opts = {}) {\n return stringifyObject(obj, { indent: ' ', ...opts });\n}\n\nfunction buildAuthSnippet(sdkVariable: string, authKey: string[] | string) {\n // Auth key will be an array for Basic auth cases.\n if (Array.isArray(authKey)) {\n const auth: string[] = [];\n authKey.forEach((token, i) => {\n // If the token part is the last part of the key and it's empty, don't add it to the snippet.\n if (token.length === 0 && authKey.length > 1 && i === authKey.length - 1) {\n return;\n }\n\n auth.push(`'${token.replace(/'/g, \"\\\\'\")}'`);\n });\n\n return `${sdkVariable}.auth(${auth.join(', ')});`;\n }\n\n return `${sdkVariable}.auth('${authKey.replace(/'/g, \"\\\\'\")}');`;\n}\n\nfunction getAuthSources(operation: Operation) {\n const matchers: { cookie: string[]; header: Record<string, string>; query: string[] } = {\n header: {},\n query: [],\n cookie: [],\n };\n\n if (operation.getSecurity().length === 0) {\n return matchers;\n }\n\n Object.entries(operation.prepareSecurity()).forEach(([, schemes]) => {\n schemes.forEach(scheme => {\n if (scheme.type === 'http') {\n if (scheme.scheme === 'basic') {\n matchers.header.authorization = 'Basic';\n } else if (scheme.scheme === 'bearer') {\n matchers.header.authorization = 'Bearer';\n }\n } else if (scheme.type === 'oauth2') {\n matchers.header.authorization = 'Bearer';\n } else if (scheme.type === 'apiKey') {\n if (scheme.in === 'query') {\n matchers.query.push(scheme.name);\n } else if (scheme.in === 'header') {\n // The way that this asterisk header matcher works is that since this `apiKey` goes in a\n // named header (`scheme.name`) because the header is the key, we're matching against the\n // entire header -- counter to the way that the HTTP basic matcher above works where we\n // match and extract the API key from everything after `Basic ` in the `Authorization`\n // header.\n matchers.header[scheme.name.toLowerCase()] = '*';\n } else if (scheme.in === 'cookie') {\n matchers.cookie.push(scheme.name);\n }\n }\n });\n });\n\n return matchers;\n}\n\ninterface APIOptions {\n api?: {\n definition: OASDocument;\n\n /**\n * The string to identify this SDK as. This is used in the `import sdk from '<identifier>'`\n * sample as well as the the variable name we attach the SDK to.\n *\n * @example `@api/developers`\n */\n identifier?: string;\n\n /**\n * The URI that is used to download this API definition from `npx api install`.\n *\n * @example `@developers/v2.0#17273l2glm9fq4l5`\n */\n registryURI: string;\n };\n escapeBrackets?: boolean;\n indent?: string | false;\n}\n\nconst client: Client<APIOptions> = {\n info: {\n key: 'api',\n title: 'API',\n link: 'https://npm.im/api',\n description: 'Automatic SDK generation from an OpenAPI definition.',\n extname: '.js',\n installation: 'npx api install \"{packageName}\"',\n },\n convert: ({ cookiesObj, headersObj, postData, queryObj, url, ...source }, options) => {\n const opts = {\n ...options,\n };\n\n if (!opts?.api) {\n throw new Error('This HTTPSnippet client must have an `api` config supplied to it.');\n } else if (!opts?.api?.definition) {\n throw new Error('This HTTPSnippet client must have an `api.definition` option supplied to it.');\n } else if (!opts?.api?.registryURI) {\n throw new Error('This HTTPSnippet client must have an `api.registryURI` option supplied to it.');\n }\n\n const method = source.method.toLowerCase() as HttpMethods;\n const oas = new Oas(opts.api.definition);\n const apiDefinition = oas.getDefinition();\n const foundOperation = oas.findOperation(url, method);\n if (!foundOperation) {\n throw new Error(\n `Unable to locate a matching operation in the supplied \\`api.definition\\` for: ${source.method} ${url}`,\n );\n }\n\n let sdkPackageName: string | undefined;\n let sdkVariable: string;\n if (opts.api.identifier) {\n sdkPackageName = opts.api.identifier;\n\n sdkVariable = camelCase(opts.api.identifier);\n if (isReservedOrBuiltinsLC(sdkVariable)) {\n // If this identifier is a reserved JS word then we should prefix it with an underscore so\n // this snippet can be valid code.\n sdkVariable = `_${sdkVariable}`;\n }\n } else {\n sdkPackageName = getProjectPrefixFromRegistryUUID(opts.api.registryURI);\n sdkVariable = camelCase(sdkPackageName || 'sdk');\n }\n\n const operationSlugs = foundOperation.url.slugs;\n const operation = oas.operation(foundOperation.url.nonNormalizedPath, method);\n const operationPathParameters = operation.getParameters().filter(param => param.in === 'path');\n const path = operation.path;\n const authData: string[] = [];\n const authSources = getAuthSources(operation);\n\n const { blank, push, join } = new CodeBuilder({ indent: opts.indent || ' ' });\n\n push(`import ${sdkVariable} from '@api/${sdkPackageName}';`);\n blank();\n\n // If we have multiple servers configured and our source URL differs from the stock URL that we\n // receive from our `oas` library then the URL either has server variables contained in it (that\n // don't match the defaults), or the OAS offers alternate server URLs and we should expose that\n // in the generated snippet.\n const configData = [];\n if ((apiDefinition.servers || []).length > 1) {\n const stockUrl = oas.url();\n const baseUrl = url.replace(path, '');\n if (baseUrl !== stockUrl) {\n const serverVars = oas.splitVariables(baseUrl);\n const serverUrl = serverVars ? oas.url(serverVars.selected, serverVars.variables) : baseUrl;\n\n configData.push(`${sdkVariable}.server('${serverUrl}');`);\n }\n }\n\n let metadata: Record<string, string[] | string> = {};\n Object.keys(queryObj).forEach(param => {\n if (authSources.query.includes(param)) {\n authData.push(buildAuthSnippet(sdkVariable, queryObj[param]));\n\n // If this query param is part of an auth source then we don't want it doubled up in the\n // snippet.\n return;\n }\n\n metadata[param] = queryObj[param];\n });\n\n Object.keys(cookiesObj).forEach(cookie => {\n if (authSources.cookie.includes(cookie)) {\n authData.push(buildAuthSnippet(sdkVariable, cookiesObj[cookie]));\n\n // If this cookie is part of an auth source then we don't want it doubled up.\n return;\n }\n\n // Note that we may have the potential to overlap any cookie that also shares the name as\n // another metadata parameter. This problem is currently inherent to `api` and not this\n // snippet generator.\n metadata[cookie] = cookiesObj[cookie];\n });\n\n // If we have path parameters present we should add them into the metadata object.\n Array.from(Object.entries(operationSlugs)).forEach(([param, value]) => {\n // The keys in `operationSlugs` will always be prefixed with a `:` in the `oas` library so\n // we can safely do this substring here without asserting this context.\n const cleanedParam = param.substring(1);\n\n // If our incoming path slug out of `oas.findOperation()` has been sanitized and is missing\n // a hyphen, but there is a parameter in the OpenAPI definition that matches what our\n // hyphen-less slug is then we should use that for the snippet.\n const unsanitizedParam = operationPathParameters.find(p => {\n return p.name.includes('-') && p.name.replace(/-/g, '') === cleanedParam ? p.name : false;\n });\n\n if (unsanitizedParam) {\n metadata[unsanitizedParam.name] = value;\n } else {\n metadata[cleanedParam] = value;\n }\n });\n\n if (Object.keys(headersObj).length) {\n const headers = headersObj;\n const requestHeaders: ReducedHelperObject = {};\n\n Object.keys(headers).forEach(header => {\n // Headers in HTTPSnippet are case-insensitive so we need to add in some special handling to\n // make sure we're able to match them properly.\n const headerLower = header.toLowerCase();\n\n if (headerLower in authSources.header) {\n // If this header has been set up as an authentication header, let's remove it and add it\n // into our auth data so we can build up an `.auth()` snippet for the SDK.\n const authScheme = authSources.header[headerLower];\n if (authScheme === '*') {\n authData.push(buildAuthSnippet(sdkVariable, headers[header]));\n } else {\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n let authKey = headers[header].replace(`${authSources.header[headerLower]} `, '');\n if (authScheme.toLowerCase() === 'basic') {\n authKey = Buffer.from(authKey, 'base64').toString('ascii');\n authKey = authKey.split(':');\n }\n\n authData.push(buildAuthSnippet(sdkVariable, authKey));\n }\n\n delete headers[header];\n return;\n } else if (headerLower === 'content-type') {\n // `Content-Type` headers are automatically added within the SDK so we can filter them out\n // if they don't have parameters attached to them.\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n const parsedContentType = contentType.parse(headers[header]);\n if (!Object.keys(parsedContentType.parameters).length) {\n delete headers[header];\n return;\n }\n } else if (headerLower === 'accept') {\n // If the `Accept` header here is JSON-like header then we can remove it from the code\n // snippet because `api` natively supports and prioritizes JSON over any other mime type.\n if (matchesMimeType.json(headers[header] as string)) {\n delete headers[header];\n return;\n }\n }\n\n // If we haven't used our header anywhere else, or we've deleted it from the payload\n // because it'll be handled internally by `api` then we should add it into our code snippet.\n if (['accept', 'content-type'].includes(headerLower)) {\n requestHeaders[headerLower] = headers[header];\n } else {\n // Non-reserved headers retain their casing because we want to generate a snippet that\n // matches the TS types that are created during codegeneration.\n requestHeaders[header] = headers[header];\n }\n });\n\n if (Object.keys(requestHeaders).length > 0) {\n metadata = Object.assign(metadata, requestHeaders);\n }\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let body: any;\n switch (postData.mimeType) {\n case 'application/x-www-form-urlencoded':\n body = postData.paramsObj;\n break;\n\n case 'application/json':\n if (postData.jsonObj) {\n body = postData.jsonObj;\n }\n break;\n\n case 'multipart/form-data':\n if (postData.params) {\n body = {};\n\n // If there's a `Content-Type` header present in the metadata, but it's for the\n // `multipart/form-data` request then dump it off the snippet. We shouldn't offload that\n // unnecessary bloat of multipart boundaries to the user, instead letting the SDK handle it\n // automatically.\n if ('content-type' in metadata && metadata['content-type'].indexOf('multipart/form-data') === 0) {\n delete metadata['content-type'];\n }\n\n postData.params.forEach(param => {\n if (param.fileName) {\n body[param.name] = param.fileName;\n } else {\n body[param.name] = param.value;\n }\n });\n }\n break;\n\n default:\n if (postData.text) {\n body = postData.text;\n }\n }\n\n const args = [];\n\n const accessor = operation.getOperationId({ camelCase: true });\n\n // If we're going to be rendering out body params and metadata we should cut their character\n // limit in half because we'll be rendering them in their own lines.\n const inlineCharacterLimit = typeof body !== 'undefined' && Object.keys(metadata).length > 0 ? 40 : 80;\n if (typeof body !== 'undefined') {\n args.push(stringify(body, { inlineCharacterLimit }));\n }\n\n if (Object.keys(metadata).length > 0) {\n args.push(stringify(metadata, { inlineCharacterLimit }));\n }\n\n if (authData.length) {\n push(authData.join('\\n'));\n }\n\n if (configData.length) {\n push(configData.join('\\n'));\n }\n\n push(`${sdkVariable}.${accessor}(${args.join(', ')})`);\n push('.then(({ data }) => console.log(data))', 1);\n push('.catch(err => console.error(err));', 1);\n\n return join();\n },\n};\n\nconst plugin: ClientPlugin<APIOptions> = {\n target: 'node',\n client,\n};\n\nexport default plugin;\n","const UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase, preserveConsecutiveUppercase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\tlet isLastLastCharPreserved = false;\n\n\tfor (let index = 0; index < string.length; index++) {\n\t\tconst character = string[index];\n\t\tisLastLastCharPreserved = index > 2 ? string[index - 3] === '-' : true;\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, index) + '-' + string.slice(index);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\tindex++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character) && (!isLastLastCharPreserved || preserveConsecutiveUppercase)) {\n\t\t\tstring = string.slice(0, index - 1) + '-' + string.slice(index - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replaceAll(LEADING_CAPITAL, match => toLowerCase(match));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input\n\t\t.replaceAll(NUMBERS_AND_IDENTIFIER, (match, pattern, offset) => ['_', '-'].includes(input.charAt(offset + match.length)) ? match : toUpperCase(match))\n\t\t.replaceAll(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier));\n};\n\nexport default function camelCase(input, options) {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options,\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false\n\t\t? string => string.toLowerCase()\n\t\t: string => string.toLocaleLowerCase(options.locale);\n\n\tconst toUpperCase = options.locale === false\n\t\t? string => string.toUpperCase()\n\t\t: string => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\tif (SEPARATORS.test(input)) {\n\t\t\treturn '';\n\t\t}\n\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase, options.preserveConsecutiveUppercase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\tinput = options.preserveConsecutiveUppercase ? preserveConsecutiveUppercase(input, toLowerCase) : toLowerCase(input);\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n}\n","const {toString} = Object.prototype;\n\nexport default function isRegexp(value) {\n\treturn toString.call(value) === '[object RegExp]';\n}\n","export default function isObject(value) {\n\tconst type = typeof value;\n\treturn value !== null && (type === 'object' || type === 'function');\n}\n","const {propertyIsEnumerable} = Object.prototype;\n\nexport default function getOwnEnumerableKeys(object) {\n\treturn [\n\t\t...Object.keys(object),\n\t\t...Object.getOwnPropertySymbols(object)\n\t\t\t.filter(key => propertyIsEnumerable.call(object, key)),\n\t];\n}\n","import isRegexp from 'is-regexp';\nimport isObject from 'is-obj';\nimport getOwnEnumerableKeys from 'get-own-enumerable-keys';\n\nexport default function stringifyObject(input, options, pad) {\n\tconst seen = [];\n\n\treturn (function stringify(input, options = {}, pad = '') {\n\t\tconst indent = options.indent || '\\t';\n\n\t\tlet tokens;\n\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\ttokens = {\n\t\t\t\tnewline: '\\n',\n\t\t\t\tnewlineOrSpace: '\\n',\n\t\t\t\tpad,\n\t\t\t\tindent: pad + indent,\n\t\t\t};\n\t\t} else {\n\t\t\ttokens = {\n\t\t\t\tnewline: '@@__STRINGIFY_OBJECT_NEW_LINE__@@',\n\t\t\t\tnewlineOrSpace: '@@__STRINGIFY_OBJECT_NEW_LINE_OR_SPACE__@@',\n\t\t\t\tpad: '@@__STRINGIFY_OBJECT_PAD__@@',\n\t\t\t\tindent: '@@__STRINGIFY_OBJECT_INDENT__@@',\n\t\t\t};\n\t\t}\n\n\t\tconst expandWhiteSpace = string => {\n\t\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\t\treturn string;\n\t\t\t}\n\n\t\t\tconst oneLined = string\n\t\t\t\t.replace(new RegExp(tokens.newline, 'g'), '')\n\t\t\t\t.replace(new RegExp(tokens.newlineOrSpace, 'g'), ' ')\n\t\t\t\t.replace(new RegExp(tokens.pad + '|' + tokens.indent, 'g'), '');\n\n\t\t\tif (oneLined.length <= options.inlineCharacterLimit) {\n\t\t\t\treturn oneLined;\n\t\t\t}\n\n\t\t\treturn string\n\t\t\t\t.replace(new RegExp(tokens.newline + '|' + tokens.newlineOrSpace, 'g'), '\\n')\n\t\t\t\t.replace(new RegExp(tokens.pad, 'g'), pad)\n\t\t\t\t.replace(new RegExp(tokens.indent, 'g'), pad + indent);\n\t\t};\n\n\t\tif (seen.includes(input)) {\n\t\t\treturn '\"[Circular]\"';\n\t\t}\n\n\t\tif (\n\t\t\tinput === null\n\t\t\t|| input === undefined\n\t\t\t|| typeof input === 'number'\n\t\t\t|| typeof input === 'boolean'\n\t\t\t|| typeof input === 'function'\n\t\t\t|| typeof input === 'symbol'\n\t\t\t|| isRegexp(input)\n\t\t) {\n\t\t\treturn String(input);\n\t\t}\n\n\t\tif (input instanceof Date) {\n\t\t\treturn `new Date('${input.toISOString()}')`;\n\t\t}\n\n\t\tif (Array.isArray(input)) {\n\t\t\tif (input.length === 0) {\n\t\t\t\treturn '[]';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst returnValue = '[' + tokens.newline + input.map((element, i) => {\n\t\t\t\tconst eol = input.length - 1 === i ? tokens.newline : ',' + tokens.newlineOrSpace;\n\n\t\t\t\tlet value = stringify(element, options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, i, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + value + eol;\n\t\t\t}).join('') + tokens.pad + ']';\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(returnValue);\n\t\t}\n\n\t\tif (isObject(input)) {\n\t\t\tlet objectKeys = getOwnEnumerableKeys(input);\n\n\t\t\tif (options.filter) {\n\t\t\t\t// eslint-disable-next-line unicorn/no-array-callback-reference, unicorn/no-array-method-this-argument\n\t\t\t\tobjectKeys = objectKeys.filter(element => options.filter(input, element));\n\t\t\t}\n\n\t\t\tif (objectKeys.length === 0) {\n\t\t\t\treturn '{}';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst returnValue = '{' + tokens.newline + objectKeys.map((element, index) => {\n\t\t\t\tconst eol = objectKeys.length - 1 === index ? tokens.newline : ',' + tokens.newlineOrSpace;\n\t\t\t\tconst isSymbol = typeof element === 'symbol';\n\t\t\t\tconst isClassic = !isSymbol && /^[a-z$_][$\\w]*$/i.test(element);\n\t\t\t\tconst key = isSymbol || isClassic ? element : stringify(element, options);\n\n\t\t\t\tlet value = stringify(input[element], options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, element, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + String(key) + ': ' + value + eol;\n\t\t\t}).join('') + tokens.pad + '}';\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(returnValue);\n\t\t}\n\n\t\tinput = input.replace(/\\\\/g, '\\\\\\\\');\n\t\tinput = String(input).replace(/[\\r\\n]/g, x => x === '\\n' ? '\\\\n' : '\\\\r');\n\n\t\tif (options.singleQuotes === false) {\n\t\t\tinput = input.replace(/\"/g, '\\\\\"');\n\t\t\treturn `\"${input}\"`;\n\t\t}\n\n\t\tinput = input.replace(/'/g, '\\\\\\'');\n\t\treturn `'${input}'`;\n\t})(input, options, pad);\n}\n"]}
1
+ {"version":3,"sources":["/Users/erunion/code/readme/api/packages/httpsnippet-client-api/dist/index.cjs","../src/index.ts","../node_modules/camelcase/index.js","../../../node_modules/is-regexp/index.js","../../../node_modules/stringify-object/node_modules/is-obj/index.js","../../../node_modules/get-own-enumerable-keys/index.js","../../../node_modules/reserved-identifiers/index.js","../../../node_modules/identifier-regex/index.js","../../../node_modules/function-timeout/index.js","../../../node_modules/super-regex/index.js","../../../node_modules/is-identifier/index.js","../../../node_modules/stringify-object/index.js"],"names":["preserveConsecutiveUppercase","pad","input"],"mappings":"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","file":"/Users/erunion/code/readme/api/packages/httpsnippet-client-api/dist/index.cjs","sourcesContent":[null,"import type { ReducedHelperObject } from '@readme/httpsnippet/helpers/reducer';\nimport type { Client, ClientPlugin } from '@readme/httpsnippet/targets';\nimport type { Operation } from 'oas/operation';\nimport type { HttpMethods, OASDocument } from 'oas/types';\n\nimport { CodeBuilder } from '@readme/httpsnippet/helpers/code-builder';\nimport camelCase from 'camelcase';\nimport contentType from 'content-type';\nimport Oas from 'oas';\nimport { matchesMimeType } from 'oas/utils';\nimport { isReservedOrBuiltinsLC } from 'reserved2';\nimport stringifyObject from 'stringify-object';\n\n/**\n * @note This regex also exists in `api/fetcher`.\n *\n * @example @petstore/v1.0#n6kvf10vakpemvplx\n * @example @petstore#n6kvf10vakpemvplx\n */\nconst registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\\/?(?<version>.+))?#(?<uuid>[a-z0-9]+)$/;\n\n/**\n * @note This function also exists in `api/fetcher`.\n */\nfunction getProjectPrefixFromRegistryUUID(uri: string): string | undefined {\n const matches = uri.match(registryUUIDRegex);\n if (!matches) {\n return;\n }\n\n return matches.groups?.project;\n}\n\nfunction stringify(obj: unknown, opts = {}) {\n return stringifyObject(obj, { indent: ' ', ...opts });\n}\n\nfunction buildAuthSnippet(sdkVariable: string, authKey: string[] | string) {\n // Auth key will be an array for Basic auth cases.\n if (Array.isArray(authKey)) {\n const auth: string[] = [];\n authKey.forEach((token, i) => {\n // If the token part is the last part of the key and it's empty, don't add it to the snippet.\n if (token.length === 0 && authKey.length > 1 && i === authKey.length - 1) {\n return;\n }\n\n auth.push(`'${token.replace(/'/g, \"\\\\'\")}'`);\n });\n\n return `${sdkVariable}.auth(${auth.join(', ')});`;\n }\n\n return `${sdkVariable}.auth('${authKey.replace(/'/g, \"\\\\'\")}');`;\n}\n\nfunction getAuthSources(operation: Operation) {\n const matchers: { cookie: string[]; header: Record<string, string>; query: string[] } = {\n header: {},\n query: [],\n cookie: [],\n };\n\n if (operation.getSecurity().length === 0) {\n return matchers;\n }\n\n Object.entries(operation.prepareSecurity()).forEach(([, schemes]) => {\n schemes.forEach(scheme => {\n if (scheme.type === 'http') {\n if (scheme.scheme === 'basic') {\n matchers.header.authorization = 'Basic';\n } else if (scheme.scheme === 'bearer') {\n matchers.header.authorization = 'Bearer';\n }\n } else if (scheme.type === 'oauth2') {\n matchers.header.authorization = 'Bearer';\n } else if (scheme.type === 'apiKey') {\n if (scheme.in === 'query') {\n matchers.query.push(scheme.name);\n } else if (scheme.in === 'header') {\n // The way that this asterisk header matcher works is that since this `apiKey` goes in a\n // named header (`scheme.name`) because the header is the key, we're matching against the\n // entire header -- counter to the way that the HTTP basic matcher above works where we\n // match and extract the API key from everything after `Basic ` in the `Authorization`\n // header.\n matchers.header[scheme.name.toLowerCase()] = '*';\n } else if (scheme.in === 'cookie') {\n matchers.cookie.push(scheme.name);\n }\n }\n });\n });\n\n return matchers;\n}\n\ninterface APIOptions {\n api?: {\n definition: OASDocument;\n\n /**\n * The string to identify this SDK as. This is used in the `import sdk from '<identifier>'`\n * sample as well as the the variable name we attach the SDK to.\n *\n * @example `@api/developers`\n */\n identifier?: string;\n\n /**\n * The URI that is used to download this API definition from `npx api install`.\n *\n * @example `@developers/v2.0#17273l2glm9fq4l5`\n */\n registryURI: string;\n };\n escapeBrackets?: boolean;\n indent?: string | false;\n}\n\nconst client: Client<APIOptions> = {\n info: {\n key: 'api',\n title: 'API',\n link: 'https://npm.im/api',\n description: 'Automatic SDK generation from an OpenAPI definition.',\n extname: '.js',\n installation: 'npx api install \"{packageName}\"',\n },\n convert: ({ cookiesObj, headersObj, postData, queryObj, url, ...source }, options) => {\n const opts = {\n ...options,\n };\n\n if (!opts?.api) {\n throw new Error('This HTTPSnippet client must have an `api` config supplied to it.');\n } else if (!opts?.api?.definition) {\n throw new Error('This HTTPSnippet client must have an `api.definition` option supplied to it.');\n } else if (!opts?.api?.registryURI) {\n throw new Error('This HTTPSnippet client must have an `api.registryURI` option supplied to it.');\n }\n\n const method = source.method.toLowerCase() as HttpMethods;\n const oas = new Oas(opts.api.definition);\n const apiDefinition = oas.getDefinition();\n const foundOperation = oas.findOperation(url, method);\n if (!foundOperation) {\n throw new Error(\n `Unable to locate a matching operation in the supplied \\`api.definition\\` for: ${source.method} ${url}`,\n );\n }\n\n let sdkPackageName: string | undefined;\n let sdkVariable: string;\n if (opts.api.identifier) {\n sdkPackageName = opts.api.identifier;\n\n sdkVariable = camelCase(opts.api.identifier);\n if (isReservedOrBuiltinsLC(sdkVariable)) {\n // If this identifier is a reserved JS word then we should prefix it with an underscore so\n // this snippet can be valid code.\n sdkVariable = `_${sdkVariable}`;\n }\n } else {\n sdkPackageName = getProjectPrefixFromRegistryUUID(opts.api.registryURI);\n sdkVariable = camelCase(sdkPackageName || 'sdk');\n }\n\n const operationSlugs = foundOperation.url.slugs;\n const operation = oas.operation(foundOperation.url.nonNormalizedPath, method);\n const operationPathParameters = operation.getParameters().filter(param => param.in === 'path');\n const path = operation.path;\n const authData: string[] = [];\n const authSources = getAuthSources(operation);\n\n const { blank, push, join } = new CodeBuilder({ indent: opts.indent || ' ' });\n\n push(`import ${sdkVariable} from '@api/${sdkPackageName}';`);\n blank();\n\n // If we have multiple servers configured and our source URL differs from the stock URL that we\n // receive from our `oas` library then the URL either has server variables contained in it (that\n // don't match the defaults), or the OAS offers alternate server URLs and we should expose that\n // in the generated snippet.\n const configData = [];\n if ((apiDefinition.servers || []).length > 1) {\n const stockUrl = oas.url();\n const baseUrl = url.replace(path, '');\n if (baseUrl !== stockUrl) {\n const serverVars = oas.splitVariables(baseUrl);\n const serverUrl = serverVars ? oas.url(serverVars.selected, serverVars.variables) : baseUrl;\n\n configData.push(`${sdkVariable}.server('${serverUrl}');`);\n }\n }\n\n let metadata: Record<string, string[] | string> = {};\n Object.keys(queryObj).forEach(param => {\n if (authSources.query.includes(param)) {\n authData.push(buildAuthSnippet(sdkVariable, queryObj[param]));\n\n // If this query param is part of an auth source then we don't want it doubled up in the\n // snippet.\n return;\n }\n\n metadata[param] = queryObj[param];\n });\n\n Object.keys(cookiesObj).forEach(cookie => {\n if (authSources.cookie.includes(cookie)) {\n authData.push(buildAuthSnippet(sdkVariable, cookiesObj[cookie]));\n\n // If this cookie is part of an auth source then we don't want it doubled up.\n return;\n }\n\n // Note that we may have the potential to overlap any cookie that also shares the name as\n // another metadata parameter. This problem is currently inherent to `api` and not this\n // snippet generator.\n metadata[cookie] = cookiesObj[cookie];\n });\n\n // If we have path parameters present we should add them into the metadata object.\n Array.from(Object.entries(operationSlugs)).forEach(([param, value]) => {\n // The keys in `operationSlugs` will always be prefixed with a `:` in the `oas` library so\n // we can safely do this substring here without asserting this context.\n const cleanedParam = param.substring(1);\n\n // If our incoming path slug out of `oas.findOperation()` has been sanitized and is missing\n // a hyphen, but there is a parameter in the OpenAPI definition that matches what our\n // hyphen-less slug is then we should use that for the snippet.\n const unsanitizedParam = operationPathParameters.find(p => {\n return p.name.includes('-') && p.name.replace(/-/g, '') === cleanedParam ? p.name : false;\n });\n\n if (unsanitizedParam) {\n metadata[unsanitizedParam.name] = value;\n } else {\n metadata[cleanedParam] = value;\n }\n });\n\n if (Object.keys(headersObj).length) {\n const headers = headersObj;\n const requestHeaders: ReducedHelperObject = {};\n\n Object.keys(headers).forEach(header => {\n // Headers in HTTPSnippet are case-insensitive so we need to add in some special handling to\n // make sure we're able to match them properly.\n const headerLower = header.toLowerCase();\n\n if (headerLower in authSources.header) {\n // If this header has been set up as an authentication header, let's remove it and add it\n // into our auth data so we can build up an `.auth()` snippet for the SDK.\n const authScheme = authSources.header[headerLower];\n if (authScheme === '*') {\n authData.push(buildAuthSnippet(sdkVariable, headers[header]));\n } else {\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n let authKey = headers[header].replace(`${authSources.header[headerLower]} `, '');\n if (authScheme.toLowerCase() === 'basic') {\n authKey = Buffer.from(authKey, 'base64').toString('ascii');\n authKey = authKey.split(':');\n }\n\n authData.push(buildAuthSnippet(sdkVariable, authKey));\n }\n\n delete headers[header];\n return;\n } else if (headerLower === 'content-type') {\n // `Content-Type` headers are automatically added within the SDK so we can filter them out\n // if they don't have parameters attached to them.\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n const parsedContentType = contentType.parse(headers[header]);\n if (!Object.keys(parsedContentType.parameters).length) {\n delete headers[header];\n return;\n }\n } else if (headerLower === 'accept') {\n // If the `Accept` header here is JSON-like header then we can remove it from the code\n // snippet because `api` natively supports and prioritizes JSON over any other mime type.\n if (matchesMimeType.json(headers[header] as string)) {\n delete headers[header];\n return;\n }\n }\n\n // If we haven't used our header anywhere else, or we've deleted it from the payload\n // because it'll be handled internally by `api` then we should add it into our code snippet.\n if (['accept', 'content-type'].includes(headerLower)) {\n requestHeaders[headerLower] = headers[header];\n } else {\n // Non-reserved headers retain their casing because we want to generate a snippet that\n // matches the TS types that are created during codegeneration.\n requestHeaders[header] = headers[header];\n }\n });\n\n if (Object.keys(requestHeaders).length > 0) {\n metadata = Object.assign(metadata, requestHeaders);\n }\n }\n\n let body: any;\n switch (postData.mimeType) {\n case 'application/x-www-form-urlencoded':\n body = postData.paramsObj;\n break;\n\n case 'application/json':\n if (postData.jsonObj) {\n body = postData.jsonObj;\n }\n break;\n\n case 'multipart/form-data':\n if (postData.params) {\n body = {};\n\n // If there's a `Content-Type` header present in the metadata, but it's for the\n // `multipart/form-data` request then dump it off the snippet. We shouldn't offload that\n // unnecessary bloat of multipart boundaries to the user, instead letting the SDK handle it\n // automatically.\n if ('content-type' in metadata && metadata['content-type'].indexOf('multipart/form-data') === 0) {\n delete metadata['content-type'];\n }\n\n postData.params.forEach(param => {\n if (param.fileName) {\n body[param.name] = param.fileName;\n } else {\n body[param.name] = param.value;\n }\n });\n }\n break;\n\n default:\n if (postData.text) {\n body = postData.text;\n }\n }\n\n const args = [];\n\n const accessor = operation.getOperationId({ camelCase: true });\n\n // If we're going to be rendering out body params and metadata we should cut their character\n // limit in half because we'll be rendering them in their own lines.\n const inlineCharacterLimit = typeof body !== 'undefined' && Object.keys(metadata).length > 0 ? 40 : 80;\n if (typeof body !== 'undefined') {\n args.push(stringify(body, { inlineCharacterLimit }));\n }\n\n if (Object.keys(metadata).length > 0) {\n args.push(stringify(metadata, { inlineCharacterLimit }));\n }\n\n if (authData.length) {\n push(authData.join('\\n'));\n }\n\n if (configData.length) {\n push(configData.join('\\n'));\n }\n\n push(`${sdkVariable}.${accessor}(${args.join(', ')})`);\n push('.then(({ data }) => console.log(data))', 1);\n push('.catch(err => console.error(err));', 1);\n\n return join();\n },\n};\n\nconst plugin: ClientPlugin<APIOptions> = {\n target: 'node',\n client,\n};\n\nexport default plugin;\n","const UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase, preserveConsecutiveUppercase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\tlet isLastLastCharPreserved = false;\n\n\tfor (let index = 0; index < string.length; index++) {\n\t\tconst character = string[index];\n\t\tisLastLastCharPreserved = index > 2 ? string[index - 3] === '-' : true;\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, index) + '-' + string.slice(index);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\tindex++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character) && (!isLastLastCharPreserved || preserveConsecutiveUppercase)) {\n\t\t\tstring = string.slice(0, index - 1) + '-' + string.slice(index - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replaceAll(LEADING_CAPITAL, match => toLowerCase(match));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input\n\t\t.replaceAll(NUMBERS_AND_IDENTIFIER, (match, pattern, offset) => ['_', '-'].includes(input.charAt(offset + match.length)) ? match : toUpperCase(match))\n\t\t.replaceAll(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier));\n};\n\nexport default function camelCase(input, options) {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options,\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false\n\t\t? string => string.toLowerCase()\n\t\t: string => string.toLocaleLowerCase(options.locale);\n\n\tconst toUpperCase = options.locale === false\n\t\t? string => string.toUpperCase()\n\t\t: string => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\tif (SEPARATORS.test(input)) {\n\t\t\treturn '';\n\t\t}\n\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase, options.preserveConsecutiveUppercase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\tinput = options.preserveConsecutiveUppercase ? preserveConsecutiveUppercase(input, toLowerCase) : toLowerCase(input);\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n}\n","const {toString} = Object.prototype;\n\nexport default function isRegexp(value) {\n\treturn toString.call(value) === '[object RegExp]';\n}\n","export default function isObject(value) {\n\tconst type = typeof value;\n\treturn value !== null && (type === 'object' || type === 'function');\n}\n","const {propertyIsEnumerable} = Object.prototype;\n\nexport default function getOwnEnumerableKeys(object) {\n\treturn [\n\t\t...Object.keys(object),\n\t\t...Object.getOwnPropertySymbols(object)\n\t\t\t.filter(key => propertyIsEnumerable.call(object, key)),\n\t];\n}\n","// https://262.ecma-international.org/14.0/#sec-keywords-and-reserved-words\n// 14 is ES2023\nconst identifiers = [\n\t// Keywords\n\t'await',\n\t'break',\n\t'case',\n\t'catch',\n\t'class',\n\t'const',\n\t'continue',\n\t'debugger',\n\t'default',\n\t'delete',\n\t'do',\n\t'else',\n\t'enum',\n\t'export',\n\t'extends',\n\t'false',\n\t'finally',\n\t'for',\n\t'function',\n\t'if',\n\t'import',\n\t'in',\n\t'instanceof',\n\t'new',\n\t'null',\n\t'return',\n\t'super',\n\t'switch',\n\t'this',\n\t'throw',\n\t'true',\n\t'try',\n\t'typeof',\n\t'var',\n\t'void',\n\t'while',\n\t'with',\n\t'yield',\n\n\t// Future reserved keywords\n\t'implements',\n\t'interface',\n\t'package',\n\t'private',\n\t'protected',\n\t'public',\n\n\t// Not keywords, but still restricted\n\t'arguments',\n\t'eval',\n];\n\n// https://262.ecma-international.org/14.0/#sec-value-properties-of-the-global-object\nconst globalProperties = [\n\t'globalThis',\n\t'Infinity',\n\t'NaN',\n\t'undefined',\n];\n\nexport default function reservedIdentifiers({includeGlobalProperties = false} = {}) {\n\treturn new Set([\n\t\t...identifiers,\n\t\t...(includeGlobalProperties ? globalProperties : []),\n\t]);\n}\n","import reservedIdentifiers from 'reserved-identifiers';\n\nconst baseRegex = /[$_\\p{ID_Start}][$_\\u200C\\u200D\\p{ID_Continue}]*/u;\nconst basePattern = `(?<![@#$_\\\\p{ID_Continue}\\\\p{ID_Start}])(?!(?:${[...reservedIdentifiers({includeGlobalProperties: true})].join('|')})(?![$_\\\\p{ID_Continue}]))${baseRegex.source}`;\nconst regex = new RegExp(basePattern, 'u');\nconst regexExact = new RegExp(`^${basePattern}$`, 'u');\n\nexport default function identifierRegex({exact = true} = {}) {\n\treturn exact ? regexExact : regex;\n}\n","import vm from 'node:vm';\n\nconst script = new vm.Script('returnValue = functionToRun()');\n\n// TODO: Document the `context` option and add to types when I know it's something I want to keep.\n\n// If you use the `context` option, you do it at your own risk.\nexport default function functionTimeout(function_, {timeout, context = vm.createContext()} = {}) {\n\tconst wrappedFunction = (...arguments_) => {\n\t\tcontext.functionToRun = () => function_(...arguments_);\n\t\tscript.runInNewContext(context, {timeout});\n\t\treturn context.returnValue;\n\t};\n\n\tObject.defineProperty(wrappedFunction, 'name', {\n\t\tvalue: `functionTimeout(${function_.name || '<anonymous>'})`,\n\t\tconfigurable: true,\n\t});\n\n\treturn wrappedFunction;\n}\n\nexport function isTimeoutError(error) {\n\treturn error?.code === 'ERR_SCRIPT_EXECUTION_TIMEOUT';\n}\n","import functionTimeout, {isTimeoutError} from 'function-timeout';\nimport timeSpan from 'time-span';\n\nconst resultToMatch = result => ({\n\tmatch: result[0],\n\tindex: result.index,\n\tgroups: result.slice(1),\n\tnamedGroups: result.groups ?? {},\n\tinput: result.input,\n});\n\nconst context = {};\n\nexport function isMatch(regex, string, {timeout} = {}) {\n\ttry {\n\t\treturn functionTimeout(() => structuredClone(regex).test(string), {timeout, context})();\n\t} catch (error) {\n\t\tif (isTimeoutError(error)) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthrow error;\n\t}\n}\n\nexport function firstMatch(regex, string, {timeout} = {}) {\n\ttry {\n\t\tconst result = functionTimeout(() => structuredClone(regex).exec(string), {timeout, context})();\n\n\t\tif (result === null) {\n\t\t\treturn;\n\t\t}\n\n\t\treturn resultToMatch(result);\n\t} catch (error) {\n\t\tif (isTimeoutError(error)) {\n\t\t\treturn;\n\t\t}\n\n\t\tthrow error;\n\t}\n}\n\nexport function matches(regex, string, {timeout = Number.POSITIVE_INFINITY, matchTimeout = Number.POSITIVE_INFINITY} = {}) {\n\tif (!regex.global) {\n\t\tthrow new Error('The regex must have the global flag, otherwise, use `firstMatch()` instead');\n\t}\n\n\treturn {\n\t\t* [Symbol.iterator]() {\n\t\t\ttry {\n\t\t\t\tconst matches = string.matchAll(regex); // The regex is only executed when iterated over.\n\n\t\t\t\twhile (true) {\n\t\t\t\t\t// `matches.next` must be called within an arrow function so that it doesn't loose its context.\n\t\t\t\t\tconst nextMatch = functionTimeout(() => matches.next(), {\n\t\t\t\t\t\tcontext,\n\t\t\t\t\t\ttimeout: (timeout !== Number.POSITIVE_INFINITY || matchTimeout !== Number.POSITIVE_INFINITY) ? Math.min(timeout, matchTimeout) : undefined,\n\t\t\t\t\t});\n\n\t\t\t\t\tconst end = timeSpan();\n\t\t\t\t\tconst {value, done} = nextMatch();\n\t\t\t\t\ttimeout -= Math.ceil(end());\n\n\t\t\t\t\tif (done) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tyield resultToMatch(value);\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tif (!isTimeoutError(error)) {\n\t\t\t\t\tthrow error;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t};\n}\n","import identifierRegex from 'identifier-regex';\nimport {isMatch} from 'super-regex';\n\nconst regex = identifierRegex();\n\nexport default function isIdentifier(value) {\n\tif (typeof value !== 'string') {\n\t\tthrow new TypeError(`Expected a string, got \\`${typeof value}\\`.`);\n\t}\n\n\t// Prevent abuse.\n\tif (value.length > 100_000) {\n\t\treturn false;\n\t}\n\n\treturn isMatch(regex, value, {timeout: 1000});\n}\n","import isRegexp from 'is-regexp';\nimport isObject from 'is-obj';\nimport getOwnEnumerableKeys from 'get-own-enumerable-keys';\nimport isIdentifier from 'is-identifier';\n\nconst CHARACTER_ESCAPES = {\n\t'\\n': String.raw`\\n`,\n\t'\\r': String.raw`\\r`,\n\t'\\t': String.raw`\\t`,\n\t'\\b': String.raw`\\b`,\n\t'\\f': String.raw`\\f`,\n\t'\\v': String.raw`\\v`,\n\t'\\0': String.raw`\\0`,\n};\n\nexport default function stringifyObject(input, options, pad) {\n\tconst seen = [];\n\n\treturn (function stringify(input, options = {}, pad = '') {\n\t\tconst indent = options.indent || '\\t';\n\n\t\tlet tokens;\n\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\ttokens = {\n\t\t\t\tnewline: '\\n',\n\t\t\t\tnewlineOrSpace: '\\n',\n\t\t\t\tpad,\n\t\t\t\tindent: pad + indent,\n\t\t\t};\n\t\t} else {\n\t\t\ttokens = {\n\t\t\t\tnewline: '@@__STRINGIFY_OBJECT_NEW_LINE__@@',\n\t\t\t\tnewlineOrSpace: '@@__STRINGIFY_OBJECT_NEW_LINE_OR_SPACE__@@',\n\t\t\t\tpad: '@@__STRINGIFY_OBJECT_PAD__@@',\n\t\t\t\tindent: '@@__STRINGIFY_OBJECT_INDENT__@@',\n\t\t\t};\n\t\t}\n\n\t\tconst expandWhiteSpace = string => {\n\t\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\t\treturn string;\n\t\t\t}\n\n\t\t\tconst oneLined = string\n\t\t\t\t.replaceAll(tokens.newline, '')\n\t\t\t\t.replaceAll(tokens.newlineOrSpace, ' ')\n\t\t\t\t.replaceAll(tokens.pad, '')\n\t\t\t\t.replaceAll(tokens.indent, '');\n\n\t\t\tif (oneLined.length <= options.inlineCharacterLimit) {\n\t\t\t\treturn oneLined;\n\t\t\t}\n\n\t\t\treturn string\n\t\t\t\t.replaceAll(tokens.newline, '\\n')\n\t\t\t\t.replaceAll(tokens.newlineOrSpace, '\\n')\n\t\t\t\t.replaceAll(tokens.pad, pad)\n\t\t\t\t.replaceAll(tokens.indent, pad + indent);\n\t\t};\n\n\t\tif (seen.includes(input)) {\n\t\t\treturn '\"[Circular]\"';\n\t\t}\n\n\t\tconst type = typeof input;\n\n\t\tif (\n\t\t\tinput === null\n\t\t\t|| input === undefined\n\t\t\t|| type === 'number'\n\t\t\t|| type === 'boolean'\n\t\t\t|| type === 'function'\n\t\t\t|| isRegexp(input)\n\t\t) {\n\t\t\treturn String(input);\n\t\t}\n\n\t\tif (type === 'bigint') {\n\t\t\treturn String(input) + 'n';\n\t\t}\n\n\t\tif (type === 'symbol') {\n\t\t\tconst {description} = input;\n\n\t\t\tif (description === undefined) {\n\t\t\t\treturn 'Symbol()';\n\t\t\t}\n\n\t\t\t// Check for well-known symbols first\n\t\t\tif (description?.startsWith('Symbol.') && Symbol[description.slice(7)] === input) {\n\t\t\t\treturn description;\n\t\t\t}\n\n\t\t\t// Check if it's a global registry symbol\n\t\t\tconst globalKey = Symbol.keyFor(input);\n\t\t\tif (globalKey !== undefined) {\n\t\t\t\treturn `Symbol.for(${stringify(globalKey, options)})`;\n\t\t\t}\n\n\t\t\treturn `Symbol(${stringify(description, options)})`;\n\t\t}\n\n\t\tif (input instanceof Date) {\n\t\t\treturn Number.isNaN(input.getTime())\n\t\t\t\t? 'new Date(\\'Invalid Date\\')'\n\t\t\t\t: `new Date('${input.toISOString()}')`;\n\t\t}\n\n\t\tif (input instanceof Map || input instanceof Set) {\n\t\t\tconst isMap = input instanceof Map;\n\t\t\tconst name = isMap ? 'Map' : 'Set';\n\n\t\t\tif (input.size === 0) {\n\t\t\t\treturn `new ${name}()`;\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst items = [...input].map(item => {\n\t\t\t\tif (isMap) {\n\t\t\t\t\tconst [key, value] = item;\n\t\t\t\t\treturn tokens.indent + `[${stringify(key, options, pad + indent)}, ${stringify(value, options, pad + indent)}]`;\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + stringify(item, options, pad + indent);\n\t\t\t}).join(',' + tokens.newlineOrSpace);\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(`new ${name}([${tokens.newline}${items}${tokens.newline}${tokens.pad}])`);\n\t\t}\n\n\t\tif (Array.isArray(input)) {\n\t\t\tif (input.length === 0) {\n\t\t\t\treturn '[]';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst items = input.map((element, index) => {\n\t\t\t\tlet value = stringify(element, options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, index, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + value;\n\t\t\t}).join(',' + tokens.newlineOrSpace);\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(`[${tokens.newline}${items}${tokens.newline}${tokens.pad}]`);\n\t\t}\n\n\t\tif (isObject(input)) {\n\t\t\tlet objectKeys = getOwnEnumerableKeys(input);\n\n\t\t\tif (options.filter) {\n\t\t\t\t// eslint-disable-next-line unicorn/no-array-callback-reference, unicorn/no-array-method-this-argument\n\t\t\t\tobjectKeys = objectKeys.filter(element => options.filter(input, element));\n\t\t\t}\n\n\t\t\tif (objectKeys.length === 0) {\n\t\t\t\treturn '{}';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst pairs = objectKeys.map(element => {\n\t\t\t\tconst isSymbol = typeof element === 'symbol';\n\n\t\t\t\tlet key;\n\t\t\t\tif (isSymbol) {\n\t\t\t\t\tkey = `[${stringify(element, options)}]`;\n\t\t\t\t} else if (isIdentifier(element)) {\n\t\t\t\t\tkey = element;\n\t\t\t\t} else {\n\t\t\t\t\tkey = stringify(element, options);\n\t\t\t\t}\n\n\t\t\t\tlet value = stringify(input[element], options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, element, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + key + ': ' + value;\n\t\t\t}).join(',' + tokens.newlineOrSpace);\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(`{${tokens.newline}${pairs}${tokens.newline}${tokens.pad}}`);\n\t\t}\n\n\t\t// String escaping\n\t\tconst stringified = String(input)\n\t\t\t.replaceAll('\\\\', '\\\\\\\\')\n\t\t\t// eslint-disable-next-line no-control-regex\n\t\t\t.replaceAll(/[\\u0000-\\u001F\\u007F]/g, x =>\n\t\t\t\tCHARACTER_ESCAPES[x] ?? `\\\\u${x.codePointAt(0).toString(16).padStart(4, '0')}`);\n\n\t\tif (options.singleQuotes === false) {\n\t\t\treturn `\"${stringified.replaceAll('\"', String.raw`\\\"`)}\"`;\n\t\t}\n\n\t\treturn `'${stringified.replaceAll('\\'', String.raw`\\'`)}'`;\n\t})(input, options, pad);\n}\n"]}
package/dist/index.js CHANGED
@@ -110,10 +110,137 @@ function getOwnEnumerableKeys(object) {
110
110
  ];
111
111
  }
112
112
 
113
+ // ../../node_modules/reserved-identifiers/index.js
114
+ var identifiers = [
115
+ // Keywords
116
+ "await",
117
+ "break",
118
+ "case",
119
+ "catch",
120
+ "class",
121
+ "const",
122
+ "continue",
123
+ "debugger",
124
+ "default",
125
+ "delete",
126
+ "do",
127
+ "else",
128
+ "enum",
129
+ "export",
130
+ "extends",
131
+ "false",
132
+ "finally",
133
+ "for",
134
+ "function",
135
+ "if",
136
+ "import",
137
+ "in",
138
+ "instanceof",
139
+ "new",
140
+ "null",
141
+ "return",
142
+ "super",
143
+ "switch",
144
+ "this",
145
+ "throw",
146
+ "true",
147
+ "try",
148
+ "typeof",
149
+ "var",
150
+ "void",
151
+ "while",
152
+ "with",
153
+ "yield",
154
+ // Future reserved keywords
155
+ "implements",
156
+ "interface",
157
+ "package",
158
+ "private",
159
+ "protected",
160
+ "public",
161
+ // Not keywords, but still restricted
162
+ "arguments",
163
+ "eval"
164
+ ];
165
+ var globalProperties = [
166
+ "globalThis",
167
+ "Infinity",
168
+ "NaN",
169
+ "undefined"
170
+ ];
171
+ function reservedIdentifiers({ includeGlobalProperties = false } = {}) {
172
+ return /* @__PURE__ */ new Set([
173
+ ...identifiers,
174
+ ...includeGlobalProperties ? globalProperties : []
175
+ ]);
176
+ }
177
+
178
+ // ../../node_modules/identifier-regex/index.js
179
+ var baseRegex = /[$_\p{ID_Start}][$_\u200C\u200D\p{ID_Continue}]*/u;
180
+ var basePattern = `(?<![@#$_\\p{ID_Continue}\\p{ID_Start}])(?!(?:${[...reservedIdentifiers({ includeGlobalProperties: true })].join("|")})(?![$_\\p{ID_Continue}]))${baseRegex.source}`;
181
+ var regex = new RegExp(basePattern, "u");
182
+ var regexExact = new RegExp(`^${basePattern}$`, "u");
183
+ function identifierRegex({ exact = true } = {}) {
184
+ return exact ? regexExact : regex;
185
+ }
186
+
187
+ // ../../node_modules/function-timeout/index.js
188
+ import vm from "vm";
189
+ var script = new vm.Script("returnValue = functionToRun()");
190
+ function functionTimeout(function_, { timeout, context: context2 = vm.createContext() } = {}) {
191
+ const wrappedFunction = (...arguments_) => {
192
+ context2.functionToRun = () => function_(...arguments_);
193
+ script.runInNewContext(context2, { timeout });
194
+ return context2.returnValue;
195
+ };
196
+ Object.defineProperty(wrappedFunction, "name", {
197
+ value: `functionTimeout(${function_.name || "<anonymous>"})`,
198
+ configurable: true
199
+ });
200
+ return wrappedFunction;
201
+ }
202
+ function isTimeoutError(error) {
203
+ return error?.code === "ERR_SCRIPT_EXECUTION_TIMEOUT";
204
+ }
205
+
206
+ // ../../node_modules/super-regex/index.js
207
+ var context = {};
208
+ function isMatch(regex3, string, { timeout } = {}) {
209
+ try {
210
+ return functionTimeout(() => structuredClone(regex3).test(string), { timeout, context })();
211
+ } catch (error) {
212
+ if (isTimeoutError(error)) {
213
+ return false;
214
+ }
215
+ throw error;
216
+ }
217
+ }
218
+
219
+ // ../../node_modules/is-identifier/index.js
220
+ var regex2 = identifierRegex();
221
+ function isIdentifier(value) {
222
+ if (typeof value !== "string") {
223
+ throw new TypeError(`Expected a string, got \`${typeof value}\`.`);
224
+ }
225
+ if (value.length > 1e5) {
226
+ return false;
227
+ }
228
+ return isMatch(regex2, value, { timeout: 1e3 });
229
+ }
230
+
113
231
  // ../../node_modules/stringify-object/index.js
232
+ var CHARACTER_ESCAPES = {
233
+ "\n": String.raw`\n`,
234
+ "\r": String.raw`\r`,
235
+ " ": String.raw`\t`,
236
+ "\b": String.raw`\b`,
237
+ "\f": String.raw`\f`,
238
+ "\v": String.raw`\v`,
239
+ "\0": String.raw`\0`
240
+ };
114
241
  function stringifyObject(input, options, pad) {
115
242
  const seen = [];
116
- return function stringify2(input2, options2 = {}, pad2 = "") {
243
+ return (function stringify2(input2, options2 = {}, pad2 = "") {
117
244
  const indent = options2.indent || " ";
118
245
  let tokens;
119
246
  if (options2.inlineCharacterLimit === void 0) {
@@ -135,36 +262,70 @@ function stringifyObject(input, options, pad) {
135
262
  if (options2.inlineCharacterLimit === void 0) {
136
263
  return string;
137
264
  }
138
- const oneLined = string.replace(new RegExp(tokens.newline, "g"), "").replace(new RegExp(tokens.newlineOrSpace, "g"), " ").replace(new RegExp(tokens.pad + "|" + tokens.indent, "g"), "");
265
+ const oneLined = string.replaceAll(tokens.newline, "").replaceAll(tokens.newlineOrSpace, " ").replaceAll(tokens.pad, "").replaceAll(tokens.indent, "");
139
266
  if (oneLined.length <= options2.inlineCharacterLimit) {
140
267
  return oneLined;
141
268
  }
142
- return string.replace(new RegExp(tokens.newline + "|" + tokens.newlineOrSpace, "g"), "\n").replace(new RegExp(tokens.pad, "g"), pad2).replace(new RegExp(tokens.indent, "g"), pad2 + indent);
269
+ return string.replaceAll(tokens.newline, "\n").replaceAll(tokens.newlineOrSpace, "\n").replaceAll(tokens.pad, pad2).replaceAll(tokens.indent, pad2 + indent);
143
270
  };
144
271
  if (seen.includes(input2)) {
145
272
  return '"[Circular]"';
146
273
  }
147
- if (input2 === null || input2 === void 0 || typeof input2 === "number" || typeof input2 === "boolean" || typeof input2 === "function" || typeof input2 === "symbol" || isRegexp(input2)) {
274
+ const type = typeof input2;
275
+ if (input2 === null || input2 === void 0 || type === "number" || type === "boolean" || type === "function" || isRegexp(input2)) {
148
276
  return String(input2);
149
277
  }
278
+ if (type === "bigint") {
279
+ return String(input2) + "n";
280
+ }
281
+ if (type === "symbol") {
282
+ const { description } = input2;
283
+ if (description === void 0) {
284
+ return "Symbol()";
285
+ }
286
+ if (description?.startsWith("Symbol.") && Symbol[description.slice(7)] === input2) {
287
+ return description;
288
+ }
289
+ const globalKey = Symbol.keyFor(input2);
290
+ if (globalKey !== void 0) {
291
+ return `Symbol.for(${stringify2(globalKey, options2)})`;
292
+ }
293
+ return `Symbol(${stringify2(description, options2)})`;
294
+ }
150
295
  if (input2 instanceof Date) {
151
- return `new Date('${input2.toISOString()}')`;
296
+ return Number.isNaN(input2.getTime()) ? "new Date('Invalid Date')" : `new Date('${input2.toISOString()}')`;
297
+ }
298
+ if (input2 instanceof Map || input2 instanceof Set) {
299
+ const isMap = input2 instanceof Map;
300
+ const name = isMap ? "Map" : "Set";
301
+ if (input2.size === 0) {
302
+ return `new ${name}()`;
303
+ }
304
+ seen.push(input2);
305
+ const items = [...input2].map((item) => {
306
+ if (isMap) {
307
+ const [key, value] = item;
308
+ return tokens.indent + `[${stringify2(key, options2, pad2 + indent)}, ${stringify2(value, options2, pad2 + indent)}]`;
309
+ }
310
+ return tokens.indent + stringify2(item, options2, pad2 + indent);
311
+ }).join("," + tokens.newlineOrSpace);
312
+ seen.pop();
313
+ return expandWhiteSpace(`new ${name}([${tokens.newline}${items}${tokens.newline}${tokens.pad}])`);
152
314
  }
153
315
  if (Array.isArray(input2)) {
154
316
  if (input2.length === 0) {
155
317
  return "[]";
156
318
  }
157
319
  seen.push(input2);
158
- const returnValue = "[" + tokens.newline + input2.map((element, i) => {
159
- const eol = input2.length - 1 === i ? tokens.newline : "," + tokens.newlineOrSpace;
320
+ const items = input2.map((element, index) => {
160
321
  let value = stringify2(element, options2, pad2 + indent);
161
322
  if (options2.transform) {
162
- value = options2.transform(input2, i, value);
323
+ value = options2.transform(input2, index, value);
163
324
  }
164
- return tokens.indent + value + eol;
165
- }).join("") + tokens.pad + "]";
325
+ return tokens.indent + value;
326
+ }).join("," + tokens.newlineOrSpace);
166
327
  seen.pop();
167
- return expandWhiteSpace(returnValue);
328
+ return expandWhiteSpace(`[${tokens.newline}${items}${tokens.newline}${tokens.pad}]`);
168
329
  }
169
330
  if (isObject(input2)) {
170
331
  let objectKeys = getOwnEnumerableKeys(input2);
@@ -175,29 +336,31 @@ function stringifyObject(input, options, pad) {
175
336
  return "{}";
176
337
  }
177
338
  seen.push(input2);
178
- const returnValue = "{" + tokens.newline + objectKeys.map((element, index) => {
179
- const eol = objectKeys.length - 1 === index ? tokens.newline : "," + tokens.newlineOrSpace;
339
+ const pairs = objectKeys.map((element) => {
180
340
  const isSymbol = typeof element === "symbol";
181
- const isClassic = !isSymbol && /^[a-z$_][$\w]*$/i.test(element);
182
- const key = isSymbol || isClassic ? element : stringify2(element, options2);
341
+ let key;
342
+ if (isSymbol) {
343
+ key = `[${stringify2(element, options2)}]`;
344
+ } else if (isIdentifier(element)) {
345
+ key = element;
346
+ } else {
347
+ key = stringify2(element, options2);
348
+ }
183
349
  let value = stringify2(input2[element], options2, pad2 + indent);
184
350
  if (options2.transform) {
185
351
  value = options2.transform(input2, element, value);
186
352
  }
187
- return tokens.indent + String(key) + ": " + value + eol;
188
- }).join("") + tokens.pad + "}";
353
+ return tokens.indent + key + ": " + value;
354
+ }).join("," + tokens.newlineOrSpace);
189
355
  seen.pop();
190
- return expandWhiteSpace(returnValue);
356
+ return expandWhiteSpace(`{${tokens.newline}${pairs}${tokens.newline}${tokens.pad}}`);
191
357
  }
192
- input2 = input2.replace(/\\/g, "\\\\");
193
- input2 = String(input2).replace(/[\r\n]/g, (x) => x === "\n" ? "\\n" : "\\r");
358
+ const stringified = String(input2).replaceAll("\\", "\\\\").replaceAll(/[\u0000-\u001F\u007F]/g, (x) => CHARACTER_ESCAPES[x] ?? `\\u${x.codePointAt(0).toString(16).padStart(4, "0")}`);
194
359
  if (options2.singleQuotes === false) {
195
- input2 = input2.replace(/"/g, '\\"');
196
- return `"${input2}"`;
360
+ return `"${stringified.replaceAll('"', String.raw`\"`)}"`;
197
361
  }
198
- input2 = input2.replace(/'/g, "\\'");
199
- return `'${input2}'`;
200
- }(input, options, pad);
362
+ return `'${stringified.replaceAll("'", String.raw`\'`)}'`;
363
+ })(input, options, pad);
201
364
  }
202
365
 
203
366
  // src/index.ts
@@ -205,7 +368,7 @@ var registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\/?(?<version>.+))?#(?<uui
205
368
  function getProjectPrefixFromRegistryUUID(uri) {
206
369
  const matches = uri.match(registryUUIDRegex);
207
370
  if (!matches) {
208
- return void 0;
371
+ return;
209
372
  }
210
373
  return matches.groups?.project;
211
374
  }
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts","../node_modules/camelcase/index.js","../../../node_modules/is-regexp/index.js","../../../node_modules/stringify-object/node_modules/is-obj/index.js","../../../node_modules/get-own-enumerable-keys/index.js","../../../node_modules/stringify-object/index.js"],"sourcesContent":["import type { ReducedHelperObject } from '@readme/httpsnippet/helpers/reducer';\nimport type { Client, ClientPlugin } from '@readme/httpsnippet/targets';\nimport type { Operation } from 'oas/operation';\nimport type { HttpMethods, OASDocument } from 'oas/types';\n\nimport { CodeBuilder } from '@readme/httpsnippet/helpers/code-builder';\nimport camelCase from 'camelcase'; // eslint-disable-line import/no-extraneous-dependencies\nimport contentType from 'content-type';\nimport Oas from 'oas';\nimport { matchesMimeType } from 'oas/utils';\nimport { isReservedOrBuiltinsLC } from 'reserved2';\nimport stringifyObject from 'stringify-object'; // eslint-disable-line import/no-extraneous-dependencies\n\n/**\n * @note This regex also exists in `api/fetcher`.\n *\n * @example @petstore/v1.0#n6kvf10vakpemvplx\n * @example @petstore#n6kvf10vakpemvplx\n */\nconst registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\\/?(?<version>.+))?#(?<uuid>[a-z0-9]+)$/;\n\n/**\n * @note This function also exists in `api/fetcher`.\n */\nfunction getProjectPrefixFromRegistryUUID(uri: string) {\n const matches = uri.match(registryUUIDRegex);\n if (!matches) {\n return undefined;\n }\n\n return matches.groups?.project;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction stringify(obj: any, opts = {}) {\n return stringifyObject(obj, { indent: ' ', ...opts });\n}\n\nfunction buildAuthSnippet(sdkVariable: string, authKey: string[] | string) {\n // Auth key will be an array for Basic auth cases.\n if (Array.isArray(authKey)) {\n const auth: string[] = [];\n authKey.forEach((token, i) => {\n // If the token part is the last part of the key and it's empty, don't add it to the snippet.\n if (token.length === 0 && authKey.length > 1 && i === authKey.length - 1) {\n return;\n }\n\n auth.push(`'${token.replace(/'/g, \"\\\\'\")}'`);\n });\n\n return `${sdkVariable}.auth(${auth.join(', ')});`;\n }\n\n return `${sdkVariable}.auth('${authKey.replace(/'/g, \"\\\\'\")}');`;\n}\n\nfunction getAuthSources(operation: Operation) {\n const matchers: { cookie: string[]; header: Record<string, string>; query: string[] } = {\n header: {},\n query: [],\n cookie: [],\n };\n\n if (operation.getSecurity().length === 0) {\n return matchers;\n }\n\n Object.entries(operation.prepareSecurity()).forEach(([, schemes]) => {\n schemes.forEach(scheme => {\n if (scheme.type === 'http') {\n if (scheme.scheme === 'basic') {\n matchers.header.authorization = 'Basic';\n } else if (scheme.scheme === 'bearer') {\n matchers.header.authorization = 'Bearer';\n }\n } else if (scheme.type === 'oauth2') {\n matchers.header.authorization = 'Bearer';\n } else if (scheme.type === 'apiKey') {\n if (scheme.in === 'query') {\n matchers.query.push(scheme.name);\n } else if (scheme.in === 'header') {\n // The way that this asterisk header matcher works is that since this `apiKey` goes in a\n // named header (`scheme.name`) because the header is the key, we're matching against the\n // entire header -- counter to the way that the HTTP basic matcher above works where we\n // match and extract the API key from everything after `Basic ` in the `Authorization`\n // header.\n matchers.header[scheme.name.toLowerCase()] = '*';\n } else if (scheme.in === 'cookie') {\n matchers.cookie.push(scheme.name);\n }\n }\n });\n });\n\n return matchers;\n}\n\ninterface APIOptions {\n api?: {\n definition: OASDocument;\n\n /**\n * The string to identify this SDK as. This is used in the `import sdk from '<identifier>'`\n * sample as well as the the variable name we attach the SDK to.\n *\n * @example `@api/developers`\n */\n identifier?: string;\n\n /**\n * The URI that is used to download this API definition from `npx api install`.\n *\n * @example `@developers/v2.0#17273l2glm9fq4l5`\n */\n registryURI: string;\n };\n escapeBrackets?: boolean;\n indent?: string | false;\n}\n\nconst client: Client<APIOptions> = {\n info: {\n key: 'api',\n title: 'API',\n link: 'https://npm.im/api',\n description: 'Automatic SDK generation from an OpenAPI definition.',\n extname: '.js',\n installation: 'npx api install \"{packageName}\"',\n },\n convert: ({ cookiesObj, headersObj, postData, queryObj, url, ...source }, options) => {\n const opts = {\n ...options,\n };\n\n if (!opts?.api) {\n throw new Error('This HTTPSnippet client must have an `api` config supplied to it.');\n } else if (!opts?.api?.definition) {\n throw new Error('This HTTPSnippet client must have an `api.definition` option supplied to it.');\n } else if (!opts?.api?.registryURI) {\n throw new Error('This HTTPSnippet client must have an `api.registryURI` option supplied to it.');\n }\n\n const method = source.method.toLowerCase() as HttpMethods;\n const oas = new Oas(opts.api.definition);\n const apiDefinition = oas.getDefinition();\n const foundOperation = oas.findOperation(url, method);\n if (!foundOperation) {\n throw new Error(\n `Unable to locate a matching operation in the supplied \\`api.definition\\` for: ${source.method} ${url}`,\n );\n }\n\n let sdkPackageName: string | undefined;\n let sdkVariable: string;\n if (opts.api.identifier) {\n sdkPackageName = opts.api.identifier;\n\n sdkVariable = camelCase(opts.api.identifier);\n if (isReservedOrBuiltinsLC(sdkVariable)) {\n // If this identifier is a reserved JS word then we should prefix it with an underscore so\n // this snippet can be valid code.\n sdkVariable = `_${sdkVariable}`;\n }\n } else {\n sdkPackageName = getProjectPrefixFromRegistryUUID(opts.api.registryURI);\n sdkVariable = camelCase(sdkPackageName || 'sdk');\n }\n\n const operationSlugs = foundOperation.url.slugs;\n const operation = oas.operation(foundOperation.url.nonNormalizedPath, method);\n const operationPathParameters = operation.getParameters().filter(param => param.in === 'path');\n const path = operation.path;\n const authData: string[] = [];\n const authSources = getAuthSources(operation);\n\n const { blank, push, join } = new CodeBuilder({ indent: opts.indent || ' ' });\n\n push(`import ${sdkVariable} from '@api/${sdkPackageName}';`);\n blank();\n\n // If we have multiple servers configured and our source URL differs from the stock URL that we\n // receive from our `oas` library then the URL either has server variables contained in it (that\n // don't match the defaults), or the OAS offers alternate server URLs and we should expose that\n // in the generated snippet.\n const configData = [];\n if ((apiDefinition.servers || []).length > 1) {\n const stockUrl = oas.url();\n const baseUrl = url.replace(path, '');\n if (baseUrl !== stockUrl) {\n const serverVars = oas.splitVariables(baseUrl);\n const serverUrl = serverVars ? oas.url(serverVars.selected, serverVars.variables) : baseUrl;\n\n configData.push(`${sdkVariable}.server('${serverUrl}');`);\n }\n }\n\n let metadata: Record<string, string[] | string> = {};\n Object.keys(queryObj).forEach(param => {\n if (authSources.query.includes(param)) {\n authData.push(buildAuthSnippet(sdkVariable, queryObj[param]));\n\n // If this query param is part of an auth source then we don't want it doubled up in the\n // snippet.\n return;\n }\n\n metadata[param] = queryObj[param];\n });\n\n Object.keys(cookiesObj).forEach(cookie => {\n if (authSources.cookie.includes(cookie)) {\n authData.push(buildAuthSnippet(sdkVariable, cookiesObj[cookie]));\n\n // If this cookie is part of an auth source then we don't want it doubled up.\n return;\n }\n\n // Note that we may have the potential to overlap any cookie that also shares the name as\n // another metadata parameter. This problem is currently inherent to `api` and not this\n // snippet generator.\n metadata[cookie] = cookiesObj[cookie];\n });\n\n // If we have path parameters present we should add them into the metadata object.\n Array.from(Object.entries(operationSlugs)).forEach(([param, value]) => {\n // The keys in `operationSlugs` will always be prefixed with a `:` in the `oas` library so\n // we can safely do this substring here without asserting this context.\n const cleanedParam = param.substring(1);\n\n // If our incoming path slug out of `oas.findOperation()` has been sanitized and is missing\n // a hyphen, but there is a parameter in the OpenAPI definition that matches what our\n // hyphen-less slug is then we should use that for the snippet.\n const unsanitizedParam = operationPathParameters.find(p => {\n return p.name.includes('-') && p.name.replace(/-/g, '') === cleanedParam ? p.name : false;\n });\n\n if (unsanitizedParam) {\n metadata[unsanitizedParam.name] = value;\n } else {\n metadata[cleanedParam] = value;\n }\n });\n\n if (Object.keys(headersObj).length) {\n const headers = headersObj;\n const requestHeaders: ReducedHelperObject = {};\n\n Object.keys(headers).forEach(header => {\n // Headers in HTTPSnippet are case-insensitive so we need to add in some special handling to\n // make sure we're able to match them properly.\n const headerLower = header.toLowerCase();\n\n if (headerLower in authSources.header) {\n // If this header has been set up as an authentication header, let's remove it and add it\n // into our auth data so we can build up an `.auth()` snippet for the SDK.\n const authScheme = authSources.header[headerLower];\n if (authScheme === '*') {\n authData.push(buildAuthSnippet(sdkVariable, headers[header]));\n } else {\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n let authKey = headers[header].replace(`${authSources.header[headerLower]} `, '');\n if (authScheme.toLowerCase() === 'basic') {\n authKey = Buffer.from(authKey, 'base64').toString('ascii');\n authKey = authKey.split(':');\n }\n\n authData.push(buildAuthSnippet(sdkVariable, authKey));\n }\n\n delete headers[header];\n return;\n } else if (headerLower === 'content-type') {\n // `Content-Type` headers are automatically added within the SDK so we can filter them out\n // if they don't have parameters attached to them.\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n const parsedContentType = contentType.parse(headers[header]);\n if (!Object.keys(parsedContentType.parameters).length) {\n delete headers[header];\n return;\n }\n } else if (headerLower === 'accept') {\n // If the `Accept` header here is JSON-like header then we can remove it from the code\n // snippet because `api` natively supports and prioritizes JSON over any other mime type.\n if (matchesMimeType.json(headers[header] as string)) {\n delete headers[header];\n return;\n }\n }\n\n // If we haven't used our header anywhere else, or we've deleted it from the payload\n // because it'll be handled internally by `api` then we should add it into our code snippet.\n if (['accept', 'content-type'].includes(headerLower)) {\n requestHeaders[headerLower] = headers[header];\n } else {\n // Non-reserved headers retain their casing because we want to generate a snippet that\n // matches the TS types that are created during codegeneration.\n requestHeaders[header] = headers[header];\n }\n });\n\n if (Object.keys(requestHeaders).length > 0) {\n metadata = Object.assign(metadata, requestHeaders);\n }\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let body: any;\n switch (postData.mimeType) {\n case 'application/x-www-form-urlencoded':\n body = postData.paramsObj;\n break;\n\n case 'application/json':\n if (postData.jsonObj) {\n body = postData.jsonObj;\n }\n break;\n\n case 'multipart/form-data':\n if (postData.params) {\n body = {};\n\n // If there's a `Content-Type` header present in the metadata, but it's for the\n // `multipart/form-data` request then dump it off the snippet. We shouldn't offload that\n // unnecessary bloat of multipart boundaries to the user, instead letting the SDK handle it\n // automatically.\n if ('content-type' in metadata && metadata['content-type'].indexOf('multipart/form-data') === 0) {\n delete metadata['content-type'];\n }\n\n postData.params.forEach(param => {\n if (param.fileName) {\n body[param.name] = param.fileName;\n } else {\n body[param.name] = param.value;\n }\n });\n }\n break;\n\n default:\n if (postData.text) {\n body = postData.text;\n }\n }\n\n const args = [];\n\n const accessor = operation.getOperationId({ camelCase: true });\n\n // If we're going to be rendering out body params and metadata we should cut their character\n // limit in half because we'll be rendering them in their own lines.\n const inlineCharacterLimit = typeof body !== 'undefined' && Object.keys(metadata).length > 0 ? 40 : 80;\n if (typeof body !== 'undefined') {\n args.push(stringify(body, { inlineCharacterLimit }));\n }\n\n if (Object.keys(metadata).length > 0) {\n args.push(stringify(metadata, { inlineCharacterLimit }));\n }\n\n if (authData.length) {\n push(authData.join('\\n'));\n }\n\n if (configData.length) {\n push(configData.join('\\n'));\n }\n\n push(`${sdkVariable}.${accessor}(${args.join(', ')})`);\n push('.then(({ data }) => console.log(data))', 1);\n push('.catch(err => console.error(err));', 1);\n\n return join();\n },\n};\n\nconst plugin: ClientPlugin<APIOptions> = {\n target: 'node',\n client,\n};\n\nexport default plugin;\n","const UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase, preserveConsecutiveUppercase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\tlet isLastLastCharPreserved = false;\n\n\tfor (let index = 0; index < string.length; index++) {\n\t\tconst character = string[index];\n\t\tisLastLastCharPreserved = index > 2 ? string[index - 3] === '-' : true;\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, index) + '-' + string.slice(index);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\tindex++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character) && (!isLastLastCharPreserved || preserveConsecutiveUppercase)) {\n\t\t\tstring = string.slice(0, index - 1) + '-' + string.slice(index - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replaceAll(LEADING_CAPITAL, match => toLowerCase(match));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input\n\t\t.replaceAll(NUMBERS_AND_IDENTIFIER, (match, pattern, offset) => ['_', '-'].includes(input.charAt(offset + match.length)) ? match : toUpperCase(match))\n\t\t.replaceAll(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier));\n};\n\nexport default function camelCase(input, options) {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options,\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false\n\t\t? string => string.toLowerCase()\n\t\t: string => string.toLocaleLowerCase(options.locale);\n\n\tconst toUpperCase = options.locale === false\n\t\t? string => string.toUpperCase()\n\t\t: string => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\tif (SEPARATORS.test(input)) {\n\t\t\treturn '';\n\t\t}\n\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase, options.preserveConsecutiveUppercase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\tinput = options.preserveConsecutiveUppercase ? preserveConsecutiveUppercase(input, toLowerCase) : toLowerCase(input);\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n}\n","const {toString} = Object.prototype;\n\nexport default function isRegexp(value) {\n\treturn toString.call(value) === '[object RegExp]';\n}\n","export default function isObject(value) {\n\tconst type = typeof value;\n\treturn value !== null && (type === 'object' || type === 'function');\n}\n","const {propertyIsEnumerable} = Object.prototype;\n\nexport default function getOwnEnumerableKeys(object) {\n\treturn [\n\t\t...Object.keys(object),\n\t\t...Object.getOwnPropertySymbols(object)\n\t\t\t.filter(key => propertyIsEnumerable.call(object, key)),\n\t];\n}\n","import isRegexp from 'is-regexp';\nimport isObject from 'is-obj';\nimport getOwnEnumerableKeys from 'get-own-enumerable-keys';\n\nexport default function stringifyObject(input, options, pad) {\n\tconst seen = [];\n\n\treturn (function stringify(input, options = {}, pad = '') {\n\t\tconst indent = options.indent || '\\t';\n\n\t\tlet tokens;\n\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\ttokens = {\n\t\t\t\tnewline: '\\n',\n\t\t\t\tnewlineOrSpace: '\\n',\n\t\t\t\tpad,\n\t\t\t\tindent: pad + indent,\n\t\t\t};\n\t\t} else {\n\t\t\ttokens = {\n\t\t\t\tnewline: '@@__STRINGIFY_OBJECT_NEW_LINE__@@',\n\t\t\t\tnewlineOrSpace: '@@__STRINGIFY_OBJECT_NEW_LINE_OR_SPACE__@@',\n\t\t\t\tpad: '@@__STRINGIFY_OBJECT_PAD__@@',\n\t\t\t\tindent: '@@__STRINGIFY_OBJECT_INDENT__@@',\n\t\t\t};\n\t\t}\n\n\t\tconst expandWhiteSpace = string => {\n\t\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\t\treturn string;\n\t\t\t}\n\n\t\t\tconst oneLined = string\n\t\t\t\t.replace(new RegExp(tokens.newline, 'g'), '')\n\t\t\t\t.replace(new RegExp(tokens.newlineOrSpace, 'g'), ' ')\n\t\t\t\t.replace(new RegExp(tokens.pad + '|' + tokens.indent, 'g'), '');\n\n\t\t\tif (oneLined.length <= options.inlineCharacterLimit) {\n\t\t\t\treturn oneLined;\n\t\t\t}\n\n\t\t\treturn string\n\t\t\t\t.replace(new RegExp(tokens.newline + '|' + tokens.newlineOrSpace, 'g'), '\\n')\n\t\t\t\t.replace(new RegExp(tokens.pad, 'g'), pad)\n\t\t\t\t.replace(new RegExp(tokens.indent, 'g'), pad + indent);\n\t\t};\n\n\t\tif (seen.includes(input)) {\n\t\t\treturn '\"[Circular]\"';\n\t\t}\n\n\t\tif (\n\t\t\tinput === null\n\t\t\t|| input === undefined\n\t\t\t|| typeof input === 'number'\n\t\t\t|| typeof input === 'boolean'\n\t\t\t|| typeof input === 'function'\n\t\t\t|| typeof input === 'symbol'\n\t\t\t|| isRegexp(input)\n\t\t) {\n\t\t\treturn String(input);\n\t\t}\n\n\t\tif (input instanceof Date) {\n\t\t\treturn `new Date('${input.toISOString()}')`;\n\t\t}\n\n\t\tif (Array.isArray(input)) {\n\t\t\tif (input.length === 0) {\n\t\t\t\treturn '[]';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst returnValue = '[' + tokens.newline + input.map((element, i) => {\n\t\t\t\tconst eol = input.length - 1 === i ? tokens.newline : ',' + tokens.newlineOrSpace;\n\n\t\t\t\tlet value = stringify(element, options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, i, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + value + eol;\n\t\t\t}).join('') + tokens.pad + ']';\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(returnValue);\n\t\t}\n\n\t\tif (isObject(input)) {\n\t\t\tlet objectKeys = getOwnEnumerableKeys(input);\n\n\t\t\tif (options.filter) {\n\t\t\t\t// eslint-disable-next-line unicorn/no-array-callback-reference, unicorn/no-array-method-this-argument\n\t\t\t\tobjectKeys = objectKeys.filter(element => options.filter(input, element));\n\t\t\t}\n\n\t\t\tif (objectKeys.length === 0) {\n\t\t\t\treturn '{}';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst returnValue = '{' + tokens.newline + objectKeys.map((element, index) => {\n\t\t\t\tconst eol = objectKeys.length - 1 === index ? tokens.newline : ',' + tokens.newlineOrSpace;\n\t\t\t\tconst isSymbol = typeof element === 'symbol';\n\t\t\t\tconst isClassic = !isSymbol && /^[a-z$_][$\\w]*$/i.test(element);\n\t\t\t\tconst key = isSymbol || isClassic ? element : stringify(element, options);\n\n\t\t\t\tlet value = stringify(input[element], options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, element, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + String(key) + ': ' + value + eol;\n\t\t\t}).join('') + tokens.pad + '}';\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(returnValue);\n\t\t}\n\n\t\tinput = input.replace(/\\\\/g, '\\\\\\\\');\n\t\tinput = String(input).replace(/[\\r\\n]/g, x => x === '\\n' ? '\\\\n' : '\\\\r');\n\n\t\tif (options.singleQuotes === false) {\n\t\t\tinput = input.replace(/\"/g, '\\\\\"');\n\t\t\treturn `\"${input}\"`;\n\t\t}\n\n\t\tinput = input.replace(/'/g, '\\\\\\'');\n\t\treturn `'${input}'`;\n\t})(input, options, pad);\n}\n"],"mappings":"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","names":["preserveConsecutiveUppercase","stringify","input","options","pad"]}
1
+ {"version":3,"sources":["../src/index.ts","../node_modules/camelcase/index.js","../../../node_modules/is-regexp/index.js","../../../node_modules/stringify-object/node_modules/is-obj/index.js","../../../node_modules/get-own-enumerable-keys/index.js","../../../node_modules/reserved-identifiers/index.js","../../../node_modules/identifier-regex/index.js","../../../node_modules/function-timeout/index.js","../../../node_modules/super-regex/index.js","../../../node_modules/is-identifier/index.js","../../../node_modules/stringify-object/index.js"],"sourcesContent":["import type { ReducedHelperObject } from '@readme/httpsnippet/helpers/reducer';\nimport type { Client, ClientPlugin } from '@readme/httpsnippet/targets';\nimport type { Operation } from 'oas/operation';\nimport type { HttpMethods, OASDocument } from 'oas/types';\n\nimport { CodeBuilder } from '@readme/httpsnippet/helpers/code-builder';\nimport camelCase from 'camelcase';\nimport contentType from 'content-type';\nimport Oas from 'oas';\nimport { matchesMimeType } from 'oas/utils';\nimport { isReservedOrBuiltinsLC } from 'reserved2';\nimport stringifyObject from 'stringify-object';\n\n/**\n * @note This regex also exists in `api/fetcher`.\n *\n * @example @petstore/v1.0#n6kvf10vakpemvplx\n * @example @petstore#n6kvf10vakpemvplx\n */\nconst registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\\/?(?<version>.+))?#(?<uuid>[a-z0-9]+)$/;\n\n/**\n * @note This function also exists in `api/fetcher`.\n */\nfunction getProjectPrefixFromRegistryUUID(uri: string): string | undefined {\n const matches = uri.match(registryUUIDRegex);\n if (!matches) {\n return;\n }\n\n return matches.groups?.project;\n}\n\nfunction stringify(obj: unknown, opts = {}) {\n return stringifyObject(obj, { indent: ' ', ...opts });\n}\n\nfunction buildAuthSnippet(sdkVariable: string, authKey: string[] | string) {\n // Auth key will be an array for Basic auth cases.\n if (Array.isArray(authKey)) {\n const auth: string[] = [];\n authKey.forEach((token, i) => {\n // If the token part is the last part of the key and it's empty, don't add it to the snippet.\n if (token.length === 0 && authKey.length > 1 && i === authKey.length - 1) {\n return;\n }\n\n auth.push(`'${token.replace(/'/g, \"\\\\'\")}'`);\n });\n\n return `${sdkVariable}.auth(${auth.join(', ')});`;\n }\n\n return `${sdkVariable}.auth('${authKey.replace(/'/g, \"\\\\'\")}');`;\n}\n\nfunction getAuthSources(operation: Operation) {\n const matchers: { cookie: string[]; header: Record<string, string>; query: string[] } = {\n header: {},\n query: [],\n cookie: [],\n };\n\n if (operation.getSecurity().length === 0) {\n return matchers;\n }\n\n Object.entries(operation.prepareSecurity()).forEach(([, schemes]) => {\n schemes.forEach(scheme => {\n if (scheme.type === 'http') {\n if (scheme.scheme === 'basic') {\n matchers.header.authorization = 'Basic';\n } else if (scheme.scheme === 'bearer') {\n matchers.header.authorization = 'Bearer';\n }\n } else if (scheme.type === 'oauth2') {\n matchers.header.authorization = 'Bearer';\n } else if (scheme.type === 'apiKey') {\n if (scheme.in === 'query') {\n matchers.query.push(scheme.name);\n } else if (scheme.in === 'header') {\n // The way that this asterisk header matcher works is that since this `apiKey` goes in a\n // named header (`scheme.name`) because the header is the key, we're matching against the\n // entire header -- counter to the way that the HTTP basic matcher above works where we\n // match and extract the API key from everything after `Basic ` in the `Authorization`\n // header.\n matchers.header[scheme.name.toLowerCase()] = '*';\n } else if (scheme.in === 'cookie') {\n matchers.cookie.push(scheme.name);\n }\n }\n });\n });\n\n return matchers;\n}\n\ninterface APIOptions {\n api?: {\n definition: OASDocument;\n\n /**\n * The string to identify this SDK as. This is used in the `import sdk from '<identifier>'`\n * sample as well as the the variable name we attach the SDK to.\n *\n * @example `@api/developers`\n */\n identifier?: string;\n\n /**\n * The URI that is used to download this API definition from `npx api install`.\n *\n * @example `@developers/v2.0#17273l2glm9fq4l5`\n */\n registryURI: string;\n };\n escapeBrackets?: boolean;\n indent?: string | false;\n}\n\nconst client: Client<APIOptions> = {\n info: {\n key: 'api',\n title: 'API',\n link: 'https://npm.im/api',\n description: 'Automatic SDK generation from an OpenAPI definition.',\n extname: '.js',\n installation: 'npx api install \"{packageName}\"',\n },\n convert: ({ cookiesObj, headersObj, postData, queryObj, url, ...source }, options) => {\n const opts = {\n ...options,\n };\n\n if (!opts?.api) {\n throw new Error('This HTTPSnippet client must have an `api` config supplied to it.');\n } else if (!opts?.api?.definition) {\n throw new Error('This HTTPSnippet client must have an `api.definition` option supplied to it.');\n } else if (!opts?.api?.registryURI) {\n throw new Error('This HTTPSnippet client must have an `api.registryURI` option supplied to it.');\n }\n\n const method = source.method.toLowerCase() as HttpMethods;\n const oas = new Oas(opts.api.definition);\n const apiDefinition = oas.getDefinition();\n const foundOperation = oas.findOperation(url, method);\n if (!foundOperation) {\n throw new Error(\n `Unable to locate a matching operation in the supplied \\`api.definition\\` for: ${source.method} ${url}`,\n );\n }\n\n let sdkPackageName: string | undefined;\n let sdkVariable: string;\n if (opts.api.identifier) {\n sdkPackageName = opts.api.identifier;\n\n sdkVariable = camelCase(opts.api.identifier);\n if (isReservedOrBuiltinsLC(sdkVariable)) {\n // If this identifier is a reserved JS word then we should prefix it with an underscore so\n // this snippet can be valid code.\n sdkVariable = `_${sdkVariable}`;\n }\n } else {\n sdkPackageName = getProjectPrefixFromRegistryUUID(opts.api.registryURI);\n sdkVariable = camelCase(sdkPackageName || 'sdk');\n }\n\n const operationSlugs = foundOperation.url.slugs;\n const operation = oas.operation(foundOperation.url.nonNormalizedPath, method);\n const operationPathParameters = operation.getParameters().filter(param => param.in === 'path');\n const path = operation.path;\n const authData: string[] = [];\n const authSources = getAuthSources(operation);\n\n const { blank, push, join } = new CodeBuilder({ indent: opts.indent || ' ' });\n\n push(`import ${sdkVariable} from '@api/${sdkPackageName}';`);\n blank();\n\n // If we have multiple servers configured and our source URL differs from the stock URL that we\n // receive from our `oas` library then the URL either has server variables contained in it (that\n // don't match the defaults), or the OAS offers alternate server URLs and we should expose that\n // in the generated snippet.\n const configData = [];\n if ((apiDefinition.servers || []).length > 1) {\n const stockUrl = oas.url();\n const baseUrl = url.replace(path, '');\n if (baseUrl !== stockUrl) {\n const serverVars = oas.splitVariables(baseUrl);\n const serverUrl = serverVars ? oas.url(serverVars.selected, serverVars.variables) : baseUrl;\n\n configData.push(`${sdkVariable}.server('${serverUrl}');`);\n }\n }\n\n let metadata: Record<string, string[] | string> = {};\n Object.keys(queryObj).forEach(param => {\n if (authSources.query.includes(param)) {\n authData.push(buildAuthSnippet(sdkVariable, queryObj[param]));\n\n // If this query param is part of an auth source then we don't want it doubled up in the\n // snippet.\n return;\n }\n\n metadata[param] = queryObj[param];\n });\n\n Object.keys(cookiesObj).forEach(cookie => {\n if (authSources.cookie.includes(cookie)) {\n authData.push(buildAuthSnippet(sdkVariable, cookiesObj[cookie]));\n\n // If this cookie is part of an auth source then we don't want it doubled up.\n return;\n }\n\n // Note that we may have the potential to overlap any cookie that also shares the name as\n // another metadata parameter. This problem is currently inherent to `api` and not this\n // snippet generator.\n metadata[cookie] = cookiesObj[cookie];\n });\n\n // If we have path parameters present we should add them into the metadata object.\n Array.from(Object.entries(operationSlugs)).forEach(([param, value]) => {\n // The keys in `operationSlugs` will always be prefixed with a `:` in the `oas` library so\n // we can safely do this substring here without asserting this context.\n const cleanedParam = param.substring(1);\n\n // If our incoming path slug out of `oas.findOperation()` has been sanitized and is missing\n // a hyphen, but there is a parameter in the OpenAPI definition that matches what our\n // hyphen-less slug is then we should use that for the snippet.\n const unsanitizedParam = operationPathParameters.find(p => {\n return p.name.includes('-') && p.name.replace(/-/g, '') === cleanedParam ? p.name : false;\n });\n\n if (unsanitizedParam) {\n metadata[unsanitizedParam.name] = value;\n } else {\n metadata[cleanedParam] = value;\n }\n });\n\n if (Object.keys(headersObj).length) {\n const headers = headersObj;\n const requestHeaders: ReducedHelperObject = {};\n\n Object.keys(headers).forEach(header => {\n // Headers in HTTPSnippet are case-insensitive so we need to add in some special handling to\n // make sure we're able to match them properly.\n const headerLower = header.toLowerCase();\n\n if (headerLower in authSources.header) {\n // If this header has been set up as an authentication header, let's remove it and add it\n // into our auth data so we can build up an `.auth()` snippet for the SDK.\n const authScheme = authSources.header[headerLower];\n if (authScheme === '*') {\n authData.push(buildAuthSnippet(sdkVariable, headers[header]));\n } else {\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n let authKey = headers[header].replace(`${authSources.header[headerLower]} `, '');\n if (authScheme.toLowerCase() === 'basic') {\n authKey = Buffer.from(authKey, 'base64').toString('ascii');\n authKey = authKey.split(':');\n }\n\n authData.push(buildAuthSnippet(sdkVariable, authKey));\n }\n\n delete headers[header];\n return;\n } else if (headerLower === 'content-type') {\n // `Content-Type` headers are automatically added within the SDK so we can filter them out\n // if they don't have parameters attached to them.\n // @ts-expect-error `headers[header]` is typed improperly in HTTPSnippet.\n const parsedContentType = contentType.parse(headers[header]);\n if (!Object.keys(parsedContentType.parameters).length) {\n delete headers[header];\n return;\n }\n } else if (headerLower === 'accept') {\n // If the `Accept` header here is JSON-like header then we can remove it from the code\n // snippet because `api` natively supports and prioritizes JSON over any other mime type.\n if (matchesMimeType.json(headers[header] as string)) {\n delete headers[header];\n return;\n }\n }\n\n // If we haven't used our header anywhere else, or we've deleted it from the payload\n // because it'll be handled internally by `api` then we should add it into our code snippet.\n if (['accept', 'content-type'].includes(headerLower)) {\n requestHeaders[headerLower] = headers[header];\n } else {\n // Non-reserved headers retain their casing because we want to generate a snippet that\n // matches the TS types that are created during codegeneration.\n requestHeaders[header] = headers[header];\n }\n });\n\n if (Object.keys(requestHeaders).length > 0) {\n metadata = Object.assign(metadata, requestHeaders);\n }\n }\n\n let body: any;\n switch (postData.mimeType) {\n case 'application/x-www-form-urlencoded':\n body = postData.paramsObj;\n break;\n\n case 'application/json':\n if (postData.jsonObj) {\n body = postData.jsonObj;\n }\n break;\n\n case 'multipart/form-data':\n if (postData.params) {\n body = {};\n\n // If there's a `Content-Type` header present in the metadata, but it's for the\n // `multipart/form-data` request then dump it off the snippet. We shouldn't offload that\n // unnecessary bloat of multipart boundaries to the user, instead letting the SDK handle it\n // automatically.\n if ('content-type' in metadata && metadata['content-type'].indexOf('multipart/form-data') === 0) {\n delete metadata['content-type'];\n }\n\n postData.params.forEach(param => {\n if (param.fileName) {\n body[param.name] = param.fileName;\n } else {\n body[param.name] = param.value;\n }\n });\n }\n break;\n\n default:\n if (postData.text) {\n body = postData.text;\n }\n }\n\n const args = [];\n\n const accessor = operation.getOperationId({ camelCase: true });\n\n // If we're going to be rendering out body params and metadata we should cut their character\n // limit in half because we'll be rendering them in their own lines.\n const inlineCharacterLimit = typeof body !== 'undefined' && Object.keys(metadata).length > 0 ? 40 : 80;\n if (typeof body !== 'undefined') {\n args.push(stringify(body, { inlineCharacterLimit }));\n }\n\n if (Object.keys(metadata).length > 0) {\n args.push(stringify(metadata, { inlineCharacterLimit }));\n }\n\n if (authData.length) {\n push(authData.join('\\n'));\n }\n\n if (configData.length) {\n push(configData.join('\\n'));\n }\n\n push(`${sdkVariable}.${accessor}(${args.join(', ')})`);\n push('.then(({ data }) => console.log(data))', 1);\n push('.catch(err => console.error(err));', 1);\n\n return join();\n },\n};\n\nconst plugin: ClientPlugin<APIOptions> = {\n target: 'node',\n client,\n};\n\nexport default plugin;\n","const UPPERCASE = /[\\p{Lu}]/u;\nconst LOWERCASE = /[\\p{Ll}]/u;\nconst LEADING_CAPITAL = /^[\\p{Lu}](?![\\p{Lu}])/gu;\nconst IDENTIFIER = /([\\p{Alpha}\\p{N}_]|$)/u;\nconst SEPARATORS = /[_.\\- ]+/;\n\nconst LEADING_SEPARATORS = new RegExp('^' + SEPARATORS.source);\nconst SEPARATORS_AND_IDENTIFIER = new RegExp(SEPARATORS.source + IDENTIFIER.source, 'gu');\nconst NUMBERS_AND_IDENTIFIER = new RegExp('\\\\d+' + IDENTIFIER.source, 'gu');\n\nconst preserveCamelCase = (string, toLowerCase, toUpperCase, preserveConsecutiveUppercase) => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\tlet isLastLastCharPreserved = false;\n\n\tfor (let index = 0; index < string.length; index++) {\n\t\tconst character = string[index];\n\t\tisLastLastCharPreserved = index > 2 ? string[index - 3] === '-' : true;\n\n\t\tif (isLastCharLower && UPPERCASE.test(character)) {\n\t\t\tstring = string.slice(0, index) + '-' + string.slice(index);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\tindex++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && LOWERCASE.test(character) && (!isLastLastCharPreserved || preserveConsecutiveUppercase)) {\n\t\t\tstring = string.slice(0, index - 1) + '-' + string.slice(index - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = toLowerCase(character) === character && toUpperCase(character) !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = toUpperCase(character) === character && toLowerCase(character) !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst preserveConsecutiveUppercase = (input, toLowerCase) => {\n\tLEADING_CAPITAL.lastIndex = 0;\n\n\treturn input.replaceAll(LEADING_CAPITAL, match => toLowerCase(match));\n};\n\nconst postProcess = (input, toUpperCase) => {\n\tSEPARATORS_AND_IDENTIFIER.lastIndex = 0;\n\tNUMBERS_AND_IDENTIFIER.lastIndex = 0;\n\n\treturn input\n\t\t.replaceAll(NUMBERS_AND_IDENTIFIER, (match, pattern, offset) => ['_', '-'].includes(input.charAt(offset + match.length)) ? match : toUpperCase(match))\n\t\t.replaceAll(SEPARATORS_AND_IDENTIFIER, (_, identifier) => toUpperCase(identifier));\n};\n\nexport default function camelCase(input, options) {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = {\n\t\tpascalCase: false,\n\t\tpreserveConsecutiveUppercase: false,\n\t\t...options,\n\t};\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tconst toLowerCase = options.locale === false\n\t\t? string => string.toLowerCase()\n\t\t: string => string.toLocaleLowerCase(options.locale);\n\n\tconst toUpperCase = options.locale === false\n\t\t? string => string.toUpperCase()\n\t\t: string => string.toLocaleUpperCase(options.locale);\n\n\tif (input.length === 1) {\n\t\tif (SEPARATORS.test(input)) {\n\t\t\treturn '';\n\t\t}\n\n\t\treturn options.pascalCase ? toUpperCase(input) : toLowerCase(input);\n\t}\n\n\tconst hasUpperCase = input !== toLowerCase(input);\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input, toLowerCase, toUpperCase, options.preserveConsecutiveUppercase);\n\t}\n\n\tinput = input.replace(LEADING_SEPARATORS, '');\n\tinput = options.preserveConsecutiveUppercase ? preserveConsecutiveUppercase(input, toLowerCase) : toLowerCase(input);\n\n\tif (options.pascalCase) {\n\t\tinput = toUpperCase(input.charAt(0)) + input.slice(1);\n\t}\n\n\treturn postProcess(input, toUpperCase);\n}\n","const {toString} = Object.prototype;\n\nexport default function isRegexp(value) {\n\treturn toString.call(value) === '[object RegExp]';\n}\n","export default function isObject(value) {\n\tconst type = typeof value;\n\treturn value !== null && (type === 'object' || type === 'function');\n}\n","const {propertyIsEnumerable} = Object.prototype;\n\nexport default function getOwnEnumerableKeys(object) {\n\treturn [\n\t\t...Object.keys(object),\n\t\t...Object.getOwnPropertySymbols(object)\n\t\t\t.filter(key => propertyIsEnumerable.call(object, key)),\n\t];\n}\n","// https://262.ecma-international.org/14.0/#sec-keywords-and-reserved-words\n// 14 is ES2023\nconst identifiers = [\n\t// Keywords\n\t'await',\n\t'break',\n\t'case',\n\t'catch',\n\t'class',\n\t'const',\n\t'continue',\n\t'debugger',\n\t'default',\n\t'delete',\n\t'do',\n\t'else',\n\t'enum',\n\t'export',\n\t'extends',\n\t'false',\n\t'finally',\n\t'for',\n\t'function',\n\t'if',\n\t'import',\n\t'in',\n\t'instanceof',\n\t'new',\n\t'null',\n\t'return',\n\t'super',\n\t'switch',\n\t'this',\n\t'throw',\n\t'true',\n\t'try',\n\t'typeof',\n\t'var',\n\t'void',\n\t'while',\n\t'with',\n\t'yield',\n\n\t// Future reserved keywords\n\t'implements',\n\t'interface',\n\t'package',\n\t'private',\n\t'protected',\n\t'public',\n\n\t// Not keywords, but still restricted\n\t'arguments',\n\t'eval',\n];\n\n// https://262.ecma-international.org/14.0/#sec-value-properties-of-the-global-object\nconst globalProperties = [\n\t'globalThis',\n\t'Infinity',\n\t'NaN',\n\t'undefined',\n];\n\nexport default function reservedIdentifiers({includeGlobalProperties = false} = {}) {\n\treturn new Set([\n\t\t...identifiers,\n\t\t...(includeGlobalProperties ? globalProperties : []),\n\t]);\n}\n","import reservedIdentifiers from 'reserved-identifiers';\n\nconst baseRegex = /[$_\\p{ID_Start}][$_\\u200C\\u200D\\p{ID_Continue}]*/u;\nconst basePattern = `(?<![@#$_\\\\p{ID_Continue}\\\\p{ID_Start}])(?!(?:${[...reservedIdentifiers({includeGlobalProperties: true})].join('|')})(?![$_\\\\p{ID_Continue}]))${baseRegex.source}`;\nconst regex = new RegExp(basePattern, 'u');\nconst regexExact = new RegExp(`^${basePattern}$`, 'u');\n\nexport default function identifierRegex({exact = true} = {}) {\n\treturn exact ? regexExact : regex;\n}\n","import vm from 'node:vm';\n\nconst script = new vm.Script('returnValue = functionToRun()');\n\n// TODO: Document the `context` option and add to types when I know it's something I want to keep.\n\n// If you use the `context` option, you do it at your own risk.\nexport default function functionTimeout(function_, {timeout, context = vm.createContext()} = {}) {\n\tconst wrappedFunction = (...arguments_) => {\n\t\tcontext.functionToRun = () => function_(...arguments_);\n\t\tscript.runInNewContext(context, {timeout});\n\t\treturn context.returnValue;\n\t};\n\n\tObject.defineProperty(wrappedFunction, 'name', {\n\t\tvalue: `functionTimeout(${function_.name || '<anonymous>'})`,\n\t\tconfigurable: true,\n\t});\n\n\treturn wrappedFunction;\n}\n\nexport function isTimeoutError(error) {\n\treturn error?.code === 'ERR_SCRIPT_EXECUTION_TIMEOUT';\n}\n","import functionTimeout, {isTimeoutError} from 'function-timeout';\nimport timeSpan from 'time-span';\n\nconst resultToMatch = result => ({\n\tmatch: result[0],\n\tindex: result.index,\n\tgroups: result.slice(1),\n\tnamedGroups: result.groups ?? {},\n\tinput: result.input,\n});\n\nconst context = {};\n\nexport function isMatch(regex, string, {timeout} = {}) {\n\ttry {\n\t\treturn functionTimeout(() => structuredClone(regex).test(string), {timeout, context})();\n\t} catch (error) {\n\t\tif (isTimeoutError(error)) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthrow error;\n\t}\n}\n\nexport function firstMatch(regex, string, {timeout} = {}) {\n\ttry {\n\t\tconst result = functionTimeout(() => structuredClone(regex).exec(string), {timeout, context})();\n\n\t\tif (result === null) {\n\t\t\treturn;\n\t\t}\n\n\t\treturn resultToMatch(result);\n\t} catch (error) {\n\t\tif (isTimeoutError(error)) {\n\t\t\treturn;\n\t\t}\n\n\t\tthrow error;\n\t}\n}\n\nexport function matches(regex, string, {timeout = Number.POSITIVE_INFINITY, matchTimeout = Number.POSITIVE_INFINITY} = {}) {\n\tif (!regex.global) {\n\t\tthrow new Error('The regex must have the global flag, otherwise, use `firstMatch()` instead');\n\t}\n\n\treturn {\n\t\t* [Symbol.iterator]() {\n\t\t\ttry {\n\t\t\t\tconst matches = string.matchAll(regex); // The regex is only executed when iterated over.\n\n\t\t\t\twhile (true) {\n\t\t\t\t\t// `matches.next` must be called within an arrow function so that it doesn't loose its context.\n\t\t\t\t\tconst nextMatch = functionTimeout(() => matches.next(), {\n\t\t\t\t\t\tcontext,\n\t\t\t\t\t\ttimeout: (timeout !== Number.POSITIVE_INFINITY || matchTimeout !== Number.POSITIVE_INFINITY) ? Math.min(timeout, matchTimeout) : undefined,\n\t\t\t\t\t});\n\n\t\t\t\t\tconst end = timeSpan();\n\t\t\t\t\tconst {value, done} = nextMatch();\n\t\t\t\t\ttimeout -= Math.ceil(end());\n\n\t\t\t\t\tif (done) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tyield resultToMatch(value);\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tif (!isTimeoutError(error)) {\n\t\t\t\t\tthrow error;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t};\n}\n","import identifierRegex from 'identifier-regex';\nimport {isMatch} from 'super-regex';\n\nconst regex = identifierRegex();\n\nexport default function isIdentifier(value) {\n\tif (typeof value !== 'string') {\n\t\tthrow new TypeError(`Expected a string, got \\`${typeof value}\\`.`);\n\t}\n\n\t// Prevent abuse.\n\tif (value.length > 100_000) {\n\t\treturn false;\n\t}\n\n\treturn isMatch(regex, value, {timeout: 1000});\n}\n","import isRegexp from 'is-regexp';\nimport isObject from 'is-obj';\nimport getOwnEnumerableKeys from 'get-own-enumerable-keys';\nimport isIdentifier from 'is-identifier';\n\nconst CHARACTER_ESCAPES = {\n\t'\\n': String.raw`\\n`,\n\t'\\r': String.raw`\\r`,\n\t'\\t': String.raw`\\t`,\n\t'\\b': String.raw`\\b`,\n\t'\\f': String.raw`\\f`,\n\t'\\v': String.raw`\\v`,\n\t'\\0': String.raw`\\0`,\n};\n\nexport default function stringifyObject(input, options, pad) {\n\tconst seen = [];\n\n\treturn (function stringify(input, options = {}, pad = '') {\n\t\tconst indent = options.indent || '\\t';\n\n\t\tlet tokens;\n\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\ttokens = {\n\t\t\t\tnewline: '\\n',\n\t\t\t\tnewlineOrSpace: '\\n',\n\t\t\t\tpad,\n\t\t\t\tindent: pad + indent,\n\t\t\t};\n\t\t} else {\n\t\t\ttokens = {\n\t\t\t\tnewline: '@@__STRINGIFY_OBJECT_NEW_LINE__@@',\n\t\t\t\tnewlineOrSpace: '@@__STRINGIFY_OBJECT_NEW_LINE_OR_SPACE__@@',\n\t\t\t\tpad: '@@__STRINGIFY_OBJECT_PAD__@@',\n\t\t\t\tindent: '@@__STRINGIFY_OBJECT_INDENT__@@',\n\t\t\t};\n\t\t}\n\n\t\tconst expandWhiteSpace = string => {\n\t\t\tif (options.inlineCharacterLimit === undefined) {\n\t\t\t\treturn string;\n\t\t\t}\n\n\t\t\tconst oneLined = string\n\t\t\t\t.replaceAll(tokens.newline, '')\n\t\t\t\t.replaceAll(tokens.newlineOrSpace, ' ')\n\t\t\t\t.replaceAll(tokens.pad, '')\n\t\t\t\t.replaceAll(tokens.indent, '');\n\n\t\t\tif (oneLined.length <= options.inlineCharacterLimit) {\n\t\t\t\treturn oneLined;\n\t\t\t}\n\n\t\t\treturn string\n\t\t\t\t.replaceAll(tokens.newline, '\\n')\n\t\t\t\t.replaceAll(tokens.newlineOrSpace, '\\n')\n\t\t\t\t.replaceAll(tokens.pad, pad)\n\t\t\t\t.replaceAll(tokens.indent, pad + indent);\n\t\t};\n\n\t\tif (seen.includes(input)) {\n\t\t\treturn '\"[Circular]\"';\n\t\t}\n\n\t\tconst type = typeof input;\n\n\t\tif (\n\t\t\tinput === null\n\t\t\t|| input === undefined\n\t\t\t|| type === 'number'\n\t\t\t|| type === 'boolean'\n\t\t\t|| type === 'function'\n\t\t\t|| isRegexp(input)\n\t\t) {\n\t\t\treturn String(input);\n\t\t}\n\n\t\tif (type === 'bigint') {\n\t\t\treturn String(input) + 'n';\n\t\t}\n\n\t\tif (type === 'symbol') {\n\t\t\tconst {description} = input;\n\n\t\t\tif (description === undefined) {\n\t\t\t\treturn 'Symbol()';\n\t\t\t}\n\n\t\t\t// Check for well-known symbols first\n\t\t\tif (description?.startsWith('Symbol.') && Symbol[description.slice(7)] === input) {\n\t\t\t\treturn description;\n\t\t\t}\n\n\t\t\t// Check if it's a global registry symbol\n\t\t\tconst globalKey = Symbol.keyFor(input);\n\t\t\tif (globalKey !== undefined) {\n\t\t\t\treturn `Symbol.for(${stringify(globalKey, options)})`;\n\t\t\t}\n\n\t\t\treturn `Symbol(${stringify(description, options)})`;\n\t\t}\n\n\t\tif (input instanceof Date) {\n\t\t\treturn Number.isNaN(input.getTime())\n\t\t\t\t? 'new Date(\\'Invalid Date\\')'\n\t\t\t\t: `new Date('${input.toISOString()}')`;\n\t\t}\n\n\t\tif (input instanceof Map || input instanceof Set) {\n\t\t\tconst isMap = input instanceof Map;\n\t\t\tconst name = isMap ? 'Map' : 'Set';\n\n\t\t\tif (input.size === 0) {\n\t\t\t\treturn `new ${name}()`;\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst items = [...input].map(item => {\n\t\t\t\tif (isMap) {\n\t\t\t\t\tconst [key, value] = item;\n\t\t\t\t\treturn tokens.indent + `[${stringify(key, options, pad + indent)}, ${stringify(value, options, pad + indent)}]`;\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + stringify(item, options, pad + indent);\n\t\t\t}).join(',' + tokens.newlineOrSpace);\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(`new ${name}([${tokens.newline}${items}${tokens.newline}${tokens.pad}])`);\n\t\t}\n\n\t\tif (Array.isArray(input)) {\n\t\t\tif (input.length === 0) {\n\t\t\t\treturn '[]';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst items = input.map((element, index) => {\n\t\t\t\tlet value = stringify(element, options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, index, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + value;\n\t\t\t}).join(',' + tokens.newlineOrSpace);\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(`[${tokens.newline}${items}${tokens.newline}${tokens.pad}]`);\n\t\t}\n\n\t\tif (isObject(input)) {\n\t\t\tlet objectKeys = getOwnEnumerableKeys(input);\n\n\t\t\tif (options.filter) {\n\t\t\t\t// eslint-disable-next-line unicorn/no-array-callback-reference, unicorn/no-array-method-this-argument\n\t\t\t\tobjectKeys = objectKeys.filter(element => options.filter(input, element));\n\t\t\t}\n\n\t\t\tif (objectKeys.length === 0) {\n\t\t\t\treturn '{}';\n\t\t\t}\n\n\t\t\tseen.push(input);\n\n\t\t\tconst pairs = objectKeys.map(element => {\n\t\t\t\tconst isSymbol = typeof element === 'symbol';\n\n\t\t\t\tlet key;\n\t\t\t\tif (isSymbol) {\n\t\t\t\t\tkey = `[${stringify(element, options)}]`;\n\t\t\t\t} else if (isIdentifier(element)) {\n\t\t\t\t\tkey = element;\n\t\t\t\t} else {\n\t\t\t\t\tkey = stringify(element, options);\n\t\t\t\t}\n\n\t\t\t\tlet value = stringify(input[element], options, pad + indent);\n\t\t\t\tif (options.transform) {\n\t\t\t\t\tvalue = options.transform(input, element, value);\n\t\t\t\t}\n\n\t\t\t\treturn tokens.indent + key + ': ' + value;\n\t\t\t}).join(',' + tokens.newlineOrSpace);\n\n\t\t\tseen.pop();\n\n\t\t\treturn expandWhiteSpace(`{${tokens.newline}${pairs}${tokens.newline}${tokens.pad}}`);\n\t\t}\n\n\t\t// String escaping\n\t\tconst stringified = String(input)\n\t\t\t.replaceAll('\\\\', '\\\\\\\\')\n\t\t\t// eslint-disable-next-line no-control-regex\n\t\t\t.replaceAll(/[\\u0000-\\u001F\\u007F]/g, x =>\n\t\t\t\tCHARACTER_ESCAPES[x] ?? `\\\\u${x.codePointAt(0).toString(16).padStart(4, '0')}`);\n\n\t\tif (options.singleQuotes === false) {\n\t\t\treturn `\"${stringified.replaceAll('\"', String.raw`\\\"`)}\"`;\n\t\t}\n\n\t\treturn `'${stringified.replaceAll('\\'', String.raw`\\'`)}'`;\n\t})(input, options, pad);\n}\n"],"mappings":";AAKA,SAAS,mBAAmB;;;ACL5B,IAAM,YAAY;AAClB,IAAM,YAAY;AAClB,IAAM,kBAAkB;AACxB,IAAM,aAAa;AACnB,IAAM,aAAa;AAEnB,IAAM,qBAAqB,IAAI,OAAO,MAAM,WAAW,MAAM;AAC7D,IAAM,4BAA4B,IAAI,OAAO,WAAW,SAAS,WAAW,QAAQ,IAAI;AACxF,IAAM,yBAAyB,IAAI,OAAO,SAAS,WAAW,QAAQ,IAAI;AAE1E,IAAM,oBAAoB,CAAC,QAAQ,aAAa,aAAaA,kCAAiC;AAC7F,MAAI,kBAAkB;AACtB,MAAI,kBAAkB;AACtB,MAAI,sBAAsB;AAC1B,MAAI,0BAA0B;AAE9B,WAAS,QAAQ,GAAG,QAAQ,OAAO,QAAQ,SAAS;AACnD,UAAM,YAAY,OAAO,KAAK;AAC9B,8BAA0B,QAAQ,IAAI,OAAO,QAAQ,CAAC,MAAM,MAAM;AAElE,QAAI,mBAAmB,UAAU,KAAK,SAAS,GAAG;AACjD,eAAS,OAAO,MAAM,GAAG,KAAK,IAAI,MAAM,OAAO,MAAM,KAAK;AAC1D,wBAAkB;AAClB,4BAAsB;AACtB,wBAAkB;AAClB;AAAA,IACD,WAAW,mBAAmB,uBAAuB,UAAU,KAAK,SAAS,MAAM,CAAC,2BAA2BA,gCAA+B;AAC7I,eAAS,OAAO,MAAM,GAAG,QAAQ,CAAC,IAAI,MAAM,OAAO,MAAM,QAAQ,CAAC;AAClE,4BAAsB;AACtB,wBAAkB;AAClB,wBAAkB;AAAA,IACnB,OAAO;AACN,wBAAkB,YAAY,SAAS,MAAM,aAAa,YAAY,SAAS,MAAM;AACrF,4BAAsB;AACtB,wBAAkB,YAAY,SAAS,MAAM,aAAa,YAAY,SAAS,MAAM;AAAA,IACtF;AAAA,EACD;AAEA,SAAO;AACR;AAEA,IAAM,+BAA+B,CAAC,OAAO,gBAAgB;AAC5D,kBAAgB,YAAY;AAE5B,SAAO,MAAM,WAAW,iBAAiB,WAAS,YAAY,KAAK,CAAC;AACrE;AAEA,IAAM,cAAc,CAAC,OAAO,gBAAgB;AAC3C,4BAA0B,YAAY;AACtC,yBAAuB,YAAY;AAEnC,SAAO,MACL,WAAW,wBAAwB,CAAC,OAAO,SAAS,WAAW,CAAC,KAAK,GAAG,EAAE,SAAS,MAAM,OAAO,SAAS,MAAM,MAAM,CAAC,IAAI,QAAQ,YAAY,KAAK,CAAC,EACpJ,WAAW,2BAA2B,CAAC,GAAG,eAAe,YAAY,UAAU,CAAC;AACnF;AAEe,SAAR,UAA2B,OAAO,SAAS;AACjD,MAAI,EAAE,OAAO,UAAU,YAAY,MAAM,QAAQ,KAAK,IAAI;AACzD,UAAM,IAAI,UAAU,8CAA8C;AAAA,EACnE;AAEA,YAAU;AAAA,IACT,YAAY;AAAA,IACZ,8BAA8B;AAAA,IAC9B,GAAG;AAAA,EACJ;AAEA,MAAI,MAAM,QAAQ,KAAK,GAAG;AACzB,YAAQ,MAAM,IAAI,OAAK,EAAE,KAAK,CAAC,EAC7B,OAAO,OAAK,EAAE,MAAM,EACpB,KAAK,GAAG;AAAA,EACX,OAAO;AACN,YAAQ,MAAM,KAAK;AAAA,EACpB;AAEA,MAAI,MAAM,WAAW,GAAG;AACvB,WAAO;AAAA,EACR;AAEA,QAAM,cAAc,QAAQ,WAAW,QACpC,YAAU,OAAO,YAAY,IAC7B,YAAU,OAAO,kBAAkB,QAAQ,MAAM;AAEpD,QAAM,cAAc,QAAQ,WAAW,QACpC,YAAU,OAAO,YAAY,IAC7B,YAAU,OAAO,kBAAkB,QAAQ,MAAM;AAEpD,MAAI,MAAM,WAAW,GAAG;AACvB,QAAI,WAAW,KAAK,KAAK,GAAG;AAC3B,aAAO;AAAA,IACR;AAEA,WAAO,QAAQ,aAAa,YAAY,KAAK,IAAI,YAAY,KAAK;AAAA,EACnE;AAEA,QAAM,eAAe,UAAU,YAAY,KAAK;AAEhD,MAAI,cAAc;AACjB,YAAQ,kBAAkB,OAAO,aAAa,aAAa,QAAQ,4BAA4B;AAAA,EAChG;AAEA,UAAQ,MAAM,QAAQ,oBAAoB,EAAE;AAC5C,UAAQ,QAAQ,+BAA+B,6BAA6B,OAAO,WAAW,IAAI,YAAY,KAAK;AAEnH,MAAI,QAAQ,YAAY;AACvB,YAAQ,YAAY,MAAM,OAAO,CAAC,CAAC,IAAI,MAAM,MAAM,CAAC;AAAA,EACrD;AAEA,SAAO,YAAY,OAAO,WAAW;AACtC;;;ADtGA,OAAO,iBAAiB;AACxB,OAAO,SAAS;AAChB,SAAS,uBAAuB;AAChC,SAAS,8BAA8B;;;AEVvC,IAAM,EAAC,SAAQ,IAAI,OAAO;AAEX,SAAR,SAA0B,OAAO;AACvC,SAAO,SAAS,KAAK,KAAK,MAAM;AACjC;;;ACJe,SAAR,SAA0B,OAAO;AACvC,QAAM,OAAO,OAAO;AACpB,SAAO,UAAU,SAAS,SAAS,YAAY,SAAS;AACzD;;;ACHA,IAAM,EAAC,qBAAoB,IAAI,OAAO;AAEvB,SAAR,qBAAsC,QAAQ;AACpD,SAAO;AAAA,IACN,GAAG,OAAO,KAAK,MAAM;AAAA,IACrB,GAAG,OAAO,sBAAsB,MAAM,EACpC,OAAO,SAAO,qBAAqB,KAAK,QAAQ,GAAG,CAAC;AAAA,EACvD;AACD;;;ACNA,IAAM,cAAc;AAAA;AAAA,EAEnB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA;AAAA,EAGA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA;AAAA,EAGA;AAAA,EACA;AACD;AAGA,IAAM,mBAAmB;AAAA,EACxB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACD;AAEe,SAAR,oBAAqC,EAAC,0BAA0B,MAAK,IAAI,CAAC,GAAG;AACnF,SAAO,oBAAI,IAAI;AAAA,IACd,GAAG;AAAA,IACH,GAAI,0BAA0B,mBAAmB,CAAC;AAAA,EACnD,CAAC;AACF;;;ACnEA,IAAM,YAAY;AAClB,IAAM,cAAc,iDAAiD,CAAC,GAAG,oBAAoB,EAAC,yBAAyB,KAAI,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,6BAA6B,UAAU,MAAM;AACrL,IAAM,QAAQ,IAAI,OAAO,aAAa,GAAG;AACzC,IAAM,aAAa,IAAI,OAAO,IAAI,WAAW,KAAK,GAAG;AAEtC,SAAR,gBAAiC,EAAC,QAAQ,KAAI,IAAI,CAAC,GAAG;AAC5D,SAAO,QAAQ,aAAa;AAC7B;;;ACTA,OAAO,QAAQ;AAEf,IAAM,SAAS,IAAI,GAAG,OAAO,+BAA+B;AAK7C,SAAR,gBAAiC,WAAW,EAAC,SAAS,SAAAC,WAAU,GAAG,cAAc,EAAC,IAAI,CAAC,GAAG;AAChG,QAAM,kBAAkB,IAAI,eAAe;AAC1C,IAAAA,SAAQ,gBAAgB,MAAM,UAAU,GAAG,UAAU;AACrD,WAAO,gBAAgBA,UAAS,EAAC,QAAO,CAAC;AACzC,WAAOA,SAAQ;AAAA,EAChB;AAEA,SAAO,eAAe,iBAAiB,QAAQ;AAAA,IAC9C,OAAO,mBAAmB,UAAU,QAAQ,aAAa;AAAA,IACzD,cAAc;AAAA,EACf,CAAC;AAED,SAAO;AACR;AAEO,SAAS,eAAe,OAAO;AACrC,SAAO,OAAO,SAAS;AACxB;;;ACbA,IAAM,UAAU,CAAC;AAEV,SAAS,QAAQC,QAAO,QAAQ,EAAC,QAAO,IAAI,CAAC,GAAG;AACtD,MAAI;AACH,WAAO,gBAAgB,MAAM,gBAAgBA,MAAK,EAAE,KAAK,MAAM,GAAG,EAAC,SAAS,QAAO,CAAC,EAAE;AAAA,EACvF,SAAS,OAAO;AACf,QAAI,eAAe,KAAK,GAAG;AAC1B,aAAO;AAAA,IACR;AAEA,UAAM;AAAA,EACP;AACD;;;ACpBA,IAAMC,SAAQ,gBAAgB;AAEf,SAAR,aAA8B,OAAO;AAC3C,MAAI,OAAO,UAAU,UAAU;AAC9B,UAAM,IAAI,UAAU,4BAA4B,OAAO,KAAK,KAAK;AAAA,EAClE;AAGA,MAAI,MAAM,SAAS,KAAS;AAC3B,WAAO;AAAA,EACR;AAEA,SAAO,QAAQA,QAAO,OAAO,EAAC,SAAS,IAAI,CAAC;AAC7C;;;ACXA,IAAM,oBAAoB;AAAA,EACzB,MAAM,OAAO;AAAA,EACb,MAAM,OAAO;AAAA,EACb,KAAM,OAAO;AAAA,EACb,MAAM,OAAO;AAAA,EACb,MAAM,OAAO;AAAA,EACb,MAAM,OAAO;AAAA,EACb,MAAM,OAAO;AACd;AAEe,SAAR,gBAAiC,OAAO,SAAS,KAAK;AAC5D,QAAM,OAAO,CAAC;AAEd,UAAQ,SAASC,WAAUC,QAAOC,WAAU,CAAC,GAAGC,OAAM,IAAI;AACzD,UAAM,SAASD,SAAQ,UAAU;AAEjC,QAAI;AACJ,QAAIA,SAAQ,yBAAyB,QAAW;AAC/C,eAAS;AAAA,QACR,SAAS;AAAA,QACT,gBAAgB;AAAA,QAChB,KAAAC;AAAA,QACA,QAAQA,OAAM;AAAA,MACf;AAAA,IACD,OAAO;AACN,eAAS;AAAA,QACR,SAAS;AAAA,QACT,gBAAgB;AAAA,QAChB,KAAK;AAAA,QACL,QAAQ;AAAA,MACT;AAAA,IACD;AAEA,UAAM,mBAAmB,YAAU;AAClC,UAAID,SAAQ,yBAAyB,QAAW;AAC/C,eAAO;AAAA,MACR;AAEA,YAAM,WAAW,OACf,WAAW,OAAO,SAAS,EAAE,EAC7B,WAAW,OAAO,gBAAgB,GAAG,EACrC,WAAW,OAAO,KAAK,EAAE,EACzB,WAAW,OAAO,QAAQ,EAAE;AAE9B,UAAI,SAAS,UAAUA,SAAQ,sBAAsB;AACpD,eAAO;AAAA,MACR;AAEA,aAAO,OACL,WAAW,OAAO,SAAS,IAAI,EAC/B,WAAW,OAAO,gBAAgB,IAAI,EACtC,WAAW,OAAO,KAAKC,IAAG,EAC1B,WAAW,OAAO,QAAQA,OAAM,MAAM;AAAA,IACzC;AAEA,QAAI,KAAK,SAASF,MAAK,GAAG;AACzB,aAAO;AAAA,IACR;AAEA,UAAM,OAAO,OAAOA;AAEpB,QACCA,WAAU,QACPA,WAAU,UACV,SAAS,YACT,SAAS,aACT,SAAS,cACT,SAASA,MAAK,GAChB;AACD,aAAO,OAAOA,MAAK;AAAA,IACpB;AAEA,QAAI,SAAS,UAAU;AACtB,aAAO,OAAOA,MAAK,IAAI;AAAA,IACxB;AAEA,QAAI,SAAS,UAAU;AACtB,YAAM,EAAC,YAAW,IAAIA;AAEtB,UAAI,gBAAgB,QAAW;AAC9B,eAAO;AAAA,MACR;AAGA,UAAI,aAAa,WAAW,SAAS,KAAK,OAAO,YAAY,MAAM,CAAC,CAAC,MAAMA,QAAO;AACjF,eAAO;AAAA,MACR;AAGA,YAAM,YAAY,OAAO,OAAOA,MAAK;AACrC,UAAI,cAAc,QAAW;AAC5B,eAAO,cAAcD,WAAU,WAAWE,QAAO,CAAC;AAAA,MACnD;AAEA,aAAO,UAAUF,WAAU,aAAaE,QAAO,CAAC;AAAA,IACjD;AAEA,QAAID,kBAAiB,MAAM;AAC1B,aAAO,OAAO,MAAMA,OAAM,QAAQ,CAAC,IAChC,6BACA,aAAaA,OAAM,YAAY,CAAC;AAAA,IACpC;AAEA,QAAIA,kBAAiB,OAAOA,kBAAiB,KAAK;AACjD,YAAM,QAAQA,kBAAiB;AAC/B,YAAM,OAAO,QAAQ,QAAQ;AAE7B,UAAIA,OAAM,SAAS,GAAG;AACrB,eAAO,OAAO,IAAI;AAAA,MACnB;AAEA,WAAK,KAAKA,MAAK;AAEf,YAAM,QAAQ,CAAC,GAAGA,MAAK,EAAE,IAAI,UAAQ;AACpC,YAAI,OAAO;AACV,gBAAM,CAAC,KAAK,KAAK,IAAI;AACrB,iBAAO,OAAO,SAAS,IAAID,WAAU,KAAKE,UAASC,OAAM,MAAM,CAAC,KAAKH,WAAU,OAAOE,UAASC,OAAM,MAAM,CAAC;AAAA,QAC7G;AAEA,eAAO,OAAO,SAASH,WAAU,MAAME,UAASC,OAAM,MAAM;AAAA,MAC7D,CAAC,EAAE,KAAK,MAAM,OAAO,cAAc;AAEnC,WAAK,IAAI;AAET,aAAO,iBAAiB,OAAO,IAAI,KAAK,OAAO,OAAO,GAAG,KAAK,GAAG,OAAO,OAAO,GAAG,OAAO,GAAG,IAAI;AAAA,IACjG;AAEA,QAAI,MAAM,QAAQF,MAAK,GAAG;AACzB,UAAIA,OAAM,WAAW,GAAG;AACvB,eAAO;AAAA,MACR;AAEA,WAAK,KAAKA,MAAK;AAEf,YAAM,QAAQA,OAAM,IAAI,CAAC,SAAS,UAAU;AAC3C,YAAI,QAAQD,WAAU,SAASE,UAASC,OAAM,MAAM;AACpD,YAAID,SAAQ,WAAW;AACtB,kBAAQA,SAAQ,UAAUD,QAAO,OAAO,KAAK;AAAA,QAC9C;AAEA,eAAO,OAAO,SAAS;AAAA,MACxB,CAAC,EAAE,KAAK,MAAM,OAAO,cAAc;AAEnC,WAAK,IAAI;AAET,aAAO,iBAAiB,IAAI,OAAO,OAAO,GAAG,KAAK,GAAG,OAAO,OAAO,GAAG,OAAO,GAAG,GAAG;AAAA,IACpF;AAEA,QAAI,SAASA,MAAK,GAAG;AACpB,UAAI,aAAa,qBAAqBA,MAAK;AAE3C,UAAIC,SAAQ,QAAQ;AAEnB,qBAAa,WAAW,OAAO,aAAWA,SAAQ,OAAOD,QAAO,OAAO,CAAC;AAAA,MACzE;AAEA,UAAI,WAAW,WAAW,GAAG;AAC5B,eAAO;AAAA,MACR;AAEA,WAAK,KAAKA,MAAK;AAEf,YAAM,QAAQ,WAAW,IAAI,aAAW;AACvC,cAAM,WAAW,OAAO,YAAY;AAEpC,YAAI;AACJ,YAAI,UAAU;AACb,gBAAM,IAAID,WAAU,SAASE,QAAO,CAAC;AAAA,QACtC,WAAW,aAAa,OAAO,GAAG;AACjC,gBAAM;AAAA,QACP,OAAO;AACN,gBAAMF,WAAU,SAASE,QAAO;AAAA,QACjC;AAEA,YAAI,QAAQF,WAAUC,OAAM,OAAO,GAAGC,UAASC,OAAM,MAAM;AAC3D,YAAID,SAAQ,WAAW;AACtB,kBAAQA,SAAQ,UAAUD,QAAO,SAAS,KAAK;AAAA,QAChD;AAEA,eAAO,OAAO,SAAS,MAAM,OAAO;AAAA,MACrC,CAAC,EAAE,KAAK,MAAM,OAAO,cAAc;AAEnC,WAAK,IAAI;AAET,aAAO,iBAAiB,IAAI,OAAO,OAAO,GAAG,KAAK,GAAG,OAAO,OAAO,GAAG,OAAO,GAAG,GAAG;AAAA,IACpF;AAGA,UAAM,cAAc,OAAOA,MAAK,EAC9B,WAAW,MAAM,MAAM,EAEvB,WAAW,0BAA0B,OACrC,kBAAkB,CAAC,KAAK,MAAM,EAAE,YAAY,CAAC,EAAE,SAAS,EAAE,EAAE,SAAS,GAAG,GAAG,CAAC,EAAE;AAEhF,QAAIC,SAAQ,iBAAiB,OAAO;AACnC,aAAO,IAAI,YAAY,WAAW,KAAK,OAAO,OAAO,CAAC;AAAA,IACvD;AAEA,WAAO,IAAI,YAAY,WAAW,KAAM,OAAO,OAAO,CAAC;AAAA,EACxD,GAAG,OAAO,SAAS,GAAG;AACvB;;;AV1LA,IAAM,oBAAoB;AAK1B,SAAS,iCAAiC,KAAiC;AACzE,QAAM,UAAU,IAAI,MAAM,iBAAiB;AAC3C,MAAI,CAAC,SAAS;AACZ;AAAA,EACF;AAEA,SAAO,QAAQ,QAAQ;AACzB;AAEA,SAAS,UAAU,KAAc,OAAO,CAAC,GAAG;AAC1C,SAAO,gBAAgB,KAAK,EAAE,QAAQ,MAAM,GAAG,KAAK,CAAC;AACvD;AAEA,SAAS,iBAAiB,aAAqB,SAA4B;AAEzE,MAAI,MAAM,QAAQ,OAAO,GAAG;AAC1B,UAAM,OAAiB,CAAC;AACxB,YAAQ,QAAQ,CAAC,OAAO,MAAM;AAE5B,UAAI,MAAM,WAAW,KAAK,QAAQ,SAAS,KAAK,MAAM,QAAQ,SAAS,GAAG;AACxE;AAAA,MACF;AAEA,WAAK,KAAK,IAAI,MAAM,QAAQ,MAAM,KAAK,CAAC,GAAG;AAAA,IAC7C,CAAC;AAED,WAAO,GAAG,WAAW,SAAS,KAAK,KAAK,IAAI,CAAC;AAAA,EAC/C;AAEA,SAAO,GAAG,WAAW,UAAU,QAAQ,QAAQ,MAAM,KAAK,CAAC;AAC7D;AAEA,SAAS,eAAe,WAAsB;AAC5C,QAAM,WAAkF;AAAA,IACtF,QAAQ,CAAC;AAAA,IACT,OAAO,CAAC;AAAA,IACR,QAAQ,CAAC;AAAA,EACX;AAEA,MAAI,UAAU,YAAY,EAAE,WAAW,GAAG;AACxC,WAAO;AAAA,EACT;AAEA,SAAO,QAAQ,UAAU,gBAAgB,CAAC,EAAE,QAAQ,CAAC,CAAC,EAAE,OAAO,MAAM;AACnE,YAAQ,QAAQ,YAAU;AACxB,UAAI,OAAO,SAAS,QAAQ;AAC1B,YAAI,OAAO,WAAW,SAAS;AAC7B,mBAAS,OAAO,gBAAgB;AAAA,QAClC,WAAW,OAAO,WAAW,UAAU;AACrC,mBAAS,OAAO,gBAAgB;AAAA,QAClC;AAAA,MACF,WAAW,OAAO,SAAS,UAAU;AACnC,iBAAS,OAAO,gBAAgB;AAAA,MAClC,WAAW,OAAO,SAAS,UAAU;AACnC,YAAI,OAAO,OAAO,SAAS;AACzB,mBAAS,MAAM,KAAK,OAAO,IAAI;AAAA,QACjC,WAAW,OAAO,OAAO,UAAU;AAMjC,mBAAS,OAAO,OAAO,KAAK,YAAY,CAAC,IAAI;AAAA,QAC/C,WAAW,OAAO,OAAO,UAAU;AACjC,mBAAS,OAAO,KAAK,OAAO,IAAI;AAAA,QAClC;AAAA,MACF;AAAA,IACF,CAAC;AAAA,EACH,CAAC;AAED,SAAO;AACT;AAyBA,IAAM,SAA6B;AAAA,EACjC,MAAM;AAAA,IACJ,KAAK;AAAA,IACL,OAAO;AAAA,IACP,MAAM;AAAA,IACN,aAAa;AAAA,IACb,SAAS;AAAA,IACT,cAAc;AAAA,EAChB;AAAA,EACA,SAAS,CAAC,EAAE,YAAY,YAAY,UAAU,UAAU,KAAK,GAAG,OAAO,GAAG,YAAY;AACpF,UAAM,OAAO;AAAA,MACX,GAAG;AAAA,IACL;AAEA,QAAI,CAAC,MAAM,KAAK;AACd,YAAM,IAAI,MAAM,mEAAmE;AAAA,IACrF,WAAW,CAAC,MAAM,KAAK,YAAY;AACjC,YAAM,IAAI,MAAM,8EAA8E;AAAA,IAChG,WAAW,CAAC,MAAM,KAAK,aAAa;AAClC,YAAM,IAAI,MAAM,+EAA+E;AAAA,IACjG;AAEA,UAAM,SAAS,OAAO,OAAO,YAAY;AACzC,UAAM,MAAM,IAAI,IAAI,KAAK,IAAI,UAAU;AACvC,UAAM,gBAAgB,IAAI,cAAc;AACxC,UAAM,iBAAiB,IAAI,cAAc,KAAK,MAAM;AACpD,QAAI,CAAC,gBAAgB;AACnB,YAAM,IAAI;AAAA,QACR,iFAAiF,OAAO,MAAM,IAAI,GAAG;AAAA,MACvG;AAAA,IACF;AAEA,QAAI;AACJ,QAAI;AACJ,QAAI,KAAK,IAAI,YAAY;AACvB,uBAAiB,KAAK,IAAI;AAE1B,oBAAc,UAAU,KAAK,IAAI,UAAU;AAC3C,UAAI,uBAAuB,WAAW,GAAG;AAGvC,sBAAc,IAAI,WAAW;AAAA,MAC/B;AAAA,IACF,OAAO;AACL,uBAAiB,iCAAiC,KAAK,IAAI,WAAW;AACtE,oBAAc,UAAU,kBAAkB,KAAK;AAAA,IACjD;AAEA,UAAM,iBAAiB,eAAe,IAAI;AAC1C,UAAM,YAAY,IAAI,UAAU,eAAe,IAAI,mBAAmB,MAAM;AAC5E,UAAM,0BAA0B,UAAU,cAAc,EAAE,OAAO,WAAS,MAAM,OAAO,MAAM;AAC7F,UAAM,OAAO,UAAU;AACvB,UAAM,WAAqB,CAAC;AAC5B,UAAM,cAAc,eAAe,SAAS;AAE5C,UAAM,EAAE,OAAO,MAAM,KAAK,IAAI,IAAI,YAAY,EAAE,QAAQ,KAAK,UAAU,KAAK,CAAC;AAE7E,SAAK,UAAU,WAAW,eAAe,cAAc,IAAI;AAC3D,UAAM;AAMN,UAAM,aAAa,CAAC;AACpB,SAAK,cAAc,WAAW,CAAC,GAAG,SAAS,GAAG;AAC5C,YAAM,WAAW,IAAI,IAAI;AACzB,YAAM,UAAU,IAAI,QAAQ,MAAM,EAAE;AACpC,UAAI,YAAY,UAAU;AACxB,cAAM,aAAa,IAAI,eAAe,OAAO;AAC7C,cAAM,YAAY,aAAa,IAAI,IAAI,WAAW,UAAU,WAAW,SAAS,IAAI;AAEpF,mBAAW,KAAK,GAAG,WAAW,YAAY,SAAS,KAAK;AAAA,MAC1D;AAAA,IACF;AAEA,QAAI,WAA8C,CAAC;AACnD,WAAO,KAAK,QAAQ,EAAE,QAAQ,WAAS;AACrC,UAAI,YAAY,MAAM,SAAS,KAAK,GAAG;AACrC,iBAAS,KAAK,iBAAiB,aAAa,SAAS,KAAK,CAAC,CAAC;AAI5D;AAAA,MACF;AAEA,eAAS,KAAK,IAAI,SAAS,KAAK;AAAA,IAClC,CAAC;AAED,WAAO,KAAK,UAAU,EAAE,QAAQ,YAAU;AACxC,UAAI,YAAY,OAAO,SAAS,MAAM,GAAG;AACvC,iBAAS,KAAK,iBAAiB,aAAa,WAAW,MAAM,CAAC,CAAC;AAG/D;AAAA,MACF;AAKA,eAAS,MAAM,IAAI,WAAW,MAAM;AAAA,IACtC,CAAC;AAGD,UAAM,KAAK,OAAO,QAAQ,cAAc,CAAC,EAAE,QAAQ,CAAC,CAAC,OAAO,KAAK,MAAM;AAGrE,YAAM,eAAe,MAAM,UAAU,CAAC;AAKtC,YAAM,mBAAmB,wBAAwB,KAAK,OAAK;AACzD,eAAO,EAAE,KAAK,SAAS,GAAG,KAAK,EAAE,KAAK,QAAQ,MAAM,EAAE,MAAM,eAAe,EAAE,OAAO;AAAA,MACtF,CAAC;AAED,UAAI,kBAAkB;AACpB,iBAAS,iBAAiB,IAAI,IAAI;AAAA,MACpC,OAAO;AACL,iBAAS,YAAY,IAAI;AAAA,MAC3B;AAAA,IACF,CAAC;AAED,QAAI,OAAO,KAAK,UAAU,EAAE,QAAQ;AAClC,YAAM,UAAU;AAChB,YAAM,iBAAsC,CAAC;AAE7C,aAAO,KAAK,OAAO,EAAE,QAAQ,YAAU;AAGrC,cAAM,cAAc,OAAO,YAAY;AAEvC,YAAI,eAAe,YAAY,QAAQ;AAGrC,gBAAM,aAAa,YAAY,OAAO,WAAW;AACjD,cAAI,eAAe,KAAK;AACtB,qBAAS,KAAK,iBAAiB,aAAa,QAAQ,MAAM,CAAC,CAAC;AAAA,UAC9D,OAAO;AAEL,gBAAI,UAAU,QAAQ,MAAM,EAAE,QAAQ,GAAG,YAAY,OAAO,WAAW,CAAC,KAAK,EAAE;AAC/E,gBAAI,WAAW,YAAY,MAAM,SAAS;AACxC,wBAAU,OAAO,KAAK,SAAS,QAAQ,EAAE,SAAS,OAAO;AACzD,wBAAU,QAAQ,MAAM,GAAG;AAAA,YAC7B;AAEA,qBAAS,KAAK,iBAAiB,aAAa,OAAO,CAAC;AAAA,UACtD;AAEA,iBAAO,QAAQ,MAAM;AACrB;AAAA,QACF,WAAW,gBAAgB,gBAAgB;AAIzC,gBAAM,oBAAoB,YAAY,MAAM,QAAQ,MAAM,CAAC;AAC3D,cAAI,CAAC,OAAO,KAAK,kBAAkB,UAAU,EAAE,QAAQ;AACrD,mBAAO,QAAQ,MAAM;AACrB;AAAA,UACF;AAAA,QACF,WAAW,gBAAgB,UAAU;AAGnC,cAAI,gBAAgB,KAAK,QAAQ,MAAM,CAAW,GAAG;AACnD,mBAAO,QAAQ,MAAM;AACrB;AAAA,UACF;AAAA,QACF;AAIA,YAAI,CAAC,UAAU,cAAc,EAAE,SAAS,WAAW,GAAG;AACpD,yBAAe,WAAW,IAAI,QAAQ,MAAM;AAAA,QAC9C,OAAO;AAGL,yBAAe,MAAM,IAAI,QAAQ,MAAM;AAAA,QACzC;AAAA,MACF,CAAC;AAED,UAAI,OAAO,KAAK,cAAc,EAAE,SAAS,GAAG;AAC1C,mBAAW,OAAO,OAAO,UAAU,cAAc;AAAA,MACnD;AAAA,IACF;AAEA,QAAI;AACJ,YAAQ,SAAS,UAAU;AAAA,MACzB,KAAK;AACH,eAAO,SAAS;AAChB;AAAA,MAEF,KAAK;AACH,YAAI,SAAS,SAAS;AACpB,iBAAO,SAAS;AAAA,QAClB;AACA;AAAA,MAEF,KAAK;AACH,YAAI,SAAS,QAAQ;AACnB,iBAAO,CAAC;AAMR,cAAI,kBAAkB,YAAY,SAAS,cAAc,EAAE,QAAQ,qBAAqB,MAAM,GAAG;AAC/F,mBAAO,SAAS,cAAc;AAAA,UAChC;AAEA,mBAAS,OAAO,QAAQ,WAAS;AAC/B,gBAAI,MAAM,UAAU;AAClB,mBAAK,MAAM,IAAI,IAAI,MAAM;AAAA,YAC3B,OAAO;AACL,mBAAK,MAAM,IAAI,IAAI,MAAM;AAAA,YAC3B;AAAA,UACF,CAAC;AAAA,QACH;AACA;AAAA,MAEF;AACE,YAAI,SAAS,MAAM;AACjB,iBAAO,SAAS;AAAA,QAClB;AAAA,IACJ;AAEA,UAAM,OAAO,CAAC;AAEd,UAAM,WAAW,UAAU,eAAe,EAAE,WAAW,KAAK,CAAC;AAI7D,UAAM,uBAAuB,OAAO,SAAS,eAAe,OAAO,KAAK,QAAQ,EAAE,SAAS,IAAI,KAAK;AACpG,QAAI,OAAO,SAAS,aAAa;AAC/B,WAAK,KAAK,UAAU,MAAM,EAAE,qBAAqB,CAAC,CAAC;AAAA,IACrD;AAEA,QAAI,OAAO,KAAK,QAAQ,EAAE,SAAS,GAAG;AACpC,WAAK,KAAK,UAAU,UAAU,EAAE,qBAAqB,CAAC,CAAC;AAAA,IACzD;AAEA,QAAI,SAAS,QAAQ;AACnB,WAAK,SAAS,KAAK,IAAI,CAAC;AAAA,IAC1B;AAEA,QAAI,WAAW,QAAQ;AACrB,WAAK,WAAW,KAAK,IAAI,CAAC;AAAA,IAC5B;AAEA,SAAK,GAAG,WAAW,IAAI,QAAQ,IAAI,KAAK,KAAK,IAAI,CAAC,GAAG;AACrD,SAAK,0CAA0C,CAAC;AAChD,SAAK,sCAAsC,CAAC;AAE5C,WAAO,KAAK;AAAA,EACd;AACF;AAEA,IAAM,SAAmC;AAAA,EACvC,QAAQ;AAAA,EACR;AACF;AAEA,IAAO,gBAAQ;","names":["preserveConsecutiveUppercase","context","regex","regex","stringify","input","options","pad"]}
package/package.json CHANGED
@@ -1,9 +1,22 @@
1
1
  {
2
2
  "name": "httpsnippet-client-api",
3
- "version": "7.0.0-beta.16",
3
+ "version": "7.0.0-beta.17",
4
4
  "description": "An HTTPSnippet client for generating snippets for the `api` module.",
5
- "sideEffects": false,
5
+ "bugs": {
6
+ "url": "https://github.com/readmeio/api/issues"
7
+ },
8
+ "license": "MIT",
9
+ "author": "Jon Ursenbach <jon@readme.io>",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/readmeio/api.git",
13
+ "directory": "packages/httpsnippet-client-api"
14
+ },
6
15
  "type": "module",
16
+ "sideEffects": false,
17
+ "main": "dist/index.cjs",
18
+ "module": "dist/index.js",
19
+ "types": "dist/index.d.cts",
7
20
  "exports": {
8
21
  ".": {
9
22
  "require": "./dist/index.cjs",
@@ -11,9 +24,6 @@
11
24
  },
12
25
  "./package.json": "./package.json"
13
26
  },
14
- "main": "dist/index.cjs",
15
- "module": "dist/index.js",
16
- "types": "dist/index.d.cts",
17
27
  "scripts": {
18
28
  "attw": "attw --pack --format ascii --profile node16",
19
29
  "build": "tsup",
@@ -22,38 +32,27 @@
22
32
  "prepack": "npm run build",
23
33
  "test": "echo 'Please run tests from the root!' && exit 1"
24
34
  },
25
- "repository": {
26
- "type": "git",
27
- "url": "https://github.com/readmeio/api.git",
28
- "directory": "packages/httpsnippet-client-api"
29
- },
30
- "bugs": {
31
- "url": "https://github.com/readmeio/api/issues"
32
- },
33
- "author": "Jon Ursenbach <jon@readme.io>",
34
- "license": "MIT",
35
- "engines": {
36
- "node": ">=20.10.0"
37
- },
38
35
  "dependencies": {
39
36
  "content-type": "^1.0.5",
40
- "oas": "^28.0.0",
37
+ "oas": "^37.0.0",
41
38
  "reserved2": "^0.1.5"
42
39
  },
43
- "peerDependencies": {
44
- "@readme/httpsnippet": "^11.0.0"
45
- },
46
40
  "devDependencies": {
47
- "@readme/oas-examples": "^6.1.4",
41
+ "@readme/oas-examples": "^7.0.0",
48
42
  "@types/content-type": "^1.1.8",
49
43
  "@types/stringify-object": "^4.0.5",
50
- "@vitest/coverage-v8": "^3.0.5",
44
+ "@vitest/coverage-v8": "^4.1.6",
51
45
  "camelcase": "^8.0.0",
52
- "jest-expect-openapi": "^4.0.0",
53
- "stringify-object": "^5.0.0",
46
+ "jest-expect-openapi": "^6.1.0",
47
+ "stringify-object": "^6.0.0",
48
+ "tsup": "^8.5.0",
54
49
  "typescript": "^5.8.2",
55
- "vitest": "^3.0.4"
50
+ "vitest": "^4.1.6"
56
51
  },
57
- "prettier": "@readme/eslint-config/prettier",
58
- "gitHead": "fffd47a642d19bc2453c10f7968c1e82d6a7c3ce"
52
+ "peerDependencies": {
53
+ "@readme/httpsnippet": "^11.0.0"
54
+ },
55
+ "engines": {
56
+ "node": ">=20.10.0"
57
+ }
59
58
  }
package/src/index.ts CHANGED
@@ -4,12 +4,12 @@ import type { Operation } from 'oas/operation';
4
4
  import type { HttpMethods, OASDocument } from 'oas/types';
5
5
 
6
6
  import { CodeBuilder } from '@readme/httpsnippet/helpers/code-builder';
7
- import camelCase from 'camelcase'; // eslint-disable-line import/no-extraneous-dependencies
7
+ import camelCase from 'camelcase';
8
8
  import contentType from 'content-type';
9
9
  import Oas from 'oas';
10
10
  import { matchesMimeType } from 'oas/utils';
11
11
  import { isReservedOrBuiltinsLC } from 'reserved2';
12
- import stringifyObject from 'stringify-object'; // eslint-disable-line import/no-extraneous-dependencies
12
+ import stringifyObject from 'stringify-object';
13
13
 
14
14
  /**
15
15
  * @note This regex also exists in `api/fetcher`.
@@ -22,17 +22,16 @@ const registryUUIDRegex = /^@(?<project>[a-zA-Z0-9-_]+)(\/?(?<version>.+))?#(?<u
22
22
  /**
23
23
  * @note This function also exists in `api/fetcher`.
24
24
  */
25
- function getProjectPrefixFromRegistryUUID(uri: string) {
25
+ function getProjectPrefixFromRegistryUUID(uri: string): string | undefined {
26
26
  const matches = uri.match(registryUUIDRegex);
27
27
  if (!matches) {
28
- return undefined;
28
+ return;
29
29
  }
30
30
 
31
31
  return matches.groups?.project;
32
32
  }
33
33
 
34
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
35
- function stringify(obj: any, opts = {}) {
34
+ function stringify(obj: unknown, opts = {}) {
36
35
  return stringifyObject(obj, { indent: ' ', ...opts });
37
36
  }
38
37
 
@@ -304,7 +303,6 @@ const client: Client<APIOptions> = {
304
303
  }
305
304
  }
306
305
 
307
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
308
306
  let body: any;
309
307
  switch (postData.mimeType) {
310
308
  case 'application/x-www-form-urlencoded':
package/tsup.config.ts CHANGED
@@ -1,9 +1,7 @@
1
- /* eslint-disable import/no-extraneous-dependencies, node/no-extraneous-import */
2
1
  import type { Options } from 'tsup';
3
2
 
4
3
  import { defineConfig } from 'tsup';
5
4
 
6
- // eslint-disable-next-line import/no-relative-packages
7
5
  import config from '../../tsup.config.js';
8
6
 
9
7
  export default defineConfig((options: Options) => ({