@magusbyte/t2dclient 2.1.0 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -4
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [v2.1.1] - 2026-02-19
4
+
5
+ - Add Webhooks
6
+
3
7
  ## [v2.1.0] - 2026-02-07
4
8
 
5
9
  - Removed `TaskPropertyValueUsage` as this is no longer used
@@ -11,7 +15,8 @@ Added support for password recovery.
11
15
 
12
16
  - Updated the example in the README.md
13
17
  - Add `AccountApi.recoverPassword`
14
- - Add `AskPasswordChange` to `AccountApiLoginResponse` to hint that user is using a temporary password.
18
+ - Add `AskPasswordChange` to `AccountApiLoginResponse` to hint that user is
19
+ using a temporary password.
15
20
 
16
21
  ## [v2.0.0] - 2026-01-20
17
22
 
@@ -26,9 +31,11 @@ First major update in which we remove the classic setup and move away from Auth0
26
31
  - Deprecated `formatWorkspaceToken` (use `formatToken` instead)
27
32
 
28
33
  ## [v1.1.2] - 2026-01-11
34
+
29
35
  - Make SystemToken namespace by exported by default
30
36
 
31
37
  ## [v1.1.0] - 2026-01-11
38
+
32
39
  - Add `SystemConfig` and events
33
40
  - Remove `WorkspacePlan`
34
41
  - Change `WorkspaceType.Special` to `WorkspaceType.Temp`
@@ -36,37 +43,47 @@ First major update in which we remove the classic setup and move away from Auth0
36
43
  - Add `SystemTokenItemDto` to `WorkspaceItemDto`
37
44
 
38
45
  ## [v1.0.4] - 2026-01-02
46
+
39
47
  - Fixed typos
40
48
 
41
- ## [v1.0.3] - 2025-12-19
49
+ ## [v1.0.3] - 2025-12-19
42
50
 
43
51
  - Add `TaskComponent`
44
52
  - Add `ChecklistDto`
45
53
 
46
54
  ## [v1.0.2] - 2025-11-11
55
+
47
56
  - Add PriorityMatrix to MapDto
48
57
 
49
58
  ## [v1.0.1] - 2025-11-06
59
+
50
60
  - Add IsArchived bit to Map
51
61
 
52
62
  ## [v1.0.0-rc4] - 2025-10-31
63
+
53
64
  - Introduced MapDisplaySettings
54
65
 
55
66
  ## [v1.0.0-rc3] - 2025-10-14
67
+
56
68
  - Add description to task
57
69
 
58
70
  ## [v1.0.0-rc2] - 2025-8-14
71
+
59
72
  - Add placementItems to SubscribeToWorkspaceResponse
60
73
  - Deprecate subscribeToMap methods
61
74
 
62
75
  ## [v1.0.0-rc1]
76
+
63
77
  - Initial release
64
78
 
65
79
  ## [v1.0.0-rc1.1] - 2025-07-28
80
+
66
81
  - Changed `WorkspaceFeaturesDto` to a dictionary instead of a strong typed.
67
- - Reason: This object contains various feature flags that are enforced on the server, it's mostly diagnostic and should be ignored.
82
+ - Reason: This object contains various feature flags that are enforced on the
83
+ server, it's mostly diagnostic and should be ignored.
68
84
 
69
85
  ## [v1.0.0-rc2] - 2025-08-14
70
86
 
71
- - Changed `SubscribeToWorkspaceResponse` so that it contains `placementItems`, this due to a change in the API to always return placements when subscribing.
87
+ - Changed `SubscribeToWorkspaceResponse` so that it contains `placementItems`,
88
+ this due to a change in the API to always return placements when subscribing.
72
89
  - **NOTE:** Subscribing to a map is no longer needed
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@magusbyte/t2dclient",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/MagusByte/t2dclient.git"
7
7
  },
8
8
  "description": "The client for the todo2d.com platform, written in TypeScript.",
9
- "license": "ISC",
9
+ "license": "MIT",
10
10
  "main": "dist/main/index.js",
11
11
  "typings": "dist/main/index.d.ts",
12
12
  "module": "dist/module/index.js",