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