dfx 0.123.0 → 0.124.1
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/DiscordGateway/Messaging.d.ts +74 -74
- package/DiscordGateway/Shard.d.ts +2 -2
- package/DiscordGateway/Sharder.d.ts +1 -1
- package/DiscordREST/Generated.d.ts +124 -147
- package/DiscordREST/Generated.d.ts.map +1 -1
- package/DiscordREST/Generated.js +23 -9
- package/DiscordREST/Generated.js.map +1 -1
- package/DiscordREST.d.ts.map +1 -1
- package/DiscordREST.js.map +1 -1
- package/Helpers/permissions.d.ts +2 -2
- package/Interactions/definitions.d.ts +5 -5
- package/mjs/DiscordREST/Generated.mjs +22 -8
- package/mjs/DiscordREST/Generated.mjs.map +1 -1
- package/mjs/DiscordREST.mjs.map +1 -1
- package/mjs/version.mjs +1 -1
- package/package.json +5 -5
- package/src/DiscordREST/Generated.ts +187 -212
- package/src/DiscordREST.ts +3 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/src/DiscordREST.ts
CHANGED
|
@@ -190,7 +190,9 @@ const make = Effect.gen(function* () {
|
|
|
190
190
|
if (request.body._tag === "Uint8Array") {
|
|
191
191
|
formData.value.set(
|
|
192
192
|
"payload_json",
|
|
193
|
-
new Blob([request.body.body], {
|
|
193
|
+
new Blob([request.body.body as Uint8Array<ArrayBuffer>], {
|
|
194
|
+
type: "application/json",
|
|
195
|
+
}),
|
|
194
196
|
"",
|
|
195
197
|
)
|
|
196
198
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const LIB_VERSION = "0.
|
|
1
|
+
export const LIB_VERSION = "0.124.1";
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "0.
|
|
1
|
+
export declare const LIB_VERSION = "0.124.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED