@gbozee/ultimate 0.0.2-next.30 → 0.0.2-next.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -73028,6 +73028,7 @@ async function initSqliteDb({
73028
73028
  syncUrl,
73029
73029
  authToken,
73030
73030
  url,
73031
+ intMode = "string",
73031
73032
  syncInterval = 60
73032
73033
  }) {
73033
73034
  let import_3 = await Promise.resolve().then(() => (init_web(), exports_web));
@@ -73035,7 +73036,7 @@ async function initSqliteDb({
73035
73036
  const turso = import_3.createClient({
73036
73037
  url: syncUrl,
73037
73038
  authToken,
73038
- intMode: "string"
73039
+ intMode
73039
73040
  });
73040
73041
  const db2 = import_4.drizzle(turso);
73041
73042
  const client = {
package/dist/index.d.ts CHANGED
@@ -566,8 +566,9 @@ export type SqliteDbType = {
566
566
  authToken: string;
567
567
  url: string;
568
568
  syncInterval?: number;
569
+ intMode?: any;
569
570
  };
570
- export declare function initSqliteDb({ syncUrl, authToken, url, syncInterval, }: SqliteDbType): Promise<{
571
+ export declare function initSqliteDb({ syncUrl, authToken, url, intMode, syncInterval, }: SqliteDbType): Promise<{
571
572
  bunDb: import("drizzle-orm/libsql/driver-core").LibSQLDatabase<Record<string, never>> & {
572
573
  $client: import("@libsql/core/api").Client;
573
574
  };
package/dist/index.js CHANGED
@@ -72941,6 +72941,7 @@ async function initSqliteDb({
72941
72941
  syncUrl,
72942
72942
  authToken,
72943
72943
  url,
72944
+ intMode = "string",
72944
72945
  syncInterval = 60
72945
72946
  }) {
72946
72947
  let import_3 = await Promise.resolve().then(() => (init_web(), exports_web));
@@ -72948,7 +72949,7 @@ async function initSqliteDb({
72948
72949
  const turso = import_3.createClient({
72949
72950
  url: syncUrl,
72950
72951
  authToken,
72951
- intMode: "string"
72952
+ intMode
72952
72953
  });
72953
72954
  const db2 = import_4.drizzle(turso);
72954
72955
  const client = {
@@ -85616,6 +85616,7 @@ async function initSqliteDb({
85616
85616
  syncUrl,
85617
85617
  authToken,
85618
85618
  url,
85619
+ intMode = "string",
85619
85620
  syncInterval = 60
85620
85621
  }) {
85621
85622
  let import_3 = await Promise.resolve().then(() => (init_web(), exports_web));
@@ -85623,7 +85624,7 @@ async function initSqliteDb({
85623
85624
  const turso = import_3.createClient({
85624
85625
  url: syncUrl,
85625
85626
  authToken,
85626
- intMode: "string"
85627
+ intMode
85627
85628
  });
85628
85629
  const db2 = import_4.drizzle(turso);
85629
85630
  const client = {
@@ -85589,6 +85589,7 @@ async function initSqliteDb({
85589
85589
  syncUrl,
85590
85590
  authToken,
85591
85591
  url,
85592
+ intMode = "string",
85592
85593
  syncInterval = 60
85593
85594
  }) {
85594
85595
  let import_3 = await Promise.resolve().then(() => (init_web(), exports_web));
@@ -85596,7 +85597,7 @@ async function initSqliteDb({
85596
85597
  const turso = import_3.createClient({
85597
85598
  url: syncUrl,
85598
85599
  authToken,
85599
- intMode: "string"
85600
+ intMode
85600
85601
  });
85601
85602
  const db2 = import_4.drizzle(turso);
85602
85603
  const client = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-next.30",
4
+ "version": "0.0.2-next.31",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",