update libraries/deno-commons-mod.ts

This commit is contained in:
2026-03-14 22:01:52 +08:00
parent b51baff678
commit 327cb02e55

View File

@@ -1396,7 +1396,7 @@ export async function getSecretValue(
return await getSecretValueViaHatterCli(key);
}
interface StsToken {
export interface StsToken {
mode: string;
expiration: string;
access_key_id: string;
@@ -1404,7 +1404,7 @@ interface StsToken {
sts_token: string;
}
interface AssumeRoleByKeyResponse {
export interface AssumeRoleByKeyResponse {
status: number;
message: string;
data: StsToken;