From b2335062d61468d791f0719e7257752db84ced44 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Fri, 2 Aug 2024 11:57:46 +0300 Subject: [PATCH] fix: Generate CloudQuery Go API Client from `spec.json` (#210) This PR was created by a scheduled workflow to generate the CloudQuery Go API Client from `spec.json` --- models.gen.go | 1 + spec.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/models.gen.go b/models.gen.go index 273b3d8..ee33e24 100644 --- a/models.gen.go +++ b/models.gen.go @@ -98,6 +98,7 @@ const ( const ( PluginKindDestination PluginKind = "destination" PluginKindSource PluginKind = "source" + PluginKindTransformer PluginKind = "transformer" ) // Defines values for PluginNotificationRequestStatus. diff --git a/spec.json b/spec.json index c8a2949..f517b89 100644 --- a/spec.json +++ b/spec.json @@ -6359,7 +6359,7 @@ }, "PluginKind" : { "description" : "The kind of plugin, ie. source or destination.", - "enum" : [ "source", "destination" ], + "enum" : [ "source", "destination", "transformer" ], "example" : "source", "type" : "string" },