3
0

Add uncommited codegen changes

This commit is contained in:
Denis Arh
2022-01-26 15:41:13 +01:00
parent b22a4f8ea7
commit 43de7ebba7
4 changed files with 4 additions and 6 deletions
+3 -3
View File
@@ -47,7 +47,7 @@ type (
}
)
// Lookup function Compose record lookup
// Lookup function Attachment lookup
//
// expects implementation of lookup function:
// func (h attachmentHandler) lookup(ctx context.Context, args *attachmentLookupArgs) (results *attachmentLookupResults, err error) {
@@ -59,8 +59,8 @@ func (h attachmentHandler) Lookup() *atypes.Function {
Kind: "function",
Labels: map[string]string{"attachment": "step,workflow"},
Meta: &atypes.FunctionMeta{
Short: "Compose record lookup",
Description: "Find specific record by ID",
Short: "Attachment lookup",
Description: "Find specific attachment by ID",
},
Parameters: []*atypes.Param{
+1 -1
View File
@@ -26,7 +26,7 @@ props:
description: Attach stacktraces
- name: sampleRate
type: float32
type: float64
description: Sample rate for event submission (0.0 - 1.0. defaults to 1.0)
- name: maxBreadcrumbs
-1
View File
@@ -10,7 +10,6 @@ package store
import (
"context"
"github.com/cortezaproject/corteza-server/system/types"
)
-1
View File
@@ -11,7 +11,6 @@ package rdbms
import (
"context"
"database/sql"
"github.com/Masterminds/squirrel"
"github.com/cortezaproject/corteza-server/pkg/errors"
"github.com/cortezaproject/corteza-server/store"