@opencxh/domain 1.118.0 → 1.119.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.
@@ -25,4 +25,11 @@ export interface KbArticle {
25
25
  status: "draft" | "published";
26
26
  authorId?: string;
27
27
  order: number;
28
+ /**
29
+ * Framework-generated (never declared in the server entitySchema, which would
30
+ * type it `never`). It has always been on the wire; it just was not on this
31
+ * interface, so nothing could show when an article was last touched.
32
+ */
33
+ createdAt?: number;
34
+ updatedAt?: number;
28
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.118.0",
3
+ "version": "1.119.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",