From 8ec0419abfca19fd0371228555758ee1ceaa71dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Jure=C4=8Dko?= Date: Thu, 5 Sep 2024 10:53:03 +0200 Subject: [PATCH] build: Re-generate code --- internal/pkg/platform/model/branch_query.go | 21 ++++++++++--------- .../platform/model/configuration_create.go | 2 +- .../pkg/platform/model/configuration_query.go | 21 ++++++++++--------- .../platform/model/configuration_update.go | 4 ++-- .../platform/model/configurationrow_create.go | 2 +- .../platform/model/configurationrow_query.go | 21 ++++++++++--------- .../platform/model/configurationrow_update.go | 4 ++-- internal/pkg/platform/model/ent.go | 2 +- .../pkg/platform/model/runtime/runtime.go | 4 ++-- .../gen/http/stream/server/encode_decode.go | 2 +- .../api/gen/http/stream/server/paths.go | 2 +- .../api/gen/http/stream/server/server.go | 2 +- .../api/gen/http/stream/server/types.go | 2 +- .../service/stream/api/gen/stream/client.go | 2 +- .../stream/api/gen/stream/endpoints.go | 2 +- .../service/stream/api/gen/stream/service.go | 2 +- .../http/templates/server/encode_decode.go | 2 +- .../api/gen/http/templates/server/paths.go | 2 +- .../api/gen/http/templates/server/server.go | 2 +- .../api/gen/http/templates/server/types.go | 2 +- .../templates/api/gen/templates/client.go | 2 +- .../templates/api/gen/templates/endpoints.go | 2 +- .../templates/api/gen/templates/service.go | 2 +- 23 files changed, 56 insertions(+), 53 deletions(-) diff --git a/internal/pkg/platform/model/branch_query.go b/internal/pkg/platform/model/branch_query.go index 47390fccbd..17aa4db913 100644 --- a/internal/pkg/platform/model/branch_query.go +++ b/internal/pkg/platform/model/branch_query.go @@ -8,6 +8,7 @@ import ( "fmt" "math" + "entgo.io/ent" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" @@ -86,7 +87,7 @@ func (bq *BranchQuery) QueryConfigurations() *ConfigurationQuery { // First returns the first Branch entity from the query. // Returns a *NotFoundError when no Branch was found. func (bq *BranchQuery) First(ctx context.Context) (*Branch, error) { - nodes, err := bq.Limit(1).All(setContextOp(ctx, bq.ctx, "First")) + nodes, err := bq.Limit(1).All(setContextOp(ctx, bq.ctx, ent.OpQueryFirst)) if err != nil { return nil, err } @@ -109,7 +110,7 @@ func (bq *BranchQuery) FirstX(ctx context.Context) *Branch { // Returns a *NotFoundError when no Branch ID was found. func (bq *BranchQuery) FirstID(ctx context.Context) (id key.BranchKey, err error) { var ids []key.BranchKey - if ids, err = bq.Limit(1).IDs(setContextOp(ctx, bq.ctx, "FirstID")); err != nil { + if ids, err = bq.Limit(1).IDs(setContextOp(ctx, bq.ctx, ent.OpQueryFirstID)); err != nil { return } if len(ids) == 0 { @@ -132,7 +133,7 @@ func (bq *BranchQuery) FirstIDX(ctx context.Context) key.BranchKey { // Returns a *NotSingularError when more than one Branch entity is found. // Returns a *NotFoundError when no Branch entities are found. func (bq *BranchQuery) Only(ctx context.Context) (*Branch, error) { - nodes, err := bq.Limit(2).All(setContextOp(ctx, bq.ctx, "Only")) + nodes, err := bq.Limit(2).All(setContextOp(ctx, bq.ctx, ent.OpQueryOnly)) if err != nil { return nil, err } @@ -160,7 +161,7 @@ func (bq *BranchQuery) OnlyX(ctx context.Context) *Branch { // Returns a *NotFoundError when no entities are found. func (bq *BranchQuery) OnlyID(ctx context.Context) (id key.BranchKey, err error) { var ids []key.BranchKey - if ids, err = bq.Limit(2).IDs(setContextOp(ctx, bq.ctx, "OnlyID")); err != nil { + if ids, err = bq.Limit(2).IDs(setContextOp(ctx, bq.ctx, ent.OpQueryOnlyID)); err != nil { return } switch len(ids) { @@ -185,7 +186,7 @@ func (bq *BranchQuery) OnlyIDX(ctx context.Context) key.BranchKey { // All executes the query and returns a list of Branches. func (bq *BranchQuery) All(ctx context.Context) ([]*Branch, error) { - ctx = setContextOp(ctx, bq.ctx, "All") + ctx = setContextOp(ctx, bq.ctx, ent.OpQueryAll) if err := bq.prepareQuery(ctx); err != nil { return nil, err } @@ -207,7 +208,7 @@ func (bq *BranchQuery) IDs(ctx context.Context) (ids []key.BranchKey, err error) if bq.ctx.Unique == nil && bq.path != nil { bq.Unique(true) } - ctx = setContextOp(ctx, bq.ctx, "IDs") + ctx = setContextOp(ctx, bq.ctx, ent.OpQueryIDs) if err = bq.Select(branch.FieldID).Scan(ctx, &ids); err != nil { return nil, err } @@ -225,7 +226,7 @@ func (bq *BranchQuery) IDsX(ctx context.Context) []key.BranchKey { // Count returns the count of the given query. func (bq *BranchQuery) Count(ctx context.Context) (int, error) { - ctx = setContextOp(ctx, bq.ctx, "Count") + ctx = setContextOp(ctx, bq.ctx, ent.OpQueryCount) if err := bq.prepareQuery(ctx); err != nil { return 0, err } @@ -243,7 +244,7 @@ func (bq *BranchQuery) CountX(ctx context.Context) int { // Exist returns true if the query has elements in the graph. func (bq *BranchQuery) Exist(ctx context.Context) (bool, error) { - ctx = setContextOp(ctx, bq.ctx, "Exist") + ctx = setContextOp(ctx, bq.ctx, ent.OpQueryExist) switch _, err := bq.FirstID(ctx); { case IsNotFound(err): return false, nil @@ -530,7 +531,7 @@ func (bgb *BranchGroupBy) Aggregate(fns ...AggregateFunc) *BranchGroupBy { // Scan applies the selector query and scans the result into the given value. func (bgb *BranchGroupBy) Scan(ctx context.Context, v any) error { - ctx = setContextOp(ctx, bgb.build.ctx, "GroupBy") + ctx = setContextOp(ctx, bgb.build.ctx, ent.OpQueryGroupBy) if err := bgb.build.prepareQuery(ctx); err != nil { return err } @@ -578,7 +579,7 @@ func (bs *BranchSelect) Aggregate(fns ...AggregateFunc) *BranchSelect { // Scan applies the selector query and scans the result into the given value. func (bs *BranchSelect) Scan(ctx context.Context, v any) error { - ctx = setContextOp(ctx, bs.ctx, "Select") + ctx = setContextOp(ctx, bs.ctx, ent.OpQuerySelect) if err := bs.prepareQuery(ctx); err != nil { return err } diff --git a/internal/pkg/platform/model/configuration_create.go b/internal/pkg/platform/model/configuration_create.go index 009ace2ace..892de9ad76 100644 --- a/internal/pkg/platform/model/configuration_create.go +++ b/internal/pkg/platform/model/configuration_create.go @@ -179,7 +179,7 @@ func (cc *ConfigurationCreate) check() error { return &ValidationError{Name: "id", err: fmt.Errorf(`model: validator failed for field "Configuration.id": %w`, err)} } } - if _, ok := cc.mutation.ParentID(); !ok { + if len(cc.mutation.ParentIDs()) == 0 { return &ValidationError{Name: "parent", err: errors.New(`model: missing required edge "Configuration.parent"`)} } return nil diff --git a/internal/pkg/platform/model/configuration_query.go b/internal/pkg/platform/model/configuration_query.go index 105be4e61f..46359b9c12 100644 --- a/internal/pkg/platform/model/configuration_query.go +++ b/internal/pkg/platform/model/configuration_query.go @@ -7,6 +7,7 @@ import ( "fmt" "math" + "entgo.io/ent" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" @@ -86,7 +87,7 @@ func (cq *ConfigurationQuery) QueryParent() *BranchQuery { // First returns the first Configuration entity from the query. // Returns a *NotFoundError when no Configuration was found. func (cq *ConfigurationQuery) First(ctx context.Context) (*Configuration, error) { - nodes, err := cq.Limit(1).All(setContextOp(ctx, cq.ctx, "First")) + nodes, err := cq.Limit(1).All(setContextOp(ctx, cq.ctx, ent.OpQueryFirst)) if err != nil { return nil, err } @@ -109,7 +110,7 @@ func (cq *ConfigurationQuery) FirstX(ctx context.Context) *Configuration { // Returns a *NotFoundError when no Configuration ID was found. func (cq *ConfigurationQuery) FirstID(ctx context.Context) (id key.ConfigurationKey, err error) { var ids []key.ConfigurationKey - if ids, err = cq.Limit(1).IDs(setContextOp(ctx, cq.ctx, "FirstID")); err != nil { + if ids, err = cq.Limit(1).IDs(setContextOp(ctx, cq.ctx, ent.OpQueryFirstID)); err != nil { return } if len(ids) == 0 { @@ -132,7 +133,7 @@ func (cq *ConfigurationQuery) FirstIDX(ctx context.Context) key.ConfigurationKey // Returns a *NotSingularError when more than one Configuration entity is found. // Returns a *NotFoundError when no Configuration entities are found. func (cq *ConfigurationQuery) Only(ctx context.Context) (*Configuration, error) { - nodes, err := cq.Limit(2).All(setContextOp(ctx, cq.ctx, "Only")) + nodes, err := cq.Limit(2).All(setContextOp(ctx, cq.ctx, ent.OpQueryOnly)) if err != nil { return nil, err } @@ -160,7 +161,7 @@ func (cq *ConfigurationQuery) OnlyX(ctx context.Context) *Configuration { // Returns a *NotFoundError when no entities are found. func (cq *ConfigurationQuery) OnlyID(ctx context.Context) (id key.ConfigurationKey, err error) { var ids []key.ConfigurationKey - if ids, err = cq.Limit(2).IDs(setContextOp(ctx, cq.ctx, "OnlyID")); err != nil { + if ids, err = cq.Limit(2).IDs(setContextOp(ctx, cq.ctx, ent.OpQueryOnlyID)); err != nil { return } switch len(ids) { @@ -185,7 +186,7 @@ func (cq *ConfigurationQuery) OnlyIDX(ctx context.Context) key.ConfigurationKey // All executes the query and returns a list of Configurations. func (cq *ConfigurationQuery) All(ctx context.Context) ([]*Configuration, error) { - ctx = setContextOp(ctx, cq.ctx, "All") + ctx = setContextOp(ctx, cq.ctx, ent.OpQueryAll) if err := cq.prepareQuery(ctx); err != nil { return nil, err } @@ -207,7 +208,7 @@ func (cq *ConfigurationQuery) IDs(ctx context.Context) (ids []key.ConfigurationK if cq.ctx.Unique == nil && cq.path != nil { cq.Unique(true) } - ctx = setContextOp(ctx, cq.ctx, "IDs") + ctx = setContextOp(ctx, cq.ctx, ent.OpQueryIDs) if err = cq.Select(configuration.FieldID).Scan(ctx, &ids); err != nil { return nil, err } @@ -225,7 +226,7 @@ func (cq *ConfigurationQuery) IDsX(ctx context.Context) []key.ConfigurationKey { // Count returns the count of the given query. func (cq *ConfigurationQuery) Count(ctx context.Context) (int, error) { - ctx = setContextOp(ctx, cq.ctx, "Count") + ctx = setContextOp(ctx, cq.ctx, ent.OpQueryCount) if err := cq.prepareQuery(ctx); err != nil { return 0, err } @@ -243,7 +244,7 @@ func (cq *ConfigurationQuery) CountX(ctx context.Context) int { // Exist returns true if the query has elements in the graph. func (cq *ConfigurationQuery) Exist(ctx context.Context) (bool, error) { - ctx = setContextOp(ctx, cq.ctx, "Exist") + ctx = setContextOp(ctx, cq.ctx, ent.OpQueryExist) switch _, err := cq.FirstID(ctx); { case IsNotFound(err): return false, nil @@ -537,7 +538,7 @@ func (cgb *ConfigurationGroupBy) Aggregate(fns ...AggregateFunc) *ConfigurationG // Scan applies the selector query and scans the result into the given value. func (cgb *ConfigurationGroupBy) Scan(ctx context.Context, v any) error { - ctx = setContextOp(ctx, cgb.build.ctx, "GroupBy") + ctx = setContextOp(ctx, cgb.build.ctx, ent.OpQueryGroupBy) if err := cgb.build.prepareQuery(ctx); err != nil { return err } @@ -585,7 +586,7 @@ func (cs *ConfigurationSelect) Aggregate(fns ...AggregateFunc) *ConfigurationSel // Scan applies the selector query and scans the result into the given value. func (cs *ConfigurationSelect) Scan(ctx context.Context, v any) error { - ctx = setContextOp(ctx, cs.ctx, "Select") + ctx = setContextOp(ctx, cs.ctx, ent.OpQuerySelect) if err := cs.prepareQuery(ctx); err != nil { return err } diff --git a/internal/pkg/platform/model/configuration_update.go b/internal/pkg/platform/model/configuration_update.go index 02d85f76d2..ef3ba3b0b2 100644 --- a/internal/pkg/platform/model/configuration_update.go +++ b/internal/pkg/platform/model/configuration_update.go @@ -115,7 +115,7 @@ func (cu *ConfigurationUpdate) check() error { return &ValidationError{Name: "name", err: fmt.Errorf(`model: validator failed for field "Configuration.name": %w`, err)} } } - if _, ok := cu.mutation.ParentID(); cu.mutation.ParentCleared() && !ok { + if cu.mutation.ParentCleared() && len(cu.mutation.ParentIDs()) > 0 { return errors.New(`model: clearing a required unique edge "Configuration.parent"`) } return nil @@ -265,7 +265,7 @@ func (cuo *ConfigurationUpdateOne) check() error { return &ValidationError{Name: "name", err: fmt.Errorf(`model: validator failed for field "Configuration.name": %w`, err)} } } - if _, ok := cuo.mutation.ParentID(); cuo.mutation.ParentCleared() && !ok { + if cuo.mutation.ParentCleared() && len(cuo.mutation.ParentIDs()) > 0 { return errors.New(`model: clearing a required unique edge "Configuration.parent"`) } return nil diff --git a/internal/pkg/platform/model/configurationrow_create.go b/internal/pkg/platform/model/configurationrow_create.go index 042999e72a..551a7864dc 100644 --- a/internal/pkg/platform/model/configurationrow_create.go +++ b/internal/pkg/platform/model/configurationrow_create.go @@ -193,7 +193,7 @@ func (crc *ConfigurationRowCreate) check() error { return &ValidationError{Name: "id", err: fmt.Errorf(`model: validator failed for field "ConfigurationRow.id": %w`, err)} } } - if _, ok := crc.mutation.ParentID(); !ok { + if len(crc.mutation.ParentIDs()) == 0 { return &ValidationError{Name: "parent", err: errors.New(`model: missing required edge "ConfigurationRow.parent"`)} } return nil diff --git a/internal/pkg/platform/model/configurationrow_query.go b/internal/pkg/platform/model/configurationrow_query.go index 66006ce890..0faa664bb1 100644 --- a/internal/pkg/platform/model/configurationrow_query.go +++ b/internal/pkg/platform/model/configurationrow_query.go @@ -7,6 +7,7 @@ import ( "fmt" "math" + "entgo.io/ent" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" @@ -86,7 +87,7 @@ func (crq *ConfigurationRowQuery) QueryParent() *ConfigurationQuery { // First returns the first ConfigurationRow entity from the query. // Returns a *NotFoundError when no ConfigurationRow was found. func (crq *ConfigurationRowQuery) First(ctx context.Context) (*ConfigurationRow, error) { - nodes, err := crq.Limit(1).All(setContextOp(ctx, crq.ctx, "First")) + nodes, err := crq.Limit(1).All(setContextOp(ctx, crq.ctx, ent.OpQueryFirst)) if err != nil { return nil, err } @@ -109,7 +110,7 @@ func (crq *ConfigurationRowQuery) FirstX(ctx context.Context) *ConfigurationRow // Returns a *NotFoundError when no ConfigurationRow ID was found. func (crq *ConfigurationRowQuery) FirstID(ctx context.Context) (id key.ConfigurationRowKey, err error) { var ids []key.ConfigurationRowKey - if ids, err = crq.Limit(1).IDs(setContextOp(ctx, crq.ctx, "FirstID")); err != nil { + if ids, err = crq.Limit(1).IDs(setContextOp(ctx, crq.ctx, ent.OpQueryFirstID)); err != nil { return } if len(ids) == 0 { @@ -132,7 +133,7 @@ func (crq *ConfigurationRowQuery) FirstIDX(ctx context.Context) key.Configuratio // Returns a *NotSingularError when more than one ConfigurationRow entity is found. // Returns a *NotFoundError when no ConfigurationRow entities are found. func (crq *ConfigurationRowQuery) Only(ctx context.Context) (*ConfigurationRow, error) { - nodes, err := crq.Limit(2).All(setContextOp(ctx, crq.ctx, "Only")) + nodes, err := crq.Limit(2).All(setContextOp(ctx, crq.ctx, ent.OpQueryOnly)) if err != nil { return nil, err } @@ -160,7 +161,7 @@ func (crq *ConfigurationRowQuery) OnlyX(ctx context.Context) *ConfigurationRow { // Returns a *NotFoundError when no entities are found. func (crq *ConfigurationRowQuery) OnlyID(ctx context.Context) (id key.ConfigurationRowKey, err error) { var ids []key.ConfigurationRowKey - if ids, err = crq.Limit(2).IDs(setContextOp(ctx, crq.ctx, "OnlyID")); err != nil { + if ids, err = crq.Limit(2).IDs(setContextOp(ctx, crq.ctx, ent.OpQueryOnlyID)); err != nil { return } switch len(ids) { @@ -185,7 +186,7 @@ func (crq *ConfigurationRowQuery) OnlyIDX(ctx context.Context) key.Configuration // All executes the query and returns a list of ConfigurationRows. func (crq *ConfigurationRowQuery) All(ctx context.Context) ([]*ConfigurationRow, error) { - ctx = setContextOp(ctx, crq.ctx, "All") + ctx = setContextOp(ctx, crq.ctx, ent.OpQueryAll) if err := crq.prepareQuery(ctx); err != nil { return nil, err } @@ -207,7 +208,7 @@ func (crq *ConfigurationRowQuery) IDs(ctx context.Context) (ids []key.Configurat if crq.ctx.Unique == nil && crq.path != nil { crq.Unique(true) } - ctx = setContextOp(ctx, crq.ctx, "IDs") + ctx = setContextOp(ctx, crq.ctx, ent.OpQueryIDs) if err = crq.Select(configurationrow.FieldID).Scan(ctx, &ids); err != nil { return nil, err } @@ -225,7 +226,7 @@ func (crq *ConfigurationRowQuery) IDsX(ctx context.Context) []key.ConfigurationR // Count returns the count of the given query. func (crq *ConfigurationRowQuery) Count(ctx context.Context) (int, error) { - ctx = setContextOp(ctx, crq.ctx, "Count") + ctx = setContextOp(ctx, crq.ctx, ent.OpQueryCount) if err := crq.prepareQuery(ctx); err != nil { return 0, err } @@ -243,7 +244,7 @@ func (crq *ConfigurationRowQuery) CountX(ctx context.Context) int { // Exist returns true if the query has elements in the graph. func (crq *ConfigurationRowQuery) Exist(ctx context.Context) (bool, error) { - ctx = setContextOp(ctx, crq.ctx, "Exist") + ctx = setContextOp(ctx, crq.ctx, ent.OpQueryExist) switch _, err := crq.FirstID(ctx); { case IsNotFound(err): return false, nil @@ -537,7 +538,7 @@ func (crgb *ConfigurationRowGroupBy) Aggregate(fns ...AggregateFunc) *Configurat // Scan applies the selector query and scans the result into the given value. func (crgb *ConfigurationRowGroupBy) Scan(ctx context.Context, v any) error { - ctx = setContextOp(ctx, crgb.build.ctx, "GroupBy") + ctx = setContextOp(ctx, crgb.build.ctx, ent.OpQueryGroupBy) if err := crgb.build.prepareQuery(ctx); err != nil { return err } @@ -585,7 +586,7 @@ func (crs *ConfigurationRowSelect) Aggregate(fns ...AggregateFunc) *Configuratio // Scan applies the selector query and scans the result into the given value. func (crs *ConfigurationRowSelect) Scan(ctx context.Context, v any) error { - ctx = setContextOp(ctx, crs.ctx, "Select") + ctx = setContextOp(ctx, crs.ctx, ent.OpQuerySelect) if err := crs.prepareQuery(ctx); err != nil { return err } diff --git a/internal/pkg/platform/model/configurationrow_update.go b/internal/pkg/platform/model/configurationrow_update.go index 72ece2af19..fc2e71a011 100644 --- a/internal/pkg/platform/model/configurationrow_update.go +++ b/internal/pkg/platform/model/configurationrow_update.go @@ -115,7 +115,7 @@ func (cru *ConfigurationRowUpdate) check() error { return &ValidationError{Name: "name", err: fmt.Errorf(`model: validator failed for field "ConfigurationRow.name": %w`, err)} } } - if _, ok := cru.mutation.ParentID(); cru.mutation.ParentCleared() && !ok { + if cru.mutation.ParentCleared() && len(cru.mutation.ParentIDs()) > 0 { return errors.New(`model: clearing a required unique edge "ConfigurationRow.parent"`) } return nil @@ -265,7 +265,7 @@ func (cruo *ConfigurationRowUpdateOne) check() error { return &ValidationError{Name: "name", err: fmt.Errorf(`model: validator failed for field "ConfigurationRow.name": %w`, err)} } } - if _, ok := cruo.mutation.ParentID(); cruo.mutation.ParentCleared() && !ok { + if cruo.mutation.ParentCleared() && len(cruo.mutation.ParentIDs()) > 0 { return errors.New(`model: clearing a required unique edge "ConfigurationRow.parent"`) } return nil diff --git a/internal/pkg/platform/model/ent.go b/internal/pkg/platform/model/ent.go index f0d0c77db8..5e796f276b 100644 --- a/internal/pkg/platform/model/ent.go +++ b/internal/pkg/platform/model/ent.go @@ -71,7 +71,7 @@ var ( columnCheck sql.ColumnCheck ) -// columnChecker checks if the column exists in the given table. +// checkColumn checks if the column exists in the given table. func checkColumn(table, column string) error { initCheck.Do(func() { columnCheck = sql.NewColumnCheck(map[string]func(string) bool{ diff --git a/internal/pkg/platform/model/runtime/runtime.go b/internal/pkg/platform/model/runtime/runtime.go index 9e2c60a6ab..9644fd774e 100644 --- a/internal/pkg/platform/model/runtime/runtime.go +++ b/internal/pkg/platform/model/runtime/runtime.go @@ -5,6 +5,6 @@ package runtime // The schema-stitching logic is generated in github.com/keboola/keboola-as-code/internal/pkg/platform/model/runtime.go const ( - Version = "v0.13.1" // Version of ent codegen. - Sum = "h1:uD8QwN1h6SNphdCCzmkMN3feSUzNnVvV/WIkHKMbzOE=" // Sum of ent codegen. + Version = "v0.14.1" // Version of ent codegen. + Sum = "h1:fUERL506Pqr92EPHJqr8EYxbPioflJo6PudkrEA8a/s=" // Sum of ent codegen. ) diff --git a/internal/pkg/service/stream/api/gen/http/stream/server/encode_decode.go b/internal/pkg/service/stream/api/gen/http/stream/server/encode_decode.go index 780bf35aea..39107a5506 100644 --- a/internal/pkg/service/stream/api/gen/http/stream/server/encode_decode.go +++ b/internal/pkg/service/stream/api/gen/http/stream/server/encode_decode.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // stream HTTP server encoders and decoders // diff --git a/internal/pkg/service/stream/api/gen/http/stream/server/paths.go b/internal/pkg/service/stream/api/gen/http/stream/server/paths.go index 0e85a1f4d8..ff0e978fb0 100644 --- a/internal/pkg/service/stream/api/gen/http/stream/server/paths.go +++ b/internal/pkg/service/stream/api/gen/http/stream/server/paths.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // HTTP request path constructors for the stream service. // diff --git a/internal/pkg/service/stream/api/gen/http/stream/server/server.go b/internal/pkg/service/stream/api/gen/http/stream/server/server.go index 6caa5932fe..6348a77d6f 100644 --- a/internal/pkg/service/stream/api/gen/http/stream/server/server.go +++ b/internal/pkg/service/stream/api/gen/http/stream/server/server.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // stream HTTP server // diff --git a/internal/pkg/service/stream/api/gen/http/stream/server/types.go b/internal/pkg/service/stream/api/gen/http/stream/server/types.go index 973c21b93c..64a050e731 100644 --- a/internal/pkg/service/stream/api/gen/http/stream/server/types.go +++ b/internal/pkg/service/stream/api/gen/http/stream/server/types.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // stream HTTP server types // diff --git a/internal/pkg/service/stream/api/gen/stream/client.go b/internal/pkg/service/stream/api/gen/stream/client.go index 219371e2cc..414e4f3a30 100644 --- a/internal/pkg/service/stream/api/gen/stream/client.go +++ b/internal/pkg/service/stream/api/gen/stream/client.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // stream client // diff --git a/internal/pkg/service/stream/api/gen/stream/endpoints.go b/internal/pkg/service/stream/api/gen/stream/endpoints.go index 58b43c412a..e98bacffad 100644 --- a/internal/pkg/service/stream/api/gen/stream/endpoints.go +++ b/internal/pkg/service/stream/api/gen/stream/endpoints.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // stream endpoints // diff --git a/internal/pkg/service/stream/api/gen/stream/service.go b/internal/pkg/service/stream/api/gen/stream/service.go index c771109947..b115bdf81d 100644 --- a/internal/pkg/service/stream/api/gen/stream/service.go +++ b/internal/pkg/service/stream/api/gen/stream/service.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // stream service // diff --git a/internal/pkg/service/templates/api/gen/http/templates/server/encode_decode.go b/internal/pkg/service/templates/api/gen/http/templates/server/encode_decode.go index a14fa174a0..cddac87860 100644 --- a/internal/pkg/service/templates/api/gen/http/templates/server/encode_decode.go +++ b/internal/pkg/service/templates/api/gen/http/templates/server/encode_decode.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // templates HTTP server encoders and decoders // diff --git a/internal/pkg/service/templates/api/gen/http/templates/server/paths.go b/internal/pkg/service/templates/api/gen/http/templates/server/paths.go index 2cb362a061..1f1bdc2563 100644 --- a/internal/pkg/service/templates/api/gen/http/templates/server/paths.go +++ b/internal/pkg/service/templates/api/gen/http/templates/server/paths.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // HTTP request path constructors for the templates service. // diff --git a/internal/pkg/service/templates/api/gen/http/templates/server/server.go b/internal/pkg/service/templates/api/gen/http/templates/server/server.go index 243cdea5ae..49dbb333f0 100644 --- a/internal/pkg/service/templates/api/gen/http/templates/server/server.go +++ b/internal/pkg/service/templates/api/gen/http/templates/server/server.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // templates HTTP server // diff --git a/internal/pkg/service/templates/api/gen/http/templates/server/types.go b/internal/pkg/service/templates/api/gen/http/templates/server/types.go index 5fc3ad5489..c79baa9927 100644 --- a/internal/pkg/service/templates/api/gen/http/templates/server/types.go +++ b/internal/pkg/service/templates/api/gen/http/templates/server/types.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // templates HTTP server types // diff --git a/internal/pkg/service/templates/api/gen/templates/client.go b/internal/pkg/service/templates/api/gen/templates/client.go index 94a20e65f5..096b9d9548 100644 --- a/internal/pkg/service/templates/api/gen/templates/client.go +++ b/internal/pkg/service/templates/api/gen/templates/client.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // templates client // diff --git a/internal/pkg/service/templates/api/gen/templates/endpoints.go b/internal/pkg/service/templates/api/gen/templates/endpoints.go index 4f43710d50..833048a52c 100644 --- a/internal/pkg/service/templates/api/gen/templates/endpoints.go +++ b/internal/pkg/service/templates/api/gen/templates/endpoints.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // templates endpoints // diff --git a/internal/pkg/service/templates/api/gen/templates/service.go b/internal/pkg/service/templates/api/gen/templates/service.go index 7e050662fc..fabd156d97 100644 --- a/internal/pkg/service/templates/api/gen/templates/service.go +++ b/internal/pkg/service/templates/api/gen/templates/service.go @@ -1,4 +1,4 @@ -// Code generated by goa v3.16.2, DO NOT EDIT. +// Code generated by goa v3.18.2, DO NOT EDIT. // // templates service //