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