-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathen.objects.generated.ts
More file actions
76 lines (73 loc) · 2.03 KB
/
Copy pathen.objects.generated.ts
File metadata and controls
76 lines (73 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
/**
* Auto-generated by 'os i18n extract' for locale 'en'.
* Edit translations in place; re-run extract (with --merge) to fill new gaps.
* Do not hand-edit the structure — only the leaf string values.
*/
import type { TranslationData } from '@objectstack/spec/system';
export const enObjects: NonNullable<TranslationData['objects']> = {
sys_webhook: {
label: "Webhook",
pluralLabel: "Webhooks",
description: "Outbound HTTP webhook subscription. Authored via defineWebhook() in code or the Studio editor; executed by the HTTP connector plugin.",
fields: {
id: {
label: "Webhook ID"
},
name: {
label: "Name",
help: "Unique snake_case name — referenced in logs and audit"
},
label: {
label: "Display Label"
},
object_name: {
label: "Object",
help: "Short object name whose record events (create/update/delete) fire this webhook"
},
triggers: {
label: "Triggers",
help: "Comma-separated event list: create,update,delete"
},
url: {
label: "Target URL",
help: "External endpoint that receives the POST"
},
method: {
label: "HTTP Method",
help: "GET / POST / PUT / PATCH / DELETE"
},
description: {
label: "Description"
},
active: {
label: "Active",
help: "Inactive webhooks are skipped by the dispatcher"
},
definition_json: {
label: "Definition",
help: "Serialised Webhook JSON (see @objectstack/spec/automation/webhook) — full headers/auth/retry/payload config"
},
created_at: {
label: "Created At"
},
updated_at: {
label: "Updated At"
}
},
_views: {
active: {
label: "Active"
},
inactive: {
label: "Inactive"
},
by_object: {
label: "By Object"
},
all_webhooks: {
label: "All"
}
}
}
};