tnx-shared 5.1.433 → 5.1.435

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.
@@ -9281,18 +9281,21 @@
9281
9281
  { type: NotifierService }
9282
9282
  ]; };
9283
9283
 
9284
- var TemplateInstanceService = /** @class */ (function () {
9285
- function TemplateInstanceService(_moduleConfigService, _httpClient, _printService, _fileService, _notifierService, _crudService, _commonService, _downloadLinkService) {
9286
- this._httpClient = _httpClient;
9287
- this._printService = _printService;
9288
- this._fileService = _fileService;
9289
- this._notifierService = _notifierService;
9290
- this._crudService = _crudService;
9291
- this._commonService = _commonService;
9292
- this._downloadLinkService = _downloadLinkService;
9293
- this._moduleConfig = _moduleConfigService.getConfig();
9294
- this.environment = this._moduleConfig.environment;
9295
- this.serviceUri = this._moduleConfig.environment.apiDomain.templateEndpoint + "/" + this._moduleConfig.environment.apiVersion + "/TemplateInstance";
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;
@@ -49187,6 +49191,8 @@
49187
49191
  field: column.code,
49188
49192
  label: _this._translateService.instant(column.label),
49189
49193
  visible: true,
49194
+ dataType: column.dataType,
49195
+ textAlign: column.textAlign,
49190
49196
  baseService: column.baseService,
49191
49197
  valueField: column.valueField,
49192
49198
  displayField: column.displayField,
@@ -50279,6 +50285,8 @@
50279
50285
  field: column.code,
50280
50286
  label: _this._translateService.instant(column.label),
50281
50287
  visible: true,
50288
+ dataType: column.dataType,
50289
+ textAlign: column.textAlign,
50282
50290
  baseService: column.baseService,
50283
50291
  valueField: column.valueField,
50284
50292
  displayField: column.displayField,