drizzle-kit 0.28.1-4b33aac → 0.28.1-717bfb5

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.
Files changed (4) hide show
  1. package/api.js +6 -28
  2. package/api.mjs +6 -28
  3. package/bin.cjs +37 -37
  4. package/package.json +1 -1
package/api.js CHANGED
@@ -22192,13 +22192,13 @@ function isConfig(data) {
22192
22192
  return true;
22193
22193
  }
22194
22194
  if ("schema" in data) {
22195
- const type = typeof data["schema"];
22195
+ const type = typeof data["logger"];
22196
22196
  if (type !== "object" && type !== "undefined")
22197
22197
  return false;
22198
22198
  return true;
22199
22199
  }
22200
22200
  if ("casing" in data) {
22201
- const type = typeof data["casing"];
22201
+ const type = typeof data["logger"];
22202
22202
  if (type !== "string" && type !== "undefined")
22203
22203
  return false;
22204
22204
  return true;
@@ -26028,15 +26028,7 @@ var init_select2 = __esm({
26028
26028
  } else {
26029
26029
  fields = getTableColumns(source);
26030
26030
  }
26031
- return this.authToken === void 0 ? new PgSelectBase({
26032
- table: source,
26033
- fields,
26034
- isPartialSelect,
26035
- session: this.session,
26036
- dialect: this.dialect,
26037
- withList: this.withList,
26038
- distinct: this.distinct
26039
- }) : new PgSelectBase({
26031
+ return new PgSelectBase({
26040
26032
  table: source,
26041
26033
  fields,
26042
26034
  isPartialSelect,
@@ -26669,7 +26661,7 @@ var init_select2 = __esm({
26669
26661
  const fieldsList = orderSelectedFields(config.fields);
26670
26662
  const query = session.prepareQuery(dialect4.sqlToQuery(this.getSQL()), fieldsList, name2, true);
26671
26663
  query.joinsNotNullableMap = joinsNotNullableMap;
26672
- return authToken === void 0 ? query : query.setToken(authToken);
26664
+ return query.setToken(authToken);
26673
26665
  });
26674
26666
  }
26675
26667
  /**
@@ -26847,15 +26839,7 @@ var init_insert = __esm({
26847
26839
  }
26848
26840
  return result;
26849
26841
  });
26850
- return this.authToken === void 0 ? new PgInsertBase(
26851
- this.table,
26852
- mappedValues,
26853
- this.session,
26854
- this.dialect,
26855
- this.withList,
26856
- false,
26857
- this.overridingSystemValue_
26858
- ) : new PgInsertBase(
26842
+ return new PgInsertBase(
26859
26843
  this.table,
26860
26844
  mappedValues,
26861
26845
  this.session,
@@ -27099,13 +27083,7 @@ var init_update = __esm({
27099
27083
  return this;
27100
27084
  }
27101
27085
  set(values) {
27102
- return this.authToken === void 0 ? new PgUpdateBase(
27103
- this.table,
27104
- mapUpdateSet(this.table, values),
27105
- this.session,
27106
- this.dialect,
27107
- this.withList
27108
- ) : new PgUpdateBase(
27086
+ return new PgUpdateBase(
27109
27087
  this.table,
27110
27088
  mapUpdateSet(this.table, values),
27111
27089
  this.session,
package/api.mjs CHANGED
@@ -22197,13 +22197,13 @@ function isConfig(data) {
22197
22197
  return true;
22198
22198
  }
22199
22199
  if ("schema" in data) {
22200
- const type = typeof data["schema"];
22200
+ const type = typeof data["logger"];
22201
22201
  if (type !== "object" && type !== "undefined")
22202
22202
  return false;
22203
22203
  return true;
22204
22204
  }
22205
22205
  if ("casing" in data) {
22206
- const type = typeof data["casing"];
22206
+ const type = typeof data["logger"];
22207
22207
  if (type !== "string" && type !== "undefined")
22208
22208
  return false;
22209
22209
  return true;
@@ -26033,15 +26033,7 @@ var init_select2 = __esm({
26033
26033
  } else {
26034
26034
  fields = getTableColumns(source);
26035
26035
  }
26036
- return this.authToken === void 0 ? new PgSelectBase({
26037
- table: source,
26038
- fields,
26039
- isPartialSelect,
26040
- session: this.session,
26041
- dialect: this.dialect,
26042
- withList: this.withList,
26043
- distinct: this.distinct
26044
- }) : new PgSelectBase({
26036
+ return new PgSelectBase({
26045
26037
  table: source,
26046
26038
  fields,
26047
26039
  isPartialSelect,
@@ -26674,7 +26666,7 @@ var init_select2 = __esm({
26674
26666
  const fieldsList = orderSelectedFields(config.fields);
26675
26667
  const query = session.prepareQuery(dialect4.sqlToQuery(this.getSQL()), fieldsList, name2, true);
26676
26668
  query.joinsNotNullableMap = joinsNotNullableMap;
26677
- return authToken === void 0 ? query : query.setToken(authToken);
26669
+ return query.setToken(authToken);
26678
26670
  });
26679
26671
  }
26680
26672
  /**
@@ -26852,15 +26844,7 @@ var init_insert = __esm({
26852
26844
  }
26853
26845
  return result;
26854
26846
  });
26855
- return this.authToken === void 0 ? new PgInsertBase(
26856
- this.table,
26857
- mappedValues,
26858
- this.session,
26859
- this.dialect,
26860
- this.withList,
26861
- false,
26862
- this.overridingSystemValue_
26863
- ) : new PgInsertBase(
26847
+ return new PgInsertBase(
26864
26848
  this.table,
26865
26849
  mappedValues,
26866
26850
  this.session,
@@ -27104,13 +27088,7 @@ var init_update = __esm({
27104
27088
  return this;
27105
27089
  }
27106
27090
  set(values) {
27107
- return this.authToken === void 0 ? new PgUpdateBase(
27108
- this.table,
27109
- mapUpdateSet(this.table, values),
27110
- this.session,
27111
- this.dialect,
27112
- this.withList
27113
- ) : new PgUpdateBase(
27091
+ return new PgUpdateBase(
27114
27092
  this.table,
27115
27093
  mapUpdateSet(this.table, values),
27116
27094
  this.session,
package/bin.cjs CHANGED
@@ -71324,9 +71324,9 @@ var require_dist_cjs46 = __commonJS({
71324
71324
  }
71325
71325
  });
71326
71326
 
71327
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js
71327
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js
71328
71328
  var require_httpAuthSchemeProvider3 = __commonJS({
71329
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
71329
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
71330
71330
  "use strict";
71331
71331
  Object.defineProperty(exports2, "__esModule", { value: true });
71332
71332
  exports2.resolveHttpAuthSchemeConfig = exports2.defaultSSOOIDCHttpAuthSchemeProvider = exports2.defaultSSOOIDCHttpAuthSchemeParametersProvider = void 0;
@@ -71393,9 +71393,9 @@ var require_httpAuthSchemeProvider3 = __commonJS({
71393
71393
  }
71394
71394
  });
71395
71395
 
71396
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/package.json
71396
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/package.json
71397
71397
  var require_package4 = __commonJS({
71398
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/package.json"(exports2, module2) {
71398
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/package.json"(exports2, module2) {
71399
71399
  module2.exports = {
71400
71400
  name: "@aws-sdk/client-sso-oidc",
71401
71401
  description: "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
@@ -71499,9 +71499,9 @@ var require_package4 = __commonJS({
71499
71499
  }
71500
71500
  });
71501
71501
 
71502
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js
71502
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js
71503
71503
  var require_ruleset2 = __commonJS({
71504
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js"(exports2) {
71504
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js"(exports2) {
71505
71505
  "use strict";
71506
71506
  Object.defineProperty(exports2, "__esModule", { value: true });
71507
71507
  exports2.ruleSet = void 0;
@@ -71534,9 +71534,9 @@ var require_ruleset2 = __commonJS({
71534
71534
  }
71535
71535
  });
71536
71536
 
71537
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js
71537
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js
71538
71538
  var require_endpointResolver2 = __commonJS({
71539
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js"(exports2) {
71539
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js"(exports2) {
71540
71540
  "use strict";
71541
71541
  Object.defineProperty(exports2, "__esModule", { value: true });
71542
71542
  exports2.defaultEndpointResolver = void 0;
@@ -71554,9 +71554,9 @@ var require_endpointResolver2 = __commonJS({
71554
71554
  }
71555
71555
  });
71556
71556
 
71557
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js
71557
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js
71558
71558
  var require_runtimeConfig_shared2 = __commonJS({
71559
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js"(exports2) {
71559
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js"(exports2) {
71560
71560
  "use strict";
71561
71561
  Object.defineProperty(exports2, "__esModule", { value: true });
71562
71562
  exports2.getRuntimeConfig = void 0;
@@ -71600,9 +71600,9 @@ var require_runtimeConfig_shared2 = __commonJS({
71600
71600
  }
71601
71601
  });
71602
71602
 
71603
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js
71603
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js
71604
71604
  var require_runtimeConfig2 = __commonJS({
71605
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js"(exports2) {
71605
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js"(exports2) {
71606
71606
  "use strict";
71607
71607
  Object.defineProperty(exports2, "__esModule", { value: true });
71608
71608
  exports2.getRuntimeConfig = void 0;
@@ -71653,9 +71653,9 @@ var require_runtimeConfig2 = __commonJS({
71653
71653
  }
71654
71654
  });
71655
71655
 
71656
- // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js
71656
+ // ../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js
71657
71657
  var require_dist_cjs47 = __commonJS({
71658
- "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0_@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js"(exports2, module2) {
71658
+ "../node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js"(exports2, module2) {
71659
71659
  "use strict";
71660
71660
  var __defProp3 = Object.defineProperty;
71661
71661
  var __getOwnPropDesc3 = Object.getOwnPropertyDescriptor;
@@ -73001,9 +73001,9 @@ Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.ht
73001
73001
  }
73002
73002
  });
73003
73003
 
73004
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js
73004
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js
73005
73005
  var require_httpAuthSchemeProvider4 = __commonJS({
73006
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
73006
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
73007
73007
  "use strict";
73008
73008
  Object.defineProperty(exports2, "__esModule", { value: true });
73009
73009
  exports2.resolveHttpAuthSchemeConfig = exports2.resolveStsAuthConfig = exports2.defaultSTSHttpAuthSchemeProvider = exports2.defaultSTSHttpAuthSchemeParametersProvider = void 0;
@@ -73073,9 +73073,9 @@ var require_httpAuthSchemeProvider4 = __commonJS({
73073
73073
  }
73074
73074
  });
73075
73075
 
73076
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js
73076
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js
73077
73077
  var require_EndpointParameters = __commonJS({
73078
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js"(exports2) {
73078
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js"(exports2) {
73079
73079
  "use strict";
73080
73080
  Object.defineProperty(exports2, "__esModule", { value: true });
73081
73081
  exports2.commonParams = exports2.resolveClientEndpointParameters = void 0;
@@ -73099,9 +73099,9 @@ var require_EndpointParameters = __commonJS({
73099
73099
  }
73100
73100
  });
73101
73101
 
73102
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/package.json
73102
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/package.json
73103
73103
  var require_package5 = __commonJS({
73104
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/package.json"(exports2, module2) {
73104
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/package.json"(exports2, module2) {
73105
73105
  module2.exports = {
73106
73106
  name: "@aws-sdk/client-sts",
73107
73107
  description: "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
@@ -73207,9 +73207,9 @@ var require_package5 = __commonJS({
73207
73207
  }
73208
73208
  });
73209
73209
 
73210
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js
73210
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js
73211
73211
  var require_ruleset3 = __commonJS({
73212
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js"(exports2) {
73212
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js"(exports2) {
73213
73213
  "use strict";
73214
73214
  Object.defineProperty(exports2, "__esModule", { value: true });
73215
73215
  exports2.ruleSet = void 0;
@@ -73254,9 +73254,9 @@ var require_ruleset3 = __commonJS({
73254
73254
  }
73255
73255
  });
73256
73256
 
73257
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js
73257
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js
73258
73258
  var require_endpointResolver3 = __commonJS({
73259
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js"(exports2) {
73259
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js"(exports2) {
73260
73260
  "use strict";
73261
73261
  Object.defineProperty(exports2, "__esModule", { value: true });
73262
73262
  exports2.defaultEndpointResolver = void 0;
@@ -73274,9 +73274,9 @@ var require_endpointResolver3 = __commonJS({
73274
73274
  }
73275
73275
  });
73276
73276
 
73277
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js
73277
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js
73278
73278
  var require_runtimeConfig_shared3 = __commonJS({
73279
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js"(exports2) {
73279
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js"(exports2) {
73280
73280
  "use strict";
73281
73281
  Object.defineProperty(exports2, "__esModule", { value: true });
73282
73282
  exports2.getRuntimeConfig = void 0;
@@ -73320,9 +73320,9 @@ var require_runtimeConfig_shared3 = __commonJS({
73320
73320
  }
73321
73321
  });
73322
73322
 
73323
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js
73323
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js
73324
73324
  var require_runtimeConfig3 = __commonJS({
73325
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js"(exports2) {
73325
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js"(exports2) {
73326
73326
  "use strict";
73327
73327
  Object.defineProperty(exports2, "__esModule", { value: true });
73328
73328
  exports2.getRuntimeConfig = void 0;
@@ -73386,9 +73386,9 @@ var require_runtimeConfig3 = __commonJS({
73386
73386
  }
73387
73387
  });
73388
73388
 
73389
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js
73389
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js
73390
73390
  var require_httpAuthExtensionConfiguration = __commonJS({
73391
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js"(exports2) {
73391
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js"(exports2) {
73392
73392
  "use strict";
73393
73393
  Object.defineProperty(exports2, "__esModule", { value: true });
73394
73394
  exports2.resolveHttpAuthRuntimeConfig = exports2.getHttpAuthExtensionConfiguration = void 0;
@@ -73434,9 +73434,9 @@ var require_httpAuthExtensionConfiguration = __commonJS({
73434
73434
  }
73435
73435
  });
73436
73436
 
73437
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js
73437
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js
73438
73438
  var require_runtimeExtensions = __commonJS({
73439
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js"(exports2) {
73439
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js"(exports2) {
73440
73440
  "use strict";
73441
73441
  Object.defineProperty(exports2, "__esModule", { value: true });
73442
73442
  exports2.resolveRuntimeExtensions = void 0;
@@ -73465,9 +73465,9 @@ var require_runtimeExtensions = __commonJS({
73465
73465
  }
73466
73466
  });
73467
73467
 
73468
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js
73468
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js
73469
73469
  var require_STSClient = __commonJS({
73470
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js"(exports2) {
73470
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js"(exports2) {
73471
73471
  "use strict";
73472
73472
  Object.defineProperty(exports2, "__esModule", { value: true });
73473
73473
  exports2.STSClient = exports2.__Client = void 0;
@@ -73529,9 +73529,9 @@ var require_STSClient = __commonJS({
73529
73529
  }
73530
73530
  });
73531
73531
 
73532
- // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/index.js
73532
+ // ../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/index.js
73533
73533
  var require_dist_cjs50 = __commonJS({
73534
- "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/index.js"(exports2, module2) {
73534
+ "../node_modules/.pnpm/@aws-sdk+client-sts@3.583.0_@aws-sdk+client-sso-oidc@3.583.0/node_modules/@aws-sdk/client-sts/dist-cjs/index.js"(exports2, module2) {
73535
73535
  "use strict";
73536
73536
  var __defProp3 = Object.defineProperty;
73537
73537
  var __getOwnPropDesc3 = Object.getOwnPropertyDescriptor;
@@ -89644,7 +89644,7 @@ init_utils2();
89644
89644
  var version2 = async () => {
89645
89645
  const { npmVersion } = await ormCoreVersions();
89646
89646
  const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
89647
- const envVersion = "0.28.1-4b33aac";
89647
+ const envVersion = "0.28.1-717bfb5";
89648
89648
  const kitVersion = envVersion ? `v${envVersion}` : "--";
89649
89649
  const versions = `drizzle-kit: ${kitVersion}
89650
89650
  ${ormVersion}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "0.28.1-4b33aac",
3
+ "version": "0.28.1-717bfb5",
4
4
  "homepage": "https://orm.drizzle.team",
5
5
  "keywords": [
6
6
  "drizzle",