@iblai/web-utils 1.2.9 → 1.2.10
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/index.d.ts +7 -4
- package/dist/index.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/web-utils/src/utils/constants.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -780,6 +780,9 @@ const TOOLS = {
|
|
|
780
780
|
GOOGLE_SLIDES: "google-slides",
|
|
781
781
|
GOOGLE_DOCUMENT: "google-docs",
|
|
782
782
|
};
|
|
783
|
+
const REQUIRED_ACTIONS_FOR_GROUPS = {
|
|
784
|
+
NOTIFICATIONS: "Ibl.Notifications/Notification/action",
|
|
785
|
+
};
|
|
783
786
|
|
|
784
787
|
const isJSON = (text) => {
|
|
785
788
|
if (typeof text !== "string") {
|
|
@@ -23544,6 +23547,7 @@ exports.MAX_INITIAL_WEBSOCKET_CONNECTION_ATTEMPTS = MAX_INITIAL_WEBSOCKET_CONNEC
|
|
|
23544
23547
|
exports.MENTOR_CHAT_DOCUMENTS_EXTENSIONS = MENTOR_CHAT_DOCUMENTS_EXTENSIONS;
|
|
23545
23548
|
exports.METADATAS = METADATAS;
|
|
23546
23549
|
exports.MentorProvider = MentorProvider;
|
|
23550
|
+
exports.REQUIRED_ACTIONS_FOR_GROUPS = REQUIRED_ACTIONS_FOR_GROUPS;
|
|
23547
23551
|
exports.STREAMING_CONTENT_BUFFER_THRESHOLD = STREAMING_CONTENT_BUFFER_THRESHOLD;
|
|
23548
23552
|
exports.STREAMING_CONTENT_FLUSH_INTERVAL = STREAMING_CONTENT_FLUSH_INTERVAL;
|
|
23549
23553
|
exports.SUBSCRIPTION_MESSAGES = SUBSCRIPTION_MESSAGES;
|