chore: Update dist

This commit is contained in:
GitHub Actions
2025-07-31 20:13:42 +00:00
parent 5fd1747fbc
commit 0ed0e57cf8
2 changed files with 16 additions and 6 deletions

11
dist/cleanup/index.js generated vendored
View File

@@ -16401,7 +16401,7 @@ var splitHeader = (value) => {
};
// src/submodules/serde/value/NumericValue.ts
var NumericValue = class {
var NumericValue = class _NumericValue {
constructor(string, type) {
this.string = string;
this.type = type;
@@ -16428,15 +16428,19 @@ var NumericValue = class {
toString() {
return this.string;
}
[Symbol.hasInstance](object) {
static [Symbol.hasInstance](object) {
if (!object || typeof object !== "object") {
return false;
}
const _nv = object;
const prototypeMatch = _NumericValue.prototype.isPrototypeOf(object.constructor?.prototype);
if (prototypeMatch) {
return prototypeMatch;
}
if (typeof _nv.string === "string" && typeof _nv.type === "string" && _nv.constructor?.name === "NumericValue") {
return true;
}
return false;
return prototypeMatch;
}
};
function nv(input) {
@@ -17535,6 +17539,7 @@ var getEndpointFromInstructions = /* @__PURE__ */ __name(async (commandInput, in
}
if (endpointFromConfig) {
clientConfig.endpoint = () => Promise.resolve(toEndpointV1(endpointFromConfig));
clientConfig.isCustomEndpoint = true;
}
}
const endpointParams = await resolveParams(commandInput, instructionsSupplier, clientConfig);