@astrale-domains/issues 0.1.8 → 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 +11 -0
- 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/types/issue.d.ts +1 -1
- package/dist/schema/modules/project/classes/project.d.ts +3 -3
- package/dist/schema/schema.d.ts +4 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
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
|
+
|
|
3
14
|
## [0.1.8](https://github.com/astrale-os/domains/compare/issues-v0.1.7...issues-v0.1.8) (2026-08-30)
|
|
4
15
|
|
|
5
16
|
|
|
@@ -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: {
|
|
@@ -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";
|
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.
|
|
31
|
+
"@astrale-domains/shell": "0.1.0-beta.21",
|
|
32
|
+
"@astrale-os/sdk": "0.5.0-beta.99",
|
|
33
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",
|