@everymatrix/stage-dm-select 1.0.23 → 1.0.26

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
@@ -56804,7 +56804,7 @@ var TemplateService = class _TemplateService {
56804
56804
  templateChanged = new Subject();
56805
56805
  templatesList = signal(void 0);
56806
56806
  saveTemplate(templateName, templateDescription, params, reportId, templateId, isTemporary = true) {
56807
- const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ce");
56807
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ubo");
56808
56808
  const body = {
56809
56809
  p_report_params: {
56810
56810
  p_user_id: this.sessionService.sessionData?.Username,
@@ -56826,7 +56826,7 @@ var TemplateService = class _TemplateService {
56826
56826
  }));
56827
56827
  }
56828
56828
  getTemplateById(reportId, templateId) {
56829
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
56829
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
56830
56830
  const body = {
56831
56831
  p_report_params: {
56832
56832
  p_user_id: this.sessionService.sessionData?.Username,
@@ -56846,7 +56846,7 @@ var TemplateService = class _TemplateService {
56846
56846
  }));
56847
56847
  }
56848
56848
  getAllTemplates(reportId) {
56849
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
56849
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
56850
56850
  const body = {
56851
56851
  p_report_params: {
56852
56852
  p_user_id: this.sessionService.sessionData?.Username,
@@ -56859,7 +56859,7 @@ var TemplateService = class _TemplateService {
56859
56859
  return this.apiHandlerService.Post(url, body);
56860
56860
  }
56861
56861
  deleteTemplate(templateId) {
56862
- const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ce");
56862
+ const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ubo");
56863
56863
  const body = {
56864
56864
  p_report_params: {
56865
56865
  p_environment: this.sessionService.sessionData?.Environment,
@@ -57017,7 +57017,7 @@ var SendingService = class _SendingService {
57017
57017
  { "id": "uuid", "name": "uuid" }
57018
57018
  ];
57019
57019
  getSchedules(reportId, templateId, domainId) {
57020
- const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ce");
57020
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ubo");
57021
57021
  const body = {
57022
57022
  p_report_params: {
57023
57023
  p_user_id: this.sessionService.sessionData?.Username,
@@ -57126,7 +57126,7 @@ var SendingService = class _SendingService {
57126
57126
  }
57127
57127
  saveReportSchedule(template, formValue, reportBodyModel, scheduleInterval, currentSchedule) {
57128
57128
  const body = this.getRequestParamsToAirflow(template, formValue, reportBodyModel, scheduleInterval, currentSchedule);
57129
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
57129
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
57130
57130
  return this.apiHandlerService.Post(url, body).pipe(map((response) => {
57131
57131
  const result = response?.[0];
57132
57132
  if (result && result.successful !== "true") {
@@ -57144,7 +57144,7 @@ var SendingService = class _SendingService {
57144
57144
  p_schedule_id: scheduleId
57145
57145
  }
57146
57146
  };
57147
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
57147
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
57148
57148
  return this.apiHandlerService.Post(url, body);
57149
57149
  }
57150
57150
  convertToCron(sendOptions) {
package/main.js CHANGED
@@ -54420,7 +54420,7 @@ var TemplateService = class _TemplateService {
54420
54420
  templateChanged = new Subject();
54421
54421
  templatesList = signal(void 0);
54422
54422
  saveTemplate(templateName, templateDescription, params, reportId, templateId, isTemporary = true) {
54423
- const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ce");
54423
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_template", "ubo");
54424
54424
  const body = {
54425
54425
  p_report_params: {
54426
54426
  p_user_id: this.sessionService.sessionData?.Username,
@@ -54442,7 +54442,7 @@ var TemplateService = class _TemplateService {
54442
54442
  }));
54443
54443
  }
54444
54444
  getTemplateById(reportId, templateId) {
54445
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
54445
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
54446
54446
  const body = {
54447
54447
  p_report_params: {
54448
54448
  p_user_id: this.sessionService.sessionData?.Username,
@@ -54462,7 +54462,7 @@ var TemplateService = class _TemplateService {
54462
54462
  }));
54463
54463
  }
54464
54464
  getAllTemplates(reportId) {
54465
- const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ce");
54465
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_templates", "ubo");
54466
54466
  const body = {
54467
54467
  p_report_params: {
54468
54468
  p_user_id: this.sessionService.sessionData?.Username,
@@ -54475,7 +54475,7 @@ var TemplateService = class _TemplateService {
54475
54475
  return this.apiHandlerService.Post(url, body);
54476
54476
  }
54477
54477
  deleteTemplate(templateId) {
54478
- const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ce");
54478
+ const url = this.apiHandlerService.getACSBaseUrl("delete_report_template", "ubo");
54479
54479
  const body = {
54480
54480
  p_report_params: {
54481
54481
  p_environment: this.sessionService.sessionData?.Environment,
@@ -54633,7 +54633,7 @@ var SendingService = class _SendingService {
54633
54633
  { "id": "uuid", "name": "uuid" }
54634
54634
  ];
54635
54635
  getSchedules(reportId, templateId, domainId) {
54636
- const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ce");
54636
+ const url = this.apiHandlerService.getACSBaseUrl("get_report_schedules", "ubo");
54637
54637
  const body = {
54638
54638
  p_report_params: {
54639
54639
  p_user_id: this.sessionService.sessionData?.Username,
@@ -54742,7 +54742,7 @@ var SendingService = class _SendingService {
54742
54742
  }
54743
54743
  saveReportSchedule(template, formValue, reportBodyModel, scheduleInterval, currentSchedule) {
54744
54744
  const body = this.getRequestParamsToAirflow(template, formValue, reportBodyModel, scheduleInterval, currentSchedule);
54745
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
54745
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
54746
54746
  return this.apiHandlerService.Post(url, body).pipe(map((response) => {
54747
54747
  const result = response?.[0];
54748
54748
  if (result && result.successful !== "true") {
@@ -54760,7 +54760,7 @@ var SendingService = class _SendingService {
54760
54760
  p_schedule_id: scheduleId
54761
54761
  }
54762
54762
  };
54763
- const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ce");
54763
+ const url = this.apiHandlerService.getACSBaseUrl("save_report_schedule", "ubo");
54764
54764
  return this.apiHandlerService.Post(url, body);
54765
54765
  }
54766
54766
  convertToCron(sendOptions) {