@lovable.dev/sdk 0.1.9 → 0.1.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/README.md +1 -1
- package/dist/index.d.ts +81 -2459
- package/dist/index.js +0 -73
- package/dist/index.js.map +1 -1
- package/package.json +14 -16
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ const project = await client.createProject(workspaces[0].id, {
|
|
|
31
31
|
// 2. Wait for the AI response and get the preview URL
|
|
32
32
|
const response = await client.waitForResponse(project.id);
|
|
33
33
|
console.log(response.content); // AI's response text
|
|
34
|
-
console.log(response.messageId); // AI message ID
|
|
34
|
+
console.log(response.messageId); // AI message ID
|
|
35
35
|
console.log(response.previewUrl); // Preview URL for the project
|
|
36
36
|
|
|
37
37
|
// 3. Send a follow-up chat message
|