chore: Update dist

This commit is contained in:
GitHub Actions
2025-09-09 03:05:17 +00:00
parent 44e57d426c
commit 3c23363139
2 changed files with 44 additions and 46 deletions

45
dist/index.js generated vendored
View File

@@ -19886,14 +19886,14 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
var index_exports = {};
__export(index_exports, {
DEFAULT_REQUEST_TIMEOUT: () => DEFAULT_REQUEST_TIMEOUT,
NodeHttp2Handler: () => NodeHttp2Handler,
NodeHttpHandler: () => NodeHttpHandler,
streamCollector: () => streamCollector
});
module.exports = __toCommonJS(src_exports);
module.exports = __toCommonJS(index_exports);
// src/node-http-handler.ts
var import_protocol_http = __nccwpck_require__(2356);
@@ -19916,8 +19916,8 @@ var getTransformedHeaders = /* @__PURE__ */ __name((headers) => {
// src/timing.ts
var timing = {
setTimeout: (cb, ms) => setTimeout(cb, ms),
clearTimeout: (timeoutId) => clearTimeout(timeoutId)
setTimeout: /* @__PURE__ */ __name((cb, ms) => setTimeout(cb, ms), "setTimeout"),
clearTimeout: /* @__PURE__ */ __name((timeoutId) => clearTimeout(timeoutId), "clearTimeout")
};
// src/set-connection-timeout.ts
@@ -20856,8 +20856,8 @@ var __copyProps = (to, from, except, desc) => {
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
var index_exports = {};
__export(index_exports, {
Field: () => Field,
Fields: () => Fields,
HttpRequest: () => HttpRequest,
@@ -20867,7 +20867,7 @@ __export(src_exports, {
isValidHostname: () => isValidHostname,
resolveHttpHandlerRuntimeConfig: () => resolveHttpHandlerRuntimeConfig
});
module.exports = __toCommonJS(src_exports);
module.exports = __toCommonJS(index_exports);
// src/extensions/httpExtensionConfiguration.ts
var getHttpHandlerExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
@@ -21073,8 +21073,7 @@ var HttpResponse = class {
this.body = options.body;
}
static isInstance(response) {
if (!response)
return false;
if (!response) return false;
const resp = response;
return typeof resp.statusCode === "number" && typeof resp.headers === "object";
}
@@ -21117,11 +21116,11 @@ var __copyProps = (to, from, except, desc) => {
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
var index_exports = {};
__export(index_exports, {
buildQueryString: () => buildQueryString
});
module.exports = __toCommonJS(src_exports);
module.exports = __toCommonJS(index_exports);
var import_util_uri_escape = __nccwpck_require__(146);
function buildQueryString(query) {
const parts = [];
@@ -23012,8 +23011,8 @@ var __copyProps = (to, from, except, desc) => {
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
var index_exports = {};
__export(index_exports, {
AlgorithmId: () => AlgorithmId,
EndpointURLScheme: () => EndpointURLScheme,
FieldPosition: () => FieldPosition,
@@ -23025,7 +23024,7 @@ __export(src_exports, {
getDefaultClientConfiguration: () => getDefaultClientConfiguration,
resolveDefaultRuntimeConfig: () => resolveDefaultRuntimeConfig
});
module.exports = __toCommonJS(src_exports);
module.exports = __toCommonJS(index_exports);
// src/auth/auth.ts
var HttpAuthLocation = /* @__PURE__ */ ((HttpAuthLocation2) => {
@@ -23061,14 +23060,14 @@ var getChecksumConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
const checksumAlgorithms = [];
if (runtimeConfig.sha256 !== void 0) {
checksumAlgorithms.push({
algorithmId: () => "sha256" /* SHA256 */,
checksumConstructor: () => runtimeConfig.sha256
algorithmId: /* @__PURE__ */ __name(() => "sha256" /* SHA256 */, "algorithmId"),
checksumConstructor: /* @__PURE__ */ __name(() => runtimeConfig.sha256, "checksumConstructor")
});
}
if (runtimeConfig.md5 != void 0) {
checksumAlgorithms.push({
algorithmId: () => "md5" /* MD5 */,
checksumConstructor: () => runtimeConfig.md5
algorithmId: /* @__PURE__ */ __name(() => "md5" /* MD5 */, "algorithmId"),
checksumConstructor: /* @__PURE__ */ __name(() => runtimeConfig.md5, "checksumConstructor")
});
}
return {
@@ -25463,12 +25462,12 @@ var __copyProps = (to, from, except, desc) => {
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
var index_exports = {};
__export(index_exports, {
escapeUri: () => escapeUri,
escapeUriPath: () => escapeUriPath
});
module.exports = __toCommonJS(src_exports);
module.exports = __toCommonJS(index_exports);
// src/escape-uri.ts
var escapeUri = /* @__PURE__ */ __name((uri) => (