@staffbase/plugins-client-sdk 3.0.0-beta.4 → 3.0.2
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/dist/plugins-client-sdk.esm.js +3 -3
- package/dist/plugins-client-sdk.esm.js.map +1 -1
- package/dist/plugins-client-sdk.js +3 -3
- package/dist/plugins-client-sdk.js.map +1 -1
- package/dist/plugins-client-sdk.umd.js +3 -3
- package/dist/plugins-client-sdk.umd.js.map +1 -1
- package/dist/plugins-client-sdk.umd.min.js +1 -1
- package/dist/plugins-client-sdk.umd.min.js.map +1 -1
- package/package.json +10 -8
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @author Stefan Staude <stefan.staude@staffbase.com>
|
|
8
8
|
* @author Daniel Große <daniel.grosse@staffbase.com>
|
|
9
9
|
*
|
|
10
|
-
* @copyright
|
|
10
|
+
* @copyright 2025
|
|
11
11
|
* @license Apache-2.0
|
|
12
12
|
*/
|
|
13
13
|
|
|
@@ -1013,7 +1013,7 @@
|
|
|
1013
1013
|
* after the time specified in fallbackKickIn runs out.
|
|
1014
1014
|
* @return {Promise<function>} An appropriate send function
|
|
1015
1015
|
*/
|
|
1016
|
-
var fallback = (
|
|
1016
|
+
var fallback = () => {
|
|
1017
1017
|
if (connection$1) {
|
|
1018
1018
|
return connection$1;
|
|
1019
1019
|
}
|
|
@@ -1023,7 +1023,7 @@
|
|
|
1023
1023
|
}, fallbackKickIn);
|
|
1024
1024
|
});
|
|
1025
1025
|
return connection$1;
|
|
1026
|
-
}
|
|
1026
|
+
};
|
|
1027
1027
|
|
|
1028
1028
|
/**
|
|
1029
1029
|
* Send a SDK command to the Staffbase App.
|