vibes-diy 13.0.7 → 13.0.8
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/cli/cmd-evento.d.ts +16 -9
- package/package.json +8 -8
package/cli/cmd-evento.d.ts
CHANGED
|
@@ -235,6 +235,7 @@ export declare function cliEventoHandlers(): (import("@adviser/cement").EventoHa
|
|
|
235
235
|
memberJoined?: boolean | undefined;
|
|
236
236
|
accessRequested?: boolean | undefined;
|
|
237
237
|
emailDigest?: boolean | undefined;
|
|
238
|
+
retentionEmail?: boolean | undefined;
|
|
238
239
|
followRequest?: boolean | undefined;
|
|
239
240
|
followerAdded?: boolean | undefined;
|
|
240
241
|
followApproved?: boolean | undefined;
|
|
@@ -248,13 +249,19 @@ export declare function cliEventoHandlers(): (import("@adviser/cement").EventoHa
|
|
|
248
249
|
type: "contactEmail";
|
|
249
250
|
email: string;
|
|
250
251
|
updatedAt: string;
|
|
251
|
-
} | {
|
|
252
|
-
type: "onboarding";
|
|
253
|
-
completedAt: string;
|
|
254
252
|
} | {
|
|
255
253
|
type: "geoCountry";
|
|
256
254
|
country: string;
|
|
257
255
|
updatedAt: string;
|
|
256
|
+
} | {
|
|
257
|
+
type: "retentionDrip";
|
|
258
|
+
sent: {
|
|
259
|
+
[x: string]: string;
|
|
260
|
+
};
|
|
261
|
+
updatedAt: string;
|
|
262
|
+
} | {
|
|
263
|
+
type: "onboarding";
|
|
264
|
+
completedAt: string;
|
|
258
265
|
} | {
|
|
259
266
|
type: "defaultHandle";
|
|
260
267
|
ownerHandle: string;
|
|
@@ -350,13 +357,13 @@ export declare function cliEventoHandlers(): (import("@adviser/cement").EventoHa
|
|
|
350
357
|
type: "vibes.diy.res-error";
|
|
351
358
|
error: {
|
|
352
359
|
message: string;
|
|
353
|
-
code: "
|
|
360
|
+
code: "max-app-slugs-reached";
|
|
354
361
|
};
|
|
355
362
|
} | {
|
|
356
363
|
type: "vibes.diy.res-error";
|
|
357
364
|
error: {
|
|
358
365
|
message: string;
|
|
359
|
-
code: "
|
|
366
|
+
code: "handle-required";
|
|
360
367
|
};
|
|
361
368
|
}> | import("@adviser/cement").EventoHandler<WrapCmdTSMsg<unknown>, {
|
|
362
369
|
type: "vibes-diy.cli.claim-handle";
|
|
@@ -450,13 +457,13 @@ export declare function cliEventoHandlers(): (import("@adviser/cement").EventoHa
|
|
|
450
457
|
type: "vibes.diy.res-error";
|
|
451
458
|
error: {
|
|
452
459
|
message: string;
|
|
453
|
-
code: "
|
|
460
|
+
code: "max-app-slugs-reached";
|
|
454
461
|
};
|
|
455
462
|
} | {
|
|
456
463
|
type: "vibes.diy.res-error";
|
|
457
464
|
error: {
|
|
458
465
|
message: string;
|
|
459
|
-
code: "
|
|
466
|
+
code: "handle-required";
|
|
460
467
|
};
|
|
461
468
|
} | {
|
|
462
469
|
type: "vibes-diy.cli.res-generate";
|
|
@@ -553,13 +560,13 @@ export declare function cliEventoHandlers(): (import("@adviser/cement").EventoHa
|
|
|
553
560
|
type: "vibes.diy.res-error";
|
|
554
561
|
error: {
|
|
555
562
|
message: string;
|
|
556
|
-
code: "
|
|
563
|
+
code: "max-app-slugs-reached";
|
|
557
564
|
};
|
|
558
565
|
} | {
|
|
559
566
|
type: "vibes.diy.res-error";
|
|
560
567
|
error: {
|
|
561
568
|
message: string;
|
|
562
|
-
code: "
|
|
569
|
+
code: "handle-required";
|
|
563
570
|
};
|
|
564
571
|
} | {
|
|
565
572
|
type: "vibes-diy.cli.res-edit";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibes-diy",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"description": "Command-line tool for vibes.diy — generate, edit, pull, push, and publish AI-built apps",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@adviser/cement": "~0.5.34",
|
|
32
32
|
"@modelcontextprotocol/sdk": "~1.30.0",
|
|
33
|
-
"@vibes.diy/api-impl": "^13.0.
|
|
34
|
-
"@vibes.diy/api-types": "^13.0.
|
|
35
|
-
"@vibes.diy/call-ai-v2": "^13.0.
|
|
36
|
-
"@vibes.diy/cmd-harness": "^13.0.
|
|
37
|
-
"@vibes.diy/cmd-tools": "^13.0.
|
|
38
|
-
"@vibes.diy/identity": "^13.0.
|
|
39
|
-
"@vibes.diy/prompts": "^13.0.
|
|
33
|
+
"@vibes.diy/api-impl": "^13.0.8",
|
|
34
|
+
"@vibes.diy/api-types": "^13.0.8",
|
|
35
|
+
"@vibes.diy/call-ai-v2": "^13.0.8",
|
|
36
|
+
"@vibes.diy/cmd-harness": "^13.0.8",
|
|
37
|
+
"@vibes.diy/cmd-tools": "^13.0.8",
|
|
38
|
+
"@vibes.diy/identity": "^13.0.8",
|
|
39
|
+
"@vibes.diy/prompts": "^13.0.8",
|
|
40
40
|
"arktype": "~2.2.3",
|
|
41
41
|
"charwise": "~3.0.1",
|
|
42
42
|
"cmd-ts": "~0.15.0",
|