@objectstack/service-messaging 11.0.0 → 11.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/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -236
- package/dist/index.d.ts +23 -236
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1114,6 +1114,8 @@ var HttpDelivery = ObjectSchema.create({
|
|
|
1114
1114
|
userActions: { create: false, edit: false, delete: false, import: false },
|
|
1115
1115
|
description: "Durable outbox row for one outbound-HTTP attempt (ADR-0018). Managed by @objectstack/service-messaging; do not write directly.",
|
|
1116
1116
|
displayNameField: "id",
|
|
1117
|
+
nameField: "id",
|
|
1118
|
+
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
1117
1119
|
titleFormat: "{label} \u2192 {url}",
|
|
1118
1120
|
compactLayout: ["source", "url", "status", "attempts", "next_retry_at"],
|
|
1119
1121
|
listViews: {
|
|
@@ -2105,6 +2107,8 @@ var InboxMessage = ObjectSchema2.create({
|
|
|
2105
2107
|
pluralLabel: "Inbox Messages",
|
|
2106
2108
|
icon: "inbox",
|
|
2107
2109
|
description: "User-facing in-app notification rows materialized by the inbox messaging channel.",
|
|
2110
|
+
nameField: "title",
|
|
2111
|
+
// [ADR-0079] canonical primary-title pointer (single-field titleFormat)
|
|
2108
2112
|
titleFormat: "{title}",
|
|
2109
2113
|
compactLayout: ["title", "user_id", "severity", "created_at"],
|
|
2110
2114
|
listViews: {
|