@camunda8/sdk 8.7.22 → 8.7.23
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 +7 -0
- package/dist/c8/lib/C8Dto.d.ts +24 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [8.7.23](https://github.com/camunda/camunda-8-js-sdk/compare/v8.7.22...v8.7.23) (2025-07-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add missing fields to getDecisionInstance Response Dto. fixes [#545](https://github.com/camunda/camunda-8-js-sdk/issues/545) ([2378d6b](https://github.com/camunda/camunda-8-js-sdk/commit/2378d6bbfd653bf6fe0d6d415084e998fa0b55d2))
|
|
7
|
+
|
|
1
8
|
## [8.7.22](https://github.com/camunda/camunda-8-js-sdk/compare/v8.7.21...v8.7.22) (2025-07-22)
|
|
2
9
|
|
|
3
10
|
|
package/dist/c8/lib/C8Dto.d.ts
CHANGED
|
@@ -1105,7 +1105,7 @@ export interface CamundaRestSearchDecisionInstancesResponse extends PaginatedCam
|
|
|
1105
1105
|
* Response from getting a single decision instance by its key.
|
|
1106
1106
|
*/
|
|
1107
1107
|
export interface GetDecisionInstanceResponse {
|
|
1108
|
-
/** The decision instance key. */
|
|
1108
|
+
/** The decision instance key. Note that this is not the unique identifier of the entity itself; the decisionInstanceId serves as the primary identifier. */
|
|
1109
1109
|
decisionInstanceKey: string;
|
|
1110
1110
|
/** The decision definition ID. */
|
|
1111
1111
|
decisionDefinitionId: string;
|
|
@@ -1131,5 +1131,28 @@ export interface GetDecisionInstanceResponse {
|
|
|
1131
1131
|
decisionDefinitionType: 'DECISION_TABLE' | 'LITERAL_EXPRESSION' | 'UNSPECIFIED' | 'UNKNOWN';
|
|
1132
1132
|
/** The result of the decision evaluation. */
|
|
1133
1133
|
result: string;
|
|
1134
|
+
/** The evaluated inputs of the decision instance. */
|
|
1135
|
+
evaluatedInputs: Array<{
|
|
1136
|
+
/** The ID of the evaluated decision input. */
|
|
1137
|
+
inputId: string;
|
|
1138
|
+
/** The name of the evaluated decision input. */
|
|
1139
|
+
inputName: string;
|
|
1140
|
+
/** The value of the evaluated decision input. */
|
|
1141
|
+
inputValue: string;
|
|
1142
|
+
}>;
|
|
1143
|
+
matchedRules: Array<{
|
|
1144
|
+
/** The ID of the matched rule. */
|
|
1145
|
+
ruleId: string;
|
|
1146
|
+
/** The index of the matched rule. */
|
|
1147
|
+
ruleIndex: number;
|
|
1148
|
+
evaluatedOutputs: Array<{
|
|
1149
|
+
/** The ID of the evaluated decision output. */
|
|
1150
|
+
outputId: string;
|
|
1151
|
+
/** The name of the evaluated decision output. */
|
|
1152
|
+
outputName: string;
|
|
1153
|
+
/** The value of the evaluated decision output. */
|
|
1154
|
+
outputValue: string;
|
|
1155
|
+
}>;
|
|
1156
|
+
}>;
|
|
1134
1157
|
}
|
|
1135
1158
|
export {};
|