@astrale-domains/issues 0.1.7 → 0.2.0
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 +18 -0
- package/dist/schema/modules/comment/policies/traverse-comment-relationship.js +3 -4
- package/dist/schema/modules/comment/policies/traverse-issue-comment.js +3 -4
- package/dist/schema/modules/issue/classes/issue.d.ts +4 -4
- package/dist/schema/modules/issue/functions/transition-issue.d.ts +1 -1
- package/dist/schema/modules/issue/policies/traverse-issue-assignee.js +3 -4
- package/dist/schema/modules/issue/policies/traverse-issue-parent.js +3 -4
- package/dist/schema/modules/issue/policies/traverse-issue-reporter.js +3 -4
- package/dist/schema/modules/issue/policies/traverse-project-issue.js +1 -2
- package/dist/schema/modules/issue/types/issue.d.ts +1 -1
- package/dist/schema/modules/project/classes/project.d.ts +3 -3
- package/dist/schema/modules/project/policies/traverse-project-member.js +1 -1
- package/dist/schema/modules/project/policies/traverse-project-owner.js +1 -1
- package/dist/schema/modules/tag/policies/traverse-issue-tag.js +3 -4
- package/dist/schema/modules/tag/policies/traverse-project-tag.js +1 -2
- package/dist/schema/schema.d.ts +4 -4
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0](https://github.com/astrale-os/domains/compare/issues-v0.1.8...issues-v0.2.0) (2026-09-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* adopt unified Domain functions layer ([#144](https://github.com/astrale-os/domains/issues/144))
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* adopt unified Domain functions layer ([#144](https://github.com/astrale-os/domains/issues/144)) ([47879e1](https://github.com/astrale-os/domains/commit/47879e1401fc63dbe4dcfc2c6dcc23262b6baf7c))
|
|
13
|
+
|
|
14
|
+
## [0.1.8](https://github.com/astrale-os/domains/compare/issues-v0.1.7...issues-v0.1.8) (2026-08-30)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **domains:** adopt function requirements ([#141](https://github.com/astrale-os/domains/issues/141)) ([29710c9](https://github.com/astrale-os/domains/commit/29710c9ee057e4c6a50901b3c54e42c3694d143e))
|
|
20
|
+
|
|
3
21
|
## [0.1.7](https://github.com/astrale-os/domains/compare/issues-v0.1.6...issues-v0.1.7) (2026-08-30)
|
|
4
22
|
|
|
5
23
|
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { Issue, project_contains_issue } from '../../issue/index.js';
|
|
3
3
|
import { Project, project_has_member, project_owned_by } from '../../project/index.js';
|
|
4
|
-
import { comment_authored_by } from '../classes/comment-authored-by.js';
|
|
5
4
|
import { issue_has_comment } from '../classes/issue-has-comment.js';
|
|
6
5
|
export const TraverseCommentRelationship = policy({
|
|
7
6
|
description: 'The caller owns or belongs to the Project containing the source Comment.',
|
|
8
|
-
match: ({ allOf, anyOf, edge, exists,
|
|
7
|
+
match: ({ allOf, anyOf, edge, exists, subject, target }) => anyOf(exists(({ node }) => {
|
|
9
8
|
const issue = node(() => Issue);
|
|
10
9
|
const project = node(() => Project);
|
|
11
|
-
return allOf(edge({ source
|
|
10
|
+
return allOf(edge({ source: issue, class: () => issue_has_comment, target }), edge({ source: project, class: () => project_contains_issue, target: issue }), edge({ source: subject, class: () => project_owned_by, target: project }));
|
|
12
11
|
}), exists(({ node }) => {
|
|
13
12
|
const issue = node(() => Issue);
|
|
14
13
|
const project = node(() => Project);
|
|
15
|
-
return allOf(edge({ source
|
|
14
|
+
return allOf(edge({ source: issue, class: () => issue_has_comment, target }), edge({ source: project, class: () => project_contains_issue, target: issue }), edge({ source: subject, class: () => project_has_member, target: project }));
|
|
16
15
|
})),
|
|
17
16
|
});
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { project_contains_issue } from '../../issue/index.js';
|
|
3
3
|
import { Project, project_has_member, project_owned_by } from '../../project/index.js';
|
|
4
|
-
import { issue_has_comment } from '../classes/issue-has-comment.js';
|
|
5
4
|
export const TraverseIssueComment = policy({
|
|
6
5
|
description: 'Issue Comment containment is visible only inside the containing Project.',
|
|
7
|
-
match: ({ allOf, anyOf, edge, exists, source, subject
|
|
6
|
+
match: ({ allOf, anyOf, edge, exists, source, subject }) => anyOf(exists(({ node }) => {
|
|
8
7
|
const project = node(() => Project);
|
|
9
|
-
return allOf(edge({ source
|
|
8
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target: source }), edge({ source: subject, class: () => project_owned_by, target: project }));
|
|
10
9
|
}), exists(({ node }) => {
|
|
11
10
|
const project = node(() => Project);
|
|
12
|
-
return allOf(edge({ source
|
|
11
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target: source }), edge({ source: subject, class: () => project_has_member, target: project }));
|
|
13
12
|
})),
|
|
14
13
|
});
|
|
@@ -54,7 +54,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
54
54
|
readonly reference: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reference", "self", undefined>;
|
|
55
55
|
readonly reporterId: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reporterId", "self", never>;
|
|
56
56
|
readonly assigneeId: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string | undefined, string | undefined, false, "assigneeId", "self", never>;
|
|
57
|
-
readonly status: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<
|
|
57
|
+
readonly status: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<"accepted" | "closed" | "deferred" | "open" | "resolved", "accepted" | "closed" | "deferred" | "open" | "resolved", true, "status", "self", import("@astrale-os/sdk/state").StateTopology<{
|
|
58
58
|
readonly open: {
|
|
59
59
|
readonly accept: "accepted";
|
|
60
60
|
readonly defer: "deferred";
|
|
@@ -99,7 +99,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
99
99
|
};
|
|
100
100
|
}, "authorized", false, "default">>;
|
|
101
101
|
readonly transition: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
102
|
-
event:
|
|
102
|
+
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
103
103
|
}, {
|
|
104
104
|
readonly mode: 'value';
|
|
105
105
|
readonly value: {
|
|
@@ -164,7 +164,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
164
164
|
};
|
|
165
165
|
}, "authorized", false, "default">>;
|
|
166
166
|
};
|
|
167
|
-
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<boolean, boolean, true, "archived", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string | undefined, string | undefined, false, "assigneeId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<number, number, true, "priority", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reference", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reporterId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<
|
|
167
|
+
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<boolean, boolean, true, "archived", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string | undefined, string | undefined, false, "assigneeId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<number, number, true, "priority", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reference", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reporterId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<"accepted" | "closed" | "deferred" | "open" | "resolved", "accepted" | "closed" | "deferred" | "open" | "resolved", true, "status", "self", import("@astrale-os/sdk/state").StateTopology<{
|
|
168
168
|
readonly open: {
|
|
169
169
|
readonly accept: "accepted";
|
|
170
170
|
readonly defer: "deferred";
|
|
@@ -222,7 +222,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
222
222
|
archived: boolean;
|
|
223
223
|
};
|
|
224
224
|
}, "authorized", false, "default">>, "update", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
225
|
-
event:
|
|
225
|
+
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
226
226
|
}, {
|
|
227
227
|
readonly mode: 'value';
|
|
228
228
|
readonly value: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const transitionIssueMethod: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
2
|
-
event:
|
|
2
|
+
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
3
3
|
}, {
|
|
4
4
|
readonly mode: 'value';
|
|
5
5
|
readonly value: {
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { Project, project_has_member, project_owned_by } from '../../project/index.js';
|
|
3
|
-
import { issue_assigned_to } from '../classes/issue-assigned-to.js';
|
|
4
3
|
import { project_contains_issue } from '../classes/project-contains-issue.js';
|
|
5
4
|
export const TraverseIssueAssignee = policy({
|
|
6
5
|
description: 'Issue assignment relationships are visible only inside the containing Project.',
|
|
7
|
-
match: ({ allOf, anyOf, edge, exists,
|
|
6
|
+
match: ({ allOf, anyOf, edge, exists, subject, target }) => anyOf(exists(({ node }) => {
|
|
8
7
|
const project = node(() => Project);
|
|
9
|
-
return allOf(edge({ source
|
|
8
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target }), edge({ source: subject, class: () => project_owned_by, target: project }));
|
|
10
9
|
}), exists(({ node }) => {
|
|
11
10
|
const project = node(() => Project);
|
|
12
|
-
return allOf(edge({ source
|
|
11
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target }), edge({ source: subject, class: () => project_has_member, target: project }));
|
|
13
12
|
})),
|
|
14
13
|
});
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { Project, project_has_member, project_owned_by } from '../../project/index.js';
|
|
3
|
-
import { issue_subtask_of } from '../classes/issue-subtask-of.js';
|
|
4
3
|
import { project_contains_issue } from '../classes/project-contains-issue.js';
|
|
5
4
|
export const TraverseIssueParent = policy({
|
|
6
5
|
description: 'Issue parent relationships are visible only inside the containing Project.',
|
|
7
|
-
match: ({ allOf, anyOf, edge, exists, source, subject
|
|
6
|
+
match: ({ allOf, anyOf, edge, exists, source, subject }) => anyOf(exists(({ node }) => {
|
|
8
7
|
const project = node(() => Project);
|
|
9
|
-
return allOf(edge({ source
|
|
8
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target: source }), edge({ source: subject, class: () => project_owned_by, target: project }));
|
|
10
9
|
}), exists(({ node }) => {
|
|
11
10
|
const project = node(() => Project);
|
|
12
|
-
return allOf(edge({ source
|
|
11
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target: source }), edge({ source: subject, class: () => project_has_member, target: project }));
|
|
13
12
|
})),
|
|
14
13
|
});
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { Project, project_has_member, project_owned_by } from '../../project/index.js';
|
|
3
|
-
import { issue_reported_by } from '../classes/issue-reported-by.js';
|
|
4
3
|
import { project_contains_issue } from '../classes/project-contains-issue.js';
|
|
5
4
|
export const TraverseIssueReporter = policy({
|
|
6
5
|
description: 'Issue reporter relationships are visible only inside the containing Project.',
|
|
7
|
-
match: ({ allOf, anyOf, edge, exists,
|
|
6
|
+
match: ({ allOf, anyOf, edge, exists, subject, target }) => anyOf(exists(({ node }) => {
|
|
8
7
|
const project = node(() => Project);
|
|
9
|
-
return allOf(edge({ source
|
|
8
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target }), edge({ source: subject, class: () => project_owned_by, target: project }));
|
|
10
9
|
}), exists(({ node }) => {
|
|
11
10
|
const project = node(() => Project);
|
|
12
|
-
return allOf(edge({ source
|
|
11
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target }), edge({ source: subject, class: () => project_has_member, target: project }));
|
|
13
12
|
})),
|
|
14
13
|
});
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { project_has_member, project_owned_by } from '../../project/index.js';
|
|
3
|
-
import { project_contains_issue } from '../classes/project-contains-issue.js';
|
|
4
3
|
export const TraverseProjectIssue = policy({
|
|
5
4
|
description: 'Project Issue containment is visible only to that Project owner and members.',
|
|
6
|
-
match: ({
|
|
5
|
+
match: ({ anyOf, edge, source, subject }) => anyOf(edge({ source: subject, class: () => project_owned_by, target: source }), edge({ source: subject, class: () => project_has_member, target: source })),
|
|
7
6
|
});
|
|
@@ -4,7 +4,7 @@ export declare const issueValue: z.ZodObject<{
|
|
|
4
4
|
reference: z.ZodString;
|
|
5
5
|
title: z.ZodString;
|
|
6
6
|
description: z.ZodString;
|
|
7
|
-
status: z.ZodType<"accepted" | "closed" | "deferred" | "open" | "resolved",
|
|
7
|
+
status: z.ZodType<"accepted" | "closed" | "deferred" | "open" | "resolved", "accepted" | "closed" | "deferred" | "open" | "resolved", z.core.$ZodTypeInternals<"accepted" | "closed" | "deferred" | "open" | "resolved", "accepted" | "closed" | "deferred" | "open" | "resolved">>;
|
|
8
8
|
priority: z.ZodNumber;
|
|
9
9
|
archived: z.ZodBoolean;
|
|
10
10
|
}, z.core.$strict>;
|
|
@@ -169,12 +169,12 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
169
169
|
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<boolean, boolean, true, "archived", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "key", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string[], string[], true, "memberIds", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<number, number, true, "nextIssueNumber", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "ownerId", "self", never>) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, false, never> & {
|
|
170
170
|
readonly name: "description";
|
|
171
171
|
readonly key: "kernel.astrale.ai:class.Descriptable.property.description";
|
|
172
|
-
}) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
173
|
-
readonly name: "createdAt";
|
|
174
|
-
readonly key: "kernel.astrale.ai:class.Timestamped.property.createdAt";
|
|
175
172
|
}) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
176
173
|
readonly name: "name";
|
|
177
174
|
readonly key: "kernel.astrale.ai:class.Named.property.name";
|
|
175
|
+
}) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
176
|
+
readonly name: "createdAt";
|
|
177
|
+
readonly key: "kernel.astrale.ai:class.Timestamped.property.createdAt";
|
|
178
178
|
}) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
179
179
|
readonly name: "updatedAt";
|
|
180
180
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
@@ -3,5 +3,5 @@ import { project_has_member } from '../classes/project-has-member.js';
|
|
|
3
3
|
import { project_owned_by } from '../classes/project-owned-by.js';
|
|
4
4
|
export const TraverseProjectMember = policy({
|
|
5
5
|
description: 'Project membership is visible only to that Project owner and members.',
|
|
6
|
-
match: ({
|
|
6
|
+
match: ({ anyOf, edge, subject, target }) => anyOf(edge({ source: subject, class: () => project_owned_by, target }), edge({ source: subject, class: () => project_has_member, target })),
|
|
7
7
|
});
|
|
@@ -3,5 +3,5 @@ import { project_has_member } from '../classes/project-has-member.js';
|
|
|
3
3
|
import { project_owned_by } from '../classes/project-owned-by.js';
|
|
4
4
|
export const TraverseProjectOwner = policy({
|
|
5
5
|
description: 'Project ownership is visible only to that Project owner and members.',
|
|
6
|
-
match: ({
|
|
6
|
+
match: ({ anyOf, edge, subject, target }) => anyOf(edge({ source: subject, class: () => project_owned_by, target }), edge({ source: subject, class: () => project_has_member, target })),
|
|
7
7
|
});
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { project_contains_issue } from '../../issue/index.js';
|
|
3
3
|
import { Project, project_has_member, project_owned_by } from '../../project/index.js';
|
|
4
|
-
import { issue_tagged_with } from '../classes/issue-tagged-with.js';
|
|
5
4
|
export const TraverseIssueTag = policy({
|
|
6
5
|
description: 'Issue Tag relationships are visible only inside the containing Project.',
|
|
7
|
-
match: ({ allOf, anyOf, edge, exists, source, subject
|
|
6
|
+
match: ({ allOf, anyOf, edge, exists, source, subject }) => anyOf(exists(({ node }) => {
|
|
8
7
|
const project = node(() => Project);
|
|
9
|
-
return allOf(edge({ source
|
|
8
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target: source }), edge({ source: subject, class: () => project_owned_by, target: project }));
|
|
10
9
|
}), exists(({ node }) => {
|
|
11
10
|
const project = node(() => Project);
|
|
12
|
-
return allOf(edge({ source
|
|
11
|
+
return allOf(edge({ source: project, class: () => project_contains_issue, target: source }), edge({ source: subject, class: () => project_has_member, target: project }));
|
|
13
12
|
})),
|
|
14
13
|
});
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { policy } from '@astrale-os/sdk/schema';
|
|
2
2
|
import { project_has_member, project_owned_by } from '../../project/index.js';
|
|
3
|
-
import { project_contains_tag } from '../classes/project-contains-tag.js';
|
|
4
3
|
export const TraverseProjectTag = policy({
|
|
5
4
|
description: 'Project Tag containment is visible only to that Project owner and members.',
|
|
6
|
-
match: ({
|
|
5
|
+
match: ({ anyOf, edge, source, subject }) => anyOf(edge({ source: subject, class: () => project_owned_by, target: source }), edge({ source: subject, class: () => project_has_member, target: source })),
|
|
7
6
|
});
|
package/dist/schema/schema.d.ts
CHANGED
|
@@ -342,7 +342,7 @@ declare const classes: {
|
|
|
342
342
|
readonly reference: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reference", "self", undefined>;
|
|
343
343
|
readonly reporterId: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reporterId", "self", never>;
|
|
344
344
|
readonly assigneeId: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string | undefined, string | undefined, false, "assigneeId", "self", never>;
|
|
345
|
-
readonly status: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<
|
|
345
|
+
readonly status: import("@astrale-os/sdk/schema").AuthoredPropertyProjection<"accepted" | "closed" | "deferred" | "open" | "resolved", "accepted" | "closed" | "deferred" | "open" | "resolved", true, "status", "self", import("@astrale-os/sdk/state").StateTopology<{
|
|
346
346
|
readonly open: {
|
|
347
347
|
readonly accept: "accepted";
|
|
348
348
|
readonly defer: "deferred";
|
|
@@ -387,7 +387,7 @@ declare const classes: {
|
|
|
387
387
|
};
|
|
388
388
|
}, "authorized", false, "default">>;
|
|
389
389
|
readonly transition: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
390
|
-
event:
|
|
390
|
+
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
391
391
|
}, {
|
|
392
392
|
readonly mode: 'value';
|
|
393
393
|
readonly value: {
|
|
@@ -452,7 +452,7 @@ declare const classes: {
|
|
|
452
452
|
};
|
|
453
453
|
}, "authorized", false, "default">>;
|
|
454
454
|
};
|
|
455
|
-
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<boolean, boolean, true, "archived", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string | undefined, string | undefined, false, "assigneeId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<number, number, true, "priority", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reference", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reporterId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<
|
|
455
|
+
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<boolean, boolean, true, "archived", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string | undefined, string | undefined, false, "assigneeId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<number, number, true, "priority", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reference", "self", undefined> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "reporterId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<"accepted" | "closed" | "deferred" | "open" | "resolved", "accepted" | "closed" | "deferred" | "open" | "resolved", true, "status", "self", import("@astrale-os/sdk/state").StateTopology<{
|
|
456
456
|
readonly open: {
|
|
457
457
|
readonly accept: "accepted";
|
|
458
458
|
readonly defer: "deferred";
|
|
@@ -510,7 +510,7 @@ declare const classes: {
|
|
|
510
510
|
archived: boolean;
|
|
511
511
|
};
|
|
512
512
|
}, "authorized", false, "default">>, "update", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
513
|
-
event:
|
|
513
|
+
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
514
514
|
}, {
|
|
515
515
|
readonly mode: 'value';
|
|
516
516
|
readonly value: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrale-domains/issues",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/astrale-os/domains.git",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"registry": "https://registry.npmjs.org/"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@astrale-domains/shell": "0.1.0-beta.
|
|
32
|
-
"@astrale-os/sdk": "0.5.0-beta.
|
|
33
|
-
"zod": "
|
|
31
|
+
"@astrale-domains/shell": "0.1.0-beta.21",
|
|
32
|
+
"@astrale-os/sdk": "0.5.0-beta.99",
|
|
33
|
+
"zod": "4.4.3"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@astrale-os/adapter-cloudflare": "0.5.0-beta.
|
|
36
|
+
"@astrale-os/adapter-cloudflare": "0.5.0-beta.102",
|
|
37
37
|
"@astrale-os/ox": ">=0.1.4 <1.0.0",
|
|
38
|
-
"@astrale-os/shell": "0.
|
|
39
|
-
"@astrale-os/shell-react": "0.
|
|
40
|
-
"@astrale-os/ui": "0.3.0-beta.
|
|
38
|
+
"@astrale-os/shell": "0.5.0-beta.11",
|
|
39
|
+
"@astrale-os/shell-react": "0.4.0-beta.10",
|
|
40
|
+
"@astrale-os/ui": "0.3.0-beta.25",
|
|
41
41
|
"@tailwindcss/vite": "^4.3.3",
|
|
42
42
|
"@tanstack/react-router": "1.170.18",
|
|
43
43
|
"@tanstack/router-plugin": "1.168.23",
|