@everymatrix/stage-dm-range-date-picker 1.0.25 → 1.0.28

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/component-lib.js CHANGED
@@ -33587,7 +33587,7 @@ var TemplateService = class _TemplateService {
33587
33587
  templateChanged = new Subject();
33588
33588
  templatesList = signal(void 0);
33589
33589
  saveTemplate(templateName, templateDescription, params, reportId, templateId, isTemporary = true) {
33590
- const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ce");
33590
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ubo");
33591
33591
  const body = {
33592
33592
  p_report_params: {
33593
33593
  p_user_id: this.sessionService.sessionData?.Username,
@@ -33609,7 +33609,7 @@ var TemplateService = class _TemplateService {
33609
33609
  }));
33610
33610
  }
33611
33611
  getTemplateById(reportId, templateId) {
33612
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
33612
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
33613
33613
  const body = {
33614
33614
  p_report_params: {
33615
33615
  p_user_id: this.sessionService.sessionData?.Username,
@@ -33629,7 +33629,7 @@ var TemplateService = class _TemplateService {
33629
33629
  }));
33630
33630
  }
33631
33631
  getAllTemplates(reportId) {
33632
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
33632
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
33633
33633
  const body = {
33634
33634
  p_report_params: {
33635
33635
  p_user_id: this.sessionService.sessionData?.Username,
@@ -33642,7 +33642,7 @@ var TemplateService = class _TemplateService {
33642
33642
  return this.apiHandlerService.Post(url, body);
33643
33643
  }
33644
33644
  deleteTemplate(templateId) {
33645
- const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ce");
33645
+ const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ubo");
33646
33646
  const body = {
33647
33647
  p_report_params: {
33648
33648
  p_environment: this.sessionService.sessionData?.Environment,
@@ -33800,7 +33800,7 @@ var SendingService = class _SendingService {
33800
33800
  { "id": "uuid", "name": "uuid" }
33801
33801
  ];
33802
33802
  getSchedules(reportId, templateId, domainId) {
33803
- const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ce");
33803
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ubo");
33804
33804
  const body = {
33805
33805
  p_report_params: {
33806
33806
  p_user_id: this.sessionService.sessionData?.Username,
@@ -33909,7 +33909,7 @@ var SendingService = class _SendingService {
33909
33909
  }
33910
33910
  saveReportSchedule(template, formValue, reportBodyModel, scheduleInterval, currentSchedule) {
33911
33911
  const body = this.getRequestParamsToAirflow(template, formValue, reportBodyModel, scheduleInterval, currentSchedule);
33912
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
33912
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
33913
33913
  return this.apiHandlerService.Post(url, body).pipe(map((response) => {
33914
33914
  const result = response?.[0];
33915
33915
  if (result && result.successful !== "true") {
@@ -33927,7 +33927,7 @@ var SendingService = class _SendingService {
33927
33927
  p_schedule_id: scheduleId
33928
33928
  }
33929
33929
  };
33930
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
33930
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
33931
33931
  return this.apiHandlerService.Post(url, body);
33932
33932
  }
33933
33933
  convertToCron(sendOptions) {
package/main.js CHANGED
@@ -31203,7 +31203,7 @@ var TemplateService = class _TemplateService {
31203
31203
  templateChanged = new Subject();
31204
31204
  templatesList = signal(void 0);
31205
31205
  saveTemplate(templateName, templateDescription, params, reportId, templateId, isTemporary = true) {
31206
- const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ce");
31206
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ubo");
31207
31207
  const body = {
31208
31208
  p_report_params: {
31209
31209
  p_user_id: this.sessionService.sessionData?.Username,
@@ -31225,7 +31225,7 @@ var TemplateService = class _TemplateService {
31225
31225
  }));
31226
31226
  }
31227
31227
  getTemplateById(reportId, templateId) {
31228
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
31228
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
31229
31229
  const body = {
31230
31230
  p_report_params: {
31231
31231
  p_user_id: this.sessionService.sessionData?.Username,
@@ -31245,7 +31245,7 @@ var TemplateService = class _TemplateService {
31245
31245
  }));
31246
31246
  }
31247
31247
  getAllTemplates(reportId) {
31248
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
31248
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
31249
31249
  const body = {
31250
31250
  p_report_params: {
31251
31251
  p_user_id: this.sessionService.sessionData?.Username,
@@ -31258,7 +31258,7 @@ var TemplateService = class _TemplateService {
31258
31258
  return this.apiHandlerService.Post(url, body);
31259
31259
  }
31260
31260
  deleteTemplate(templateId) {
31261
- const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ce");
31261
+ const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ubo");
31262
31262
  const body = {
31263
31263
  p_report_params: {
31264
31264
  p_environment: this.sessionService.sessionData?.Environment,
@@ -31416,7 +31416,7 @@ var SendingService = class _SendingService {
31416
31416
  { "id": "uuid", "name": "uuid" }
31417
31417
  ];
31418
31418
  getSchedules(reportId, templateId, domainId) {
31419
- const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ce");
31419
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ubo");
31420
31420
  const body = {
31421
31421
  p_report_params: {
31422
31422
  p_user_id: this.sessionService.sessionData?.Username,
@@ -31525,7 +31525,7 @@ var SendingService = class _SendingService {
31525
31525
  }
31526
31526
  saveReportSchedule(template, formValue, reportBodyModel, scheduleInterval, currentSchedule) {
31527
31527
  const body = this.getRequestParamsToAirflow(template, formValue, reportBodyModel, scheduleInterval, currentSchedule);
31528
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
31528
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
31529
31529
  return this.apiHandlerService.Post(url, body).pipe(map((response) => {
31530
31530
  const result = response?.[0];
31531
31531
  if (result && result.successful !== "true") {
@@ -31543,7 +31543,7 @@ var SendingService = class _SendingService {
31543
31543
  p_schedule_id: scheduleId
31544
31544
  }
31545
31545
  };
31546
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
31546
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
31547
31547
  return this.apiHandlerService.Post(url, body);
31548
31548
  }
31549
31549
  convertToCron(sendOptions) {