Skip to content

Commit

Permalink
fix tag ids
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Mar 28, 2024
1 parent 7323b4c commit 81a42fb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/mssql/src/internal/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import type { DataType } from "tedious/lib/data-type.js"
import type { ParameterOptions } from "tedious/lib/request.js"

/** @internal */
export const tag = GenericTag<MssqlClient>("@services/tag")
export const tag = GenericTag<MssqlClient>("sqlfx/MssqlClient")

interface MssqlConnection extends Connection {
readonly call: (
Expand Down
2 changes: 1 addition & 1 deletion packages/mysql/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface MysqlClient extends Client.Client {
* @category tag
* @since 1.0.0
*/
export const tag = GenericTag<MysqlClient>("@services/tag")
export const tag = GenericTag<MysqlClient>("sqlfx/mysql/MysqlClient")

/**
* @category constructor
Expand Down
2 changes: 1 addition & 1 deletion packages/mysql2/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface MysqlClient extends Client.Client {
* @category tag
* @since 1.0.0
*/
export const tag = GenericTag<MysqlClient>("@services/tag")
export const tag = GenericTag<MysqlClient>("sqlfx/mysql2/MysqlClient")

/**
* @category constructor
Expand Down
2 changes: 1 addition & 1 deletion packages/pg/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface PgClient extends Client.Client {
* @category tag
* @since 1.0.0
*/
export const tag = GenericTag<PgClient>("@services/tag")
export const tag = GenericTag<PgClient>("sqlfx/pg/PgClient")

/**
* @category constructor
Expand Down
2 changes: 1 addition & 1 deletion packages/sql/src/Connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export namespace Connection {
* @category tag
* @since 1.0.0
*/
export const Connection = GenericTag<Connection>("@services/Connection")
export const Connection = GenericTag<Connection>("sqlfx/sql/Connection")

/**
* @category model
Expand Down
2 changes: 1 addition & 1 deletion packages/sql/src/internal/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import * as Statement from "../Statement.js"
/** @internal */
export const TransactionConn = GenericTag<
readonly [conn: Connection, counter: number]
>("@services/TransactionConn")
>("sqlfx/sql/TransactionConn")

/** @internal */
export function make({
Expand Down
2 changes: 1 addition & 1 deletion packages/sqlite/src/internal/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as Statement from "@sqlfx/sql/Statement"
import type { SqliteClient } from "../Client.js"

/** @internal */
export const tag = GenericTag<SqliteClient>("@services/tag")
export const tag = GenericTag<SqliteClient>("sqlfx/sqlite/SqliteClient")

const escape = Statement.defaultEscape('"')

Expand Down

0 comments on commit 81a42fb

Please sign in to comment.