orquesta-embed 0.1.37 → 0.2.0

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/README.md CHANGED
@@ -42,7 +42,7 @@ function App() {
42
42
  ### Vanilla JavaScript
43
43
 
44
44
  ```html
45
- <script src="https://cdn.orquesta.live/embed/v1/orquesta.min.js"></script>
45
+ <script src="https://orquesta.live/embed/v1/orquesta.min.js"></script>
46
46
  <script>
47
47
  const widget = Orquesta.init({
48
48
  token: 'oek_xxxxx',
@@ -5,8 +5,8 @@ import { NetworkCapture } from './network-capture';
5
5
  import { ElementSelector } from './element-selector';
6
6
  export declare class OrquestaEmbedClient {
7
7
  private config;
8
- private supabase;
9
- private channel;
8
+ private socket;
9
+ private channelName;
10
10
  private projectId;
11
11
  private state;
12
12
  private consoleCapture;
@@ -139,9 +139,9 @@ export interface Deployment {
139
139
  export interface ValidationResponse {
140
140
  valid: boolean;
141
141
  projectId: string;
142
- supabaseUrl: string;
143
- supabaseAnonKey: string;
144
142
  channelName: string;
143
+ supabaseUrl?: string;
144
+ supabaseAnonKey?: string;
145
145
  project?: {
146
146
  name: string;
147
147
  agent_online: boolean;
@@ -1 +1 @@
1
- export declare const EMBED_VERSION = "0.1.37";
1
+ export declare const EMBED_VERSION = "0.1.38";