From 297648404818dea6e9ac62c247285a1ab6369bd1 Mon Sep 17 00:00:00 2001 From: Steven Nguyen <1477010+stnguyen90@users.noreply.github.com> Date: Fri, 20 Oct 2023 10:20:31 -0700 Subject: [PATCH] Fix node sdk typing for Role.label() --- templates/node/index.d.ts.twig | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/node/index.d.ts.twig b/templates/node/index.d.ts.twig index adae9cf5d..721eae574 100644 --- a/templates/node/index.d.ts.twig +++ b/templates/node/index.d.ts.twig @@ -208,6 +208,7 @@ declare module "{{ language.params.npmPackage|caseDash }}" { static guests(): string; static team(id: string, role?: string): string; static member(id: string): string; + static label(name: string): string; } {% for service in spec.services %}