@astrale-domains/issues 0.2.3 → 0.3.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 (28) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +3 -0
  3. package/dist/schema/modules/comment/classes/comment.d.ts +156 -39
  4. package/dist/schema/modules/comment/functions/delete-comment.d.ts +1 -1
  5. package/dist/schema/modules/comment/functions/edit-comment.d.ts +1 -1
  6. package/dist/schema/modules/issue/classes/issue.d.ts +390 -155
  7. package/dist/schema/modules/issue/functions/add-issue-comment.d.ts +1 -1
  8. package/dist/schema/modules/issue/functions/archive-issue.d.ts +1 -1
  9. package/dist/schema/modules/issue/functions/assign-issue.d.ts +1 -1
  10. package/dist/schema/modules/issue/functions/set-issue-parent.d.ts +1 -1
  11. package/dist/schema/modules/issue/functions/set-issue-tags.d.ts +1 -1
  12. package/dist/schema/modules/issue/functions/transition-issue.d.ts +1 -1
  13. package/dist/schema/modules/issue/functions/update-issue.d.ts +1 -1
  14. package/dist/schema/modules/project/classes/project.d.ts +387 -157
  15. package/dist/schema/modules/project/functions/add-project-member.d.ts +1 -1
  16. package/dist/schema/modules/project/functions/archive-project.d.ts +1 -1
  17. package/dist/schema/modules/project/functions/create-project-issue.d.ts +1 -1
  18. package/dist/schema/modules/project/functions/create-project-tag.d.ts +1 -1
  19. package/dist/schema/modules/project/functions/create-project.d.ts +1 -1
  20. package/dist/schema/modules/project/functions/list-projects.d.ts +1 -1
  21. package/dist/schema/modules/project/functions/remove-project-member.d.ts +1 -1
  22. package/dist/schema/modules/project/functions/update-project.d.ts +1 -1
  23. package/dist/schema/modules/tag/classes/tag.d.ts +266 -51
  24. package/dist/schema/modules/tag/functions/delete-tag.d.ts +1 -1
  25. package/dist/schema/modules/tag/functions/edit-tag.d.ts +1 -1
  26. package/dist/schema/schema.d.ts +1667 -882
  27. package/dist/schema/schema.js +1 -2
  28. package/package.json +6 -7
@@ -1,4 +1,3 @@
1
- import { ShellSchema } from '@astrale-domains/shell';
2
1
  import { KernelSchema, defineSchema, view } from '@astrale-os/sdk/schema';
3
2
  import { Comment, comment_authored_by, issue_has_comment, ContributeToComment, EditOwnComment, TraverseCommentRelationship, TraverseIssueComment, } from './modules/comment/index.js';
4
3
  import { Issue, ContributeToIssue, TraverseIssueAssignee, TraverseIssueParent, TraverseIssueReporter, TraverseProjectIssue, issue_assigned_to, issue_reported_by, issue_subtask_of, project_contains_issue, } from './modules/issue/index.js';
@@ -42,7 +41,7 @@ const policies = {
42
41
  };
43
42
  const views = { application: view({}) };
44
43
  export const schema = defineSchema(origin, {
45
- dependencies: { kernel: KernelSchema, shell: ShellSchema },
44
+ dependencies: { kernel: KernelSchema },
46
45
  classes,
47
46
  policies,
48
47
  views,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrale-domains/issues",
3
- "version": "0.2.3",
3
+ "version": "0.3.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/astrale-os/domains.git",
@@ -28,15 +28,14 @@
28
28
  "registry": "https://registry.npmjs.org/"
29
29
  },
30
30
  "dependencies": {
31
- "@astrale-domains/shell": "0.1.0-beta.22",
32
- "@astrale-os/sdk": "0.5.0-beta.109",
31
+ "@astrale-os/sdk": "0.5.0-beta.124",
33
32
  "zod": "4.4.3"
34
33
  },
35
34
  "devDependencies": {
36
- "@astrale-os/adapter-cloudflare": "0.5.0-beta.112",
35
+ "@astrale-os/adapter-cloudflare": "0.5.0-beta.127",
37
36
  "@astrale-os/ox": ">=0.1.4 <1.0.0",
38
- "@astrale-os/shell": "0.5.0-beta.13",
39
- "@astrale-os/shell-react": "0.4.0-beta.13",
37
+ "@astrale-os/shell": "0.5.0-beta.16",
38
+ "@astrale-os/shell-react": "0.4.0-beta.15",
40
39
  "@astrale-os/ui": "0.3.0-beta.25",
41
40
  "@tailwindcss/vite": "^4.3.3",
42
41
  "@tanstack/react-router": "1.170.18",
@@ -47,6 +46,7 @@
47
46
  "@types/react": "^19.2.18",
48
47
  "@types/react-dom": "^19.2.4",
49
48
  "@vitejs/plugin-react": "^6.1.0",
49
+ "bun": "1.4.0",
50
50
  "jsdom": "30.0.1",
51
51
  "mermaid": "^11.17.0",
52
52
  "oxlint": ">=1.79.0 <2.0.0",
@@ -78,7 +78,6 @@
78
78
  "package": "astrale-domain package",
79
79
  "typecheck": "tsc --noEmit",
80
80
  "test": "vitest run --config vitest.config.ts",
81
- "frontend:dev": "vite",
82
81
  "frontend:build": "vite build"
83
82
  }
84
83
  }