@readme/api-core 7.0.0-beta.0 → 7.0.0-beta.10
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.
- package/dist/{chunk-TOMHUGQA.cjs → chunk-HA453OBW.cjs} +352 -39
- package/dist/chunk-HA453OBW.cjs.map +1 -0
- package/dist/{chunk-PWY7T36C.js → chunk-J3R5ZB7L.js} +346 -33
- package/dist/chunk-J3R5ZB7L.js.map +1 -0
- package/dist/chunk-NVFSP2R3.cjs.map +1 -1
- package/dist/errors/fetchError.cjs +2 -1
- package/dist/errors/fetchError.cjs.map +1 -1
- package/dist/index.cjs +17 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -21
- package/dist/index.d.ts +22 -21
- package/dist/index.js +12 -6
- package/dist/index.js.map +1 -1
- package/dist/lib/index.cjs +2 -2
- package/dist/lib/index.cjs.map +1 -1
- package/dist/lib/index.d.cts +11 -14
- package/dist/lib/index.d.ts +11 -14
- package/dist/lib/index.js +1 -1
- package/dist/types.cjs +6 -0
- package/dist/types.cjs.map +1 -0
- package/dist/types.d.cts +22 -0
- package/dist/types.d.ts +22 -0
- package/dist/types.js +6 -0
- package/dist/types.js.map +1 -0
- package/package.json +16 -12
- package/src/index.ts +18 -30
- package/src/lib/getJSONSchemaDefaults.ts +2 -2
- package/src/lib/index.ts +1 -3
- package/src/lib/parseResponse.ts +2 -1
- package/src/lib/prepareAuth.ts +8 -15
- package/src/lib/prepareParams.ts +10 -8
- package/src/lib/prepareServer.ts +3 -3
- package/src/types.ts +25 -0
- package/tsup.config.ts +10 -1
- package/dist/chunk-PWY7T36C.js.map +0 -1
- package/dist/chunk-TOMHUGQA.cjs.map +0 -1
|
@@ -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; }
|
|
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; } var _class;// src/lib/getJSONSchemaDefaults.ts
|
|
2
2
|
var _jsonschematraverse = require('json-schema-traverse'); var _jsonschematraverse2 = _interopRequireDefault(_jsonschematraverse);
|
|
3
3
|
function getJSONSchemaDefaults(jsonSchemas) {
|
|
4
4
|
return jsonSchemas.map(({ type: payloadType, schema: jsonSchema }) => {
|
|
@@ -45,7 +45,7 @@ var _utils = require('oas/utils');
|
|
|
45
45
|
async function parseResponse(response) {
|
|
46
46
|
const contentType = response.headers.get("Content-Type");
|
|
47
47
|
const isJSON = contentType && (_utils.matchesMimeType.json(contentType) || _utils.matchesMimeType.wildcard(contentType));
|
|
48
|
-
const responseBody = await response.text();
|
|
48
|
+
const responseBody = await response.clone().text();
|
|
49
49
|
let data = responseBody;
|
|
50
50
|
if (isJSON) {
|
|
51
51
|
try {
|
|
@@ -93,8 +93,8 @@ function prepareAuth(authKey, operation) {
|
|
|
93
93
|
}
|
|
94
94
|
const scheme2 = schemes2.shift();
|
|
95
95
|
preparedAuth[scheme2._key] = {
|
|
96
|
-
user: authKey[0],
|
|
97
|
-
pass: authKey.length === 2 ? authKey[1] : ""
|
|
96
|
+
user: String(authKey[0]),
|
|
97
|
+
pass: authKey.length === 2 ? String(authKey[1]) : ""
|
|
98
98
|
};
|
|
99
99
|
return preparedAuth;
|
|
100
100
|
}
|
|
@@ -105,8 +105,8 @@ function prepareAuth(authKey, operation) {
|
|
|
105
105
|
case "http":
|
|
106
106
|
if (scheme.scheme === "basic") {
|
|
107
107
|
preparedAuth[scheme._key] = {
|
|
108
|
-
user: authKey[0],
|
|
109
|
-
pass: authKey.length === 2 ? authKey[1] : ""
|
|
108
|
+
user: String(authKey[0]),
|
|
109
|
+
pass: authKey.length === 2 ? String(authKey[1]) : ""
|
|
110
110
|
};
|
|
111
111
|
} else if (scheme.scheme === "bearer") {
|
|
112
112
|
preparedAuth[scheme._key] = authKey[0];
|
|
@@ -135,7 +135,330 @@ var _stream = require('stream'); var _stream2 = _interopRequireDefault(_stream);
|
|
|
135
135
|
var _caseless = require('caseless'); var _caseless2 = _interopRequireDefault(_caseless);
|
|
136
136
|
var _parserjs = require('datauri/parser.js'); var _parserjs2 = _interopRequireDefault(_parserjs);
|
|
137
137
|
var _syncjs = require('datauri/sync.js'); var _syncjs2 = _interopRequireDefault(_syncjs);
|
|
138
|
-
|
|
138
|
+
|
|
139
|
+
// node_modules/get-stream/source/index.js
|
|
140
|
+
var _events = require('events');
|
|
141
|
+
var _promises = require('stream/promises');
|
|
142
|
+
|
|
143
|
+
// node_modules/is-stream/index.js
|
|
144
|
+
function isStream(stream2, { checkOpen = true } = {}) {
|
|
145
|
+
return stream2 !== null && typeof stream2 === "object" && (stream2.writable || stream2.readable || !checkOpen || stream2.writable === void 0 && stream2.readable === void 0) && typeof stream2.pipe === "function";
|
|
146
|
+
}
|
|
147
|
+
function isReadableStream(stream2, { checkOpen = true } = {}) {
|
|
148
|
+
return isStream(stream2, { checkOpen }) && (stream2.readable || !checkOpen) && typeof stream2.read === "function" && typeof stream2.readable === "boolean" && typeof stream2.readableObjectMode === "boolean" && typeof stream2.destroy === "function" && typeof stream2.destroyed === "boolean";
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// ../../node_modules/@sec-ant/readable-stream/dist/ponyfill/asyncIterator.js
|
|
152
|
+
var a = Object.getPrototypeOf(
|
|
153
|
+
Object.getPrototypeOf(
|
|
154
|
+
/* istanbul ignore next */
|
|
155
|
+
async function* () {
|
|
156
|
+
}
|
|
157
|
+
).prototype
|
|
158
|
+
);
|
|
159
|
+
var c = class {
|
|
160
|
+
#t;
|
|
161
|
+
#n;
|
|
162
|
+
#r = false;
|
|
163
|
+
#e = void 0;
|
|
164
|
+
constructor(e, t) {
|
|
165
|
+
this.#t = e, this.#n = t;
|
|
166
|
+
}
|
|
167
|
+
next() {
|
|
168
|
+
const e = () => this.#s();
|
|
169
|
+
return this.#e = this.#e ? this.#e.then(e, e) : e(), this.#e;
|
|
170
|
+
}
|
|
171
|
+
return(e) {
|
|
172
|
+
const t = () => this.#i(e);
|
|
173
|
+
return this.#e ? this.#e.then(t, t) : t();
|
|
174
|
+
}
|
|
175
|
+
async #s() {
|
|
176
|
+
if (this.#r)
|
|
177
|
+
return {
|
|
178
|
+
done: true,
|
|
179
|
+
value: void 0
|
|
180
|
+
};
|
|
181
|
+
let e;
|
|
182
|
+
try {
|
|
183
|
+
e = await this.#t.read();
|
|
184
|
+
} catch (t) {
|
|
185
|
+
throw this.#e = void 0, this.#r = true, this.#t.releaseLock(), t;
|
|
186
|
+
}
|
|
187
|
+
return e.done && (this.#e = void 0, this.#r = true, this.#t.releaseLock()), e;
|
|
188
|
+
}
|
|
189
|
+
async #i(e) {
|
|
190
|
+
if (this.#r)
|
|
191
|
+
return {
|
|
192
|
+
done: true,
|
|
193
|
+
value: e
|
|
194
|
+
};
|
|
195
|
+
if (this.#r = true, !this.#n) {
|
|
196
|
+
const t = this.#t.cancel(e);
|
|
197
|
+
return this.#t.releaseLock(), await t, {
|
|
198
|
+
done: true,
|
|
199
|
+
value: e
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
return this.#t.releaseLock(), {
|
|
203
|
+
done: true,
|
|
204
|
+
value: e
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
};
|
|
208
|
+
var n = Symbol();
|
|
209
|
+
function i() {
|
|
210
|
+
return this[n].next();
|
|
211
|
+
}
|
|
212
|
+
Object.defineProperty(i, "name", { value: "next" });
|
|
213
|
+
function o(r) {
|
|
214
|
+
return this[n].return(r);
|
|
215
|
+
}
|
|
216
|
+
Object.defineProperty(o, "name", { value: "return" });
|
|
217
|
+
var u = Object.create(a, {
|
|
218
|
+
next: {
|
|
219
|
+
enumerable: true,
|
|
220
|
+
configurable: true,
|
|
221
|
+
writable: true,
|
|
222
|
+
value: i
|
|
223
|
+
},
|
|
224
|
+
return: {
|
|
225
|
+
enumerable: true,
|
|
226
|
+
configurable: true,
|
|
227
|
+
writable: true,
|
|
228
|
+
value: o
|
|
229
|
+
}
|
|
230
|
+
});
|
|
231
|
+
function h({ preventCancel: r = false } = {}) {
|
|
232
|
+
const e = this.getReader(), t = new c(
|
|
233
|
+
e,
|
|
234
|
+
r
|
|
235
|
+
), s = Object.create(u);
|
|
236
|
+
return s[n] = t, s;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// node_modules/get-stream/source/stream.js
|
|
240
|
+
var getAsyncIterable = (stream2) => {
|
|
241
|
+
if (isReadableStream(stream2, { checkOpen: false }) && nodeImports.on !== void 0) {
|
|
242
|
+
return getStreamIterable(stream2);
|
|
243
|
+
}
|
|
244
|
+
if (typeof _optionalChain([stream2, 'optionalAccess', _6 => _6[Symbol.asyncIterator]]) === "function") {
|
|
245
|
+
return stream2;
|
|
246
|
+
}
|
|
247
|
+
if (toString.call(stream2) === "[object ReadableStream]") {
|
|
248
|
+
return h.call(stream2);
|
|
249
|
+
}
|
|
250
|
+
throw new TypeError("The first argument must be a Readable, a ReadableStream, or an async iterable.");
|
|
251
|
+
};
|
|
252
|
+
var { toString } = Object.prototype;
|
|
253
|
+
var getStreamIterable = async function* (stream2) {
|
|
254
|
+
const controller = new AbortController();
|
|
255
|
+
const state = {};
|
|
256
|
+
handleStreamEnd(stream2, controller, state);
|
|
257
|
+
try {
|
|
258
|
+
for await (const [chunk] of nodeImports.on(stream2, "data", { signal: controller.signal })) {
|
|
259
|
+
yield chunk;
|
|
260
|
+
}
|
|
261
|
+
} catch (error) {
|
|
262
|
+
if (state.error !== void 0) {
|
|
263
|
+
throw state.error;
|
|
264
|
+
} else if (!controller.signal.aborted) {
|
|
265
|
+
throw error;
|
|
266
|
+
}
|
|
267
|
+
} finally {
|
|
268
|
+
stream2.destroy();
|
|
269
|
+
}
|
|
270
|
+
};
|
|
271
|
+
var handleStreamEnd = async (stream2, controller, state) => {
|
|
272
|
+
try {
|
|
273
|
+
await nodeImports.finished(stream2, {
|
|
274
|
+
cleanup: true,
|
|
275
|
+
readable: true,
|
|
276
|
+
writable: false,
|
|
277
|
+
error: false
|
|
278
|
+
});
|
|
279
|
+
} catch (error) {
|
|
280
|
+
state.error = error;
|
|
281
|
+
} finally {
|
|
282
|
+
controller.abort();
|
|
283
|
+
}
|
|
284
|
+
};
|
|
285
|
+
var nodeImports = {};
|
|
286
|
+
|
|
287
|
+
// node_modules/get-stream/source/contents.js
|
|
288
|
+
var getStreamContents = async (stream2, { init, convertChunk, getSize, truncateChunk, addChunk, getFinalChunk, finalize }, { maxBuffer = Number.POSITIVE_INFINITY } = {}) => {
|
|
289
|
+
const asyncIterable = getAsyncIterable(stream2);
|
|
290
|
+
const state = init();
|
|
291
|
+
state.length = 0;
|
|
292
|
+
try {
|
|
293
|
+
for await (const chunk of asyncIterable) {
|
|
294
|
+
const chunkType = getChunkType(chunk);
|
|
295
|
+
const convertedChunk = convertChunk[chunkType](chunk, state);
|
|
296
|
+
appendChunk({
|
|
297
|
+
convertedChunk,
|
|
298
|
+
state,
|
|
299
|
+
getSize,
|
|
300
|
+
truncateChunk,
|
|
301
|
+
addChunk,
|
|
302
|
+
maxBuffer
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
appendFinalChunk({
|
|
306
|
+
state,
|
|
307
|
+
convertChunk,
|
|
308
|
+
getSize,
|
|
309
|
+
truncateChunk,
|
|
310
|
+
addChunk,
|
|
311
|
+
getFinalChunk,
|
|
312
|
+
maxBuffer
|
|
313
|
+
});
|
|
314
|
+
return finalize(state);
|
|
315
|
+
} catch (error) {
|
|
316
|
+
const normalizedError = typeof error === "object" && error !== null ? error : new Error(error);
|
|
317
|
+
normalizedError.bufferedData = finalize(state);
|
|
318
|
+
throw normalizedError;
|
|
319
|
+
}
|
|
320
|
+
};
|
|
321
|
+
var appendFinalChunk = ({ state, getSize, truncateChunk, addChunk, getFinalChunk, maxBuffer }) => {
|
|
322
|
+
const convertedChunk = getFinalChunk(state);
|
|
323
|
+
if (convertedChunk !== void 0) {
|
|
324
|
+
appendChunk({
|
|
325
|
+
convertedChunk,
|
|
326
|
+
state,
|
|
327
|
+
getSize,
|
|
328
|
+
truncateChunk,
|
|
329
|
+
addChunk,
|
|
330
|
+
maxBuffer
|
|
331
|
+
});
|
|
332
|
+
}
|
|
333
|
+
};
|
|
334
|
+
var appendChunk = ({ convertedChunk, state, getSize, truncateChunk, addChunk, maxBuffer }) => {
|
|
335
|
+
const chunkSize = getSize(convertedChunk);
|
|
336
|
+
const newLength = state.length + chunkSize;
|
|
337
|
+
if (newLength <= maxBuffer) {
|
|
338
|
+
addNewChunk(convertedChunk, state, addChunk, newLength);
|
|
339
|
+
return;
|
|
340
|
+
}
|
|
341
|
+
const truncatedChunk = truncateChunk(convertedChunk, maxBuffer - state.length);
|
|
342
|
+
if (truncatedChunk !== void 0) {
|
|
343
|
+
addNewChunk(truncatedChunk, state, addChunk, maxBuffer);
|
|
344
|
+
}
|
|
345
|
+
throw new MaxBufferError();
|
|
346
|
+
};
|
|
347
|
+
var addNewChunk = (convertedChunk, state, addChunk, newLength) => {
|
|
348
|
+
state.contents = addChunk(convertedChunk, state, newLength);
|
|
349
|
+
state.length = newLength;
|
|
350
|
+
};
|
|
351
|
+
var getChunkType = (chunk) => {
|
|
352
|
+
const typeOfChunk = typeof chunk;
|
|
353
|
+
if (typeOfChunk === "string") {
|
|
354
|
+
return "string";
|
|
355
|
+
}
|
|
356
|
+
if (typeOfChunk !== "object" || chunk === null) {
|
|
357
|
+
return "others";
|
|
358
|
+
}
|
|
359
|
+
if (_optionalChain([globalThis, 'access', _7 => _7.Buffer, 'optionalAccess', _8 => _8.isBuffer, 'call', _9 => _9(chunk)])) {
|
|
360
|
+
return "buffer";
|
|
361
|
+
}
|
|
362
|
+
const prototypeName = objectToString.call(chunk);
|
|
363
|
+
if (prototypeName === "[object ArrayBuffer]") {
|
|
364
|
+
return "arrayBuffer";
|
|
365
|
+
}
|
|
366
|
+
if (prototypeName === "[object DataView]") {
|
|
367
|
+
return "dataView";
|
|
368
|
+
}
|
|
369
|
+
if (Number.isInteger(chunk.byteLength) && Number.isInteger(chunk.byteOffset) && objectToString.call(chunk.buffer) === "[object ArrayBuffer]") {
|
|
370
|
+
return "typedArray";
|
|
371
|
+
}
|
|
372
|
+
return "others";
|
|
373
|
+
};
|
|
374
|
+
var { toString: objectToString } = Object.prototype;
|
|
375
|
+
var MaxBufferError = (_class = class extends Error {
|
|
376
|
+
__init() {this.name = "MaxBufferError"}
|
|
377
|
+
constructor() {
|
|
378
|
+
super("maxBuffer exceeded");_class.prototype.__init.call(this);;
|
|
379
|
+
}
|
|
380
|
+
}, _class);
|
|
381
|
+
|
|
382
|
+
// node_modules/get-stream/source/utils.js
|
|
383
|
+
var noop = () => void 0;
|
|
384
|
+
var throwObjectStream = (chunk) => {
|
|
385
|
+
throw new Error(`Streams in object mode are not supported: ${String(chunk)}`);
|
|
386
|
+
};
|
|
387
|
+
var getLengthProperty = (convertedChunk) => convertedChunk.length;
|
|
388
|
+
|
|
389
|
+
// node_modules/get-stream/source/array-buffer.js
|
|
390
|
+
async function getStreamAsArrayBuffer(stream2, options) {
|
|
391
|
+
return getStreamContents(stream2, arrayBufferMethods, options);
|
|
392
|
+
}
|
|
393
|
+
var initArrayBuffer = () => ({ contents: new ArrayBuffer(0) });
|
|
394
|
+
var useTextEncoder = (chunk) => textEncoder.encode(chunk);
|
|
395
|
+
var textEncoder = new TextEncoder();
|
|
396
|
+
var useUint8Array = (chunk) => new Uint8Array(chunk);
|
|
397
|
+
var useUint8ArrayWithOffset = (chunk) => new Uint8Array(chunk.buffer, chunk.byteOffset, chunk.byteLength);
|
|
398
|
+
var truncateArrayBufferChunk = (convertedChunk, chunkSize) => convertedChunk.slice(0, chunkSize);
|
|
399
|
+
var addArrayBufferChunk = (convertedChunk, { contents, length: previousLength }, length) => {
|
|
400
|
+
const newContents = hasArrayBufferResize() ? resizeArrayBuffer(contents, length) : resizeArrayBufferSlow(contents, length);
|
|
401
|
+
new Uint8Array(newContents).set(convertedChunk, previousLength);
|
|
402
|
+
return newContents;
|
|
403
|
+
};
|
|
404
|
+
var resizeArrayBufferSlow = (contents, length) => {
|
|
405
|
+
if (length <= contents.byteLength) {
|
|
406
|
+
return contents;
|
|
407
|
+
}
|
|
408
|
+
const arrayBuffer = new ArrayBuffer(getNewContentsLength(length));
|
|
409
|
+
new Uint8Array(arrayBuffer).set(new Uint8Array(contents), 0);
|
|
410
|
+
return arrayBuffer;
|
|
411
|
+
};
|
|
412
|
+
var resizeArrayBuffer = (contents, length) => {
|
|
413
|
+
if (length <= contents.maxByteLength) {
|
|
414
|
+
contents.resize(length);
|
|
415
|
+
return contents;
|
|
416
|
+
}
|
|
417
|
+
const arrayBuffer = new ArrayBuffer(length, { maxByteLength: getNewContentsLength(length) });
|
|
418
|
+
new Uint8Array(arrayBuffer).set(new Uint8Array(contents), 0);
|
|
419
|
+
return arrayBuffer;
|
|
420
|
+
};
|
|
421
|
+
var getNewContentsLength = (length) => SCALE_FACTOR ** Math.ceil(Math.log(length) / Math.log(SCALE_FACTOR));
|
|
422
|
+
var SCALE_FACTOR = 2;
|
|
423
|
+
var finalizeArrayBuffer = ({ contents, length }) => hasArrayBufferResize() ? contents : contents.slice(0, length);
|
|
424
|
+
var hasArrayBufferResize = () => "resize" in ArrayBuffer.prototype;
|
|
425
|
+
var arrayBufferMethods = {
|
|
426
|
+
init: initArrayBuffer,
|
|
427
|
+
convertChunk: {
|
|
428
|
+
string: useTextEncoder,
|
|
429
|
+
buffer: useUint8Array,
|
|
430
|
+
arrayBuffer: useUint8Array,
|
|
431
|
+
dataView: useUint8ArrayWithOffset,
|
|
432
|
+
typedArray: useUint8ArrayWithOffset,
|
|
433
|
+
others: throwObjectStream
|
|
434
|
+
},
|
|
435
|
+
getSize: getLengthProperty,
|
|
436
|
+
truncateChunk: truncateArrayBufferChunk,
|
|
437
|
+
addChunk: addArrayBufferChunk,
|
|
438
|
+
getFinalChunk: noop,
|
|
439
|
+
finalize: finalizeArrayBuffer
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
// node_modules/get-stream/source/buffer.js
|
|
443
|
+
async function getStreamAsBuffer(stream2, options) {
|
|
444
|
+
if (!("Buffer" in globalThis)) {
|
|
445
|
+
throw new Error("getStreamAsBuffer() is only supported in Node.js");
|
|
446
|
+
}
|
|
447
|
+
try {
|
|
448
|
+
return arrayBufferToNodeBuffer(await getStreamAsArrayBuffer(stream2, options));
|
|
449
|
+
} catch (error) {
|
|
450
|
+
if (error.bufferedData !== void 0) {
|
|
451
|
+
error.bufferedData = arrayBufferToNodeBuffer(error.bufferedData);
|
|
452
|
+
}
|
|
453
|
+
throw error;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
var arrayBufferToNodeBuffer = (arrayBuffer) => globalThis.Buffer.from(arrayBuffer);
|
|
457
|
+
|
|
458
|
+
// node_modules/get-stream/source/index.js
|
|
459
|
+
Object.assign(nodeImports, { on: _events.on, finished: _promises.finished });
|
|
460
|
+
|
|
461
|
+
// src/lib/prepareParams.ts
|
|
139
462
|
var _lodashmerge = require('lodash.merge'); var _lodashmerge2 = _interopRequireDefault(_lodashmerge);
|
|
140
463
|
var _removeundefinedobjects = require('remove-undefined-objects'); var _removeundefinedobjects2 = _interopRequireDefault(_removeundefinedobjects);
|
|
141
464
|
var specialHeaders = ["accept", "authorization"];
|
|
@@ -186,21 +509,21 @@ function processFile(paramName, file) {
|
|
|
186
509
|
const payloadFilename = encodeURIComponent(_path2.default.basename(resolvedFile));
|
|
187
510
|
return resolve({
|
|
188
511
|
paramName,
|
|
189
|
-
base64: _optionalChain([fileMetadata, 'optionalAccess',
|
|
512
|
+
base64: _optionalChain([fileMetadata, 'optionalAccess', _10 => _10.content, 'optionalAccess', _11 => _11.replace, 'call', _12 => _12(";base64", `;name=${payloadFilename};base64`)]),
|
|
190
513
|
filename: payloadFilename,
|
|
191
514
|
buffer: fileMetadata.buffer
|
|
192
515
|
});
|
|
193
516
|
});
|
|
194
517
|
});
|
|
195
518
|
} else if (file instanceof _stream2.default.Readable) {
|
|
196
|
-
return
|
|
519
|
+
return getStreamAsBuffer(file).then((buffer) => {
|
|
197
520
|
const filePath = file.path;
|
|
198
521
|
const parser = new (0, _parserjs2.default)();
|
|
199
522
|
const base64 = parser.format(filePath, buffer).content;
|
|
200
523
|
const payloadFilename = encodeURIComponent(_path2.default.basename(filePath));
|
|
201
524
|
return {
|
|
202
525
|
paramName,
|
|
203
|
-
base64: _optionalChain([base64, 'optionalAccess',
|
|
526
|
+
base64: _optionalChain([base64, 'optionalAccess', _13 => _13.replace, 'call', _14 => _14(";base64", `;name=${payloadFilename};base64`)]),
|
|
204
527
|
filename: payloadFilename,
|
|
205
528
|
buffer
|
|
206
529
|
};
|
|
@@ -274,19 +597,17 @@ async function prepareParams(operation, body, metadata) {
|
|
|
274
597
|
if (!operation.hasRequestBody()) {
|
|
275
598
|
delete params.body;
|
|
276
599
|
} else {
|
|
277
|
-
if (!("body" in params))
|
|
278
|
-
params.body = {};
|
|
600
|
+
if (!("body" in params)) params.body = {};
|
|
279
601
|
const payloadJsonSchema = jsonSchema.find((js) => js.type === "body");
|
|
280
602
|
if (payloadJsonSchema) {
|
|
281
|
-
if (!params.files)
|
|
282
|
-
params.files = {};
|
|
603
|
+
if (!params.files) params.files = {};
|
|
283
604
|
const conversions = [];
|
|
284
|
-
if (_optionalChain([payloadJsonSchema, 'access',
|
|
285
|
-
Object.entries(_optionalChain([payloadJsonSchema, 'access',
|
|
605
|
+
if (_optionalChain([payloadJsonSchema, 'access', _15 => _15.schema, 'optionalAccess', _16 => _16.properties])) {
|
|
606
|
+
Object.entries(_optionalChain([payloadJsonSchema, 'access', _17 => _17.schema, 'optionalAccess', _18 => _18.properties])).filter(([, schema]) => _optionalChain([schema, 'optionalAccess', _19 => _19.format]) === "binary").filter(([prop]) => Object.keys(params.body).includes(prop)).forEach(([prop]) => {
|
|
286
607
|
conversions.push(processFile(prop, params.body[prop]));
|
|
287
608
|
});
|
|
288
|
-
} else if (_optionalChain([payloadJsonSchema, 'access',
|
|
289
|
-
if (_optionalChain([payloadJsonSchema, 'access',
|
|
609
|
+
} else if (_optionalChain([payloadJsonSchema, 'access', _20 => _20.schema, 'optionalAccess', _21 => _21.type]) === "string") {
|
|
610
|
+
if (_optionalChain([payloadJsonSchema, 'access', _22 => _22.schema, 'optionalAccess', _23 => _23.format]) === "binary") {
|
|
290
611
|
conversions.push(processFile(void 0, params.body));
|
|
291
612
|
}
|
|
292
613
|
}
|
|
@@ -300,7 +621,7 @@ async function prepareParams(operation, body, metadata) {
|
|
|
300
621
|
} else {
|
|
301
622
|
params.body = fileMetadata.base64;
|
|
302
623
|
}
|
|
303
|
-
if (fileMetadata.buffer && _optionalChain([params, 'optionalAccess',
|
|
624
|
+
if (fileMetadata.buffer && _optionalChain([params, 'optionalAccess', _24 => _24.files])) {
|
|
304
625
|
params.files[fileMetadata.filename] = fileMetadata.buffer;
|
|
305
626
|
}
|
|
306
627
|
});
|
|
@@ -312,14 +633,10 @@ async function prepareParams(operation, body, metadata) {
|
|
|
312
633
|
delete params.body;
|
|
313
634
|
}
|
|
314
635
|
if (typeof metadata !== "undefined") {
|
|
315
|
-
if (!("cookie" in params))
|
|
316
|
-
|
|
317
|
-
if (!("
|
|
318
|
-
|
|
319
|
-
if (!("path" in params))
|
|
320
|
-
params.path = {};
|
|
321
|
-
if (!("query" in params))
|
|
322
|
-
params.query = {};
|
|
636
|
+
if (!("cookie" in params)) params.cookie = {};
|
|
637
|
+
if (!("header" in params)) params.header = {};
|
|
638
|
+
if (!("path" in params)) params.path = {};
|
|
639
|
+
if (!("query" in params)) params.query = {};
|
|
323
640
|
Object.entries(digestedParameters).forEach(([paramName, param]) => {
|
|
324
641
|
let value;
|
|
325
642
|
let metadataHeaderParam;
|
|
@@ -338,23 +655,19 @@ async function prepareParams(operation, body, metadata) {
|
|
|
338
655
|
switch (param.in) {
|
|
339
656
|
case "path":
|
|
340
657
|
params.path[paramName] = value;
|
|
341
|
-
if (_optionalChain([metadata, 'optionalAccess',
|
|
342
|
-
delete metadata[paramName];
|
|
658
|
+
if (_optionalChain([metadata, 'optionalAccess', _25 => _25[paramName]])) delete metadata[paramName];
|
|
343
659
|
break;
|
|
344
660
|
case "query":
|
|
345
661
|
params.query[paramName] = value;
|
|
346
|
-
if (_optionalChain([metadata, 'optionalAccess',
|
|
347
|
-
delete metadata[paramName];
|
|
662
|
+
if (_optionalChain([metadata, 'optionalAccess', _26 => _26[paramName]])) delete metadata[paramName];
|
|
348
663
|
break;
|
|
349
664
|
case "header":
|
|
350
665
|
params.header[paramName.toLowerCase()] = value;
|
|
351
|
-
if (metadataHeaderParam && _optionalChain([metadata, 'optionalAccess',
|
|
352
|
-
delete metadata[metadataHeaderParam];
|
|
666
|
+
if (metadataHeaderParam && _optionalChain([metadata, 'optionalAccess', _27 => _27[metadataHeaderParam]])) delete metadata[metadataHeaderParam];
|
|
353
667
|
break;
|
|
354
668
|
case "cookie":
|
|
355
669
|
params.cookie[paramName] = value;
|
|
356
|
-
if (_optionalChain([metadata, 'optionalAccess',
|
|
357
|
-
delete metadata[paramName];
|
|
670
|
+
if (_optionalChain([metadata, 'optionalAccess', _28 => _28[paramName]])) delete metadata[paramName];
|
|
358
671
|
break;
|
|
359
672
|
default:
|
|
360
673
|
}
|
|
@@ -402,12 +715,12 @@ function stripTrailingSlash(url) {
|
|
|
402
715
|
function prepareServer(spec, url, variables = {}) {
|
|
403
716
|
let serverIdx;
|
|
404
717
|
const sanitizedUrl = stripTrailingSlash(url);
|
|
405
|
-
(spec.api.servers || []).forEach((server,
|
|
718
|
+
(spec.api.servers || []).forEach((server, i2) => {
|
|
406
719
|
if (server.url === sanitizedUrl) {
|
|
407
|
-
serverIdx =
|
|
720
|
+
serverIdx = i2;
|
|
408
721
|
}
|
|
409
722
|
});
|
|
410
|
-
if (serverIdx) {
|
|
723
|
+
if (serverIdx !== void 0) {
|
|
411
724
|
return {
|
|
412
725
|
selected: serverIdx,
|
|
413
726
|
variables
|
|
@@ -432,4 +745,4 @@ function prepareServer(spec, url, variables = {}) {
|
|
|
432
745
|
|
|
433
746
|
|
|
434
747
|
exports.getJSONSchemaDefaults = getJSONSchemaDefaults; exports.parseResponse = parseResponse; exports.prepareAuth = prepareAuth; exports.prepareParams = prepareParams; exports.prepareServer = prepareServer;
|
|
435
|
-
//# sourceMappingURL=chunk-
|
|
748
|
+
//# sourceMappingURL=chunk-HA453OBW.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["/Users/kanadg/Code/readmeio/api/packages/core/dist/chunk-HA453OBW.cjs","../src/lib/getJSONSchemaDefaults.ts","../src/lib/parseResponse.ts","../src/lib/prepareAuth.ts","../src/lib/prepareParams.ts","../node_modules/get-stream/source/index.js","../node_modules/is-stream/index.js","../../../node_modules/@sec-ant/readable-stream/dist/ponyfill/asyncIterator.js","../node_modules/get-stream/source/stream.js","../node_modules/get-stream/source/contents.js","../node_modules/get-stream/source/utils.js","../node_modules/get-stream/source/array-buffer.js","../node_modules/get-stream/source/buffer.js","../src/lib/prepareServer.ts"],"names":["schemes","scheme","stream","i"],"mappings":"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","file":"/Users/kanadg/Code/readmeio/api/packages/core/dist/chunk-HA453OBW.cjs","sourcesContent":[null,"import type { SchemaWrapper } from 'oas/operation/get-parameters-as-json-schema';\nimport type { SchemaObject } from 'oas/types';\n\nimport traverse from 'json-schema-traverse';\n\n/**\n * Run through a JSON Schema object and compose up an object containing default data for any schema\n * property that is required and also has a defined default.\n *\n * Code partially adapted from the `json-schema-default` package but modified to only return\n * defaults of required properties.\n *\n * @todo This is a good candidate to be moved into a core `oas` library method.\n * @see {@link https://github.com/mdornseif/json-schema-default}\n */\nexport default function getJSONSchemaDefaults(jsonSchemas: SchemaWrapper[]) {\n return jsonSchemas\n .map(({ type: payloadType, schema: jsonSchema }) => {\n const defaults: Record<string, unknown> = {};\n traverse(\n jsonSchema,\n (\n schema: SchemaObject,\n pointer: string,\n rootSchema: SchemaObject,\n parentPointer?: string,\n parentKeyword?: string,\n parentSchema?: SchemaObject,\n indexProperty?: number | string,\n ) => {\n if (!pointer.startsWith('/properties/')) {\n return;\n }\n\n if (Array.isArray(parentSchema?.required) && parentSchema?.required.includes(String(indexProperty))) {\n if (schema.type === 'object' && indexProperty) {\n defaults[indexProperty] = {};\n }\n\n let destination = defaults;\n if (parentPointer) {\n // To map nested objects correct we need to pick apart the parent pointer.\n parentPointer\n .replace(/\\/properties/g, '')\n .split('/')\n .forEach((subSchema: string) => {\n if (subSchema === '') {\n return;\n }\n\n destination = (destination?.[subSchema] as Record<string, unknown>) || {};\n });\n }\n\n if (schema.default !== undefined) {\n if (indexProperty !== undefined) {\n destination[indexProperty] = schema.default;\n }\n }\n }\n },\n );\n\n if (!Object.keys(defaults).length) {\n return {};\n }\n\n return {\n // @todo should we filter out empty and undefined objects from here with `remove-undefined-objects`?\n [payloadType]: defaults,\n };\n })\n .reduce((prev, next) => Object.assign(prev, next));\n}\n","import { matchesMimeType } from 'oas/utils';\n\nexport default async function parseResponse<HTTPStatus extends number = number>(response: Response) {\n const contentType = response.headers.get('Content-Type');\n const isJSON = contentType && (matchesMimeType.json(contentType) || matchesMimeType.wildcard(contentType));\n\n const responseBody = await response.clone().text();\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let data: any = responseBody;\n if (isJSON) {\n try {\n data = JSON.parse(responseBody);\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n } catch (e) {\n // If our JSON parsing failed then we can just return plaintext instead.\n }\n }\n\n return {\n data,\n status: response.status as HTTPStatus,\n headers: response.headers,\n res: response,\n };\n}\n","/* eslint-disable no-underscore-dangle */\nimport type { AuthForHAR } from '@readme/oas-to-har/lib/types';\nimport type { Operation } from 'oas/operation';\nimport type { KeyedSecuritySchemeObject } from 'oas/types';\n\nexport default function prepareAuth(authKey: (number | string)[], operation: Operation) {\n if (authKey.length === 0) {\n return {};\n }\n\n const preparedAuth: AuthForHAR = {};\n\n const security = operation.getSecurity();\n if (security.length === 0) {\n // If there's no auth configured on this operation, don't prepare anything (even if it was\n // supplied by the user).\n return {};\n }\n\n // Does this operation require multiple forms of auth?\n if (security.every(s => Object.keys(s).length > 1)) {\n throw new Error(\n \"Sorry, this operation currently requires multiple forms of authentication which this library doesn't yet support.\",\n );\n }\n\n // Since we can only handle single auth security configurations, let's pull those out. This code\n // is a bit opaque but `security` here may look like `[{ basic: [] }, { oauth2: [], basic: []}]`\n // and are filtering it down to only single-auth requirements of `[{ basic: [] }]`.\n const usableSecurity = security\n .map(s => {\n return Object.keys(s).length === 1 ? s : false;\n })\n .filter(Boolean);\n\n const usableSecuritySchemes = usableSecurity.map(s => Object.keys(s)).reduce((prev, next) => prev.concat(next), []);\n const preparedSecurity = operation.prepareSecurity();\n\n // If we have two auth tokens present let's look for Basic Auth in their configuration.\n if (authKey.length >= 2) {\n // If this operation doesn't support HTTP Basic auth but we have two tokens, that's a paddlin.\n if (!('Basic' in preparedSecurity)) {\n throw new Error('Multiple auth tokens were supplied for this endpoint but only a single token is needed.');\n }\n\n // If we have two auth keys for Basic Auth but Basic isn't a usable security scheme (maybe it's\n // part of an AND or auth configuration -- which we don't support) then we need to error out.\n const schemes = preparedSecurity.Basic.filter(s => usableSecuritySchemes.includes(s._key));\n if (!schemes.length) {\n throw new Error(\n 'Credentials for Basic Authentication were supplied but this operation requires another form of auth in that case, which this library does not yet support. This operation does, however, allow supplying a single auth token.',\n );\n }\n\n const scheme = schemes.shift() as KeyedSecuritySchemeObject;\n preparedAuth[scheme._key] = {\n user: String(authKey[0]),\n pass: authKey.length === 2 ? String(authKey[1]) : '',\n };\n\n return preparedAuth;\n }\n\n // If we know we don't need to use HTTP Basic auth because we have a username+password then we\n // can pick the first usable security scheme available and try to use that. This might not always\n // be the auth scheme that the user wants, but we don't have any other way for the user to tell\n // us what they want with the current `sdk.auth()` API.\n const usableScheme = usableSecuritySchemes[0];\n const schemes = Object.entries(preparedSecurity)\n .map(([, ps]) => ps.filter(s => usableScheme === s._key))\n .reduce((prev, next) => prev.concat(next), []);\n\n const scheme = schemes.shift() as KeyedSecuritySchemeObject;\n switch (scheme.type) {\n case 'http':\n if (scheme.scheme === 'basic') {\n preparedAuth[scheme._key] = {\n user: String(authKey[0]),\n pass: authKey.length === 2 ? String(authKey[1]) : '',\n };\n } else if (scheme.scheme === 'bearer') {\n preparedAuth[scheme._key] = authKey[0];\n }\n break;\n\n case 'oauth2':\n preparedAuth[scheme._key] = authKey[0];\n break;\n\n case 'apiKey':\n if (scheme.in === 'query' || scheme.in === 'header' || scheme.in === 'cookie') {\n preparedAuth[scheme._key] = authKey[0];\n }\n break;\n\n default:\n throw new Error(\n `Sorry, this API currently uses a security scheme, ${scheme.type}, which this library doesn't yet support.`,\n );\n }\n\n return preparedAuth;\n}\n","import type { ReadStream } from 'node:fs';\nimport type { Operation } from 'oas/operation';\nimport type { ParameterObject, SchemaObject } from 'oas/types';\n\nimport fs from 'node:fs';\nimport path from 'node:path';\nimport stream from 'node:stream';\n\nimport caseless from 'caseless';\nimport DatauriParser from 'datauri/parser.js';\nimport datauri from 'datauri/sync.js';\n// `get-stream` is included in our bundle, see `tsup.config.ts`\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { getStreamAsBuffer } from 'get-stream';\nimport lodashMerge from 'lodash.merge';\nimport removeUndefinedObjects from 'remove-undefined-objects';\n\nimport getJSONSchemaDefaults from './getJSONSchemaDefaults.js';\n\n// These headers are normally only defined by the OpenAPI definition but we allow the user to\n// manually supply them in their `metadata` parameter if they wish.\nconst specialHeaders = ['accept', 'authorization'];\n\n/**\n * Extract all available parameters from an operations Parameter Object into a digestable array\n * that we can use to apply to the request.\n *\n * @see {@link https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameterObject}\n * @see {@link https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameterObject}\n */\nfunction digestParameters(parameters: ParameterObject[]): Record<string, ParameterObject> {\n return parameters.reduce((prev, param) => {\n if ('$ref' in param || 'allOf' in param || 'anyOf' in param || 'oneOf' in param) {\n throw new Error(\"The OpenAPI document for this operation wasn't dereferenced before processing.\");\n } else if (param.name in prev) {\n throw new Error(\n `The operation you are using has the same parameter, ${param.name}, spread across multiple entry points. We unfortunately can't handle this right now.`,\n );\n }\n\n return Object.assign(prev, { [param.name]: param });\n }, {});\n}\n\n// https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_isempty\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction isEmpty(obj: any) {\n return [Object, Array].includes((obj || {}).constructor) && !Object.entries(obj || {}).length;\n}\n\nfunction isObject(thing: unknown) {\n if (thing instanceof stream.Readable) {\n return false;\n }\n\n return typeof thing === 'object' && thing !== null && !Array.isArray(thing);\n}\n\nfunction isPrimitive(obj: unknown) {\n return obj === null || typeof obj === 'number' || typeof obj === 'string';\n}\n\nfunction merge(src: unknown, target: unknown) {\n if (Array.isArray(target)) {\n // @todo we need to add support for merging array defaults with array body/metadata arguments\n return target;\n } else if (!isObject(target)) {\n return target;\n }\n\n return lodashMerge(src, target);\n}\n\n/**\n * Ingest a file path or readable stream into a common object that we can later use to process it\n * into a parameters object for making an API request.\n *\n */\nfunction processFile(\n paramName: string | undefined,\n file: ReadStream | string,\n): Promise<{ base64?: string; buffer?: Buffer; filename: string; paramName?: string } | undefined> {\n if (typeof file === 'string') {\n // In order to support relative pathed files, we need to attempt to resolve them.\n const resolvedFile = path.resolve(file);\n\n return new Promise((resolve, reject) => {\n fs.stat(resolvedFile, async err => {\n if (err) {\n if (err.code === 'ENOENT') {\n // It's less than ideal for us to handle files that don't exist like this but because\n // `file` is a string it might actually be the full text contents of the file and not\n // actually a path.\n //\n // We also can't really regex to see if `file` *looks*` like a path because one should be\n // able to pass in a relative `owlbert.png` (instead of `./owlbert.png`) and though that\n // doesn't *look* like a path, it is one that should still work.\n return resolve(undefined);\n }\n\n return reject(err);\n }\n\n const fileMetadata = await datauri(resolvedFile);\n const payloadFilename = encodeURIComponent(path.basename(resolvedFile));\n\n return resolve({\n paramName,\n base64: fileMetadata?.content?.replace(';base64', `;name=${payloadFilename};base64`),\n filename: payloadFilename,\n buffer: fileMetadata.buffer,\n });\n });\n });\n } else if (file instanceof stream.Readable) {\n return getStreamAsBuffer(file).then(buffer => {\n const filePath = file.path as string;\n const parser = new DatauriParser();\n const base64 = parser.format(filePath, buffer).content;\n const payloadFilename = encodeURIComponent(path.basename(filePath));\n\n return {\n paramName,\n base64: base64?.replace(';base64', `;name=${payloadFilename};base64`),\n filename: payloadFilename,\n buffer,\n };\n });\n }\n\n return Promise.reject(\n new TypeError(\n paramName\n ? `The data supplied for the \\`${paramName}\\` request body parameter is not a file handler that we support.`\n : 'The data supplied for the request body payload is not a file handler that we support.',\n ),\n );\n}\n\n/**\n * With potentially supplied body and/or metadata we need to run through them against a given API\n * operation to see what's what and prepare any available parameters to be used in an API request\n * with `@readme/oas-to-har`.\n *\n */\nexport default async function prepareParams(operation: Operation, body?: unknown, metadata?: Record<string, unknown>) {\n let metadataIntersected = false;\n const digestedParameters = digestParameters(operation.getParameters());\n const jsonSchema = operation.getParametersAsJSONSchema();\n\n /**\n * It might be common for somebody to run `sdk.findPetsByStatus({ status: 'available' }, {})`, in\n * which case we want to filter out the second (metadata) parameter and treat the first parameter\n * as the metadata instead. If we don't do this, their supplied `status` metadata will be treated\n * as a body parameter, and because there's no `status` body parameter, and no supplied metadata\n * (because it's an empty object), the request won't send a payload.\n *\n * @see {@link https://github.com/readmeio/api/issues/449}\n */\n // eslint-disable-next-line no-param-reassign\n metadata = removeUndefinedObjects(metadata);\n\n if (!jsonSchema && (body !== undefined || metadata !== undefined)) {\n let throwNoParamsError = true;\n\n // If this operation doesn't have any parameters for us to transform to JSON Schema but they've\n // sent us either an `Accept` or `Authorization` header (or both) we should let them do that.\n // We should, however, only do this check for the `body` parameter as if they've sent this\n // request both `body` and `metadata` we can reject it outright as the operation won't have any\n // body data.\n if (body !== undefined) {\n if (typeof body === 'object' && body !== null && !Array.isArray(body)) {\n if (Object.keys(body).length <= 2) {\n const bodyParams = caseless(body);\n\n if (specialHeaders.some(header => bodyParams.has(header))) {\n throwNoParamsError = false;\n }\n }\n }\n }\n\n if (throwNoParamsError) {\n throw new Error(\n \"You supplied metadata and/or body data for this operation but it doesn't have any documented parameters or request payloads. If you think this is an error please contact support for the API you're using.\",\n );\n }\n }\n\n const jsonSchemaDefaults = jsonSchema ? getJSONSchemaDefaults(jsonSchema) : {};\n\n const params: {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n body?: any;\n cookie?: Record<string, boolean | number | string>;\n files?: Record<string, Buffer>;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n formData?: any;\n header?: Record<string, boolean | number | string>;\n path?: Record<string, boolean | number | string>;\n query?: Record<string, boolean | number | string>;\n server?: {\n selected: number;\n variables: Record<string, number | string>;\n };\n } = jsonSchemaDefaults;\n\n // If a body argument was supplied we need to do a bit of work to see if it's actually a body\n // argument or metadata because the library lets you supply either a body, metadata, or body with\n // metadata.\n if (typeof body !== 'undefined') {\n if (Array.isArray(body) || isPrimitive(body)) {\n // If the body param is an array or a primitive then we know it's absolutely a body because\n // metadata can only ever be undefined or an object.\n params.body = merge(params.body, body);\n } else if (typeof metadata === 'undefined') {\n // No metadata was explicitly provided so we need to analyze the body to determine if it's a\n // body or should be actually be treated as metadata.\n const headerParams = caseless({});\n Object.entries(digestedParameters).forEach(([paramName, param]) => {\n // Headers are sent case-insensitive so we need to make sure that we're properly\n // matching them when detecting what our incoming payload looks like.\n if (param.in === 'header') {\n headerParams.set(paramName, '');\n }\n });\n\n // `Accept` and `Authorization` headers can't be defined as normal parameters but we should\n // always allow the user to supply them if they wish.\n specialHeaders.forEach(header => {\n if (!headerParams.has(header)) {\n headerParams.set(header, '');\n }\n });\n\n const intersection = Object.keys(body as NonNullable<unknown>).filter(value => {\n if (Object.keys(digestedParameters).includes(value)) {\n return true;\n } else if (headerParams.has(value)) {\n return true;\n }\n\n return false;\n }).length;\n\n // If more than 25% of the body intersects with the parameters that we've got on hand, then\n // we should treat it as a metadata object and organize into parameters.\n if (intersection && intersection / Object.keys(body as NonNullable<unknown>).length > 0.25) {\n /* eslint-disable no-param-reassign */\n metadataIntersected = true;\n metadata = merge(params.body, body) as Record<string, unknown>;\n body = undefined;\n /* eslint-enable no-param-reassign */\n } else {\n // For all other cases, we should just treat the supplied body as a body.\n params.body = merge(params.body, body);\n }\n } else {\n // Body and metadata were both supplied.\n params.body = merge(params.body, body);\n }\n }\n\n if (!operation.hasRequestBody()) {\n // If this operation doesn't have any documented request body then we shouldn't be sending\n // anything.\n delete params.body;\n } else {\n if (!('body' in params)) params.body = {};\n\n // We need to retrieve the request body for this operation to search for any `binary` format\n // data that the user wants to send so we know what we need to prepare for the final API\n // request.\n const payloadJsonSchema = jsonSchema.find(js => js.type === 'body');\n if (payloadJsonSchema) {\n if (!params.files) params.files = {};\n\n const conversions = [];\n\n // @todo add support for `type: array`, `oneOf` and `anyOf`\n if (payloadJsonSchema.schema?.properties) {\n Object.entries(payloadJsonSchema.schema?.properties)\n .filter(([, schema]: [string, SchemaObject]) => schema?.format === 'binary')\n .filter(([prop]) => Object.keys(params.body).includes(prop))\n .forEach(([prop]) => {\n conversions.push(processFile(prop, params.body[prop]));\n });\n } else if (payloadJsonSchema.schema?.type === 'string') {\n if (payloadJsonSchema.schema?.format === 'binary') {\n conversions.push(processFile(undefined, params.body));\n }\n }\n\n await Promise.all(conversions)\n .then(fileMetadata => fileMetadata.filter(Boolean))\n .then(fm => {\n fm.forEach(fileMetadata => {\n if (!fileMetadata) {\n // If we don't have any metadata here it's because the file we have is likely\n // the full string content of the file so since we don't have any filenames to\n // work with we shouldn't do any additional handling to the `body` or `files`\n // parameters.\n return;\n }\n\n if (fileMetadata.paramName) {\n params.body[fileMetadata.paramName] = fileMetadata.base64;\n } else {\n params.body = fileMetadata.base64;\n }\n\n if (fileMetadata.buffer && params?.files) {\n params.files[fileMetadata.filename] = fileMetadata.buffer;\n }\n });\n });\n }\n }\n\n // Form data should be placed within `formData` instead of `body` for it to properly get picked\n // up by `fetch-har`.\n if (operation.isFormUrlEncoded()) {\n params.formData = merge(params.formData, params.body);\n delete params.body;\n }\n\n // Only spend time trying to organize metadata into parameters if we were able to digest\n // parameters out of the operation schema. If we couldn't digest anything, but metadata was\n // supplied then we wouldn't know how to send it in the request!\n if (typeof metadata !== 'undefined') {\n if (!('cookie' in params)) params.cookie = {};\n if (!('header' in params)) params.header = {};\n if (!('path' in params)) params.path = {};\n if (!('query' in params)) params.query = {};\n\n Object.entries(digestedParameters).forEach(([paramName, param]) => {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let value: any;\n let metadataHeaderParam;\n if (typeof metadata === 'object' && !isEmpty(metadata)) {\n if (paramName in metadata) {\n value = metadata[paramName];\n metadataHeaderParam = paramName;\n } else if (param.in === 'header') {\n // Headers are sent case-insensitive so we need to make sure that we're properly\n // matching them when detecting what our incoming payload looks like.\n metadataHeaderParam = Object.keys(metadata).find(k => k.toLowerCase() === paramName.toLowerCase()) || '';\n value = metadata[metadataHeaderParam];\n }\n }\n\n if (value === undefined) {\n return;\n }\n\n /* eslint-disable no-param-reassign */\n switch (param.in) {\n case 'path':\n (params.path as NonNullable<typeof params.path>)[paramName] = value;\n if (metadata?.[paramName]) delete metadata[paramName];\n break;\n case 'query':\n (params.query as NonNullable<typeof params.query>)[paramName] = value;\n if (metadata?.[paramName]) delete metadata[paramName];\n break;\n case 'header':\n (params.header as NonNullable<typeof params.header>)[paramName.toLowerCase()] = value;\n if (metadataHeaderParam && metadata?.[metadataHeaderParam]) delete metadata[metadataHeaderParam];\n break;\n case 'cookie':\n (params.cookie as NonNullable<typeof params.cookie>)[paramName] = value;\n if (metadata?.[paramName]) delete metadata[paramName];\n break;\n default: // no-op\n }\n /* eslint-enable no-param-reassign */\n\n // Because a user might have sent just a metadata object, we want to make sure that we filter\n // out anything that they sent that is a parameter from also being sent as part of a form\n // data payload for `x-www-form-urlencoded` requests.\n if (metadataIntersected && operation.isFormUrlEncoded()) {\n if (paramName in params.formData) {\n delete params.formData[paramName];\n }\n }\n });\n\n // If there's any leftover metadata that hasn't been moved into form data for this request we\n // need to move it or else it'll get tossed.\n if (!isEmpty(metadata)) {\n if (typeof metadata === 'object') {\n // If the user supplied an `accept` or `authorization` header themselves we should allow it\n // through. Normally these headers are automatically handled by `@readme/oas-to-har` but in\n // the event that maybe the user wants to return XML for an API that normally returns JSON\n // or specify a custom auth header (maybe we can't handle their auth case right) this is the\n // only way with this library that they can do that.\n specialHeaders.forEach(headerName => {\n const headerParam = Object.keys(metadata || {}).find(m => m.toLowerCase() === headerName);\n if (headerParam) {\n // this if-statement below is a typeguard\n if (typeof metadata === 'object') {\n // this if-statement below is a typeguard\n if (typeof params.header === 'object') {\n params.header[headerName] = metadata[headerParam] as string;\n }\n // eslint-disable-next-line no-param-reassign\n delete metadata[headerParam];\n }\n }\n });\n }\n\n if (operation.isFormUrlEncoded()) {\n params.formData = merge(params.formData, metadata);\n } else {\n // Any other remaining unused metadata will be unused because we don't know where to place\n // it in the request.\n }\n }\n }\n\n (['body', 'cookie', 'files', 'formData', 'header', 'path', 'query'] as const).forEach((type: keyof typeof params) => {\n if (type in params && isEmpty(params[type])) {\n delete params[type];\n }\n });\n\n return params;\n}\n","import {on} from 'node:events';\nimport {finished} from 'node:stream/promises';\nimport {nodeImports} from './stream.js';\n\nObject.assign(nodeImports, {on, finished});\n\nexport {\n\tdefault,\n\tgetStreamAsArray,\n\tgetStreamAsArrayBuffer,\n\tgetStreamAsBuffer,\n\tMaxBufferError,\n} from './exports.js';\n","export function isStream(stream, {checkOpen = true} = {}) {\n\treturn stream !== null\n\t\t&& typeof stream === 'object'\n\t\t&& (stream.writable || stream.readable || !checkOpen || (stream.writable === undefined && stream.readable === undefined))\n\t\t&& typeof stream.pipe === 'function';\n}\n\nexport function isWritableStream(stream, {checkOpen = true} = {}) {\n\treturn isStream(stream, {checkOpen})\n\t\t&& (stream.writable || !checkOpen)\n\t\t&& typeof stream.write === 'function'\n\t\t&& typeof stream.end === 'function'\n\t\t&& typeof stream.writable === 'boolean'\n\t\t&& typeof stream.writableObjectMode === 'boolean'\n\t\t&& typeof stream.destroy === 'function'\n\t\t&& typeof stream.destroyed === 'boolean';\n}\n\nexport function isReadableStream(stream, {checkOpen = true} = {}) {\n\treturn isStream(stream, {checkOpen})\n\t\t&& (stream.readable || !checkOpen)\n\t\t&& typeof stream.read === 'function'\n\t\t&& typeof stream.readable === 'boolean'\n\t\t&& typeof stream.readableObjectMode === 'boolean'\n\t\t&& typeof stream.destroy === 'function'\n\t\t&& typeof stream.destroyed === 'boolean';\n}\n\nexport function isDuplexStream(stream, options) {\n\treturn isWritableStream(stream, options)\n\t\t&& isReadableStream(stream, options);\n}\n\nexport function isTransformStream(stream, options) {\n\treturn isDuplexStream(stream, options)\n\t\t&& typeof stream._transform === 'function';\n}\n","const a = Object.getPrototypeOf(\n Object.getPrototypeOf(\n /* istanbul ignore next */\n async function* () {\n }\n ).prototype\n);\nclass c {\n #t;\n #n;\n #r = !1;\n #e = void 0;\n constructor(e, t) {\n this.#t = e, this.#n = t;\n }\n next() {\n const e = () => this.#s();\n return this.#e = this.#e ? this.#e.then(e, e) : e(), this.#e;\n }\n return(e) {\n const t = () => this.#i(e);\n return this.#e ? this.#e.then(t, t) : t();\n }\n async #s() {\n if (this.#r)\n return {\n done: !0,\n value: void 0\n };\n let e;\n try {\n e = await this.#t.read();\n } catch (t) {\n throw this.#e = void 0, this.#r = !0, this.#t.releaseLock(), t;\n }\n return e.done && (this.#e = void 0, this.#r = !0, this.#t.releaseLock()), e;\n }\n async #i(e) {\n if (this.#r)\n return {\n done: !0,\n value: e\n };\n if (this.#r = !0, !this.#n) {\n const t = this.#t.cancel(e);\n return this.#t.releaseLock(), await t, {\n done: !0,\n value: e\n };\n }\n return this.#t.releaseLock(), {\n done: !0,\n value: e\n };\n }\n}\nconst n = Symbol();\nfunction i() {\n return this[n].next();\n}\nObject.defineProperty(i, \"name\", { value: \"next\" });\nfunction o(r) {\n return this[n].return(r);\n}\nObject.defineProperty(o, \"name\", { value: \"return\" });\nconst u = Object.create(a, {\n next: {\n enumerable: !0,\n configurable: !0,\n writable: !0,\n value: i\n },\n return: {\n enumerable: !0,\n configurable: !0,\n writable: !0,\n value: o\n }\n});\nfunction h({ preventCancel: r = !1 } = {}) {\n const e = this.getReader(), t = new c(\n e,\n r\n ), s = Object.create(u);\n return s[n] = t, s;\n}\nexport {\n h as asyncIterator\n};\n","import {isReadableStream} from 'is-stream';\nimport {asyncIterator} from '@sec-ant/readable-stream/ponyfill';\n\nexport const getAsyncIterable = stream => {\n\tif (isReadableStream(stream, {checkOpen: false}) && nodeImports.on !== undefined) {\n\t\treturn getStreamIterable(stream);\n\t}\n\n\tif (typeof stream?.[Symbol.asyncIterator] === 'function') {\n\t\treturn stream;\n\t}\n\n\t// `ReadableStream[Symbol.asyncIterator]` support is missing in multiple browsers, so we ponyfill it\n\tif (toString.call(stream) === '[object ReadableStream]') {\n\t\treturn asyncIterator.call(stream);\n\t}\n\n\tthrow new TypeError('The first argument must be a Readable, a ReadableStream, or an async iterable.');\n};\n\nconst {toString} = Object.prototype;\n\n// The default iterable for Node.js streams does not allow for multiple readers at once, so we re-implement it\nconst getStreamIterable = async function * (stream) {\n\tconst controller = new AbortController();\n\tconst state = {};\n\thandleStreamEnd(stream, controller, state);\n\n\ttry {\n\t\tfor await (const [chunk] of nodeImports.on(stream, 'data', {signal: controller.signal})) {\n\t\t\tyield chunk;\n\t\t}\n\t} catch (error) {\n\t\t// Stream failure, for example due to `stream.destroy(error)`\n\t\tif (state.error !== undefined) {\n\t\t\tthrow state.error;\n\t\t// `error` event directly emitted on stream\n\t\t} else if (!controller.signal.aborted) {\n\t\t\tthrow error;\n\t\t// Otherwise, stream completed successfully\n\t\t}\n\t\t// The `finally` block also runs when the caller throws, for example due to the `maxBuffer` option\n\t} finally {\n\t\tstream.destroy();\n\t}\n};\n\nconst handleStreamEnd = async (stream, controller, state) => {\n\ttry {\n\t\tawait nodeImports.finished(stream, {\n\t\t\tcleanup: true,\n\t\t\treadable: true,\n\t\t\twritable: false,\n\t\t\terror: false,\n\t\t});\n\t} catch (error) {\n\t\tstate.error = error;\n\t} finally {\n\t\tcontroller.abort();\n\t}\n};\n\n// Loaded by the Node entrypoint, but not by the browser one.\n// This prevents using dynamic imports.\nexport const nodeImports = {};\n","import {getAsyncIterable} from './stream.js';\n\nexport const getStreamContents = async (stream, {init, convertChunk, getSize, truncateChunk, addChunk, getFinalChunk, finalize}, {maxBuffer = Number.POSITIVE_INFINITY} = {}) => {\n\tconst asyncIterable = getAsyncIterable(stream);\n\n\tconst state = init();\n\tstate.length = 0;\n\n\ttry {\n\t\tfor await (const chunk of asyncIterable) {\n\t\t\tconst chunkType = getChunkType(chunk);\n\t\t\tconst convertedChunk = convertChunk[chunkType](chunk, state);\n\t\t\tappendChunk({\n\t\t\t\tconvertedChunk,\n\t\t\t\tstate,\n\t\t\t\tgetSize,\n\t\t\t\ttruncateChunk,\n\t\t\t\taddChunk,\n\t\t\t\tmaxBuffer,\n\t\t\t});\n\t\t}\n\n\t\tappendFinalChunk({\n\t\t\tstate,\n\t\t\tconvertChunk,\n\t\t\tgetSize,\n\t\t\ttruncateChunk,\n\t\t\taddChunk,\n\t\t\tgetFinalChunk,\n\t\t\tmaxBuffer,\n\t\t});\n\t\treturn finalize(state);\n\t} catch (error) {\n\t\tconst normalizedError = typeof error === 'object' && error !== null ? error : new Error(error);\n\t\tnormalizedError.bufferedData = finalize(state);\n\t\tthrow normalizedError;\n\t}\n};\n\nconst appendFinalChunk = ({state, getSize, truncateChunk, addChunk, getFinalChunk, maxBuffer}) => {\n\tconst convertedChunk = getFinalChunk(state);\n\tif (convertedChunk !== undefined) {\n\t\tappendChunk({\n\t\t\tconvertedChunk,\n\t\t\tstate,\n\t\t\tgetSize,\n\t\t\ttruncateChunk,\n\t\t\taddChunk,\n\t\t\tmaxBuffer,\n\t\t});\n\t}\n};\n\nconst appendChunk = ({convertedChunk, state, getSize, truncateChunk, addChunk, maxBuffer}) => {\n\tconst chunkSize = getSize(convertedChunk);\n\tconst newLength = state.length + chunkSize;\n\n\tif (newLength <= maxBuffer) {\n\t\taddNewChunk(convertedChunk, state, addChunk, newLength);\n\t\treturn;\n\t}\n\n\tconst truncatedChunk = truncateChunk(convertedChunk, maxBuffer - state.length);\n\n\tif (truncatedChunk !== undefined) {\n\t\taddNewChunk(truncatedChunk, state, addChunk, maxBuffer);\n\t}\n\n\tthrow new MaxBufferError();\n};\n\nconst addNewChunk = (convertedChunk, state, addChunk, newLength) => {\n\tstate.contents = addChunk(convertedChunk, state, newLength);\n\tstate.length = newLength;\n};\n\nconst getChunkType = chunk => {\n\tconst typeOfChunk = typeof chunk;\n\n\tif (typeOfChunk === 'string') {\n\t\treturn 'string';\n\t}\n\n\tif (typeOfChunk !== 'object' || chunk === null) {\n\t\treturn 'others';\n\t}\n\n\tif (globalThis.Buffer?.isBuffer(chunk)) {\n\t\treturn 'buffer';\n\t}\n\n\tconst prototypeName = objectToString.call(chunk);\n\n\tif (prototypeName === '[object ArrayBuffer]') {\n\t\treturn 'arrayBuffer';\n\t}\n\n\tif (prototypeName === '[object DataView]') {\n\t\treturn 'dataView';\n\t}\n\n\tif (\n\t\tNumber.isInteger(chunk.byteLength)\n\t\t&& Number.isInteger(chunk.byteOffset)\n\t\t&& objectToString.call(chunk.buffer) === '[object ArrayBuffer]'\n\t) {\n\t\treturn 'typedArray';\n\t}\n\n\treturn 'others';\n};\n\nconst {toString: objectToString} = Object.prototype;\n\nexport class MaxBufferError extends Error {\n\tname = 'MaxBufferError';\n\n\tconstructor() {\n\t\tsuper('maxBuffer exceeded');\n\t}\n}\n","export const identity = value => value;\n\nexport const noop = () => undefined;\n\nexport const getContentsProperty = ({contents}) => contents;\n\nexport const throwObjectStream = chunk => {\n\tthrow new Error(`Streams in object mode are not supported: ${String(chunk)}`);\n};\n\nexport const getLengthProperty = convertedChunk => convertedChunk.length;\n","import {getStreamContents} from './contents.js';\nimport {noop, throwObjectStream, getLengthProperty} from './utils.js';\n\nexport async function getStreamAsArrayBuffer(stream, options) {\n\treturn getStreamContents(stream, arrayBufferMethods, options);\n}\n\nconst initArrayBuffer = () => ({contents: new ArrayBuffer(0)});\n\nconst useTextEncoder = chunk => textEncoder.encode(chunk);\nconst textEncoder = new TextEncoder();\n\nconst useUint8Array = chunk => new Uint8Array(chunk);\n\nconst useUint8ArrayWithOffset = chunk => new Uint8Array(chunk.buffer, chunk.byteOffset, chunk.byteLength);\n\nconst truncateArrayBufferChunk = (convertedChunk, chunkSize) => convertedChunk.slice(0, chunkSize);\n\n// `contents` is an increasingly growing `Uint8Array`.\nconst addArrayBufferChunk = (convertedChunk, {contents, length: previousLength}, length) => {\n\tconst newContents = hasArrayBufferResize() ? resizeArrayBuffer(contents, length) : resizeArrayBufferSlow(contents, length);\n\tnew Uint8Array(newContents).set(convertedChunk, previousLength);\n\treturn newContents;\n};\n\n// Without `ArrayBuffer.resize()`, `contents` size is always a power of 2.\n// This means its last bytes are zeroes (not stream data), which need to be\n// trimmed at the end with `ArrayBuffer.slice()`.\nconst resizeArrayBufferSlow = (contents, length) => {\n\tif (length <= contents.byteLength) {\n\t\treturn contents;\n\t}\n\n\tconst arrayBuffer = new ArrayBuffer(getNewContentsLength(length));\n\tnew Uint8Array(arrayBuffer).set(new Uint8Array(contents), 0);\n\treturn arrayBuffer;\n};\n\n// With `ArrayBuffer.resize()`, `contents` size matches exactly the size of\n// the stream data. It does not include extraneous zeroes to trim at the end.\n// The underlying `ArrayBuffer` does allocate a number of bytes that is a power\n// of 2, but those bytes are only visible after calling `ArrayBuffer.resize()`.\nconst resizeArrayBuffer = (contents, length) => {\n\tif (length <= contents.maxByteLength) {\n\t\tcontents.resize(length);\n\t\treturn contents;\n\t}\n\n\tconst arrayBuffer = new ArrayBuffer(length, {maxByteLength: getNewContentsLength(length)});\n\tnew Uint8Array(arrayBuffer).set(new Uint8Array(contents), 0);\n\treturn arrayBuffer;\n};\n\n// Retrieve the closest `length` that is both >= and a power of 2\nconst getNewContentsLength = length => SCALE_FACTOR ** Math.ceil(Math.log(length) / Math.log(SCALE_FACTOR));\n\nconst SCALE_FACTOR = 2;\n\nconst finalizeArrayBuffer = ({contents, length}) => hasArrayBufferResize() ? contents : contents.slice(0, length);\n\n// `ArrayBuffer.slice()` is slow. When `ArrayBuffer.resize()` is available\n// (Node >=20.0.0, Safari >=16.4 and Chrome), we can use it instead.\n// eslint-disable-next-line no-warning-comments\n// TODO: remove after dropping support for Node 20.\n// eslint-disable-next-line no-warning-comments\n// TODO: use `ArrayBuffer.transferToFixedLength()` instead once it is available\nconst hasArrayBufferResize = () => 'resize' in ArrayBuffer.prototype;\n\nconst arrayBufferMethods = {\n\tinit: initArrayBuffer,\n\tconvertChunk: {\n\t\tstring: useTextEncoder,\n\t\tbuffer: useUint8Array,\n\t\tarrayBuffer: useUint8Array,\n\t\tdataView: useUint8ArrayWithOffset,\n\t\ttypedArray: useUint8ArrayWithOffset,\n\t\tothers: throwObjectStream,\n\t},\n\tgetSize: getLengthProperty,\n\ttruncateChunk: truncateArrayBufferChunk,\n\taddChunk: addArrayBufferChunk,\n\tgetFinalChunk: noop,\n\tfinalize: finalizeArrayBuffer,\n};\n","import {getStreamAsArrayBuffer} from './array-buffer.js';\n\nexport async function getStreamAsBuffer(stream, options) {\n\tif (!('Buffer' in globalThis)) {\n\t\tthrow new Error('getStreamAsBuffer() is only supported in Node.js');\n\t}\n\n\ttry {\n\t\treturn arrayBufferToNodeBuffer(await getStreamAsArrayBuffer(stream, options));\n\t} catch (error) {\n\t\tif (error.bufferedData !== undefined) {\n\t\t\terror.bufferedData = arrayBufferToNodeBuffer(error.bufferedData);\n\t\t}\n\n\t\tthrow error;\n\t}\n}\n\nconst arrayBufferToNodeBuffer = arrayBuffer => globalThis.Buffer.from(arrayBuffer);\n","import type Oas from 'oas';\n\nfunction stripTrailingSlash(url: string) {\n if (url[url.length - 1] === '/') {\n return url.slice(0, -1);\n }\n\n return url;\n}\n\n/**\n * With an SDK server config and an instance of OAS we should extract and prepare the server and\n * any server variables to be supplied to `@readme/oas-to-har`.\n *\n */\nexport default function prepareServer(spec: Oas, url: string, variables: Record<string, number | string> = {}) {\n let serverIdx: number | undefined;\n const sanitizedUrl = stripTrailingSlash(url);\n (spec.api.servers || []).forEach((server, i) => {\n if (server.url === sanitizedUrl) {\n serverIdx = i;\n }\n });\n\n // If we were able to find the passed in server in the OAS servers, we should use that! If we\n // couldn't and server variables were passed in we should try our best to handle that, otherwise\n // we should ignore the passed in server and use whever the default from the OAS is.\n if (serverIdx !== undefined) {\n return {\n selected: serverIdx,\n variables,\n };\n } else if (Object.keys(variables).length) {\n // @todo we should run `oas.replaceUrl(url)` and pass that unto `@readme/oas-to-har`\n } else {\n const server = spec.splitVariables(url);\n if (server) {\n return {\n selected: server.selected,\n variables: server.variables,\n };\n }\n\n // @todo we should pass `url` directly into `@readme/oas-to-har` as the base URL\n }\n\n return false;\n}\n"]}
|