@objectstack/platform-objects 5.0.0 → 5.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.
@@ -105,6 +105,28 @@ var SETUP_APP = {
105
105
  { id: "nav_notifications", type: "object", label: "Notifications", objectName: "sys_notification", icon: "bell", requiresObject: "sys_notification" }
106
106
  ]
107
107
  },
108
+ {
109
+ id: "group_integrations",
110
+ type: "group",
111
+ label: "Integrations",
112
+ icon: "plug",
113
+ children: [
114
+ // Outbound HTTP integrations. `sys_webhook` always ships with
115
+ // platform-objects, so the Webhooks entry is always visible.
116
+ // `sys_webhook_delivery` is the durable outbox row from
117
+ // `@objectstack/plugin-webhooks/schema` — gated on `requiresObject`
118
+ // so the Deliveries entry only renders when the plugin has been
119
+ // wired into `defineStack({ objects: [SysWebhookDelivery, ...] })`.
120
+ //
121
+ // This is the canonical demonstration of "everything is an object":
122
+ // managing webhooks (configuration) and inspecting deliveries
123
+ // (operational telemetry) reuses the same generic ObjectView /
124
+ // ObjectListView UI as any business object — no bespoke webhook
125
+ // admin page.
126
+ { id: "nav_webhooks", type: "object", label: "Webhooks", objectName: "sys_webhook", icon: "webhook", requiresObject: "sys_webhook" },
127
+ { id: "nav_webhook_deliveries", type: "object", label: "Webhook Deliveries", objectName: "sys_webhook_delivery", icon: "send", requiresObject: "sys_webhook_delivery" }
128
+ ]
129
+ },
108
130
  {
109
131
  id: "group_advanced",
110
132
  type: "group",
@@ -3099,9 +3121,6 @@ var enObjects = {
3099
3121
  id: {
3100
3122
  label: "ID"
3101
3123
  },
3102
- metadata_id: {
3103
- label: "Metadata"
3104
- },
3105
3124
  name: {
3106
3125
  label: "Name"
3107
3126
  },
@@ -6141,9 +6160,6 @@ var zhCNObjects = {
6141
6160
  id: {
6142
6161
  label: "ID"
6143
6162
  },
6144
- metadata_id: {
6145
- label: "\u5143\u6570\u636E"
6146
- },
6147
6163
  name: {
6148
6164
  label: "\u540D\u79F0"
6149
6165
  },
@@ -9129,9 +9145,6 @@ var jaJPObjects = {
9129
9145
  id: {
9130
9146
  label: "ID"
9131
9147
  },
9132
- metadata_id: {
9133
- label: "\u30E1\u30BF\u30C7\u30FC\u30BF"
9134
- },
9135
9148
  name: {
9136
9149
  label: "\u540D\u524D"
9137
9150
  },
@@ -12117,9 +12130,6 @@ var esESObjects = {
12117
12130
  id: {
12118
12131
  label: "ID"
12119
12132
  },
12120
- metadata_id: {
12121
- label: "Metadatos"
12122
- },
12123
12133
  name: {
12124
12134
  label: "Nombre"
12125
12135
  },