mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-04 06:15:07 +09:00
chore: Update dist
This commit is contained in:
+8
-3
@@ -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);
|
||||||
|
|||||||
+8
-3
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user