updated ui/dist, go deps, docs and fixed some typos

This commit is contained in:
Gani Georgiev
2023-12-10 12:13:37 +02:00
parent d8ec36fa4c
commit b29e404f22
47 changed files with 445 additions and 462 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ func NewGithubProvider() *Github {
return &Github{&baseProvider{
ctx: context.Background(),
displayName: "GitHub",
pkce: true, // technically is not suppoted yet but it is safe as the PKCE params are just ignored
pkce: true, // technically is not supported yet but it is safe as the PKCE params are just ignored
scopes: []string{"read:user", "user:email"},
authUrl: github.Endpoint.AuthURL,
tokenUrl: github.Endpoint.TokenURL,
+1 -1
View File
@@ -293,7 +293,7 @@ func resolveEqualExpr(equal bool, left, right *ResolverResult) dbx.Expression {
concatOp := "OR"
nullExpr := "IS NULL"
if !equal {
// use `IS NOT` instead of `!=` because direct non-equal comparisions
// use `IS NOT` instead of `!=` because direct non-equal comparisons
// to nullable column values that are actually NULL yields to NULL instead of TRUE, eg.:
// `'example' != nullableColumn` -> NULL even if nullableColumn row value is NULL
equalOp = "IS NOT"
+4 -1
View File
@@ -19,9 +19,12 @@ type Message struct {
Data []byte `json:"data"`
}
// SubscriptionOptions defines the request options (query params, headers, etc.)
// for a single subscription topic.
type SubscriptionOptions struct {
// @todo after the requests handling refactoring consider
// changing to map[string]string or map[string][]string
// changing to map[string]string or map[string][]string
Query map[string]any `json:"query"`
Headers map[string]any `json:"headers"`
}