@bpmsoftwaresolutions/ai-engine-client 1.1.12 → 1.1.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/package.json +1 -1
- package/src/index.js +8 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1124,6 +1124,14 @@ export class AIEngineClient {
|
|
|
1124
1124
|
return this._request(`/api/governed-implementation/items/${implementationItemId}/acceptance-checks`);
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
1127
|
+
async getArtifactManifest(implementationItemId) {
|
|
1128
|
+
return this._request(`/api/governed-implementation/items/${implementationItemId}/artifact-manifest`);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
async getDecisionPacket(implementationItemId) {
|
|
1132
|
+
return this._request(`/api/governed-implementation/items/${implementationItemId}/decision-packet`);
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1127
1135
|
async updateImplementationItemStatus(implementationItemId, body) {
|
|
1128
1136
|
return this._request(`/api/governed-implementation/items/${implementationItemId}/status`, {
|
|
1129
1137
|
method: 'PATCH', body,
|