@bpmnkit/connectors 0.1.5 → 1.0.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/README.md +1 -1
- package/dist/template-types.d.ts +11 -1
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://github.com/bpmnkit/monorepo/blob/main/LICENSE)
|
|
8
8
|
[](https://github.com/bpmnkit/monorepo)
|
|
9
9
|
[](https://github.com/bpmnkit/monorepo)
|
|
10
|
-
[](https://bpmnkit.com/docs/getting-started/stability)
|
|
11
11
|
|
|
12
12
|
[Website](https://bpmnkit.com) · [Documentation](https://bpmnkit.com/docs) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/packages/connectors/CHANGELOG.md)
|
|
13
13
|
</div>
|
package/dist/template-types.d.ts
CHANGED
|
@@ -80,7 +80,17 @@ export type TemplateBinding = {
|
|
|
80
80
|
type: "property";
|
|
81
81
|
name: string;
|
|
82
82
|
}
|
|
83
|
-
/**
|
|
83
|
+
/**
|
|
84
|
+
* Camunda's legacy spelling of the binding below, superseded upstream by
|
|
85
|
+
* `{ type: "zeebe:taskDefinition", property: "type" }`.
|
|
86
|
+
*
|
|
87
|
+
* Not deprecated *here*, and not going anywhere: templates in the wild — the
|
|
88
|
+
* bundled catalogue included — still use it, and `apply`, `catalog` and
|
|
89
|
+
* `validate` all handle it. Under the stability policy a template that
|
|
90
|
+
* validates today does not stop validating, so this member stays in the union
|
|
91
|
+
* however long upstream keeps the form alive. Prefer the newer spelling when
|
|
92
|
+
* authoring; expect this one when reading.
|
|
93
|
+
*/
|
|
84
94
|
| {
|
|
85
95
|
type: "zeebe:taskDefinition:type";
|
|
86
96
|
} | {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmnkit/connectors",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -21,9 +21,12 @@
|
|
|
21
21
|
"dist/**/*.js",
|
|
22
22
|
"dist/**/*.d.ts"
|
|
23
23
|
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
26
|
+
},
|
|
24
27
|
"dependencies": {
|
|
25
|
-
"@bpmnkit/core": "0.
|
|
26
|
-
"@bpmnkit/feel": "
|
|
28
|
+
"@bpmnkit/core": "^1.0.0",
|
|
29
|
+
"@bpmnkit/feel": "^1.0.0"
|
|
27
30
|
},
|
|
28
31
|
"description": "Camunda 8 out-of-the-box connector catalog and deterministic element-template application for @bpmnkit/core",
|
|
29
32
|
"keywords": [
|