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 +1 -1
- package/dist/core/client.d.ts +2 -2
- package/dist/core/config.d.ts +2 -2
- package/dist/core/version.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/vanilla.js +1 -1
- package/dist/vanilla.min.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ function App() {
|
|
|
42
42
|
### Vanilla JavaScript
|
|
43
43
|
|
|
44
44
|
```html
|
|
45
|
-
<script src="https://
|
|
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',
|
package/dist/core/client.d.ts
CHANGED
|
@@ -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
|
|
9
|
-
private
|
|
8
|
+
private socket;
|
|
9
|
+
private channelName;
|
|
10
10
|
private projectId;
|
|
11
11
|
private state;
|
|
12
12
|
private consoleCapture;
|
package/dist/core/config.d.ts
CHANGED
|
@@ -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;
|
package/dist/core/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const EMBED_VERSION = "0.1.
|
|
1
|
+
export declare const EMBED_VERSION = "0.1.38";
|