From fac56355e3177f776e8d8c10297d9445f37bc853 Mon Sep 17 00:00:00 2001 From: Harsha Reddy Date: Wed, 14 May 2025 22:43:22 -0400 Subject: [PATCH] feat: Add appID to be unmarshalled in key file --- pkg/client/key.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/client/key.go b/pkg/client/key.go index 7f38311..508c841 100644 --- a/pkg/client/key.go +++ b/pkg/client/key.go @@ -21,6 +21,7 @@ type KeyFile struct { // application ClientID string `json:"clientId"` + AppID string `json:"appId"` } func ConfigFromKeyFile(path string) (*KeyFile, error) {