Skip to content

Commit

Permalink
feat(*): update generated code after dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
trystan2k committed Feb 18, 2025
1 parent c5d8579 commit 36f7cc1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36818,7 +36818,7 @@ __nccwpck_require__.d(__webpack_exports__, {
A: () => (/* binding */ src)
});

;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/errors/HTTPError.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/errors/HTTPError.js
class HTTPError extends Error {
response;
request;
Expand All @@ -36836,7 +36836,7 @@ class HTTPError extends Error {
}
}
//# sourceMappingURL=HTTPError.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/errors/TimeoutError.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/errors/TimeoutError.js
class TimeoutError extends Error {
request;
constructor(request) {
Expand All @@ -36846,11 +36846,11 @@ class TimeoutError extends Error {
}
}
//# sourceMappingURL=TimeoutError.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/utils/is.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/utils/is.js
// eslint-disable-next-line @typescript-eslint/ban-types
const isObject = (value) => value !== null && typeof value === 'object';
//# sourceMappingURL=is.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/utils/merge.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/utils/merge.js

const validateAndMerge = (...sources) => {
for (const source of sources) {
Expand Down Expand Up @@ -36917,7 +36917,7 @@ const deepMerge = (...sources) => {
return returnValue;
};
//# sourceMappingURL=merge.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/core/constants.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/core/constants.js
const supportsRequestStreams = (() => {
let duplexAccessed = false;
let hasContentType = false;
Expand Down Expand Up @@ -36993,7 +36993,7 @@ const requestOptionsRegistry = {
priority: true,
};
//# sourceMappingURL=constants.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/utils/normalize.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/utils/normalize.js

const normalizeRequestMethod = (input) => requestMethods.includes(input) ? input.toUpperCase() : input;
const retryMethods = ['get', 'put', 'head', 'delete', 'options', 'trace'];
Expand Down Expand Up @@ -37027,7 +37027,7 @@ const normalizeRetryOptions = (retry = {}) => {
};
};
//# sourceMappingURL=normalize.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/utils/timeout.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/utils/timeout.js

// `Promise.race()` workaround (#91)
async function timeout(request, init, abortController, options) {
Expand All @@ -37048,7 +37048,7 @@ async function timeout(request, init, abortController, options) {
});
}
//# sourceMappingURL=timeout.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/utils/delay.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/utils/delay.js
// https://github.com/sindresorhus/delay/tree/ab98ae8dfcb38e1593286c94d934e70d14a4e111
async function delay(ms, { signal }) {
return new Promise((resolve, reject) => {
Expand All @@ -37067,7 +37067,7 @@ async function delay(ms, { signal }) {
});
}
//# sourceMappingURL=delay.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/utils/options.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/utils/options.js

const findUnknownOptions = (request, options) => {
const unknownOptions = {};
Expand All @@ -37079,7 +37079,7 @@ const findUnknownOptions = (request, options) => {
return unknownOptions;
};
//# sourceMappingURL=options.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/core/Ky.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/core/Ky.js



Expand Down Expand Up @@ -37169,7 +37169,7 @@ class Ky {
beforeError: [],
afterResponse: [],
}, options.hooks),
method: normalizeRequestMethod(options.method ?? this._input.method),
method: normalizeRequestMethod(options.method ?? this._input.method ?? 'GET'),
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
prefixUrl: String(options.prefixUrl || ''),
retry: normalizeRetryOptions(options.retry),
Expand Down Expand Up @@ -37355,7 +37355,7 @@ class Ky {
}
}
//# sourceMappingURL=Ky.js.map
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.4/node_modules/ky/distribution/index.js
;// CONCATENATED MODULE: ./node_modules/.pnpm/ky@1.7.5/node_modules/ky/distribution/index.js
/*! MIT License © Sindre Sorhus */


Expand Down

0 comments on commit 36f7cc1

Please sign in to comment.