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