From ab411df2f4ad17e9ebc56540a76c3f3c408b0b60 Mon Sep 17 00:00:00 2001 From: Assaf Admi Date: Wed, 27 Nov 2024 16:24:07 +0200 Subject: [PATCH] Go: apikeys re-exports (#90) --- go/apikeys-client.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/go/apikeys-client.go b/go/apikeys-client.go index 42ba7a13..06395c79 100644 --- a/go/apikeys-client.go +++ b/go/apikeys-client.go @@ -23,6 +23,9 @@ import ( // CreateAPIKeyRequest is a request to create an API key. type CreateAPIKeyRequest = apikeys.CreateApiKeyRequest +// CreateAPIKeyResponse is a response to the API keys request. +type CreateAPIKeyResponse = apikeys.CreateApiKeyResponse + // GetAPIKeyRequest is a request to get an API key. type GetAPIKeyRequest = apikeys.GetApiKeyRequest @@ -32,9 +35,15 @@ type GetAPIKeyResponse = apikeys.GetApiKeyResponse // UpdateAPIKeyRequest is a request to update an API key. type UpdateAPIKeyRequest = apikeys.UpdateApiKeyRequest +// UpdateAPIKeyResponse is a response to the API keys request. +type UpdateAPIKeyResponse = apikeys.UpdateApiKeyResponse + // DeleteAPIKeyRequest is a request to delete an API key. type DeleteAPIKeyRequest = apikeys.DeleteApiKeyRequest +// DeleteAPIKeyResponse is a response to the API keys request. +type DeleteAPIKeyResponse = apikeys.DeleteApiKeyResponse + // APIKeyPermissions is a set of permissions for an API key. type APIKeyPermissions = apikeys.CreateApiKeyRequest_KeyPermissions