@bpmsoftwaresolutions/ai-engine-client 1.1.10 → 1.1.11
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 +4 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1112,6 +1112,10 @@ export class AIEngineClient {
|
|
|
1112
1112
|
return this._request(`/api/governed-implementation/packets/${packetId}`);
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
1115
|
+
async getImplementationItemAcceptanceChecks(implementationItemId) {
|
|
1116
|
+
return this._request(`/api/governed-implementation/items/${implementationItemId}/acceptance-checks`);
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1115
1119
|
async updateImplementationItemStatus(implementationItemId, body) {
|
|
1116
1120
|
return this._request(`/api/governed-implementation/items/${implementationItemId}/status`, {
|
|
1117
1121
|
method: 'PATCH', body,
|