@astrale-domains/issues 0.2.3 → 0.3.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 +20 -0
- package/README.md +3 -0
- package/dist/schema/modules/comment/classes/comment.d.ts +6 -4
- package/dist/schema/modules/comment/functions/delete-comment.d.ts +1 -1
- package/dist/schema/modules/comment/functions/edit-comment.d.ts +1 -1
- package/dist/schema/modules/issue/classes/issue.d.ts +16 -14
- package/dist/schema/modules/issue/functions/add-issue-comment.d.ts +1 -1
- package/dist/schema/modules/issue/functions/archive-issue.d.ts +1 -1
- package/dist/schema/modules/issue/functions/assign-issue.d.ts +1 -1
- package/dist/schema/modules/issue/functions/set-issue-parent.d.ts +1 -1
- package/dist/schema/modules/issue/functions/set-issue-tags.d.ts +1 -1
- package/dist/schema/modules/issue/functions/transition-issue.d.ts +1 -1
- package/dist/schema/modules/issue/functions/update-issue.d.ts +1 -1
- package/dist/schema/modules/project/classes/project.d.ts +18 -16
- package/dist/schema/modules/project/functions/add-project-member.d.ts +1 -1
- package/dist/schema/modules/project/functions/archive-project.d.ts +1 -1
- package/dist/schema/modules/project/functions/create-project-issue.d.ts +1 -1
- package/dist/schema/modules/project/functions/create-project-tag.d.ts +1 -1
- package/dist/schema/modules/project/functions/create-project.d.ts +1 -1
- package/dist/schema/modules/project/functions/list-projects.d.ts +1 -1
- package/dist/schema/modules/project/functions/remove-project-member.d.ts +1 -1
- package/dist/schema/modules/project/functions/update-project.d.ts +1 -1
- package/dist/schema/modules/tag/classes/tag.d.ts +6 -4
- package/dist/schema/modules/tag/functions/delete-tag.d.ts +1 -1
- package/dist/schema/modules/tag/functions/edit-tag.d.ts +1 -1
- package/dist/schema/schema.d.ts +46 -40
- package/dist/schema/schema.js +1 -2
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.0](https://github.com/astrale-os/domains/compare/issues-v0.2.3...issues-v0.3.0) (2026-09-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* **services:** implement management methods on exact worker classes ([#176](https://github.com/astrale-os/domains/issues/176))
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **domains:** adopt deploy-only project environments ([#183](https://github.com/astrale-os/domains/issues/183)) ([cedee91](https://github.com/astrale-os/domains/commit/cedee910d89e3e23420aad8291f54715fc6c87f5))
|
|
13
|
+
* **services:** implement management methods on exact worker classes ([#176](https://github.com/astrale-os/domains/issues/176)) ([f08ecd5](https://github.com/astrale-os/domains/commit/f08ecd5ffed9305e3ebae194202a1d252a84d1af))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **domains:** align bootstrap domains with Register kernel ([#185](https://github.com/astrale-os/domains/issues/185)) ([ead0ed0](https://github.com/astrale-os/domains/commit/ead0ed0fc7483d862e825934dd5e7ec01fbeaced))
|
|
19
|
+
* **issues:** derive Browse assignment from readable Issue state ([#171](https://github.com/astrale-os/domains/issues/171)) ([31ec886](https://github.com/astrale-os/domains/commit/31ec88671a4ddb2d47e38293c917dfa1a10f75d2))
|
|
20
|
+
* **issues:** use visible identity indexes in view ([#169](https://github.com/astrale-os/domains/issues/169)) ([58f2ad0](https://github.com/astrale-os/domains/commit/58f2ad02803113bfdd06dbddfa893f827f54ad86))
|
|
21
|
+
* **schema:** migrate downstream Class Policy contracts ([#174](https://github.com/astrale-os/domains/issues/174)) ([15abf49](https://github.com/astrale-os/domains/commit/15abf49f3c8ecc1e23313f9fdde8d7c85085d3a3))
|
|
22
|
+
|
|
3
23
|
## [0.2.3](https://github.com/astrale-os/domains/compare/issues-v0.2.2...issues-v0.2.3) (2026-09-04)
|
|
4
24
|
|
|
5
25
|
|
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
It is a current Astrale Application with Schema Policies, receiver Methods, atomic Mutations, and an
|
|
5
5
|
inbox-first Shell View.
|
|
6
6
|
|
|
7
|
+
The graph Schema depends only on Kernel: collaboration edges target any `Identity` subtype.
|
|
8
|
+
Shell is a frontend integration, not a pinned Schema dependency or a source of Core group data.
|
|
9
|
+
|
|
7
10
|
```text
|
|
8
11
|
Project
|
|
9
12
|
owned by one Identity; shared with member Identities
|
|
@@ -31,14 +31,14 @@ export declare const Comment: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
31
31
|
id: string;
|
|
32
32
|
body: string;
|
|
33
33
|
};
|
|
34
|
-
}, "authorized", false,
|
|
34
|
+
}, "authorized", false, false>>;
|
|
35
35
|
readonly delete: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
36
36
|
readonly mode: 'value';
|
|
37
37
|
readonly value: {
|
|
38
38
|
commentId: string;
|
|
39
39
|
deleted: true;
|
|
40
40
|
};
|
|
41
|
-
}, "authorized", false,
|
|
41
|
+
}, "authorized", false, false>>;
|
|
42
42
|
};
|
|
43
43
|
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "authorId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "body", "self", undefined>) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
44
44
|
readonly name: "createdAt";
|
|
@@ -47,13 +47,15 @@ export declare const Comment: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
47
47
|
readonly name: "updatedAt";
|
|
48
48
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
49
49
|
});
|
|
50
|
+
readonly abstractInstanceMethods: never;
|
|
51
|
+
readonly abstractStaticMethods: never;
|
|
50
52
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
51
53
|
readonly mode: 'value';
|
|
52
54
|
readonly value: {
|
|
53
55
|
commentId: string;
|
|
54
56
|
deleted: true;
|
|
55
57
|
};
|
|
56
|
-
}, "authorized", false,
|
|
58
|
+
}, "authorized", false, false>>, "delete", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
57
59
|
body: string;
|
|
58
60
|
}, {
|
|
59
61
|
readonly mode: 'value';
|
|
@@ -61,6 +63,6 @@ export declare const Comment: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
61
63
|
id: string;
|
|
62
64
|
body: string;
|
|
63
65
|
};
|
|
64
|
-
}, "authorized", false,
|
|
66
|
+
}, "authorized", false, false>>, "edit", "self">;
|
|
65
67
|
readonly effectiveStaticMethods: never;
|
|
66
68
|
}>;
|
|
@@ -97,7 +97,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
97
97
|
priority: number;
|
|
98
98
|
archived: boolean;
|
|
99
99
|
};
|
|
100
|
-
}, "authorized", false,
|
|
100
|
+
}, "authorized", false, false>>;
|
|
101
101
|
readonly transition: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
102
102
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
103
103
|
}, {
|
|
@@ -119,7 +119,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
119
119
|
from: "accepted" | "closed" | "deferred" | "open" | "resolved";
|
|
120
120
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
121
121
|
};
|
|
122
|
-
}, "authorized", false,
|
|
122
|
+
}, "authorized", false, false>>;
|
|
123
123
|
readonly assign: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
124
124
|
assigneeId: string | null;
|
|
125
125
|
}, {
|
|
@@ -128,7 +128,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
128
128
|
issueId: string;
|
|
129
129
|
assigneeId?: string | undefined;
|
|
130
130
|
};
|
|
131
|
-
}, "authorized", false,
|
|
131
|
+
}, "authorized", false, false>>;
|
|
132
132
|
readonly setTags: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
133
133
|
tagIds: string[];
|
|
134
134
|
}, {
|
|
@@ -137,7 +137,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
137
137
|
issueId: string;
|
|
138
138
|
tagIds: string[];
|
|
139
139
|
};
|
|
140
|
-
}, "authorized", false,
|
|
140
|
+
}, "authorized", false, false>>;
|
|
141
141
|
readonly setParent: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
142
142
|
parentId: string | null;
|
|
143
143
|
}, {
|
|
@@ -146,7 +146,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
146
146
|
issueId: string;
|
|
147
147
|
parentId?: string | undefined;
|
|
148
148
|
};
|
|
149
|
-
}, "authorized", false,
|
|
149
|
+
}, "authorized", false, false>>;
|
|
150
150
|
readonly addComment: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
151
151
|
body: string;
|
|
152
152
|
}, {
|
|
@@ -155,14 +155,14 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
155
155
|
id: string;
|
|
156
156
|
body: string;
|
|
157
157
|
};
|
|
158
|
-
}, "authorized", false,
|
|
158
|
+
}, "authorized", false, false>>;
|
|
159
159
|
readonly archive: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
160
160
|
readonly mode: 'value';
|
|
161
161
|
readonly value: {
|
|
162
162
|
issueId: string;
|
|
163
163
|
archived: true;
|
|
164
164
|
};
|
|
165
|
-
}, "authorized", false,
|
|
165
|
+
}, "authorized", false, false>>;
|
|
166
166
|
};
|
|
167
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: {
|
|
@@ -200,13 +200,15 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
200
200
|
readonly name: "updatedAt";
|
|
201
201
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
202
202
|
});
|
|
203
|
+
readonly abstractInstanceMethods: never;
|
|
204
|
+
readonly abstractStaticMethods: never;
|
|
203
205
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
204
206
|
readonly mode: 'value';
|
|
205
207
|
readonly value: {
|
|
206
208
|
issueId: string;
|
|
207
209
|
archived: true;
|
|
208
210
|
};
|
|
209
|
-
}, "authorized", false,
|
|
211
|
+
}, "authorized", false, false>>, "archive", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
210
212
|
title?: string | undefined;
|
|
211
213
|
description?: string | undefined;
|
|
212
214
|
priority?: number | undefined;
|
|
@@ -221,7 +223,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
221
223
|
priority: number;
|
|
222
224
|
archived: boolean;
|
|
223
225
|
};
|
|
224
|
-
}, "authorized", false,
|
|
226
|
+
}, "authorized", false, false>>, "update", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
225
227
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
226
228
|
}, {
|
|
227
229
|
readonly mode: 'value';
|
|
@@ -242,7 +244,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
242
244
|
from: "accepted" | "closed" | "deferred" | "open" | "resolved";
|
|
243
245
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
244
246
|
};
|
|
245
|
-
}, "authorized", false,
|
|
247
|
+
}, "authorized", false, false>>, "transition", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
246
248
|
assigneeId: string | null;
|
|
247
249
|
}, {
|
|
248
250
|
readonly mode: 'value';
|
|
@@ -250,7 +252,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
250
252
|
issueId: string;
|
|
251
253
|
assigneeId?: string | undefined;
|
|
252
254
|
};
|
|
253
|
-
}, "authorized", false,
|
|
255
|
+
}, "authorized", false, false>>, "assign", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
254
256
|
tagIds: string[];
|
|
255
257
|
}, {
|
|
256
258
|
readonly mode: 'value';
|
|
@@ -258,7 +260,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
258
260
|
issueId: string;
|
|
259
261
|
tagIds: string[];
|
|
260
262
|
};
|
|
261
|
-
}, "authorized", false,
|
|
263
|
+
}, "authorized", false, false>>, "setTags", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
262
264
|
parentId: string | null;
|
|
263
265
|
}, {
|
|
264
266
|
readonly mode: 'value';
|
|
@@ -266,7 +268,7 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
266
268
|
issueId: string;
|
|
267
269
|
parentId?: string | undefined;
|
|
268
270
|
};
|
|
269
|
-
}, "authorized", false,
|
|
271
|
+
}, "authorized", false, false>>, "setParent", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
270
272
|
body: string;
|
|
271
273
|
}, {
|
|
272
274
|
readonly mode: 'value';
|
|
@@ -274,6 +276,6 @@ export declare const Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
274
276
|
id: string;
|
|
275
277
|
body: string;
|
|
276
278
|
};
|
|
277
|
-
}, "authorized", false,
|
|
279
|
+
}, "authorized", false, false>>, "addComment", "self">;
|
|
278
280
|
readonly effectiveStaticMethods: never;
|
|
279
281
|
}>;
|
|
@@ -19,4 +19,4 @@ export declare const transitionIssueMethod: import("@astrale-os/sdk/schema").Met
|
|
|
19
19
|
from: "accepted" | "closed" | "deferred" | "open" | "resolved";
|
|
20
20
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
21
21
|
};
|
|
22
|
-
}, "authorized", false,
|
|
22
|
+
}, "authorized", false, false>>;
|
|
@@ -71,7 +71,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
71
71
|
description: string;
|
|
72
72
|
archived: boolean;
|
|
73
73
|
};
|
|
74
|
-
}, "authenticated", true,
|
|
74
|
+
}, "authenticated", true, false>>;
|
|
75
75
|
readonly list: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
76
76
|
readonly mode: 'value';
|
|
77
77
|
readonly value: {
|
|
@@ -96,7 +96,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
96
96
|
}[];
|
|
97
97
|
}[];
|
|
98
98
|
};
|
|
99
|
-
}, "authenticated", true,
|
|
99
|
+
}, "authenticated", true, false>>;
|
|
100
100
|
readonly update: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
101
101
|
name?: string | undefined;
|
|
102
102
|
description?: string | undefined;
|
|
@@ -109,7 +109,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
109
109
|
description: string;
|
|
110
110
|
archived: boolean;
|
|
111
111
|
};
|
|
112
|
-
}, "authorized", false,
|
|
112
|
+
}, "authorized", false, false>>;
|
|
113
113
|
readonly addMember: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
114
114
|
memberId: string;
|
|
115
115
|
}, {
|
|
@@ -119,7 +119,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
119
119
|
memberId: string;
|
|
120
120
|
changed: boolean;
|
|
121
121
|
};
|
|
122
|
-
}, "authorized", false,
|
|
122
|
+
}, "authorized", false, false>>;
|
|
123
123
|
readonly removeMember: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
124
124
|
memberId: string;
|
|
125
125
|
}, {
|
|
@@ -129,7 +129,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
129
129
|
memberId: string;
|
|
130
130
|
changed: boolean;
|
|
131
131
|
};
|
|
132
|
-
}, "authorized", false,
|
|
132
|
+
}, "authorized", false, false>>;
|
|
133
133
|
readonly createIssue: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
134
134
|
title: string;
|
|
135
135
|
description?: string | undefined;
|
|
@@ -145,7 +145,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
145
145
|
priority: number;
|
|
146
146
|
archived: boolean;
|
|
147
147
|
};
|
|
148
|
-
}, "authorized", false,
|
|
148
|
+
}, "authorized", false, false>>;
|
|
149
149
|
readonly createTag: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
150
150
|
name: string;
|
|
151
151
|
color?: string | undefined;
|
|
@@ -157,14 +157,14 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
157
157
|
slug: string;
|
|
158
158
|
color?: string | undefined;
|
|
159
159
|
};
|
|
160
|
-
}, "authorized", false,
|
|
160
|
+
}, "authorized", false, false>>;
|
|
161
161
|
readonly archive: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
162
162
|
readonly mode: 'value';
|
|
163
163
|
readonly value: {
|
|
164
164
|
projectId: string;
|
|
165
165
|
archived: true;
|
|
166
166
|
};
|
|
167
|
-
}, "authorized", false,
|
|
167
|
+
}, "authorized", false, false>>;
|
|
168
168
|
};
|
|
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";
|
|
@@ -179,13 +179,15 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
179
179
|
readonly name: "updatedAt";
|
|
180
180
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
181
181
|
});
|
|
182
|
+
readonly abstractInstanceMethods: never;
|
|
183
|
+
readonly abstractStaticMethods: never;
|
|
182
184
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
183
185
|
readonly mode: 'value';
|
|
184
186
|
readonly value: {
|
|
185
187
|
projectId: string;
|
|
186
188
|
archived: true;
|
|
187
189
|
};
|
|
188
|
-
}, "authorized", false,
|
|
190
|
+
}, "authorized", false, false>>, "archive", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
189
191
|
memberId: string;
|
|
190
192
|
}, {
|
|
191
193
|
readonly mode: 'value';
|
|
@@ -194,7 +196,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
194
196
|
memberId: string;
|
|
195
197
|
changed: boolean;
|
|
196
198
|
};
|
|
197
|
-
}, "authorized", false,
|
|
199
|
+
}, "authorized", false, false>>, "addMember", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
198
200
|
name?: string | undefined;
|
|
199
201
|
description?: string | undefined;
|
|
200
202
|
}, {
|
|
@@ -206,7 +208,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
206
208
|
description: string;
|
|
207
209
|
archived: boolean;
|
|
208
210
|
};
|
|
209
|
-
}, "authorized", false,
|
|
211
|
+
}, "authorized", false, false>>, "update", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
210
212
|
memberId: string;
|
|
211
213
|
}, {
|
|
212
214
|
readonly mode: 'value';
|
|
@@ -215,7 +217,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
215
217
|
memberId: string;
|
|
216
218
|
changed: boolean;
|
|
217
219
|
};
|
|
218
|
-
}, "authorized", false,
|
|
220
|
+
}, "authorized", false, false>>, "removeMember", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
219
221
|
title: string;
|
|
220
222
|
description?: string | undefined;
|
|
221
223
|
priority?: number | undefined;
|
|
@@ -230,7 +232,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
230
232
|
priority: number;
|
|
231
233
|
archived: boolean;
|
|
232
234
|
};
|
|
233
|
-
}, "authorized", false,
|
|
235
|
+
}, "authorized", false, false>>, "createIssue", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
234
236
|
name: string;
|
|
235
237
|
color?: string | undefined;
|
|
236
238
|
}, {
|
|
@@ -241,7 +243,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
241
243
|
slug: string;
|
|
242
244
|
color?: string | undefined;
|
|
243
245
|
};
|
|
244
|
-
}, "authorized", false,
|
|
246
|
+
}, "authorized", false, false>>, "createTag", "self">;
|
|
245
247
|
readonly effectiveStaticMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
246
248
|
readonly mode: 'value';
|
|
247
249
|
readonly value: {
|
|
@@ -266,7 +268,7 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
266
268
|
}[];
|
|
267
269
|
}[];
|
|
268
270
|
};
|
|
269
|
-
}, "authenticated", true,
|
|
271
|
+
}, "authenticated", true, false>>, "list", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
270
272
|
key: string;
|
|
271
273
|
name: string;
|
|
272
274
|
description?: string | undefined;
|
|
@@ -279,5 +281,5 @@ export declare const Project: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
279
281
|
description: string;
|
|
280
282
|
archived: boolean;
|
|
281
283
|
};
|
|
282
|
-
}, "authenticated", true,
|
|
284
|
+
}, "authenticated", true, false>>, "create", "self">;
|
|
283
285
|
}>;
|
|
@@ -50,14 +50,14 @@ export declare const Tag: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
50
50
|
slug: string;
|
|
51
51
|
color?: string | undefined;
|
|
52
52
|
};
|
|
53
|
-
}, "authorized", false,
|
|
53
|
+
}, "authorized", false, false>>;
|
|
54
54
|
readonly delete: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
55
55
|
readonly mode: 'value';
|
|
56
56
|
readonly value: {
|
|
57
57
|
tagId: string;
|
|
58
58
|
deleted: true;
|
|
59
59
|
};
|
|
60
|
-
}, "authorized", false,
|
|
60
|
+
}, "authorized", false, false>>;
|
|
61
61
|
};
|
|
62
62
|
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, false, "color", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "slug", "self", undefined>) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
63
63
|
readonly name: "createdAt";
|
|
@@ -69,13 +69,15 @@ export declare const Tag: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
69
69
|
readonly name: "updatedAt";
|
|
70
70
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
71
71
|
});
|
|
72
|
+
readonly abstractInstanceMethods: never;
|
|
73
|
+
readonly abstractStaticMethods: never;
|
|
72
74
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
73
75
|
readonly mode: 'value';
|
|
74
76
|
readonly value: {
|
|
75
77
|
tagId: string;
|
|
76
78
|
deleted: true;
|
|
77
79
|
};
|
|
78
|
-
}, "authorized", false,
|
|
80
|
+
}, "authorized", false, false>>, "delete", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
79
81
|
name?: string | undefined;
|
|
80
82
|
color?: string | null | undefined;
|
|
81
83
|
}, {
|
|
@@ -86,6 +88,6 @@ export declare const Tag: import("@astrale-os/sdk/schema").NodeClass<{
|
|
|
86
88
|
slug: string;
|
|
87
89
|
color?: string | undefined;
|
|
88
90
|
};
|
|
89
|
-
}, "authorized", false,
|
|
91
|
+
}, "authorized", false, false>>, "edit", "self">;
|
|
90
92
|
readonly effectiveStaticMethods: never;
|
|
91
93
|
}>;
|
package/dist/schema/schema.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { schema as language } from '@astrale-os/sdk/schema';
|
|
2
|
-
import { ShellSchema } from '@astrale-domains/shell';
|
|
3
2
|
import { KernelSchema, defineSchema } from '@astrale-os/sdk/schema';
|
|
4
3
|
declare const origin = "issues.astrale.ai";
|
|
5
4
|
declare const classes: {
|
|
@@ -76,7 +75,7 @@ declare const classes: {
|
|
|
76
75
|
description: string;
|
|
77
76
|
archived: boolean;
|
|
78
77
|
};
|
|
79
|
-
}, "authenticated", true,
|
|
78
|
+
}, "authenticated", true, false>>;
|
|
80
79
|
readonly list: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
81
80
|
readonly mode: 'value';
|
|
82
81
|
readonly value: {
|
|
@@ -101,7 +100,7 @@ declare const classes: {
|
|
|
101
100
|
}[];
|
|
102
101
|
}[];
|
|
103
102
|
};
|
|
104
|
-
}, "authenticated", true,
|
|
103
|
+
}, "authenticated", true, false>>;
|
|
105
104
|
readonly update: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
106
105
|
name?: string | undefined;
|
|
107
106
|
description?: string | undefined;
|
|
@@ -114,7 +113,7 @@ declare const classes: {
|
|
|
114
113
|
description: string;
|
|
115
114
|
archived: boolean;
|
|
116
115
|
};
|
|
117
|
-
}, "authorized", false,
|
|
116
|
+
}, "authorized", false, false>>;
|
|
118
117
|
readonly addMember: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
119
118
|
memberId: string;
|
|
120
119
|
}, {
|
|
@@ -124,7 +123,7 @@ declare const classes: {
|
|
|
124
123
|
memberId: string;
|
|
125
124
|
changed: boolean;
|
|
126
125
|
};
|
|
127
|
-
}, "authorized", false,
|
|
126
|
+
}, "authorized", false, false>>;
|
|
128
127
|
readonly removeMember: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
129
128
|
memberId: string;
|
|
130
129
|
}, {
|
|
@@ -134,7 +133,7 @@ declare const classes: {
|
|
|
134
133
|
memberId: string;
|
|
135
134
|
changed: boolean;
|
|
136
135
|
};
|
|
137
|
-
}, "authorized", false,
|
|
136
|
+
}, "authorized", false, false>>;
|
|
138
137
|
readonly createIssue: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
139
138
|
title: string;
|
|
140
139
|
description?: string | undefined;
|
|
@@ -150,7 +149,7 @@ declare const classes: {
|
|
|
150
149
|
priority: number;
|
|
151
150
|
archived: boolean;
|
|
152
151
|
};
|
|
153
|
-
}, "authorized", false,
|
|
152
|
+
}, "authorized", false, false>>;
|
|
154
153
|
readonly createTag: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
155
154
|
name: string;
|
|
156
155
|
color?: string | undefined;
|
|
@@ -162,14 +161,14 @@ declare const classes: {
|
|
|
162
161
|
slug: string;
|
|
163
162
|
color?: string | undefined;
|
|
164
163
|
};
|
|
165
|
-
}, "authorized", false,
|
|
164
|
+
}, "authorized", false, false>>;
|
|
166
165
|
readonly archive: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
167
166
|
readonly mode: 'value';
|
|
168
167
|
readonly value: {
|
|
169
168
|
projectId: string;
|
|
170
169
|
archived: true;
|
|
171
170
|
};
|
|
172
|
-
}, "authorized", false,
|
|
171
|
+
}, "authorized", false, false>>;
|
|
173
172
|
};
|
|
174
173
|
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> & {
|
|
175
174
|
readonly name: "description";
|
|
@@ -184,13 +183,15 @@ declare const classes: {
|
|
|
184
183
|
readonly name: "updatedAt";
|
|
185
184
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
186
185
|
});
|
|
186
|
+
readonly abstractInstanceMethods: never;
|
|
187
|
+
readonly abstractStaticMethods: never;
|
|
187
188
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
188
189
|
readonly mode: 'value';
|
|
189
190
|
readonly value: {
|
|
190
191
|
projectId: string;
|
|
191
192
|
archived: true;
|
|
192
193
|
};
|
|
193
|
-
}, "authorized", false,
|
|
194
|
+
}, "authorized", false, false>>, "archive", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
194
195
|
name?: string | undefined;
|
|
195
196
|
description?: string | undefined;
|
|
196
197
|
}, {
|
|
@@ -202,7 +203,7 @@ declare const classes: {
|
|
|
202
203
|
description: string;
|
|
203
204
|
archived: boolean;
|
|
204
205
|
};
|
|
205
|
-
}, "authorized", false,
|
|
206
|
+
}, "authorized", false, false>>, "update", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
206
207
|
memberId: string;
|
|
207
208
|
}, {
|
|
208
209
|
readonly mode: 'value';
|
|
@@ -211,7 +212,7 @@ declare const classes: {
|
|
|
211
212
|
memberId: string;
|
|
212
213
|
changed: boolean;
|
|
213
214
|
};
|
|
214
|
-
}, "authorized", false,
|
|
215
|
+
}, "authorized", false, false>>, "addMember", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
215
216
|
memberId: string;
|
|
216
217
|
}, {
|
|
217
218
|
readonly mode: 'value';
|
|
@@ -220,7 +221,7 @@ declare const classes: {
|
|
|
220
221
|
memberId: string;
|
|
221
222
|
changed: boolean;
|
|
222
223
|
};
|
|
223
|
-
}, "authorized", false,
|
|
224
|
+
}, "authorized", false, false>>, "removeMember", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
224
225
|
title: string;
|
|
225
226
|
description?: string | undefined;
|
|
226
227
|
priority?: number | undefined;
|
|
@@ -235,7 +236,7 @@ declare const classes: {
|
|
|
235
236
|
priority: number;
|
|
236
237
|
archived: boolean;
|
|
237
238
|
};
|
|
238
|
-
}, "authorized", false,
|
|
239
|
+
}, "authorized", false, false>>, "createIssue", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
239
240
|
name: string;
|
|
240
241
|
color?: string | undefined;
|
|
241
242
|
}, {
|
|
@@ -246,7 +247,7 @@ declare const classes: {
|
|
|
246
247
|
slug: string;
|
|
247
248
|
color?: string | undefined;
|
|
248
249
|
};
|
|
249
|
-
}, "authorized", false,
|
|
250
|
+
}, "authorized", false, false>>, "createTag", "self">;
|
|
250
251
|
readonly effectiveStaticMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
251
252
|
readonly mode: 'value';
|
|
252
253
|
readonly value: {
|
|
@@ -271,7 +272,7 @@ declare const classes: {
|
|
|
271
272
|
}[];
|
|
272
273
|
}[];
|
|
273
274
|
};
|
|
274
|
-
}, "authenticated", true,
|
|
275
|
+
}, "authenticated", true, false>>, "list", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
275
276
|
key: string;
|
|
276
277
|
name: string;
|
|
277
278
|
description?: string | undefined;
|
|
@@ -284,7 +285,7 @@ declare const classes: {
|
|
|
284
285
|
description: string;
|
|
285
286
|
archived: boolean;
|
|
286
287
|
};
|
|
287
|
-
}, "authenticated", true,
|
|
288
|
+
}, "authenticated", true, false>>, "create", "self">;
|
|
288
289
|
}>;
|
|
289
290
|
readonly Issue: import("@astrale-os/sdk/schema").NodeClass<{
|
|
290
291
|
readonly depth: 1;
|
|
@@ -385,7 +386,7 @@ declare const classes: {
|
|
|
385
386
|
priority: number;
|
|
386
387
|
archived: boolean;
|
|
387
388
|
};
|
|
388
|
-
}, "authorized", false,
|
|
389
|
+
}, "authorized", false, false>>;
|
|
389
390
|
readonly transition: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
390
391
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
391
392
|
}, {
|
|
@@ -407,7 +408,7 @@ declare const classes: {
|
|
|
407
408
|
from: "accepted" | "closed" | "deferred" | "open" | "resolved";
|
|
408
409
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
409
410
|
};
|
|
410
|
-
}, "authorized", false,
|
|
411
|
+
}, "authorized", false, false>>;
|
|
411
412
|
readonly assign: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
412
413
|
assigneeId: string | null;
|
|
413
414
|
}, {
|
|
@@ -416,7 +417,7 @@ declare const classes: {
|
|
|
416
417
|
issueId: string;
|
|
417
418
|
assigneeId?: string | undefined;
|
|
418
419
|
};
|
|
419
|
-
}, "authorized", false,
|
|
420
|
+
}, "authorized", false, false>>;
|
|
420
421
|
readonly setTags: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
421
422
|
tagIds: string[];
|
|
422
423
|
}, {
|
|
@@ -425,7 +426,7 @@ declare const classes: {
|
|
|
425
426
|
issueId: string;
|
|
426
427
|
tagIds: string[];
|
|
427
428
|
};
|
|
428
|
-
}, "authorized", false,
|
|
429
|
+
}, "authorized", false, false>>;
|
|
429
430
|
readonly setParent: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
430
431
|
parentId: string | null;
|
|
431
432
|
}, {
|
|
@@ -434,7 +435,7 @@ declare const classes: {
|
|
|
434
435
|
issueId: string;
|
|
435
436
|
parentId?: string | undefined;
|
|
436
437
|
};
|
|
437
|
-
}, "authorized", false,
|
|
438
|
+
}, "authorized", false, false>>;
|
|
438
439
|
readonly addComment: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
439
440
|
body: string;
|
|
440
441
|
}, {
|
|
@@ -443,14 +444,14 @@ declare const classes: {
|
|
|
443
444
|
id: string;
|
|
444
445
|
body: string;
|
|
445
446
|
};
|
|
446
|
-
}, "authorized", false,
|
|
447
|
+
}, "authorized", false, false>>;
|
|
447
448
|
readonly archive: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
448
449
|
readonly mode: 'value';
|
|
449
450
|
readonly value: {
|
|
450
451
|
issueId: string;
|
|
451
452
|
archived: true;
|
|
452
453
|
};
|
|
453
|
-
}, "authorized", false,
|
|
454
|
+
}, "authorized", false, false>>;
|
|
454
455
|
};
|
|
455
456
|
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
457
|
readonly open: {
|
|
@@ -488,13 +489,15 @@ declare const classes: {
|
|
|
488
489
|
readonly name: "updatedAt";
|
|
489
490
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
490
491
|
});
|
|
492
|
+
readonly abstractInstanceMethods: never;
|
|
493
|
+
readonly abstractStaticMethods: never;
|
|
491
494
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
492
495
|
readonly mode: 'value';
|
|
493
496
|
readonly value: {
|
|
494
497
|
issueId: string;
|
|
495
498
|
archived: true;
|
|
496
499
|
};
|
|
497
|
-
}, "authorized", false,
|
|
500
|
+
}, "authorized", false, false>>, "archive", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
498
501
|
title?: string | undefined;
|
|
499
502
|
description?: string | undefined;
|
|
500
503
|
priority?: number | undefined;
|
|
@@ -509,7 +512,7 @@ declare const classes: {
|
|
|
509
512
|
priority: number;
|
|
510
513
|
archived: boolean;
|
|
511
514
|
};
|
|
512
|
-
}, "authorized", false,
|
|
515
|
+
}, "authorized", false, false>>, "update", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
513
516
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
514
517
|
}, {
|
|
515
518
|
readonly mode: 'value';
|
|
@@ -530,7 +533,7 @@ declare const classes: {
|
|
|
530
533
|
from: "accepted" | "closed" | "deferred" | "open" | "resolved";
|
|
531
534
|
event: "accept" | "close" | "defer" | "reopen" | "resolve";
|
|
532
535
|
};
|
|
533
|
-
}, "authorized", false,
|
|
536
|
+
}, "authorized", false, false>>, "transition", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
534
537
|
assigneeId: string | null;
|
|
535
538
|
}, {
|
|
536
539
|
readonly mode: 'value';
|
|
@@ -538,7 +541,7 @@ declare const classes: {
|
|
|
538
541
|
issueId: string;
|
|
539
542
|
assigneeId?: string | undefined;
|
|
540
543
|
};
|
|
541
|
-
}, "authorized", false,
|
|
544
|
+
}, "authorized", false, false>>, "assign", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
542
545
|
tagIds: string[];
|
|
543
546
|
}, {
|
|
544
547
|
readonly mode: 'value';
|
|
@@ -546,7 +549,7 @@ declare const classes: {
|
|
|
546
549
|
issueId: string;
|
|
547
550
|
tagIds: string[];
|
|
548
551
|
};
|
|
549
|
-
}, "authorized", false,
|
|
552
|
+
}, "authorized", false, false>>, "setTags", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
550
553
|
parentId: string | null;
|
|
551
554
|
}, {
|
|
552
555
|
readonly mode: 'value';
|
|
@@ -554,7 +557,7 @@ declare const classes: {
|
|
|
554
557
|
issueId: string;
|
|
555
558
|
parentId?: string | undefined;
|
|
556
559
|
};
|
|
557
|
-
}, "authorized", false,
|
|
560
|
+
}, "authorized", false, false>>, "setParent", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
558
561
|
body: string;
|
|
559
562
|
}, {
|
|
560
563
|
readonly mode: 'value';
|
|
@@ -562,7 +565,7 @@ declare const classes: {
|
|
|
562
565
|
id: string;
|
|
563
566
|
body: string;
|
|
564
567
|
};
|
|
565
|
-
}, "authorized", false,
|
|
568
|
+
}, "authorized", false, false>>, "addComment", "self">;
|
|
566
569
|
readonly effectiveStaticMethods: never;
|
|
567
570
|
}>;
|
|
568
571
|
readonly Comment: import("@astrale-os/sdk/schema").NodeClass<{
|
|
@@ -598,14 +601,14 @@ declare const classes: {
|
|
|
598
601
|
id: string;
|
|
599
602
|
body: string;
|
|
600
603
|
};
|
|
601
|
-
}, "authorized", false,
|
|
604
|
+
}, "authorized", false, false>>;
|
|
602
605
|
readonly delete: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
603
606
|
readonly mode: 'value';
|
|
604
607
|
readonly value: {
|
|
605
608
|
commentId: string;
|
|
606
609
|
deleted: true;
|
|
607
610
|
};
|
|
608
|
-
}, "authorized", false,
|
|
611
|
+
}, "authorized", false, false>>;
|
|
609
612
|
};
|
|
610
613
|
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "authorId", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "body", "self", undefined>) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
611
614
|
readonly name: "createdAt";
|
|
@@ -614,13 +617,15 @@ declare const classes: {
|
|
|
614
617
|
readonly name: "updatedAt";
|
|
615
618
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
616
619
|
});
|
|
620
|
+
readonly abstractInstanceMethods: never;
|
|
621
|
+
readonly abstractStaticMethods: never;
|
|
617
622
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
618
623
|
readonly mode: 'value';
|
|
619
624
|
readonly value: {
|
|
620
625
|
commentId: string;
|
|
621
626
|
deleted: true;
|
|
622
627
|
};
|
|
623
|
-
}, "authorized", false,
|
|
628
|
+
}, "authorized", false, false>>, "delete", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
624
629
|
body: string;
|
|
625
630
|
}, {
|
|
626
631
|
readonly mode: 'value';
|
|
@@ -628,7 +633,7 @@ declare const classes: {
|
|
|
628
633
|
id: string;
|
|
629
634
|
body: string;
|
|
630
635
|
};
|
|
631
|
-
}, "authorized", false,
|
|
636
|
+
}, "authorized", false, false>>, "edit", "self">;
|
|
632
637
|
readonly effectiveStaticMethods: never;
|
|
633
638
|
}>;
|
|
634
639
|
readonly Tag: import("@astrale-os/sdk/schema").NodeClass<{
|
|
@@ -683,14 +688,14 @@ declare const classes: {
|
|
|
683
688
|
slug: string;
|
|
684
689
|
color?: string | undefined;
|
|
685
690
|
};
|
|
686
|
-
}, "authorized", false,
|
|
691
|
+
}, "authorized", false, false>>;
|
|
687
692
|
readonly delete: import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
688
693
|
readonly mode: 'value';
|
|
689
694
|
readonly value: {
|
|
690
695
|
tagId: string;
|
|
691
696
|
deleted: true;
|
|
692
697
|
};
|
|
693
|
-
}, "authorized", false,
|
|
698
|
+
}, "authorized", false, false>>;
|
|
694
699
|
};
|
|
695
700
|
readonly effectiveProperties: (import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, false, "color", "self", never> | import("@astrale-os/sdk/schema").AuthoredPropertyProjection<string, string, true, "slug", "self", undefined>) | (import("@astrale-os/sdk/schema").ResolvedProperty<import("@astrale-os/sdk/schema").Value, true, undefined> & {
|
|
696
701
|
readonly name: "name";
|
|
@@ -702,13 +707,15 @@ declare const classes: {
|
|
|
702
707
|
readonly name: "updatedAt";
|
|
703
708
|
readonly key: "kernel.astrale.ai:class.Timestamped.property.updatedAt";
|
|
704
709
|
});
|
|
710
|
+
readonly abstractInstanceMethods: never;
|
|
711
|
+
readonly abstractStaticMethods: never;
|
|
705
712
|
readonly effectiveInstanceMethods: import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<Record<string, never>, {
|
|
706
713
|
readonly mode: 'value';
|
|
707
714
|
readonly value: {
|
|
708
715
|
tagId: string;
|
|
709
716
|
deleted: true;
|
|
710
717
|
};
|
|
711
|
-
}, "authorized", false,
|
|
718
|
+
}, "authorized", false, false>>, "delete", "self"> | import("@astrale-os/sdk/schema").AuthoredMethodProjection<import("@astrale-os/sdk/schema").Method<import("@astrale-os/sdk/schema").CallableProjection<{
|
|
712
719
|
name?: string | undefined;
|
|
713
720
|
color?: string | null | undefined;
|
|
714
721
|
}, {
|
|
@@ -719,7 +726,7 @@ declare const classes: {
|
|
|
719
726
|
slug: string;
|
|
720
727
|
color?: string | undefined;
|
|
721
728
|
};
|
|
722
|
-
}, "authorized", false,
|
|
729
|
+
}, "authorized", false, false>>, "edit", "self">;
|
|
723
730
|
readonly effectiveStaticMethods: never;
|
|
724
731
|
}>;
|
|
725
732
|
readonly project_owned_by: import("@astrale-os/sdk/schema").DirectedEdgeClass<{
|
|
@@ -911,7 +918,6 @@ declare const views: {
|
|
|
911
918
|
interface IssuesSchemaInput {
|
|
912
919
|
readonly dependencies: Readonly<{
|
|
913
920
|
readonly kernel: typeof KernelSchema;
|
|
914
|
-
readonly shell: typeof ShellSchema;
|
|
915
921
|
}>;
|
|
916
922
|
readonly classes: typeof classes;
|
|
917
923
|
readonly policies: typeof policies;
|
package/dist/schema/schema.js
CHANGED
|
@@ -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
|
|
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.
|
|
3
|
+
"version": "0.3.0",
|
|
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-
|
|
32
|
-
"@astrale-os/sdk": "0.5.0-beta.109",
|
|
31
|
+
"@astrale-os/sdk": "0.5.0-beta.123",
|
|
33
32
|
"zod": "4.4.3"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
|
-
"@astrale-os/adapter-cloudflare": "0.5.0-beta.
|
|
35
|
+
"@astrale-os/adapter-cloudflare": "0.5.0-beta.126",
|
|
37
36
|
"@astrale-os/ox": ">=0.1.4 <1.0.0",
|
|
38
|
-
"@astrale-os/shell": "0.5.0-beta.
|
|
39
|
-
"@astrale-os/shell-react": "0.4.0-beta.
|
|
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
|
}
|