tnx-shared 5.1.433 → 5.1.434
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/bundles/tnx-shared.umd.js +19 -15
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/services/templateinstance.service.js +9 -6
- package/fesm2015/tnx-shared.js +6 -4
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/templateinstance.service.d.ts +4 -2
- package/services/templateinstance.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -9281,18 +9281,21 @@
|
|
|
9281
9281
|
{ type: NotifierService }
|
|
9282
9282
|
]; };
|
|
9283
9283
|
|
|
9284
|
-
var TemplateInstanceService = /** @class */ (function () {
|
|
9285
|
-
|
|
9286
|
-
|
|
9287
|
-
this.
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
|
|
9294
|
-
|
|
9295
|
-
|
|
9284
|
+
var TemplateInstanceService = /** @class */ (function (_super) {
|
|
9285
|
+
__extends(TemplateInstanceService, _super);
|
|
9286
|
+
function TemplateInstanceService(_moduleConfigService, _httpClient, _printService, _fileService, _notifierService, _crudService, _commonService, _downloadLinkService, injector) {
|
|
9287
|
+
var _this = _super.call(this, _httpClient, injector, _moduleConfigService.getConfig().environment.apiDomain.authorizationEndpoint + "/" + _moduleConfigService.getConfig().environment.apiVersion + "/TemplateInstance") || this;
|
|
9288
|
+
_this._httpClient = _httpClient;
|
|
9289
|
+
_this._printService = _printService;
|
|
9290
|
+
_this._fileService = _fileService;
|
|
9291
|
+
_this._notifierService = _notifierService;
|
|
9292
|
+
_this._crudService = _crudService;
|
|
9293
|
+
_this._commonService = _commonService;
|
|
9294
|
+
_this._downloadLinkService = _downloadLinkService;
|
|
9295
|
+
_this._moduleConfig = _moduleConfigService.getConfig();
|
|
9296
|
+
_this.environment = _this._moduleConfig.environment;
|
|
9297
|
+
_this.serviceUri = _this._moduleConfig.environment.apiDomain.templateEndpoint + "/" + _this._moduleConfig.environment.apiVersion + "/TemplateInstance";
|
|
9298
|
+
return _this;
|
|
9296
9299
|
}
|
|
9297
9300
|
TemplateInstanceService.prototype.useV4 = function () {
|
|
9298
9301
|
this.serviceUri = this._moduleConfig.environment.apiDomain.templateV4Endpoint + "/Template";
|
|
@@ -9638,8 +9641,8 @@
|
|
|
9638
9641
|
});
|
|
9639
9642
|
};
|
|
9640
9643
|
return TemplateInstanceService;
|
|
9641
|
-
}());
|
|
9642
|
-
TemplateInstanceService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TemplateInstanceService_Factory() { return new TemplateInstanceService(i0.ɵɵinject(ModuleConfigService), i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(PrintService), i0.ɵɵinject(FileExplorerService), i0.ɵɵinject(NotifierService), i0.ɵɵinject(CrudService), i0.ɵɵinject(CommonService), i0.ɵɵinject(DownloadLinkService)); }, token: TemplateInstanceService, providedIn: "root" });
|
|
9644
|
+
}(BaseService));
|
|
9645
|
+
TemplateInstanceService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TemplateInstanceService_Factory() { return new TemplateInstanceService(i0.ɵɵinject(ModuleConfigService), i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(PrintService), i0.ɵɵinject(FileExplorerService), i0.ɵɵinject(NotifierService), i0.ɵɵinject(CrudService), i0.ɵɵinject(CommonService), i0.ɵɵinject(DownloadLinkService), i0.ɵɵinject(i0.INJECTOR)); }, token: TemplateInstanceService, providedIn: "root" });
|
|
9643
9646
|
TemplateInstanceService.decorators = [
|
|
9644
9647
|
{ type: i0.Injectable, args: [{
|
|
9645
9648
|
providedIn: 'root'
|
|
@@ -9653,7 +9656,8 @@
|
|
|
9653
9656
|
{ type: NotifierService },
|
|
9654
9657
|
{ type: CrudService },
|
|
9655
9658
|
{ type: CommonService },
|
|
9656
|
-
{ type: DownloadLinkService }
|
|
9659
|
+
{ type: DownloadLinkService },
|
|
9660
|
+
{ type: i0.Injector }
|
|
9657
9661
|
]; };
|
|
9658
9662
|
|
|
9659
9663
|
var EXPORT_VERSION_V4 = 4;
|