sf-i-events 1.0.681 → 1.0.682

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-i-events",
3
3
  "private": false,
4
- "version": "1.0.681",
4
+ "version": "1.0.682",
5
5
  "description": "Superflows Navigation Component",
6
6
  "main": "sf-i-events.js",
7
7
  "module": "sf-i-events.js",
package/sf-i-events.js CHANGED
@@ -6327,7 +6327,7 @@ let SfIEvents = class SfIEvents extends LitElement {
6327
6327
  };
6328
6328
  this.fetchEventDetails = async (listEvent, mmddyyyy, currentColumnButton) => {
6329
6329
  console.log('listEvent', listEvent, listEvent.id);
6330
- let url = "https://" + this.apiId + "/getalleventdetails";
6330
+ let url = "https://" + this.apiId + "/getalleventdetails1";
6331
6331
  //console.log('fetch calendar url', url);
6332
6332
  let urlBody = { "projectid": this.projectId, "userprofileid": this.userProfileId, "role": this.myRole, "eventid": listEvent.id, "entityid": listEvent.entityid, "locationid": listEvent.locationid, "mmddyyyy": mmddyyyy, "year": this.calendarStartYYYY };
6333
6333
  //console.log('urlbody', urlBody);
@@ -9526,7 +9526,7 @@ export class SfIEvents extends LitElement {
9526
9526
 
9527
9527
  fetchEventDetails = async (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null) => {
9528
9528
  console.log('listEvent', listEvent, listEvent.id)
9529
- let url = "https://"+this.apiId+"/getalleventdetails";
9529
+ let url = "https://"+this.apiId+"/getalleventdetails1";
9530
9530
 
9531
9531
  //console.log('fetch calendar url', url);
9532
9532
  let urlBody :any = {"projectid": this.projectId, "userprofileid": this.userProfileId, "role": this.myRole, "eventid": listEvent.id, "entityid": listEvent.entityid, "locationid": listEvent.locationid, "mmddyyyy": mmddyyyy, "year": this.calendarStartYYYY};