diff --git a/.github/workflows/chat-widget.yml b/.github/workflows/chat-widget.yml
index 3626b0f..0ecfbea 100644
--- a/.github/workflows/chat-widget.yml
+++ b/.github/workflows/chat-widget.yml
@@ -43,16 +43,20 @@ jobs:
- name: Lerna - Tests
run: npm run test
- # - name: E2E - Install dependencies
- # run: npm run e2e:install
-
- # - name: E2E - Run automation suite
- # run: npm run e2e:run
-
- # - name: Authenticate with private NPM package
- # # if: ${{ github.event_name == 'workflow_dispatch' }}
- # run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
-
- # - name: NPM Publish ChatWidget
- # # if: ${{ github.event_name == 'workflow_dispatch' }}
- # run: npm run lerna publish bump patch --yes
+ - name: E2E - Install dependencies
+ run: npm run e2e:install
+
+ - name: E2E - Run automation suite
+ run: npm run e2e:run
+
+ - name: Authenticate with private NPM package
+ if: ${{ github.event_name == 'workflow_dispatch' }}
+ run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
+
+ - name: NPM Publish ChatWidget
+ if: ${{ github.event_name == 'workflow_dispatch' }}
+ # `--force-publish` flag keeps versions consistent across our packages. Totally wild name for this kind of a flag :shrug:
+ run: |
+ git config --global user.email "chatwidget@rasahq.com"
+ git config --global user.name "RasaHQ ChatWidget"
+ npx lerna publish ${{ inputs.version }} --yes --force-publish
diff --git a/README.md b/README.md
index 86258be..1ebbfcd 100644
--- a/README.md
+++ b/README.md
@@ -51,14 +51,14 @@ npm run build
## How to Use the Chat Widget in a React Application
-This guide will show you how to integrate the Rasa chatbot widget into your React application using the `@vortexwest/chat-widget-react` package.
+This guide will show you how to integrate the Rasa chatbot widget into your React application using the `@rasahq/chat-widget-react` package.
### Step 1: Install the Package
First, you need to install the chat widget package via NPM. Run the following command in your project directory:
```bash
-npm install @vortexwest/chat-widget-react
+npm install @rasahq/chat-widget-react
```
### Step 2: Import the Chat Widget
@@ -66,7 +66,7 @@ npm install @vortexwest/chat-widget-react
In your React component, import the RasaChatbotWidget from the installed package:
```javascript
-import { RasaChatbotWidget } from "@vortexwest/chat-widget-react";
+import { RasaChatbotWidget } from "@rasahq/chat-widget-react";
```
### Step 3: Use the Chat Widget
@@ -90,7 +90,7 @@ export default App;
### Notes:
-- **Installing via NPM:** The package `@vortexwest/chat-widget-react` should be installed in your project via NPM. This package provides the RasaChatbotWidget component, making it easy to integrate the chatbot into your React application.
+- **Installing via NPM:** The package `@rasahq/chat-widget-react` should be installed in your project via NPM. This package provides the RasaChatbotWidget component, making it easy to integrate the chatbot into your React application.
- **Handling Events:** You can handle various events such as `onChatWidgetOpened`, `onMessageSent`, etc., by passing the corresponding callback functions as props to the RasaChatbotWidget component.
- React example you can find [here](examples/react/src/App.tsx)
- For a complete list of available events and props, refer to the [documentation](packages/ui/src/rasa-chatbot-widget/readme.md)
@@ -106,7 +106,7 @@ In the
section of your HTML file, include the script tag to load the chat
```html
```
@@ -117,7 +117,7 @@ Also, include the CSS file to ensure the widget is styled correctly.
```html
```
@@ -140,11 +140,11 @@ In the section of your HTML, add the chat widget’s custom element. Make
HTML Example
diff --git a/e2e/package-lock.json b/e2e/package-lock.json
index 3e0276a..1cb53bb 100644
--- a/e2e/package-lock.json
+++ b/e2e/package-lock.json
@@ -1,11 +1,11 @@
{
- "name": "@vortexwest/e2e-test-suite",
+ "name": "@rasahq/e2e-test-suite",
"version": "0.1.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
- "name": "@vortexwest/e2e-test-suite",
+ "name": "@rasahq/e2e-test-suite",
"version": "0.1.1",
"license": "ISC",
"devDependencies": {
diff --git a/e2e/package.json b/e2e/package.json
index afa242a..3951731 100644
--- a/e2e/package.json
+++ b/e2e/package.json
@@ -1,5 +1,5 @@
{
- "name": "@vortexwest/e2e-test-suite",
+ "name": "@rasahq/e2e-test-suite",
"version": "0.1.0",
"private": true,
"description": "E2E test suite with Cypress framework",
diff --git a/examples/html/index.html b/examples/html/index.html
index 4f6b4a9..6242f74 100644
--- a/examples/html/index.html
+++ b/examples/html/index.html
@@ -6,11 +6,11 @@
HTML Example
diff --git a/examples/react/package.json b/examples/react/package.json
index f8ee8fa..e25ff16 100644
--- a/examples/react/package.json
+++ b/examples/react/package.json
@@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@vortexwest/chat-widget-react": "^0.1.0",
+ "@rasahq/chat-widget-react": "^0.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
diff --git a/examples/react/src/App.tsx b/examples/react/src/App.tsx
index 7074fcf..2447466 100644
--- a/examples/react/src/App.tsx
+++ b/examples/react/src/App.tsx
@@ -1,4 +1,4 @@
-import RasaChatbotWidget from "@vortexwest/chat-widget-react";
+import RasaChatbotWidget from "@rasahq/chat-widget-react";
function App() {
return (
diff --git a/lerna.json b/lerna.json
index 5483f58..d5ef0b8 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,9 +1,4 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
- "version": "0.1.17",
- "command": {
- "publish": {
- "yes": true
- }
- }
-}
\ No newline at end of file
+ "version": "0.1.0"
+}
diff --git a/package-lock.json b/package-lock.json
index 655b029..c3ab3aa 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -4459,15 +4459,15 @@
"integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
"dev": true
},
- "node_modules/@vortexwest/chat-widget-react": {
+ "node_modules/@rasahq/chat-widget-react": {
"resolved": "packages/react",
"link": true
},
- "node_modules/@vortexwest/chat-widget-sdk": {
+ "node_modules/@rasahq/chat-widget-sdk": {
"resolved": "packages/sdk",
"link": true
},
- "node_modules/@vortexwest/chat-widget-ui": {
+ "node_modules/@rasahq/chat-widget-ui": {
"resolved": "packages/ui",
"link": true
},
@@ -16022,11 +16022,11 @@
}
},
"packages/react": {
- "name": "@vortexwest/chat-widget-react",
- "version": "0.1.17",
+ "name": "@rasahq/chat-widget-react",
+ "version": "0.1.18",
"license": "ISC",
"dependencies": {
- "@vortexwest/chat-widget-ui": "^0.1.17"
+ "@rasahq/chat-widget-ui": "^0.1.18"
},
"devDependencies": {
"@babel/preset-env": "^7.24.8",
@@ -16249,8 +16249,8 @@
}
},
"packages/sdk": {
- "name": "@vortexwest/chat-widget-sdk",
- "version": "0.1.17",
+ "name": "@rasahq/chat-widget-sdk",
+ "version": "0.1.18",
"license": "ISC",
"dependencies": {
"socket.io-client": "^4.7.5",
@@ -16479,10 +16479,10 @@
}
},
"packages/ui": {
- "name": "@vortexwest/chat-widget-ui",
- "version": "0.1.17",
+ "name": "@rasahq/chat-widget-ui",
+ "version": "0.1.18",
"dependencies": {
- "@vortexwest/chat-widget-sdk": "^0.1.17",
+ "@rasahq/chat-widget-sdk": "^0.1.18",
"uuid": "^10.0.0"
},
"devDependencies": {
diff --git a/packages/react/dist/RasaChatbotWidget.js b/packages/react/dist/RasaChatbotWidget.js
index 960ca4c..def064c 100644
--- a/packages/react/dist/RasaChatbotWidget.js
+++ b/packages/react/dist/RasaChatbotWidget.js
@@ -1,6 +1,6 @@
'use client';
import { createComponent } from '@stencil/react-output-target/runtime';
-import { RasaChatbotWidget as RasaChatbotWidgetElement, defineCustomElement as defineRasaChatbotWidget } from "@vortexwest/chat-widget-ui/dist/components/rasa-chatbot-widget.js";
+import { RasaChatbotWidget as RasaChatbotWidgetElement, defineCustomElement as defineRasaChatbotWidget } from "@rasahq/chat-widget-ui/dist/components/rasa-chatbot-widget.js";
import React from 'react';
const RasaChatbotWidget = createComponent({
tagName: 'rasa-chatbot-widget',
diff --git a/packages/react/dist/index.js b/packages/react/dist/index.js
index 5deb183..8aaebb5 100644
--- a/packages/react/dist/index.js
+++ b/packages/react/dist/index.js
@@ -1,4 +1,4 @@
// This file is created manually to bundle stenciljs components with styles (.css)
// Stenciljs doesn't do this automatically
export { default } from "./RasaChatbotWidget";
-import "@vortexwest/chat-widget-ui/dist/rasa-chatwidget/rasa-chatwidget.css";
+import "@rasahq/chat-widget-ui/dist/rasa-chatwidget/rasa-chatwidget.css";
diff --git a/packages/react/dist/types/RasaChatbotWidget.d.ts b/packages/react/dist/types/RasaChatbotWidget.d.ts
index bac596d..08f0e31 100644
--- a/packages/react/dist/types/RasaChatbotWidget.d.ts
+++ b/packages/react/dist/types/RasaChatbotWidget.d.ts
@@ -1,5 +1,5 @@
import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
-import { RasaChatbotWidget as RasaChatbotWidgetElement } from "@vortexwest/chat-widget-ui/dist/components/rasa-chatbot-widget.js";
+import { RasaChatbotWidget as RasaChatbotWidgetElement } from "@rasahq/chat-widget-ui/dist/components/rasa-chatbot-widget.js";
type RasaChatbotWidgetEvents = {
onChatSessionStarted: EventName
-
+
+
```
## Usage
@@ -52,4 +52,3 @@ To add new icons to the project, follow these steps:
By following these steps, you can efficiently add new icons to the project without the need for manual editing of existing components.
### TODO: How to add a new component.
-
diff --git a/packages/ui/jest.config.js b/packages/ui/jest.config.js
index 163cff7..c0630cf 100644
--- a/packages/ui/jest.config.js
+++ b/packages/ui/jest.config.js
@@ -8,6 +8,6 @@ module.exports = {
'^.+\\.(js|jsx)$': 'babel-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
- transformIgnorePatterns: ['/node_modules/(?!(@vortexwest)/).*/'],
+ transformIgnorePatterns: ['/node_modules/(?!(@rasahq)/).*/'],
preset: '@stencil/core/testing',
};
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 1e8da95..d6cfebe 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
- "name": "@vortexwest/chat-widget-ui",
- "version": "0.1.17",
+ "name": "@rasahq/chat-widget-ui",
+ "version": "0.1.0",
"publishConfig": {
"access": "restricted"
},
@@ -31,7 +31,7 @@
"generate:icons": "node ./scripts/generate-icons.js"
},
"dependencies": {
- "@vortexwest/chat-widget-sdk": "^0.1.17",
+ "@rasahq/chat-widget-sdk": "^0.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
diff --git a/packages/ui/src/components.d.ts b/packages/ui/src/components.d.ts
index 2fbe289..f8c7f8f 100644
--- a/packages/ui/src/components.d.ts
+++ b/packages/ui/src/components.d.ts
@@ -5,10 +5,10 @@
* It contains typing information for all components that exist in this project.
*/
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
-import { CarouselElement, QuickReply, QuickReplyMessage } from "@vortexwest/chat-widget-sdk";
-import { SenderType } from "@vortexwest/chat-widget-sdk/dist/types/common.types";
-export { CarouselElement, QuickReply, QuickReplyMessage } from "@vortexwest/chat-widget-sdk";
-export { SenderType } from "@vortexwest/chat-widget-sdk/dist/types/common.types";
+import { CarouselElement, QuickReply, QuickReplyMessage } from "@rasahq/chat-widget-sdk";
+import { SenderType } from "@rasahq/chat-widget-sdk/dist/types/common.types";
+export { CarouselElement, QuickReply, QuickReplyMessage } from "@rasahq/chat-widget-sdk";
+export { SenderType } from "@rasahq/chat-widget-sdk/dist/types/common.types";
export namespace Components {
interface ChatMessage {
/**
diff --git a/packages/ui/src/components/carousel/carousel.tsx b/packages/ui/src/components/carousel/carousel.tsx
index 0859b02..905de70 100644
--- a/packages/ui/src/components/carousel/carousel.tsx
+++ b/packages/ui/src/components/carousel/carousel.tsx
@@ -1,4 +1,4 @@
-import { CarouselElement } from '@vortexwest/chat-widget-sdk';
+import { CarouselElement } from '@rasahq/chat-widget-sdk';
import { Component, h, State, Element, Prop, Event, EventEmitter } from '@stencil/core';
import { messageQueueService } from '../../store/message-queue';
diff --git a/packages/ui/src/components/error-handler/global-error-handler.tsx b/packages/ui/src/components/error-handler/global-error-handler.tsx
index 64883c6..38fe0bb 100644
--- a/packages/ui/src/components/error-handler/global-error-handler.tsx
+++ b/packages/ui/src/components/error-handler/global-error-handler.tsx
@@ -1,4 +1,4 @@
-import { CUSTOM_ERROR_NAME, CustomErrorClass, ErrorSeverity } from '@vortexwest/chat-widget-sdk';
+import { CUSTOM_ERROR_NAME, CustomErrorClass, ErrorSeverity } from '@rasahq/chat-widget-sdk';
import { Component, Host, h } from '@stencil/core';
import { errorMessageService } from '../../store/error-message';
diff --git a/packages/ui/src/components/error-toast/error-toast.tsx b/packages/ui/src/components/error-toast/error-toast.tsx
index 58bc15c..af208df 100644
--- a/packages/ui/src/components/error-toast/error-toast.tsx
+++ b/packages/ui/src/components/error-toast/error-toast.tsx
@@ -1,6 +1,6 @@
import { Component, Element, Host, State, h } from '@stencil/core';
-import { CustomErrorClass } from '@vortexwest/chat-widget-sdk';
+import { CustomErrorClass } from '@rasahq/chat-widget-sdk';
import { configStore } from '../../store/config-store';
import { errorMessageService } from '../../store/error-message';
diff --git a/packages/ui/src/components/quick-reply/quick-reply.tsx b/packages/ui/src/components/quick-reply/quick-reply.tsx
index 1f98d80..5feb02c 100644
--- a/packages/ui/src/components/quick-reply/quick-reply.tsx
+++ b/packages/ui/src/components/quick-reply/quick-reply.tsx
@@ -1,5 +1,5 @@
import { Component, Event, EventEmitter, Host, Listen, Prop, State, h } from '@stencil/core';
-import { QuickReply, QuickReplyMessage, SENDER } from '@vortexwest/chat-widget-sdk';
+import { QuickReply, QuickReplyMessage, SENDER } from '@rasahq/chat-widget-sdk';
import { messageQueueService } from '../../store/message-queue';
import { widgetState } from '../../store/widget-state-store';
diff --git a/packages/ui/src/components/text-message/text-message.tsx b/packages/ui/src/components/text-message/text-message.tsx
index ef3306c..e9d05c7 100644
--- a/packages/ui/src/components/text-message/text-message.tsx
+++ b/packages/ui/src/components/text-message/text-message.tsx
@@ -1,7 +1,7 @@
import { Component, Host, Prop, h } from '@stencil/core';
-import { SENDER } from '@vortexwest/chat-widget-sdk';
-import { SenderType } from '@vortexwest/chat-widget-sdk/dist/types/common.types';
+import { SENDER } from '@rasahq/chat-widget-sdk';
+import { SenderType } from '@rasahq/chat-widget-sdk/dist/types/common.types';
import { configStore } from '../../store/config-store';
import { messageQueueService } from '../../store/message-queue';
diff --git a/packages/ui/src/components/typing-indicator/typing-indicator.tsx b/packages/ui/src/components/typing-indicator/typing-indicator.tsx
index 29e73d6..7470fdb 100644
--- a/packages/ui/src/components/typing-indicator/typing-indicator.tsx
+++ b/packages/ui/src/components/typing-indicator/typing-indicator.tsx
@@ -1,6 +1,6 @@
import { Component, h } from '@stencil/core';
-import { SENDER } from '@vortexwest/chat-widget-sdk/dist/constants';
+import { SENDER } from '@rasahq/chat-widget-sdk/dist/constants';
@Component({
tag: 'rasa-typing-indicator',
diff --git a/packages/ui/src/rasa-chatbot-widget/rasa-chatbot-widget.tsx b/packages/ui/src/rasa-chatbot-widget/rasa-chatbot-widget.tsx
index 5964cc7..071880f 100644
--- a/packages/ui/src/rasa-chatbot-widget/rasa-chatbot-widget.tsx
+++ b/packages/ui/src/rasa-chatbot-widget/rasa-chatbot-widget.tsx
@@ -1,7 +1,7 @@
import { Component, Element, Event, EventEmitter, Listen, Prop, State, Watch, h } from '@stencil/core/internal';
import { v4 as uuidv4 } from 'uuid';
-import { MESSAGE_TYPES, Message, QuickReply, QuickReplyMessage, Rasa, SENDER } from '@vortexwest/chat-widget-sdk';
+import { MESSAGE_TYPES, Message, QuickReply, QuickReplyMessage, Rasa, SENDER } from '@rasahq/chat-widget-sdk';
import { Messenger } from '../components/messenger';
import { configStore, setConfigStore } from '../store/config-store';
diff --git a/packages/ui/src/store/error-message.ts b/packages/ui/src/store/error-message.ts
index f556d70..1cf63aa 100644
--- a/packages/ui/src/store/error-message.ts
+++ b/packages/ui/src/store/error-message.ts
@@ -1,4 +1,4 @@
-import { CustomErrorClass } from '@vortexwest/chat-widget-sdk';
+import { CustomErrorClass } from '@rasahq/chat-widget-sdk';
import { createStore } from '@stencil/store';
const { state, onChange } = createStore({
diff --git a/packages/ui/src/store/message-queue.ts b/packages/ui/src/store/message-queue.ts
index ddc9f60..7f177f5 100644
--- a/packages/ui/src/store/message-queue.ts
+++ b/packages/ui/src/store/message-queue.ts
@@ -1,4 +1,4 @@
-import { Message } from '@vortexwest/chat-widget-sdk';
+import { Message } from '@rasahq/chat-widget-sdk';
import { createStore } from '@stencil/store';
const { state, onChange } = createStore({
diff --git a/packages/ui/src/utils/construct-video-url.ts b/packages/ui/src/utils/construct-video-url.ts
index c070fd7..3e2626b 100644
--- a/packages/ui/src/utils/construct-video-url.ts
+++ b/packages/ui/src/utils/construct-video-url.ts
@@ -1,4 +1,4 @@
-import { CustomErrorClass, ErrorSeverity } from '@vortexwest/chat-widget-sdk';
+import { CustomErrorClass, ErrorSeverity } from '@rasahq/chat-widget-sdk';
interface constructVideoUrlProps {
videoSrc: string;
diff --git a/packages/ui/src/utils/format-datetime.ts b/packages/ui/src/utils/format-datetime.ts
index c16834c..f325d16 100644
--- a/packages/ui/src/utils/format-datetime.ts
+++ b/packages/ui/src/utils/format-datetime.ts
@@ -1,4 +1,4 @@
-import { CustomErrorClass, ErrorSeverity } from '@vortexwest/chat-widget-sdk';
+import { CustomErrorClass, ErrorSeverity } from '@rasahq/chat-widget-sdk';
export const formatDateTime = (date: Date) => {
if (!date) {
diff --git a/packages/ui/src/utils/text-parser.ts b/packages/ui/src/utils/text-parser.ts
index 9aa1535..25cc9ab 100644
--- a/packages/ui/src/utils/text-parser.ts
+++ b/packages/ui/src/utils/text-parser.ts
@@ -1,6 +1,6 @@
// Supporting Bold Italic and Link commonmark markdown
-import { CustomErrorClass, ErrorSeverity } from '@vortexwest/chat-widget-sdk';
+import { CustomErrorClass, ErrorSeverity } from '@rasahq/chat-widget-sdk';
// For more information check https://commonmark.org/help/
export interface TextSegment {
diff --git a/packages/ui/stencil.config.ts b/packages/ui/stencil.config.ts
index c81d1a0..561c59c 100644
--- a/packages/ui/stencil.config.ts
+++ b/packages/ui/stencil.config.ts
@@ -29,7 +29,7 @@ export const config: Config = {
copy: [{ src: 'assets/fonts', dest: 'build/assets/fonts' }],
},
reactOutputTarget({
- stencilPackageName: '@vortexwest/chat-widget-ui',
+ stencilPackageName: '@rasahq/chat-widget-ui',
outDir: '../react/lib/components/stencil-generated/',
esModules: true,
excludeComponents: [
diff --git a/storybook/.storybook/preview.ts b/storybook/.storybook/preview.ts
index d883011..728e0d1 100644
--- a/storybook/.storybook/preview.ts
+++ b/storybook/.storybook/preview.ts
@@ -1,7 +1,7 @@
-import "@vortexwest/chat-widget-ui/dist/rasa-chatwidget/rasa-chatwidget.css";
+import "@rasahq/chat-widget-ui/dist/rasa-chatwidget/rasa-chatwidget.css";
-import { defineCustomElements } from "@vortexwest/chat-widget-ui/loader";
-import docJson from "@vortexwest/chat-widget-ui/doc/docs.json";
+import { defineCustomElements } from "@rasahq/chat-widget-ui/loader";
+import docJson from "@rasahq/chat-widget-ui/doc/docs.json";
import { setStencilDocJson } from "../addons/doc-stenciljs";
defineCustomElements();
diff --git a/storybook/package-lock.json b/storybook/package-lock.json
index 8628125..4667293 100644
--- a/storybook/package-lock.json
+++ b/storybook/package-lock.json
@@ -1,17 +1,17 @@
{
- "name": "@vortexwest/storybook",
+ "name": "@rasahq/storybook",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
- "name": "@vortexwest/storybook",
+ "name": "@rasahq/storybook",
"version": "0.1.0",
"workspaces": [
"../packages/*"
],
"dependencies": {
- "@vortexwest/chat-widget-ui": "^0.1.0",
+ "@rasahq/chat-widget-ui": "^0.1.0",
"storybook": "^8.1.10"
},
"devDependencies": {
@@ -34,7 +34,7 @@
"version": "0.1.15",
"license": "ISC",
"dependencies": {
- "@vortexwest/chat-widget-ui": "^0.1.15"
+ "@rasahq/chat-widget-ui": "^0.1.15"
},
"devDependencies": {
"@babel/preset-env": "^7.24.8",
@@ -79,7 +79,7 @@
"../packages/ui": {
"version": "0.1.15",
"dependencies": {
- "@vortexwest/chat-widget-sdk": "^0.1.15",
+ "@rasahq/chat-widget-sdk": "^0.1.15",
"uuid": "^10.0.0"
},
"devDependencies": {
@@ -3965,15 +3965,15 @@
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
"dev": true
},
- "node_modules/@vortexwest/chat-widget-react": {
+ "node_modules/@rasahq/chat-widget-react": {
"resolved": "../packages/react",
"link": true
},
- "node_modules/@vortexwest/chat-widget-sdk": {
+ "node_modules/@rasahq/chat-widget-sdk": {
"resolved": "../packages/sdk",
"link": true
},
- "node_modules/@vortexwest/chat-widget-ui": {
+ "node_modules/@rasahq/chat-widget-ui": {
"resolved": "../packages/ui",
"link": true
},
diff --git a/storybook/package.json b/storybook/package.json
index a794c70..d823f91 100644
--- a/storybook/package.json
+++ b/storybook/package.json
@@ -1,5 +1,5 @@
{
- "name": "@vortexwest/storybook",
+ "name": "@rasahq/storybook",
"version": "0.1.0",
"private": true,
"workspaces": [
@@ -27,7 +27,7 @@
"vite": "^5.2.0"
},
"dependencies": {
- "@vortexwest/chat-widget-ui": "^0.1.0",
+ "@rasahq/chat-widget-ui": "^0.1.0",
"storybook": "^8.1.10"
}
}