diff --git a/.npmrc b/.npmrc
index 025fe3f..5c85ebf 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1 +1 @@
-publish-branch=v0.8.x
\ No newline at end of file
+publish-branch=v0.9.x
diff --git a/docs/ts-simple-db-mysql/classes/SimpleDbMysql.html b/docs/ts-simple-db-mysql/classes/SimpleDbMysql.html
index 133c0b8..d8dcda9 100644
--- a/docs/ts-simple-db-mysql/classes/SimpleDbMysql.html
+++ b/docs/ts-simple-db-mysql/classes/SimpleDbMysql.html
@@ -1,8 +1,8 @@
-
SimpleDbMysql | @wymp/simple-db-mysql IndexConstructors constructor
+
SimpleDbMysql | @wymp/simple-db-mysql Properties Protected
pool pool : PromisePool
Protected
config config : PoolOptions
Methods query query < T > ( q , params ? ) : Promise < SimpleSqlResponseInterface < T > > Parameters q : string Optional
params : null | SqlValue [] Returns Promise < SimpleSqlResponseInterface < T > > Protected
_query _query < T > ( q , params , cnx ) : Promise < { rows : T [] ; affectedRows : number ; } | { affectedRows ?: undefined ; rows : T [] ; } > Parameters q : string params : undefined | null | SqlValue [] cnx : MysqlConnection Returns Promise < { rows : T [] ; affectedRows : number ; } | { affectedRows ?: undefined ; rows : T [] ; } > transaction transaction < T > ( queries , txName ? ) : Promise < T > Parameters queries : ( ( cnx ) => Promise < T > ) ( cnx ) : Promise < T > Parameters cnx : SimpleSqlDbInterface Returns Promise < T > Optional
txName : unknown Returns Promise < T > close close ( ) : Promise < void > Returns Promise < void >
\ No newline at end of file
+
Properties Protected
pool pool : PromisePool
Protected
config config : PoolOptions
Methods query query < T > ( q , params ? ) : Promise < SimpleSqlResponseInterface < T > > Parameters q : string Optional
params : null | SqlValue [] Returns Promise < SimpleSqlResponseInterface < T > > Protected
_query _query < T > ( q , params , cnx ) : Promise < { rows : T [] ; affectedRows : number ; } | { affectedRows ?: undefined ; rows : T [] ; } > Parameters q : string params : undefined | null | SqlValue [] cnx : MysqlConnection Returns Promise < { rows : T [] ; affectedRows : number ; } | { affectedRows ?: undefined ; rows : T [] ; } > transaction transaction < T > ( queries , txName ? ) : Promise < T > Parameters queries : ( ( cnx ) => Promise < T > ) ( cnx ) : Promise < T > Parameters cnx : SimpleSqlDbInterface Returns Promise < T > Optional
txName : unknown Returns Promise < T > close close ( ) : Promise < void > Returns Promise < void >
\ No newline at end of file
diff --git a/docs/ts-simple-db-mysql/index.html b/docs/ts-simple-db-mysql/index.html
index 79c338b..4e12342 100644
--- a/docs/ts-simple-db-mysql/index.html
+++ b/docs/ts-simple-db-mysql/index.html
@@ -2,6 +2,6 @@
allows for better interoperability and dependency choice for consumers.
This package provides a light wrapper around mysql2 that enforces conformity
with the SimpleSqlDbInterface
defined in
-ts-simple-interfaces
.
+ts-simple-interfaces
.
See that package for information about the interface.