@tailor-platform/sdk 1.14.2 → 1.15.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/CHANGELOG.md +25 -0
- package/dist/{application-DhwHYQ3H.mjs → application-DPunZ4lc.mjs} +2 -2
- package/dist/{application-DhwHYQ3H.mjs.map → application-DPunZ4lc.mjs.map} +1 -1
- package/dist/application-JwJ_-_PQ.mjs +4 -0
- package/dist/cli/index.mjs +3 -3
- package/dist/cli/lib.d.mts +53 -6
- package/dist/cli/lib.mjs +2 -2
- package/dist/cli/lib.mjs.map +1 -1
- package/dist/configure/index.d.mts +4 -4
- package/dist/configure/index.mjs +0 -7
- package/dist/configure/index.mjs.map +1 -1
- package/dist/{index-q3n7wQOs.d.mts → index-Bs9AsQb2.d.mts} +27 -11
- package/dist/{index-YzESrtj0.d.mts → index-DomkP6gz.d.mts} +2 -2
- package/dist/plugin/index.d.mts +1 -1
- package/dist/plugin/index.mjs.map +1 -1
- package/dist/{types-DbvONSS-.d.mts → types-Db1oxr0U.d.mts} +26 -67
- package/dist/{update-Dm8ERWHJ.mjs → update-C_ZTRB63.mjs} +354 -361
- package/dist/update-C_ZTRB63.mjs.map +1 -0
- package/dist/utils/test/index.d.mts +3 -3
- package/docs/plugin/custom.md +62 -45
- package/package.json +1 -1
- package/dist/application-BznueWxG.mjs +0 -4
- package/dist/update-Dm8ERWHJ.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @tailor-platform/sdk
|
|
2
2
|
|
|
3
|
+
## 1.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#605](https://github.com/tailor-platform/sdk/pull/605) [`634699c`](https://github.com/tailor-platform/sdk/commit/634699c0519157a18b992df4e98718940fc6d013) Thanks [@toiroakr](https://github.com/toiroakr)! - Add TypeConfig/PluginConfig type parameters to Plugin interface and remove TailorField schema requirements
|
|
8
|
+
|
|
9
|
+
- Add `Plugin<TypeConfig, PluginConfig>` type parameters for type-safe arbitrary config
|
|
10
|
+
- Remove `configSchema`, `pluginConfigSchema`, and `configTypeTemplate` properties from Plugin interface
|
|
11
|
+
- Merge `PluginWithConfig`/`PluginNamespaceOnly` into a single `Plugin` interface
|
|
12
|
+
- Wire TypeConfig/PluginConfig through `processType`/`processNamespace` contexts
|
|
13
|
+
- Remove TailorField-based runtime validation from plugin config processing
|
|
14
|
+
- Introduce `TypePluginOutput` for processType (extends `PluginOutput` with `extends` field)
|
|
15
|
+
- Make `PluginOutput` the base type without `extends` (used by processNamespace)
|
|
16
|
+
- Use `TailorAnyDBField` for `PluginExtends.fields` type
|
|
17
|
+
|
|
18
|
+
- [#595](https://github.com/tailor-platform/sdk/pull/595) [`4e6e3e6`](https://github.com/tailor-platform/sdk/commit/4e6e3e62e3071060373571e7d9765938c37a9013) Thanks [@toiroakr](https://github.com/toiroakr)! - Use Function Registry service for script storage instead of embedding bundled scripts directly in pipeline/executor/workflow requests. Scripts are now registered in the Function Registry during apply, and services reference them by name via operationSourceRef/scriptRef fields.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [#599](https://github.com/tailor-platform/sdk/pull/599) [`e73e8fe`](https://github.com/tailor-platform/sdk/commit/e73e8fef5daf056a00a3bb402d0c8ab0a58f96ee) Thanks [@dqn](https://github.com/dqn)! - Add typed programmatic CLI APIs for workflow and executor operations while preserving legacy option shapes for backward compatibility.
|
|
23
|
+
|
|
24
|
+
- [#601](https://github.com/tailor-platform/sdk/pull/601) [`151102b`](https://github.com/tailor-platform/sdk/commit/151102bedca42457f02f6e503025908a40d5d1a4) Thanks [@riku99](https://github.com/riku99)! - Fixes an issue where nested field hooks/validate were dropped when generating TailorDB proto manifests
|
|
25
|
+
|
|
26
|
+
- [#606](https://github.com/tailor-platform/sdk/pull/606) [`4761d2b`](https://github.com/tailor-platform/sdk/commit/4761d2bab2d8d8fa7c5ce249db28e0a8f28dfc5a) Thanks [@toiroakr](https://github.com/toiroakr)! - Add lefthook post-commit hook to verify commit signatures and update CLAUDE.md with signing rules
|
|
27
|
+
|
|
3
28
|
## 1.14.2
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -98575,5 +98575,5 @@ function defineApplication(params) {
|
|
|
98575
98575
|
}
|
|
98576
98576
|
|
|
98577
98577
|
//#endregion
|
|
98578
|
-
export { ExecutorSchema as a,
|
|
98579
|
-
//# sourceMappingURL=application-
|
|
98578
|
+
export { ExecutorSchema as a, functionSchema as c, loadFilesWithIgnores as d, logger as f, createExecutorService as i, stringifyFunction as l, symbols as m, WorkflowJobSchema as n, OAuth2ClientSchema as o, styles as p, WorkflowSchema as r, ResolverSchema as s, defineApplication as t, tailorUserMap as u };
|
|
98579
|
+
//# sourceMappingURL=application-DPunZ4lc.mjs.map
|