@cosmicdrift/kumiko-bundled-features 0.258.0 → 0.258.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-bundled-features",
|
|
3
|
-
"version": "0.258.
|
|
3
|
+
"version": "0.258.1",
|
|
4
4
|
"description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -129,16 +129,17 @@
|
|
|
129
129
|
"./workflow-runner": "./src/workflow-runner/index.ts"
|
|
130
130
|
},
|
|
131
131
|
"dependencies": {
|
|
132
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.258.
|
|
133
|
-
"@cosmicdrift/kumiko-framework": "0.258.
|
|
134
|
-
"@cosmicdrift/kumiko-headless": "0.258.
|
|
135
|
-
"@cosmicdrift/kumiko-renderer": "0.258.
|
|
136
|
-
"@cosmicdrift/kumiko-renderer-web": "0.258.
|
|
137
|
-
"@cosmicdrift/kumiko-types": "0.258.
|
|
132
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.258.1",
|
|
133
|
+
"@cosmicdrift/kumiko-framework": "0.258.1",
|
|
134
|
+
"@cosmicdrift/kumiko-headless": "0.258.1",
|
|
135
|
+
"@cosmicdrift/kumiko-renderer": "0.258.1",
|
|
136
|
+
"@cosmicdrift/kumiko-renderer-web": "0.258.1",
|
|
137
|
+
"@cosmicdrift/kumiko-types": "0.258.1",
|
|
138
138
|
"@mollie/api-client": "^4.5.0",
|
|
139
139
|
"@node-rs/argon2": "^2.0.2",
|
|
140
140
|
"@types/mailparser": "^3.4.6",
|
|
141
141
|
"@types/nodemailer": "^8.0.0",
|
|
142
|
+
"@types/qrcode": "^1.5.5",
|
|
142
143
|
"clsx": "^2.1.1",
|
|
143
144
|
"imapflow": "^1.3.3",
|
|
144
145
|
"lucide-react": "^1.14.0",
|
|
@@ -162,8 +163,7 @@
|
|
|
162
163
|
],
|
|
163
164
|
"devDependencies": {
|
|
164
165
|
"@testing-library/user-event": "^14.6.1",
|
|
165
|
-
"@
|
|
166
|
-
"@cosmicdrift/kumiko-locale-
|
|
167
|
-
"@cosmicdrift/kumiko-locale-es": "0.258.0"
|
|
166
|
+
"@cosmicdrift/kumiko-locale-de": "0.258.1",
|
|
167
|
+
"@cosmicdrift/kumiko-locale-es": "0.258.1"
|
|
168
168
|
}
|
|
169
169
|
}
|
|
@@ -72,7 +72,10 @@ const retainedEntity = createEntity({
|
|
|
72
72
|
// No subject flag on the old fixture either — anonymize alone has no
|
|
73
73
|
// PersonalAnnotations arm, so this stays a spread instead of a direct
|
|
74
74
|
// createTextField(...) override (kumiko-framework#2250).
|
|
75
|
-
label: {
|
|
75
|
+
label: {
|
|
76
|
+
...createTextField({ personal: false, reason: "test_fixture", required: true }),
|
|
77
|
+
anonymize: () => "[ANONYMIZED]",
|
|
78
|
+
},
|
|
76
79
|
},
|
|
77
80
|
retention: { keepFor: "30d", strategy: "blockDelete" },
|
|
78
81
|
});
|
|
@@ -82,7 +85,10 @@ const retainedEntity = createEntity({
|
|
|
82
85
|
const anonEntity = createEntity({
|
|
83
86
|
table: "read_c7_anon",
|
|
84
87
|
fields: {
|
|
85
|
-
label: {
|
|
88
|
+
label: {
|
|
89
|
+
...createTextField({ personal: false, reason: "test_fixture", required: true }),
|
|
90
|
+
anonymize: () => "[ANONYMIZED]",
|
|
91
|
+
},
|
|
86
92
|
note: createTextField({
|
|
87
93
|
personal: false,
|
|
88
94
|
reason: "is_business_data",
|
|
@@ -114,7 +114,12 @@ export function createNoteMentionEntity() {
|
|
|
114
114
|
description:
|
|
115
115
|
"One row recording that a note names a subject via a structured @-mention, keyed by noteId and the mentioned subject's id.",
|
|
116
116
|
fields: {
|
|
117
|
-
noteId: createTextField({
|
|
117
|
+
noteId: createTextField({
|
|
118
|
+
required: true,
|
|
119
|
+
maxLength: 64,
|
|
120
|
+
personal: false,
|
|
121
|
+
reason: "technical_reference",
|
|
122
|
+
}),
|
|
118
123
|
subjectId: createTextField({ required: true, maxLength: 64, personal: "ref" }),
|
|
119
124
|
},
|
|
120
125
|
});
|
|
@@ -60,7 +60,14 @@ function pastInstant(): Instant {
|
|
|
60
60
|
const CONTACT_TABLE = "notes_mention_forget_test_contacts";
|
|
61
61
|
const contactEntity = createEntity({
|
|
62
62
|
table: CONTACT_TABLE,
|
|
63
|
-
fields: {
|
|
63
|
+
fields: {
|
|
64
|
+
name: createTextField({
|
|
65
|
+
personal: false,
|
|
66
|
+
reason: "test_fixture",
|
|
67
|
+
required: true,
|
|
68
|
+
maxLength: 64,
|
|
69
|
+
}),
|
|
70
|
+
},
|
|
64
71
|
});
|
|
65
72
|
const contactFixtureFeature = defineFeature("notes-mention-forget-test-contact-fixture", (r) => {
|
|
66
73
|
r.entity("contact", contactEntity);
|