@topconsultnpm/sdk-ts 6.22.0-dev1.5 → 6.22.0-dev1.6
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/dist/lib/Engine.js
CHANGED
|
@@ -469,7 +469,7 @@ export class CaseFlowInstanceEngine extends BaseEngine {
|
|
|
469
469
|
return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.caseFlowInstanceBlogPostAdd(cftid, id, bp)); });
|
|
470
470
|
}
|
|
471
471
|
BlogPostDeleteOrUndeleteAsync(cftid, id, postID, del) {
|
|
472
|
-
return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.
|
|
472
|
+
return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.caseFlowInstanceBlogPostDeleteOrUndelete(cftid, id, postID, del ? 1 : 0)); });
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
475
|
export class DataListEngine extends BaseEngine {
|
|
@@ -1939,6 +1939,8 @@ export class JobEngine extends BaseEngine {
|
|
|
1939
1939
|
d.inputOrder = InputOrders.OldToNew;
|
|
1940
1940
|
if (d.errorAsWarning === undefined)
|
|
1941
1941
|
d.errorAsWarning = 0;
|
|
1942
|
+
if (d.allowInvalidXML === undefined)
|
|
1943
|
+
d.allowInvalidXML = 0;
|
|
1942
1944
|
return d;
|
|
1943
1945
|
}
|
|
1944
1946
|
FEDetacher_CreateAsync(d) {
|