@bpmnkit/api 0.0.11 → 0.0.13
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 +8 -1
- package/dist/generated/resources.d.ts +0 -7
- package/dist/generated/resources.js +0 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="https://
|
|
2
|
+
<a href="https://bpmnkit.com"><img src="https://bpmnkit.com/favicon.svg" width="72" height="72" alt="BPMN Kit logo"></a>
|
|
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
|
|
|
@@ -148,7 +148,14 @@ try {
|
|
|
148
148
|
| [`@bpmnkit/connector-gen`](https://www.npmjs.com/package/@bpmnkit/connector-gen) | Generate connector templates from OpenAPI specs |
|
|
149
149
|
| [`@bpmnkit/cli`](https://www.npmjs.com/package/@bpmnkit/cli) | Camunda 8 command-line interface (casen) |
|
|
150
150
|
| [`@bpmnkit/proxy`](https://www.npmjs.com/package/@bpmnkit/proxy) | Local AI bridge and Camunda API proxy server |
|
|
151
|
+
| [`@bpmnkit/cli-sdk`](https://www.npmjs.com/package/@bpmnkit/cli-sdk) | Plugin authoring SDK for the casen CLI |
|
|
152
|
+
| [`@bpmnkit/create-casen-plugin`](https://www.npmjs.com/package/@bpmnkit/create-casen-plugin) | Scaffold a new casen CLI plugin in seconds |
|
|
153
|
+
| [`@bpmnkit/casen-report`](https://www.npmjs.com/package/@bpmnkit/casen-report) | HTML reports from Camunda 8 incident and SLA data |
|
|
151
154
|
|
|
152
155
|
## License
|
|
153
156
|
|
|
154
157
|
[MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) © BPMN Kit — made by [u11g](https://u11g.com)
|
|
158
|
+
|
|
159
|
+
<div align="center">
|
|
160
|
+
<a href="https://bpmnkit.com"><img src="https://bpmnkit.com/favicon.svg" width="32" height="32" alt="BPMN Kit"></a>
|
|
161
|
+
</div>
|
|
@@ -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
|
*
|