Skip to content

Commit 0b470c2

Browse files
committed
Move webhook module from system to automation
The webhook schema, tests, and documentation have been relocated from the system module to the automation module for better organization. References in meta.json files and exports have been updated accordingly.
1 parent 14bab97 commit 0b470c2

9 files changed

Lines changed: 6 additions & 8 deletions

File tree

content/docs/references/automation/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"root": true,
44
"pages": [
55
"flow",
6+
"webhook",
67
"workflow"
78
]
89
}
File renamed without changes.

content/docs/references/meta.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"permission",
1010
"ai",
1111
"api",
12-
"driver",
13-
"integration"
12+
"driver"
1413
]
1514
}

content/docs/references/system/meta.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"policy",
1212
"role",
1313
"territory",
14-
"translation",
15-
"webhook"
14+
"translation"
1615
]
1716
}

packages/spec/scripts/build-docs.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,7 @@ const rootMetaProps = {
241241
"permission",
242242
"ai",
243243
"api",
244-
"driver",
245-
"integration"
244+
"driver"
246245
]
247246
};
248247
fs.writeFileSync(path.join(DOCS_ROOT, 'meta.json'), JSON.stringify(rootMetaProps, null, 2));
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11

22
export * from './workflow.zod';
3-
export * from './flow.zod';
3+
export * from './flow.zod';
4+
export * from './webhook.zod';
File renamed without changes.
File renamed without changes.

packages/spec/src/system/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export * from './policy.zod';
1616
export * from './role.zod';
1717
export * from './territory.zod';
1818
export * from './audit.zod';
19-
export * from './webhook.zod';
2019
export * from './translation.zod';
2120
export * from './events.zod';
2221
export * from './job.zod';

0 commit comments

Comments
 (0)