@topconsultnpm/sdk-ts 6.22.0-dev1.4 → 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
|
@@ -465,6 +465,12 @@ export class CaseFlowInstanceEngine extends BaseEngine {
|
|
|
465
465
|
DeleteAsync(cftid, id) {
|
|
466
466
|
return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.caseFlowInstanceDelete(cftid, id)); });
|
|
467
467
|
}
|
|
468
|
+
BlogPostAddAsync(cftid, id, bp) {
|
|
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
|
+
}
|
|
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.caseFlowInstanceBlogPostDeleteOrUndelete(cftid, id, postID, del ? 1 : 0)); });
|
|
473
|
+
}
|
|
468
474
|
}
|
|
469
475
|
export class DataListEngine extends BaseEngine {
|
|
470
476
|
static NewDataListDescriptor() { return this.Normalize(new DataListDescriptor(), true); }
|
|
@@ -1933,6 +1939,8 @@ export class JobEngine extends BaseEngine {
|
|
|
1933
1939
|
d.inputOrder = InputOrders.OldToNew;
|
|
1934
1940
|
if (d.errorAsWarning === undefined)
|
|
1935
1941
|
d.errorAsWarning = 0;
|
|
1942
|
+
if (d.allowInvalidXML === undefined)
|
|
1943
|
+
d.allowInvalidXML = 0;
|
|
1936
1944
|
return d;
|
|
1937
1945
|
}
|
|
1938
1946
|
FEDetacher_CreateAsync(d) {
|