@vibes.diy/api-types 12.2.11 → 12.2.12
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/app.d.ts +12 -0
- package/chat.d.ts +60 -0
- package/package.json +4 -4
- package/prompt.d.ts +36 -0
- package/prompt.js +50 -0
- package/prompt.js.map +1 -1
package/app.d.ts
CHANGED
|
@@ -967,6 +967,18 @@ export declare const resGetApplicationChat: import("arktype/internal/variants/ob
|
|
|
967
967
|
} | undefined;
|
|
968
968
|
};
|
|
969
969
|
description: string;
|
|
970
|
+
} | {
|
|
971
|
+
type: "prompt.status";
|
|
972
|
+
streamId: string;
|
|
973
|
+
chatId: string;
|
|
974
|
+
seq: number;
|
|
975
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
976
|
+
round: number;
|
|
977
|
+
maxRounds: number;
|
|
978
|
+
tools: {
|
|
979
|
+
name: string;
|
|
980
|
+
path?: string | undefined;
|
|
981
|
+
}[];
|
|
970
982
|
})[];
|
|
971
983
|
}, {}>;
|
|
972
984
|
export type ResGetApplicationChat = typeof resGetApplicationChat.infer;
|
package/chat.d.ts
CHANGED
|
@@ -1734,6 +1734,18 @@ export declare const PromptAndBlockMsgs: import("arktype/internal/variants/objec
|
|
|
1734
1734
|
} | undefined;
|
|
1735
1735
|
};
|
|
1736
1736
|
description: string;
|
|
1737
|
+
} | {
|
|
1738
|
+
type: "prompt.status";
|
|
1739
|
+
streamId: string;
|
|
1740
|
+
chatId: string;
|
|
1741
|
+
seq: number;
|
|
1742
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
1743
|
+
round: number;
|
|
1744
|
+
maxRounds: number;
|
|
1745
|
+
tools: {
|
|
1746
|
+
name: string;
|
|
1747
|
+
path?: string | undefined;
|
|
1748
|
+
}[];
|
|
1737
1749
|
} | {
|
|
1738
1750
|
type: "prompt.research";
|
|
1739
1751
|
version: 1;
|
|
@@ -2285,6 +2297,18 @@ export declare const sectionEvent: import("arktype/internal/variants/object.ts")
|
|
|
2285
2297
|
} | undefined;
|
|
2286
2298
|
};
|
|
2287
2299
|
description: string;
|
|
2300
|
+
} | {
|
|
2301
|
+
type: "prompt.status";
|
|
2302
|
+
streamId: string;
|
|
2303
|
+
chatId: string;
|
|
2304
|
+
seq: number;
|
|
2305
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
2306
|
+
round: number;
|
|
2307
|
+
maxRounds: number;
|
|
2308
|
+
tools: {
|
|
2309
|
+
name: string;
|
|
2310
|
+
path?: string | undefined;
|
|
2311
|
+
}[];
|
|
2288
2312
|
} | {
|
|
2289
2313
|
type: "prompt.research";
|
|
2290
2314
|
version: 1;
|
|
@@ -2848,6 +2872,18 @@ export declare const resChatResponseSection: import("arktype/internal/variants/o
|
|
|
2848
2872
|
} | undefined;
|
|
2849
2873
|
};
|
|
2850
2874
|
description: string;
|
|
2875
|
+
} | {
|
|
2876
|
+
type: "prompt.status";
|
|
2877
|
+
streamId: string;
|
|
2878
|
+
chatId: string;
|
|
2879
|
+
seq: number;
|
|
2880
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
2881
|
+
round: number;
|
|
2882
|
+
maxRounds: number;
|
|
2883
|
+
tools: {
|
|
2884
|
+
name: string;
|
|
2885
|
+
path?: string | undefined;
|
|
2886
|
+
}[];
|
|
2851
2887
|
} | {
|
|
2852
2888
|
type: "prompt.research";
|
|
2853
2889
|
version: 1;
|
|
@@ -3401,6 +3437,18 @@ export declare const resChatResponseTurn: import("arktype/internal/variants/obje
|
|
|
3401
3437
|
} | undefined;
|
|
3402
3438
|
};
|
|
3403
3439
|
description: string;
|
|
3440
|
+
} | {
|
|
3441
|
+
type: "prompt.status";
|
|
3442
|
+
streamId: string;
|
|
3443
|
+
chatId: string;
|
|
3444
|
+
seq: number;
|
|
3445
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
3446
|
+
round: number;
|
|
3447
|
+
maxRounds: number;
|
|
3448
|
+
tools: {
|
|
3449
|
+
name: string;
|
|
3450
|
+
path?: string | undefined;
|
|
3451
|
+
}[];
|
|
3404
3452
|
} | {
|
|
3405
3453
|
type: "prompt.research";
|
|
3406
3454
|
version: 1;
|
|
@@ -3960,6 +4008,18 @@ export declare const resGetChatResponse: import("arktype/internal/variants/objec
|
|
|
3960
4008
|
} | undefined;
|
|
3961
4009
|
};
|
|
3962
4010
|
description: string;
|
|
4011
|
+
} | {
|
|
4012
|
+
type: "prompt.status";
|
|
4013
|
+
streamId: string;
|
|
4014
|
+
chatId: string;
|
|
4015
|
+
seq: number;
|
|
4016
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
4017
|
+
round: number;
|
|
4018
|
+
maxRounds: number;
|
|
4019
|
+
tools: {
|
|
4020
|
+
name: string;
|
|
4021
|
+
path?: string | undefined;
|
|
4022
|
+
}[];
|
|
3963
4023
|
} | {
|
|
3964
4024
|
type: "prompt.research";
|
|
3965
4025
|
version: 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibes.diy/api-types",
|
|
3
|
-
"version": "12.2.
|
|
3
|
+
"version": "12.2.12",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@adviser/cement": "~0.5.34",
|
|
18
18
|
"@cloudflare/workers-types": "~5.20260809.1",
|
|
19
|
-
"@vibes.diy/call-ai-v2": "12.2.
|
|
20
|
-
"@vibes.diy/identity": "12.2.
|
|
21
|
-
"@vibes.diy/vibe-types": "12.2.
|
|
19
|
+
"@vibes.diy/call-ai-v2": "12.2.12",
|
|
20
|
+
"@vibes.diy/identity": "12.2.12",
|
|
21
|
+
"@vibes.diy/vibe-types": "12.2.12",
|
|
22
22
|
"arktype": "~2.2.3"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
package/prompt.d.ts
CHANGED
|
@@ -346,6 +346,30 @@ export declare const PromptRestyle: import("arktype/internal/variants/object.ts"
|
|
|
346
346
|
}, {}>;
|
|
347
347
|
export type PromptRestyle = typeof PromptRestyle.infer;
|
|
348
348
|
export declare function isPromptRestyle(msg: unknown): msg is PromptRestyle;
|
|
349
|
+
export declare const WORK_STATUS_SEQ_BASE = -100;
|
|
350
|
+
export declare const WORK_STATUS_MAX_ROUND = 64;
|
|
351
|
+
export declare const WORK_STATUS_MAX_TOOLS = 32;
|
|
352
|
+
export declare function workStatusBlockSeq(round: number): number;
|
|
353
|
+
declare const PromptStatusTool: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
354
|
+
name: string;
|
|
355
|
+
path?: string | undefined;
|
|
356
|
+
}, {}>;
|
|
357
|
+
export declare const PromptStatus: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
358
|
+
type: "prompt.status";
|
|
359
|
+
streamId: string;
|
|
360
|
+
chatId: string;
|
|
361
|
+
seq: number;
|
|
362
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
363
|
+
round: number;
|
|
364
|
+
maxRounds: number;
|
|
365
|
+
tools: {
|
|
366
|
+
name: string;
|
|
367
|
+
path?: string | undefined;
|
|
368
|
+
}[];
|
|
369
|
+
}, {}>;
|
|
370
|
+
export type PromptStatus = typeof PromptStatus.infer;
|
|
371
|
+
export type PromptStatusTool = typeof PromptStatusTool.infer;
|
|
372
|
+
export declare function isPromptStatus(msg: unknown): msg is PromptStatus;
|
|
349
373
|
export declare const PromptMsgs: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
350
374
|
streamId: string;
|
|
351
375
|
chatId: string;
|
|
@@ -656,6 +680,18 @@ export declare const PromptMsgs: import("arktype/internal/variants/object.ts").O
|
|
|
656
680
|
} | undefined;
|
|
657
681
|
};
|
|
658
682
|
description: string;
|
|
683
|
+
} | {
|
|
684
|
+
type: "prompt.status";
|
|
685
|
+
streamId: string;
|
|
686
|
+
chatId: string;
|
|
687
|
+
seq: number;
|
|
688
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
689
|
+
round: number;
|
|
690
|
+
maxRounds: number;
|
|
691
|
+
tools: {
|
|
692
|
+
name: string;
|
|
693
|
+
path?: string | undefined;
|
|
694
|
+
}[];
|
|
659
695
|
} | {
|
|
660
696
|
type: "prompt.research";
|
|
661
697
|
version: 1;
|
package/prompt.js
CHANGED
|
@@ -79,6 +79,55 @@ export const PromptRestyle = type({
|
|
|
79
79
|
export function isPromptRestyle(msg) {
|
|
80
80
|
return !(PromptRestyle(msg) instanceof type.errors);
|
|
81
81
|
}
|
|
82
|
+
export const WORK_STATUS_SEQ_BASE = -100;
|
|
83
|
+
export const WORK_STATUS_MAX_ROUND = 64;
|
|
84
|
+
export const WORK_STATUS_MAX_TOOLS = 32;
|
|
85
|
+
const WORK_STATUS_MAX_TOOL_NAME_CHARS = 64;
|
|
86
|
+
const WORK_STATUS_MAX_PATH_CHARS = 512;
|
|
87
|
+
export function workStatusBlockSeq(round) {
|
|
88
|
+
return WORK_STATUS_SEQ_BASE - round;
|
|
89
|
+
}
|
|
90
|
+
const PromptStatusTool = type({
|
|
91
|
+
name: "string",
|
|
92
|
+
"path?": "string",
|
|
93
|
+
"+": "reject",
|
|
94
|
+
}).narrow((value, ctx) => {
|
|
95
|
+
if (value.name.length === 0 || value.name.length > WORK_STATUS_MAX_TOOL_NAME_CHARS) {
|
|
96
|
+
return ctx.mustBe("a bounded tool name");
|
|
97
|
+
}
|
|
98
|
+
if (value.path !== undefined && (value.path.length === 0 || value.path.length > WORK_STATUS_MAX_PATH_CHARS)) {
|
|
99
|
+
return ctx.mustBe("a bounded tool path");
|
|
100
|
+
}
|
|
101
|
+
return true;
|
|
102
|
+
});
|
|
103
|
+
export const PromptStatus = type({
|
|
104
|
+
type: "'prompt.status'",
|
|
105
|
+
streamId: "string",
|
|
106
|
+
chatId: "string",
|
|
107
|
+
seq: "number",
|
|
108
|
+
timestamp: CoercedDate,
|
|
109
|
+
round: "number",
|
|
110
|
+
maxRounds: "number",
|
|
111
|
+
tools: PromptStatusTool.array(),
|
|
112
|
+
}).narrow((value, ctx) => {
|
|
113
|
+
if (Number.isInteger(value.round) === false || value.round < 1 || value.round > WORK_STATUS_MAX_ROUND) {
|
|
114
|
+
return ctx.mustBe("a bounded round number");
|
|
115
|
+
}
|
|
116
|
+
if (Number.isInteger(value.maxRounds) === false || value.maxRounds < 1 || value.maxRounds > WORK_STATUS_MAX_ROUND) {
|
|
117
|
+
return ctx.mustBe("a bounded round cap");
|
|
118
|
+
}
|
|
119
|
+
if (value.seq !== workStatusBlockSeq(value.round))
|
|
120
|
+
return ctx.mustBe("the reserved work-status section sequence");
|
|
121
|
+
if (value.tools.length > WORK_STATUS_MAX_TOOLS)
|
|
122
|
+
return ctx.mustBe("bounded round tools");
|
|
123
|
+
if (value.timestamp instanceof Date === false || Number.isFinite(value.timestamp.getTime()) === false) {
|
|
124
|
+
return ctx.mustBe("a valid server timestamp");
|
|
125
|
+
}
|
|
126
|
+
return true;
|
|
127
|
+
});
|
|
128
|
+
export function isPromptStatus(msg) {
|
|
129
|
+
return !(PromptStatus(msg) instanceof type.errors);
|
|
130
|
+
}
|
|
82
131
|
export const PromptMsgs = PromptBlockBegin.or(PromptBlockEnd)
|
|
83
132
|
.or(PromptReq)
|
|
84
133
|
.or(PromptError)
|
|
@@ -89,6 +138,7 @@ export const PromptMsgs = PromptBlockBegin.or(PromptBlockEnd)
|
|
|
89
138
|
.or(PromptFsPersisted)
|
|
90
139
|
.or(PromptSystemPrompt)
|
|
91
140
|
.or(PromptRestyle)
|
|
141
|
+
.or(PromptStatus)
|
|
92
142
|
.or(PromptResearch);
|
|
93
143
|
export const isPromptMsg = (msg) => !(PromptMsgs(msg) instanceof type.errors);
|
|
94
144
|
export function isPromptBlockBegin(msg) {
|
package/prompt.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompt.js","sourceRoot":"","sources":["../jsr/prompt.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"prompt.js","sourceRoot":"","sources":["../jsr/prompt.ts"],"names":[],"mappings":"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"}
|