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); return await getSecretValueViaHatterCli(key);
} }
interface StsToken { export interface StsToken {
mode: string; mode: string;
expiration: string; expiration: string;
access_key_id: string; access_key_id: string;
@@ -1404,7 +1404,7 @@ interface StsToken {
sts_token: string; sts_token: string;
} }
interface AssumeRoleByKeyResponse { export interface AssumeRoleByKeyResponse {
status: number; status: number;
message: string; message: string;
data: StsToken; data: StsToken;