@axium/tasks 0.1.5 → 0.1.6

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/dist/common.d.ts +1 -1
  2. package/package.json +3 -3
package/dist/common.d.ts CHANGED
@@ -27,7 +27,7 @@ export interface TaskList extends TaskListInit {
27
27
  tasks?: Task[];
28
28
  }
29
29
  declare module '@axium/core/api' {
30
- interface _apiTypes {
30
+ interface $API {
31
31
  'users/:id/task_lists': {
32
32
  GET: WithRequired<TaskList, 'tasks'>[];
33
33
  PUT: [z.input<typeof TaskListInit>, TaskList];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axium/tasks",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "author": "James Prevett <axium@jamespre.dev> (https://jamespre.dev)",
5
5
  "description": "",
6
6
  "funding": {
@@ -35,8 +35,8 @@
35
35
  "build": "tsc"
36
36
  },
37
37
  "peerDependencies": {
38
- "@axium/client": ">=0.2.0",
39
- "@axium/core": ">=0.5.4",
38
+ "@axium/client": ">=0.4.0",
39
+ "@axium/core": ">=0.6.0",
40
40
  "@axium/server": ">=0.22.0",
41
41
  "@sveltejs/kit": "^2.27.3",
42
42
  "utilium": "^2.3.8"