@wzyjs/utils 0.2.60 → 0.2.62

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/node.cjs.js CHANGED
@@ -12385,8 +12385,8 @@ var import_axios3 = __toESM(require("axios"));
12385
12385
  var axios2 = import_axios3.default.create({
12386
12386
  baseURL: "https://api.302.ai",
12387
12387
  headers: {
12388
- "mj-api-secret": "sk-frMebAccfYLVuIWaA8ijnfv9xTtpm3d6qqiW7kNEGpQMBFJG",
12389
- Authorization: `Bearer sk-frMebAccfYLVuIWaA8ijnfv9xTtpm3d6qqiW7kNEGpQMBFJG`
12388
+ "mj-api-secret": process.env.AI_302_KEY,
12389
+ Authorization: `Bearer ${process.env.AI_302_KEY}`
12390
12390
  }
12391
12391
  });
12392
12392
 
package/dist/node.esm.js CHANGED
@@ -12201,8 +12201,8 @@ import axios_ from "axios";
12201
12201
  var axios2 = axios_.create({
12202
12202
  baseURL: "https://api.302.ai",
12203
12203
  headers: {
12204
- "mj-api-secret": "sk-frMebAccfYLVuIWaA8ijnfv9xTtpm3d6qqiW7kNEGpQMBFJG",
12205
- Authorization: `Bearer sk-frMebAccfYLVuIWaA8ijnfv9xTtpm3d6qqiW7kNEGpQMBFJG`
12204
+ "mj-api-secret": process.env.AI_302_KEY,
12205
+ Authorization: `Bearer ${process.env.AI_302_KEY}`
12206
12206
  }
12207
12207
  });
12208
12208
 
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@wzyjs/utils",
3
- "version": "0.2.60",
3
+ "version": "0.2.62",
4
4
  "description": "description",
5
5
  "author": "wzy",
6
+ "sideEffects": false,
6
7
  "scripts": {
7
8
  "build-browser-esm": "bun build ./src/browser.ts --outfile dist/browser.esm.js --format esm",
8
9
  "build-browser-cjs": "bun build ./src/browser.ts --outfile dist/browser.cjs.js --format cjs",
@@ -68,5 +69,5 @@
68
69
  "@types/nodemailer": "^6.4.7",
69
70
  "@types/papaparse": "^5.3.15"
70
71
  },
71
- "gitHead": "81b5a3fc804541ed989d13f40098effd6540bfa5"
72
+ "gitHead": "d9493fc26e494769edcb3aab4d193e5d7ab68bc1"
72
73
  }