mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-03-12 18:07:10 -04:00
chore: Update dist
This commit is contained in:
11
dist/cleanup/index.js
generated
vendored
11
dist/cleanup/index.js
generated
vendored
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user