@unifetch/fortnox 2.0.1 → 2.1.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/CHANGELOG.md +37 -0
- package/dist/{create-fortnox-CSULrMkm.mjs → create-fortnox-BB_0mFBL.mjs} +434 -434
- package/dist/create-fortnox-BB_0mFBL.mjs.map +1 -0
- package/dist/{create-fortnox-D9a-YhJ-.d.cts → create-fortnox-BQgaBk5m.d.cts} +3 -4
- package/dist/create-fortnox-BQgaBk5m.d.cts.map +1 -0
- package/dist/{create-fortnox-BRQXlzrc.cjs → create-fortnox-DGjVOKfm.cjs} +434 -434
- package/dist/create-fortnox-DGjVOKfm.cjs.map +1 -0
- package/dist/{create-fortnox-CIWMiQTF.d.mts → create-fortnox-DiGzUeVa.d.mts} +3 -4
- package/dist/create-fortnox-DiGzUeVa.d.mts.map +1 -0
- package/dist/index-BWHJmubR.d.cts +150 -0
- package/dist/index-BWHJmubR.d.cts.map +1 -0
- package/dist/index-CqOhNC_h.d.mts +150 -0
- package/dist/index-CqOhNC_h.d.mts.map +1 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/{official-COyUx9dP.d.cts → official-BFBd-NeQ.d.cts} +2 -2
- package/dist/{official-COyUx9dP.d.cts.map → official-BFBd-NeQ.d.cts.map} +1 -1
- package/dist/{official-Lpmk8gr7.d.mts → official-DeZGQsNS.d.mts} +2 -2
- package/dist/{official-Lpmk8gr7.d.mts.map → official-DeZGQsNS.d.mts.map} +1 -1
- package/dist/official.cjs +1 -1
- package/dist/official.d.cts +1 -1
- package/dist/official.d.mts +1 -1
- package/dist/official.mjs +1 -1
- package/dist/patched.cjs +1 -1
- package/dist/patched.d.cts +4 -142
- package/dist/patched.d.cts.map +1 -1
- package/dist/patched.d.mts +4 -142
- package/dist/patched.d.mts.map +1 -1
- package/dist/patched.mjs +1 -1
- package/dist/types/custom/index.cjs +0 -0
- package/dist/types/custom/index.d.cts +2 -0
- package/dist/types/custom/index.d.mts +2 -0
- package/dist/types/custom/index.mjs +1 -0
- package/dist/utility-types-CXs8tUw_.d.mts +15 -0
- package/dist/utility-types-CXs8tUw_.d.mts.map +1 -0
- package/dist/utility-types-DLzshE5r.d.cts +15 -0
- package/dist/utility-types-DLzshE5r.d.cts.map +1 -0
- package/package.json +8 -3
- package/dist/create-fortnox-BRQXlzrc.cjs.map +0 -1
- package/dist/create-fortnox-CIWMiQTF.d.mts.map +0 -1
- package/dist/create-fortnox-CSULrMkm.mjs.map +0 -1
- package/dist/create-fortnox-D9a-YhJ-.d.cts.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @unifetch/fortnox
|
|
2
|
+
|
|
3
|
+
## 2.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Include CHANGELOG.md in npm package
|
|
8
|
+
|
|
9
|
+
## 2.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Define and export custom types for invoice list and single invoice
|
|
14
|
+
|
|
15
|
+
## 2.0.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Update readme and specify edge runtime compatibility
|
|
20
|
+
|
|
21
|
+
## 2.0.0
|
|
22
|
+
|
|
23
|
+
### Major Changes
|
|
24
|
+
|
|
25
|
+
- Add resource-based API: access endpoints via `fortnox.<resource>.<operation>()` (e.g. `fortnox.invoices.getList()`) with full TypeScript autocomplete. The previous callable pattern `fortnox("/3/invoices")` is replaced by `fortnox.path("/3/invoices")`. Operation names are manually curated for consistency since the official Fortnox spec lacks clean operation IDs.
|
|
26
|
+
|
|
27
|
+
## 1.0.1
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Re-exported the types for proper inference
|
|
32
|
+
|
|
33
|
+
## 1.0.0
|
|
34
|
+
|
|
35
|
+
### Major Changes
|
|
36
|
+
|
|
37
|
+
- Initial release
|