From b54debae7c26059edfe2850a3a1761a417c3c6e5 Mon Sep 17 00:00:00 2001 From: Misato Date: Sat, 13 Sep 2025 14:58:49 +0900 Subject: [PATCH 1/2] Add types for auth connection --- packages/types/tailor.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/types/tailor.d.ts b/packages/types/tailor.d.ts index 3c7ba8a..3b3ffd8 100644 --- a/packages/types/tailor.d.ts +++ b/packages/types/tailor.d.ts @@ -53,6 +53,13 @@ declare namespace tailor.secretmanager { ): Promise; } +declare namespace tailor.authconnection { + /** + * getConnectionToken returns the access token for an auth connection + */ + function getConnectionToken(connectionName: string): Promise; +} + declare namespace tailor.iconv { /** * Convert string from one encoding to another From 982ba6b633d40bcc1c6da6cc037647be1b237393 Mon Sep 17 00:00:00 2001 From: Misato Date: Thu, 18 Sep 2025 19:39:00 +0900 Subject: [PATCH 2/2] update version --- packages/types/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/package.json b/packages/types/package.json index 1b06646..76d820a 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@tailor-platform/function-types", - "version": "0.4.0", + "version": "0.5.0", "description": "TypeScript types for Tailor Platform Function service", "repository": { "type": "git",