@colisweb/rescript-toolkit 4.29.2 → 4.29.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "4.29.2",
3
+ "version": "4.29.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -134,6 +134,7 @@ module FormData: {
134
134
  @new external create: unit => t = "FormData"
135
135
 
136
136
  @send external append: (t, string, 'a) => unit = "append"
137
+ @send external appendWithFileName: (t, string, 'a, string) => unit = "append"
137
138
  @send external get: (t, string) => Js.Nullable.t<'a> = "get"
138
139
  @send external getAll: (t, string) => Js.Nullable.t<array<'a>> = "getAll"
139
140
  @send external has: (t, string) => bool = "has"