Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gajus/slonik
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v31.0.2
Choose a base ref
...
head repository: gajus/slonik
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v31.1.0
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Sep 7, 2022

  1. feat: export MixedRow

    gajus committed Sep 7, 2022
    Copy the full SHA
    4f4bea3 View commit details
Showing with 2 additions and 1 deletion.
  1. +1 −0 src/index.ts
  2. +1 −1 src/types.ts
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ export type {
JsonBinarySqlToken,
JsonSqlToken,
ListSqlToken,
MixedRow,
MockPoolOverrides,
PoolContext,
PrimitiveValueExpression,
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -445,7 +445,7 @@ export type InternalNestedTransactionFunction = <T>(
transactionRetryLimit?: number,
) => Promise<T>;

type MixedRow = QueryResultRow | ZodTypeAny;
export type MixedRow = QueryResultRow | ZodTypeAny;

export type TaggedTemplateLiteralInvocation = AnySqlSqlToken;