sf-i-events 1.0.680 → 1.0.681
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 +1 -1
- package/sf-i-events.js +3 -3
- package/src/sf-i-events.ts +3 -3
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -13058,7 +13058,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
13058
13058
|
this.setSuccess("Bulk upload initiated. Processing will occur in the background, and you'll receive an email notification once it's complete.");
|
|
13059
13059
|
setTimeout(() => {
|
|
13060
13060
|
this.clearMessages();
|
|
13061
|
-
},
|
|
13061
|
+
}, 10000);
|
|
13062
13062
|
}
|
|
13063
13063
|
else {
|
|
13064
13064
|
const jsonRespose = JSON.parse(xhr.responseText);
|
|
@@ -13112,7 +13112,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
13112
13112
|
this.setSuccess("Bulk upload initiated. Processing will occur in the background, and you'll receive an email notification once it's complete.");
|
|
13113
13113
|
setTimeout(() => {
|
|
13114
13114
|
this.clearMessages();
|
|
13115
|
-
},
|
|
13115
|
+
}, 10000);
|
|
13116
13116
|
}
|
|
13117
13117
|
else {
|
|
13118
13118
|
const jsonRespose = JSON.parse(xhr.responseText);
|
|
@@ -13173,7 +13173,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
13173
13173
|
this.setSuccess("Bulk upload initiated. Processing will occur in the background, and you'll receive an email notification once it's complete.");
|
|
13174
13174
|
setTimeout(() => {
|
|
13175
13175
|
this.clearMessages();
|
|
13176
|
-
},
|
|
13176
|
+
}, 10000);
|
|
13177
13177
|
}
|
|
13178
13178
|
else {
|
|
13179
13179
|
const jsonRespose = JSON.parse(xhr.responseText);
|
package/src/sf-i-events.ts
CHANGED
|
@@ -18186,7 +18186,7 @@ export class SfIEvents extends LitElement {
|
|
|
18186
18186
|
this.setSuccess("Bulk upload initiated. Processing will occur in the background, and you'll receive an email notification once it's complete.");
|
|
18187
18187
|
setTimeout(() => {
|
|
18188
18188
|
this.clearMessages()
|
|
18189
|
-
},
|
|
18189
|
+
}, 10000);
|
|
18190
18190
|
|
|
18191
18191
|
} else {
|
|
18192
18192
|
const jsonRespose = JSON.parse(xhr.responseText);
|
|
@@ -18244,7 +18244,7 @@ export class SfIEvents extends LitElement {
|
|
|
18244
18244
|
this.setSuccess("Bulk upload initiated. Processing will occur in the background, and you'll receive an email notification once it's complete.");
|
|
18245
18245
|
setTimeout(() => {
|
|
18246
18246
|
this.clearMessages()
|
|
18247
|
-
},
|
|
18247
|
+
}, 10000);
|
|
18248
18248
|
|
|
18249
18249
|
} else {
|
|
18250
18250
|
const jsonRespose = JSON.parse(xhr.responseText);
|
|
@@ -18312,7 +18312,7 @@ export class SfIEvents extends LitElement {
|
|
|
18312
18312
|
this.setSuccess("Bulk upload initiated. Processing will occur in the background, and you'll receive an email notification once it's complete.");
|
|
18313
18313
|
setTimeout(() => {
|
|
18314
18314
|
this.clearMessages()
|
|
18315
|
-
},
|
|
18315
|
+
}, 10000);
|
|
18316
18316
|
|
|
18317
18317
|
} else {
|
|
18318
18318
|
const jsonRespose = JSON.parse(xhr.responseText);
|