@slonik/sql-tag
Advanced tools
Comparing version 46.0.0 to 46.0.1
import { type SqlTag } from '../types'; | ||
import { z } from 'zod'; | ||
export declare const createSqlTag: <K extends PropertyKey, P extends z.ZodTypeAny, Z extends Record<K, P>>(configuration?: { | ||
import { type ZodTypeAny } from 'zod'; | ||
export declare const createSqlTag: <K extends PropertyKey, P extends ZodTypeAny, Z extends Record<K, P>>(configuration?: { | ||
typeAliases?: Z; | ||
}) => SqlTag<Z>; | ||
//# sourceMappingURL=createSqlTag.d.ts.map |
@@ -6,3 +6,2 @@ export { createSqlTag } from './factories/createSqlTag'; | ||
export { isSqlToken } from './utilities/isSqlToken'; | ||
export { stripSlonikPlaceholders } from './utilities/stripSlonikPlaceholders'; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.stripSlonikPlaceholders = exports.isSqlToken = exports.UnnestToken = exports.TimestampToken = exports.QueryToken = exports.ListToken = exports.JsonToken = exports.JsonBinaryToken = exports.IntervalToken = exports.IdentifierToken = exports.FragmentToken = exports.DateToken = exports.ComparisonPredicateToken = exports.BinaryToken = exports.ArrayToken = exports.createSqlTokenSqlFragment = exports.createSqlTag = void 0; | ||
exports.isSqlToken = exports.UnnestToken = exports.TimestampToken = exports.QueryToken = exports.ListToken = exports.JsonToken = exports.JsonBinaryToken = exports.IntervalToken = exports.IdentifierToken = exports.FragmentToken = exports.DateToken = exports.ComparisonPredicateToken = exports.BinaryToken = exports.ArrayToken = exports.createSqlTokenSqlFragment = exports.createSqlTag = void 0; | ||
var createSqlTag_1 = require("./factories/createSqlTag"); | ||
@@ -24,4 +24,2 @@ Object.defineProperty(exports, "createSqlTag", { enumerable: true, get: function () { return createSqlTag_1.createSqlTag; } }); | ||
Object.defineProperty(exports, "isSqlToken", { enumerable: true, get: function () { return isSqlToken_1.isSqlToken; } }); | ||
var stripSlonikPlaceholders_1 = require("./utilities/stripSlonikPlaceholders"); | ||
Object.defineProperty(exports, "stripSlonikPlaceholders", { enumerable: true, get: function () { return stripSlonikPlaceholders_1.stripSlonikPlaceholders; } }); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,1 @@ | ||
/// <reference types="node" /> | ||
import type * as tokens from './tokens'; | ||
@@ -3,0 +2,0 @@ import { type PrimitiveValueExpression } from '@slonik/types'; |
@@ -1,2 +0,2 @@ | ||
export declare const isPrimitiveValueExpression: (maybe: unknown) => maybe is string | number | bigint | boolean | null; | ||
export declare const isPrimitiveValueExpression: (maybe: unknown) => maybe is bigint | boolean | number | string | null; | ||
//# sourceMappingURL=isPrimitiveValueExpression.d.ts.map |
@@ -19,4 +19,4 @@ { | ||
"dependencies": { | ||
"@slonik/errors": "^46.0.0", | ||
"@slonik/types": "^46.0.0", | ||
"@slonik/errors": "^46.0.1", | ||
"@slonik/types": "^46.0.1", | ||
"roarr": "^7.21.1", | ||
@@ -78,2 +78,4 @@ "safe-stable-stringify": "^2.4.3", | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"version": "46.0.1", | ||
"scripts": { | ||
@@ -86,5 +88,3 @@ "build": "rm -fr ./dist && tsc --project ./tsconfig.json", | ||
"test": "nyc ava --verbose --serial" | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"version": "46.0.0" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
228524
234
4086
Updated@slonik/errors@^46.0.1
Updated@slonik/types@^46.0.1