@bpmnkit/api 0.0.8 → 0.0.9

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +7 -3
  3. package/package.json +50 -30
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 urbanisierung
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <img src="https://raw.githubusercontent.com/bpmn-sdk/monorepo/main/doc/logos/logo-2-gateway.svg" width="72" height="72" alt="BPMN Kit logo">
2
+ <img src="https://raw.githubusercontent.com/bpmnkit/monorepo/main/doc/logos/logo-2-gateway.svg" width="72" height="72" alt="BPMN Kit logo">
3
3
  <h1>@bpmnkit/api</h1>
4
4
  <p>TypeScript client for the Camunda 8 REST API — 180 typed operations, OAuth2, retries, and caching</p>
5
5
 
@@ -7,7 +7,7 @@
7
7
  [![license](https://img.shields.io/npm/l/@bpmnkit/api?style=flat-square)](https://github.com/bpmnkit/monorepo/blob/main/LICENSE)
8
8
  [![typescript](https://img.shields.io/badge/TypeScript-strict-6244d7?style=flat-square&logo=typescript&logoColor=white)](https://github.com/bpmnkit/monorepo)
9
9
 
10
- [Documentation](https://bpmn-sdk-docs.pages.dev) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/packages/api/CHANGELOG.md)
10
+ [Documentation](https://docs.bpmnkit.com) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/packages/api/CHANGELOG.md)
11
11
  </div>
12
12
 
13
13
  ---
@@ -142,9 +142,13 @@ try {
142
142
  | [`@bpmnkit/feel`](https://www.npmjs.com/package/@bpmnkit/feel) | FEEL expression language parser & evaluator |
143
143
  | [`@bpmnkit/plugins`](https://www.npmjs.com/package/@bpmnkit/plugins) | 22 composable canvas plugins |
144
144
  | [`@bpmnkit/ascii`](https://www.npmjs.com/package/@bpmnkit/ascii) | Render BPMN diagrams as Unicode ASCII art |
145
+ | [`@bpmnkit/ui`](https://www.npmjs.com/package/@bpmnkit/ui) | Shared design tokens and UI components |
145
146
  | [`@bpmnkit/profiles`](https://www.npmjs.com/package/@bpmnkit/profiles) | Shared auth, profile storage, and client factories for CLI & proxy |
146
147
  | [`@bpmnkit/operate`](https://www.npmjs.com/package/@bpmnkit/operate) | Monitoring & operations frontend for Camunda clusters |
148
+ | [`@bpmnkit/connector-gen`](https://www.npmjs.com/package/@bpmnkit/connector-gen) | Generate connector templates from OpenAPI specs |
149
+ | [`@bpmnkit/cli`](https://www.npmjs.com/package/@bpmnkit/cli) | Camunda 8 command-line interface (casen) |
150
+ | [`@bpmnkit/proxy`](https://www.npmjs.com/package/@bpmnkit/proxy) | Local AI bridge and Camunda API proxy server |
147
151
 
148
152
  ## License
149
153
 
150
- [MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) © bpmn-sdk
154
+ [MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) © BPMN Kit
package/package.json CHANGED
@@ -1,31 +1,51 @@
1
1
  {
2
- "name": "@bpmnkit/api",
3
- "version": "0.0.8",
4
- "private": false,
5
- "type": "module",
6
- "exports": {
7
- ".": {
8
- "import": "./dist/index.js",
9
- "types": "./dist/index.d.ts"
10
- }
11
- },
12
- "main": "./dist/index.js",
13
- "types": "./dist/index.d.ts",
14
- "files": ["dist/**/*.js", "dist/**/*.d.ts"],
15
- "scripts": {
16
- "generate": "node scripts/generate.mjs",
17
- "generate:admin": "node scripts/generate.mjs --api admin",
18
- "build": "node scripts/generate.mjs && node scripts/generate.mjs --api admin && tsc",
19
- "typecheck": "tsc --noEmit",
20
- "check": "biome check .",
21
- "test": "vitest run"
22
- },
23
- "dependencies": {},
24
- "description": "TypeScript client for the Camunda 8 REST API — 180 typed operations, OAuth2, retries, and caching",
25
- "keywords": ["camunda", "zeebe", "bpmn", "api", "client", "rest", "typescript"],
26
- "license": "MIT",
27
- "repository": {
28
- "type": "git",
29
- "url": "https://github.com/bpmnkit/monorepo"
30
- }
31
- }
2
+ "name": "@bpmnkit/api",
3
+ "version": "0.0.9",
4
+ "private": false,
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./dist/index.js",
9
+ "types": "./dist/index.d.ts"
10
+ }
11
+ },
12
+ "main": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
+ "files": [
15
+ "README.md",
16
+ "dist/**/*.js",
17
+ "dist/**/*.d.ts"
18
+ ],
19
+ "dependencies": {},
20
+ "description": "TypeScript client for the Camunda 8 REST API — 180 typed operations, OAuth2, retries, and caching",
21
+ "keywords": [
22
+ "camunda",
23
+ "zeebe",
24
+ "bpmn",
25
+ "api",
26
+ "client",
27
+ "rest",
28
+ "typescript",
29
+ "oauth2"
30
+ ],
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/bpmnkit/monorepo"
35
+ },
36
+ "homepage": "https://bpmnkit.com",
37
+ "bugs": {
38
+ "url": "https://github.com/bpmnkit/monorepo/issues"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "generate": "node scripts/generate.mjs",
45
+ "generate:admin": "node scripts/generate.mjs --api admin",
46
+ "build": "node scripts/generate.mjs && node scripts/generate.mjs --api admin && tsc",
47
+ "typecheck": "tsc --noEmit",
48
+ "check": "biome check .",
49
+ "test": "vitest run"
50
+ }
51
+ }