discord-message-transcript 1.3.2-dev.1.53 → 1.3.2-dev.1.54

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.
@@ -9,7 +9,7 @@ export async function uploadCareCdnResolver(url, publicKey, cdnDomain, disableWa
9
9
  provider: "UPLOADCARE",
10
10
  code: "CONFIG_MISSING",
11
11
  message: "Uploadcare configuration is missing required fields.",
12
- hint: "Verify cdnDomain and publickey."
12
+ hint: "Verify cdnDomain and publicKey."
13
13
  });
14
14
  }
15
15
  const form = new FormData();
package/dist/index.js CHANGED
@@ -100,8 +100,12 @@ export async function renderHTMLFromJSON(jsonString, options = {}) {
100
100
  json.options.selfContained = options?.selfContained ?? false;
101
101
  json.options.watermark = options.watermark ?? json.options.watermark;
102
102
  const officialReturnType = options?.returnType ?? ReturnType.Attachment;
103
- if (officialReturnType == ReturnType.Attachment)
103
+ if (options.returnType && options.returnType != ReturnType.Attachment) {
104
+ json.options.returnType = options.returnType;
105
+ }
106
+ else {
104
107
  json.options.returnType = ReturnTypeBase.Buffer;
108
+ }
105
109
  const result = await outputBase(json);
106
110
  if (officialReturnType == ReturnType.Attachment) {
107
111
  if (!(result instanceof Buffer)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "discord-message-transcript",
3
- "version": "1.3.2-dev.1.53",
3
+ "version": "1.3.2-dev.1.54",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "homepage": "https://github.com/HenriqueMairesse/discord-message-transcript#readme",
47
47
  "dependencies": {
48
- "discord-message-transcript-base": "1.3.2-dev.1.53"
48
+ "discord-message-transcript-base": "1.3.2-dev.1.54"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "discord.js": ">=14.19.0 <15"