@neetru/sdk 2.3.5 → 2.3.6

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/auth.mjs CHANGED
@@ -448,7 +448,10 @@ function parseLease(raw) {
448
448
  };
449
449
  }
450
450
  async function createPgPool(lease) {
451
- const { Pool } = await import('pg');
451
+ const { Pool } = await import(
452
+ /* webpackIgnore: true */
453
+ 'pg'
454
+ );
452
455
  const ssl = lease.sslca ? {
453
456
  ca: lease.sslca,
454
457
  cert: lease.clientCert ?? void 0,
@@ -468,7 +471,10 @@ async function createPgPool(lease) {
468
471
  });
469
472
  }
470
473
  async function createDrizzleHandle(pool, schema) {
471
- const { drizzle } = await import('drizzle-orm/node-postgres');
474
+ const { drizzle } = await import(
475
+ /* webpackIgnore: true */
476
+ 'drizzle-orm/node-postgres'
477
+ );
472
478
  return drizzle(pool, { schema });
473
479
  }
474
480
  async function createSqlClientWithDeps(deps, options) {