@bpmnkit/api 0.0.12 → 0.0.16

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 CHANGED
@@ -6,6 +6,8 @@
6
6
  [![npm](https://img.shields.io/npm/v/@bpmnkit/api?style=flat-square&color=6244d7)](https://www.npmjs.com/package/@bpmnkit/api)
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
+ [![ai-assisted](https://img.shields.io/badge/AI--assisted-claude-8b5cf6?style=flat-square)](https://github.com/bpmnkit/monorepo)
10
+ [![experimental](https://img.shields.io/badge/status-experimental-f59e0b?style=flat-square)](https://github.com/bpmnkit/monorepo)
9
11
 
10
12
  [Website](https://bpmnkit.com) · [Documentation](https://docs.bpmnkit.com) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/packages/api/CHANGELOG.md)
11
13
  </div>
@@ -148,6 +150,11 @@ try {
148
150
  | [`@bpmnkit/connector-gen`](https://www.npmjs.com/package/@bpmnkit/connector-gen) | Generate connector templates from OpenAPI specs |
149
151
  | [`@bpmnkit/cli`](https://www.npmjs.com/package/@bpmnkit/cli) | Camunda 8 command-line interface (casen) |
150
152
  | [`@bpmnkit/proxy`](https://www.npmjs.com/package/@bpmnkit/proxy) | Local AI bridge and Camunda API proxy server |
153
+ | [`@bpmnkit/cli-sdk`](https://www.npmjs.com/package/@bpmnkit/cli-sdk) | Plugin authoring SDK for the casen CLI |
154
+ | [`@bpmnkit/create-casen-plugin`](https://www.npmjs.com/package/@bpmnkit/create-casen-plugin) | Scaffold a new casen CLI plugin in seconds |
155
+ | [`@bpmnkit/casen-report`](https://www.npmjs.com/package/@bpmnkit/casen-report) | HTML reports from Camunda 8 incident and SLA data |
156
+ | [`@bpmnkit/casen-worker-http`](https://www.npmjs.com/package/@bpmnkit/casen-worker-http) | Example HTTP worker plugin — completes jobs with live JSONPlaceholder API data |
157
+ | [`@bpmnkit/casen-worker-ai`](https://www.npmjs.com/package/@bpmnkit/casen-worker-ai) | AI task worker — classify, summarize, extract, and decide using Claude |
151
158
 
152
159
  ## License
153
160
 
@@ -273,13 +273,6 @@ export declare class DecisionInstanceResource extends ResourceBase {
273
273
  * @see GET /decision-instances/{decisionEvaluationInstanceKey}
274
274
  */
275
275
  getDecisionInstance(decisionEvaluationInstanceKey: string): Promise<Types.DecisionInstanceGetQueryResult>;
276
- /**
277
- * Delete decision instance
278
- *
279
- * Delete all associated decision evaluations based on provided key.
280
- * @see POST /decision-instances/{decisionInstanceKey}/deletion
281
- */
282
- deleteDecisionInstance(decisionInstanceKey: string, body?: Types.DeleteDecisionInstanceRequest): Promise<void>;
283
276
  /**
284
277
  * Delete decision instances (batch)
285
278
  *
@@ -487,19 +487,6 @@ export class DecisionInstanceResource extends ResourceBase {
487
487
  cacheable: true,
488
488
  });
489
489
  }
490
- /**
491
- * Delete decision instance
492
- *
493
- * Delete all associated decision evaluations based on provided key.
494
- * @see POST /decision-instances/{decisionInstanceKey}/deletion
495
- */
496
- async deleteDecisionInstance(decisionInstanceKey, body) {
497
- return this._http.request({
498
- method: "POST",
499
- path: `/decision-instances/${decisionInstanceKey}/deletion`,
500
- body,
501
- });
502
- }
503
490
  /**
504
491
  * Delete decision instances (batch)
505
492
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmnkit/api",
3
- "version": "0.0.12",
3
+ "version": "0.0.16",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {