@cometchat/skills-cli 2.3.0 → 2.4.1

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.
Files changed (19) hide show
  1. package/dist/index.js +3863 -781
  2. package/dist/registry/v6/experiences/1-conversation-list/templates/astro/CometChatSelector.tsx.tpl +1 -1
  3. package/dist/registry/v6/experiences/1-conversation-list/templates/nextjs/CometChatSelector.tsx.tpl +1 -1
  4. package/dist/registry/v6/experiences/1-conversation-list/templates/nextjs-pages/CometChatSelector.tsx.tpl +1 -1
  5. package/dist/registry/v6/experiences/1-conversation-list/templates/react-router/CometChatSelector.tsx.tpl +1 -1
  6. package/dist/registry/v6/experiences/1-conversation-list/templates/reactjs/CometChatSelector.tsx.tpl +1 -1
  7. package/dist/registry/v6/experiences/1-conversation-list/templates/reactjs-dedicated-route/CometChatSelector.tsx.tpl +1 -1
  8. package/dist/registry/v6/experiences/2-one-to-one/templates/astro/ChatApp.tsx.tpl +1 -1
  9. package/dist/registry/v6/experiences/2-one-to-one/templates/nextjs/CometChatNoSSR.tsx.tpl +1 -1
  10. package/dist/registry/v6/experiences/2-one-to-one/templates/react-router/CometChatNoSSR.tsx.tpl +1 -1
  11. package/dist/registry/v6/experiences/2-one-to-one/templates/reactjs/App.tsx.tpl +1 -1
  12. package/dist/registry/v6/experiences/2-one-to-one/templates/reactjs-dedicated-route/CometChatMessenger.tsx.tpl +1 -1
  13. package/dist/registry/v6/experiences/3-tab-based/templates/astro/CometChatTabs.tsx.tpl +1 -1
  14. package/dist/registry/v6/experiences/3-tab-based/templates/nextjs/CometChatTabs.tsx.tpl +1 -1
  15. package/dist/registry/v6/experiences/3-tab-based/templates/react-router/CometChatTabs.tsx.tpl +1 -1
  16. package/dist/registry/v6/experiences/3-tab-based/templates/reactjs/CometChatTabs.tsx.tpl +1 -1
  17. package/dist/registry/v6/experiences/3-tab-based/templates/reactjs-dedicated-route/CometChatTabs.tsx.tpl +1 -1
  18. package/dist/registry/v6/features/catalog.json +711 -81
  19. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatConversations,
5
5
  CometChatUIKitLoginListener,
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  import { useEffect, useState } from "react";
3
- import { CometChat } from "@cometchat/chat-sdk-javascript";
3
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
4
4
  import {
5
5
  CometChatConversations,
6
6
  CometChatUIKitLoginListener,
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  import { useEffect, useState } from "react";
3
- import { CometChat } from "@cometchat/chat-sdk-javascript";
3
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
4
4
  import {
5
5
  CometChatConversations,
6
6
  CometChatUIKitLoginListener,
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatConversations,
5
5
  CometChatUIKitLoginListener,
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatConversations,
5
5
  CometChatUIKitLoginListener,
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatConversations,
5
5
  CometChatUIKitLoginListener,
@@ -6,7 +6,7 @@ import {
6
6
  CometChatUIKit,
7
7
  UIKitSettingsBuilder,
8
8
  } from "@cometchat/chat-uikit-react";
9
- import { CometChat } from "@cometchat/chat-sdk-javascript";
9
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
10
10
  // IMPORTANT: css-variables.css MUST be imported here (inside the React island)
11
11
  // — global stylesheets imported in .astro files do not apply to client:only islands.
12
12
  import "@cometchat/chat-uikit-react/css-variables.css";
@@ -7,7 +7,7 @@ import {
7
7
  CometChatUIKit,
8
8
  UIKitSettingsBuilder,
9
9
  } from "@cometchat/chat-uikit-react";
10
- import { CometChat } from "@cometchat/chat-sdk-javascript";
10
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
11
11
  // css-variables.css is imported in app/globals.css — do NOT import it here
12
12
  import "./CometChatNoSSR.css";
13
13
 
@@ -6,7 +6,7 @@ import {
6
6
  CometChatUIKit,
7
7
  UIKitSettingsBuilder,
8
8
  } from "@cometchat/chat-uikit-react";
9
- import { CometChat } from "@cometchat/chat-sdk-javascript";
9
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
10
10
  // css-variables.css is imported in app/app.css — do NOT import it here
11
11
  import "./CometChatNoSSR.css";
12
12
 
@@ -4,7 +4,7 @@ import {
4
4
  CometChatMessageHeader,
5
5
  CometChatMessageList,
6
6
  } from "@cometchat/chat-uikit-react";
7
- import { CometChat } from "@cometchat/chat-sdk-javascript";
7
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
8
8
  import "./App.css";
9
9
 
10
10
  // The hardcoded user this chat connects to. Change to point at any
@@ -4,7 +4,7 @@ import {
4
4
  CometChatMessageHeader,
5
5
  CometChatMessageList,
6
6
  } from "@cometchat/chat-uikit-react";
7
- import { CometChat } from "@cometchat/chat-sdk-javascript";
7
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
8
8
  import "./CometChatMessenger.css";
9
9
 
10
10
  // The hardcoded user this chat connects to. Change to point at any
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatCallLogs,
5
5
  CometChatConversations,
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  import { useEffect, useState } from "react";
3
- import { CometChat } from "@cometchat/chat-sdk-javascript";
3
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
4
4
  import {
5
5
  CometChatCallLogs,
6
6
  CometChatConversations,
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatCallLogs,
5
5
  CometChatConversations,
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatCallLogs,
5
5
  CometChatConversations,
@@ -1,5 +1,5 @@
1
1
  import { useEffect, useState } from "react";
2
- import { CometChat } from "@cometchat/chat-sdk-javascript";
2
+ import type { CometChat } from "@cometchat/chat-sdk-javascript";
3
3
  import {
4
4
  CometChatCallLogs,
5
5
  CometChatConversations,