veryfront 0.1.873 → 0.1.875

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/esm/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.1.873",
3
+ "version": "0.1.875",
4
4
  "license": "Apache-2.0",
5
5
  "nodeModulesDir": "auto",
6
6
  "minimumDependencyAge": {
@@ -1,12 +1,5 @@
1
1
  import type { AgUiRuntimeStreamEvent } from "../ag-ui/browser-encoder.js";
2
- /** Normalize provider tool input by removing transient empty-object prefixes. */
3
- export declare function stripLeadingEmptyObjectPlaceholder(rawArgs: string): string;
4
- /** Merge tool input delta helper. */
5
- export declare function mergeToolInputDelta(currentArguments: string, nextDelta: string): string;
6
- /** Input payload for merge tool call. */
7
- export declare function mergeToolCallInput(currentArguments: string, nextInput: string): string;
8
- /** Parses tool input object. */
9
- export declare function parseToolInputObject(input: unknown): Record<string, unknown>;
2
+ export { mergeToolCallInput, mergeToolInputDelta, parseToolInputObject, stripLeadingEmptyObjectPlaceholder, } from "./tool-input.js";
10
3
  /** Parses data stream sse events. */
11
4
  export declare function parseDataStreamSseEvents(chunk: string): {
12
5
  events: AgUiRuntimeStreamEvent[];
@@ -1 +1 @@
1
- {"version":3,"file":"data-stream.d.ts","sourceRoot":"","sources":["../../../../src/src/agent/streaming/data-stream.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAQ1E,iFAAiF;AACjF,wBAAgB,kCAAkC,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAmB1E;AAwBD,qCAAqC;AACrC,wBAAgB,mBAAmB,CAAC,gBAAgB,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAuDvF;AAED,yCAAyC;AACzC,wBAAgB,kBAAkB,CAAC,gBAAgB,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAoBtF;AAED,gCAAgC;AAChC,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAiB5E;AAED,qCAAqC;AACrC,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,MAAM,GAAG;IACvD,MAAM,EAAE,sBAAsB,EAAE,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;CACnB,CAoBA;AAED,wCAAwC;AACxC,wBAAuB,sBAAsB,CAC3C,MAAM,EAAE,cAAc,CAAC,UAAU,CAAC,GACjC,cAAc,CAAC,sBAAsB,CAAC,CAsCxC"}
1
+ {"version":3,"file":"data-stream.d.ts","sourceRoot":"","sources":["../../../../src/src/agent/streaming/data-stream.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAE1E,OAAO,EACL,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,kCAAkC,GACnC,MAAM,iBAAiB,CAAC;AAIzB,qCAAqC;AACrC,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,MAAM,GAAG;IACvD,MAAM,EAAE,sBAAsB,EAAE,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;CACnB,CAoBA;AAED,wCAAwC;AACxC,wBAAuB,sBAAsB,CAC3C,MAAM,EAAE,cAAc,CAAC,UAAU,CAAC,GACjC,cAAc,CAAC,sBAAsB,CAAC,CAsCxC"}
@@ -1,130 +1,6 @@
1
1
  import { serverLogger } from "../../utils/index.js";
2
+ export { mergeToolCallInput, mergeToolInputDelta, parseToolInputObject, stripLeadingEmptyObjectPlaceholder, } from "./tool-input.js";
2
3
  const logger = serverLogger.component("agent-data-stream");
3
- function isRecord(value) {
4
- return typeof value === "object" && value !== null && !Array.isArray(value);
5
- }
6
- /** Normalize provider tool input by removing transient empty-object prefixes. */
7
- export function stripLeadingEmptyObjectPlaceholder(rawArgs) {
8
- let normalized = rawArgs.trim();
9
- while (normalized.startsWith("{}")) {
10
- const remainder = normalized.slice(2).trimStart();
11
- if (remainder.startsWith("{")) {
12
- normalized = remainder;
13
- continue;
14
- }
15
- if (remainder.startsWith('"')) {
16
- normalized = `{${remainder}`;
17
- continue;
18
- }
19
- break;
20
- }
21
- return normalized;
22
- }
23
- /**
24
- * Minimum overlap length at which `mergeToolInputDelta` will accept a
25
- * tail-overlap as an intentional retransmission from the provider and
26
- * dedup the leading chunk of the next delta.
27
- *
28
- * Empirically, overlaps of 1–3 characters are almost always coincidental
29
- * in streamed JSON (e.g. `"`, `,`, `":`, `,"`). Accepting them as dedup
30
- * causes silent character drops — the exact pathology observed in staging
31
- * on 2026-04-15 where `create_file` tool calls arrived at the classifier
32
- * with 2–5 chars missing from the middle of the buffer. Requiring at
33
- * least 4 chars of overlap makes false matches vanishingly unlikely while
34
- * still honoring the real "retransmitted content-suffix" case pinned by
35
- * the existing "overlapping suffix dedup" regression test (which relies
36
- * on a 6-char `Report` overlap).
37
- *
38
- * Similarly, short deltas (< 4 chars) are treated as append-mode
39
- * regardless of what they look like: a 1-char delta literally cannot
40
- * contain enough signal to distinguish retransmission from append, and
41
- * we will not silently drop it.
42
- */
43
- const MIN_OVERLAP_DEDUP_LENGTH = 4;
44
- /** Merge tool input delta helper. */
45
- export function mergeToolInputDelta(currentArguments, nextDelta) {
46
- const normalizedDelta = nextDelta.trimStart();
47
- const candidateDeltas = normalizedDelta.startsWith('"')
48
- ? [normalizedDelta, `{${normalizedDelta}`]
49
- : [normalizedDelta];
50
- if (currentArguments === "{}" || currentArguments.length === 0) {
51
- for (const candidate of candidateDeltas) {
52
- if (candidate.startsWith("{")) {
53
- return candidate;
54
- }
55
- }
56
- }
57
- if (nextDelta.length === 0) {
58
- return currentArguments;
59
- }
60
- if (currentArguments.length === 0) {
61
- return nextDelta;
62
- }
63
- // Short deltas are trusted as append-mode. Retransmission at this size
64
- // is indistinguishable from append and would produce more corruption
65
- // than it prevents — see MIN_OVERLAP_DEDUP_LENGTH.
66
- if (nextDelta.length < MIN_OVERLAP_DEDUP_LENGTH) {
67
- return currentArguments + nextDelta;
68
- }
69
- for (const candidate of candidateDeltas) {
70
- // Exact duplicate: the provider resent the same full buffer.
71
- if (candidate === currentArguments) {
72
- return currentArguments;
73
- }
74
- // Cumulative mode: the delta is a strict extension of the current
75
- // buffer and supersedes it verbatim.
76
- if (candidate.startsWith(currentArguments)) {
77
- return candidate;
78
- }
79
- // Tail retransmission: the provider resent a suffix of the current
80
- // buffer as the prefix of the new delta. Only accept overlaps of
81
- // MIN_OVERLAP_DEDUP_LENGTH or longer — trivial 1-3 char matches in
82
- // streamed JSON are overwhelmingly coincidental and deduping them
83
- // corrupts append-mode streams.
84
- const maxOverlap = Math.min(currentArguments.length, candidate.length);
85
- for (let overlap = maxOverlap; overlap >= MIN_OVERLAP_DEDUP_LENGTH; overlap--) {
86
- if (currentArguments.endsWith(candidate.slice(0, overlap))) {
87
- return currentArguments + candidate.slice(overlap);
88
- }
89
- }
90
- }
91
- return currentArguments + nextDelta;
92
- }
93
- /** Input payload for merge tool call. */
94
- export function mergeToolCallInput(currentArguments, nextInput) {
95
- if (currentArguments.length === 0) {
96
- return nextInput;
97
- }
98
- const normalizedCurrent = stripLeadingEmptyObjectPlaceholder(currentArguments);
99
- if (nextInput.trim() === "{}" && currentArguments.trim().startsWith("{")) {
100
- return currentArguments;
101
- }
102
- if (nextInput.trim() === "{}" && normalizedCurrent.trim().startsWith("{")) {
103
- return normalizedCurrent;
104
- }
105
- if (currentArguments.trim() === "{}" && nextInput.trim().startsWith("{")) {
106
- return nextInput;
107
- }
108
- return nextInput;
109
- }
110
- /** Parses tool input object. */
111
- export function parseToolInputObject(input) {
112
- if (isRecord(input)) {
113
- return input;
114
- }
115
- if (typeof input === "string") {
116
- try {
117
- const parsed = JSON.parse(stripLeadingEmptyObjectPlaceholder(input));
118
- if (isRecord(parsed)) {
119
- return parsed;
120
- }
121
- }
122
- catch {
123
- return {};
124
- }
125
- }
126
- return {};
127
- }
128
4
  /** Parses data stream sse events. */
129
5
  export function parseDataStreamSseEvents(chunk) {
130
6
  const blocks = chunk.split("\n\n");
@@ -0,0 +1,9 @@
1
+ /** Normalize provider tool input by removing transient empty-object prefixes. */
2
+ export declare function stripLeadingEmptyObjectPlaceholder(rawArgs: string): string;
3
+ /** Merge tool input delta helper. */
4
+ export declare function mergeToolInputDelta(currentArguments: string, nextDelta: string): string;
5
+ /** Input payload for merge tool call. */
6
+ export declare function mergeToolCallInput(currentArguments: string, nextInput: string): string;
7
+ /** Parses tool input object. */
8
+ export declare function parseToolInputObject(input: unknown): Record<string, unknown>;
9
+ //# sourceMappingURL=tool-input.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tool-input.d.ts","sourceRoot":"","sources":["../../../../src/src/agent/streaming/tool-input.ts"],"names":[],"mappings":"AAIA,iFAAiF;AACjF,wBAAgB,kCAAkC,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAmB1E;AAwBD,qCAAqC;AACrC,wBAAgB,mBAAmB,CAAC,gBAAgB,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAuDvF;AAED,yCAAyC;AACzC,wBAAgB,kBAAkB,CAAC,gBAAgB,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAoBtF;AAED,gCAAgC;AAChC,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAiB5E"}
@@ -0,0 +1,125 @@
1
+ function isRecord(value) {
2
+ return typeof value === "object" && value !== null && !Array.isArray(value);
3
+ }
4
+ /** Normalize provider tool input by removing transient empty-object prefixes. */
5
+ export function stripLeadingEmptyObjectPlaceholder(rawArgs) {
6
+ let normalized = rawArgs.trim();
7
+ while (normalized.startsWith("{}")) {
8
+ const remainder = normalized.slice(2).trimStart();
9
+ if (remainder.startsWith("{")) {
10
+ normalized = remainder;
11
+ continue;
12
+ }
13
+ if (remainder.startsWith('"')) {
14
+ normalized = `{${remainder}`;
15
+ continue;
16
+ }
17
+ break;
18
+ }
19
+ return normalized;
20
+ }
21
+ /**
22
+ * Minimum overlap length at which `mergeToolInputDelta` will accept a
23
+ * tail-overlap as an intentional retransmission from the provider and
24
+ * dedup the leading chunk of the next delta.
25
+ *
26
+ * Empirically, overlaps of 1-3 characters are almost always coincidental
27
+ * in streamed JSON (e.g. `"`, `,`, `":`, `,"`). Accepting them as dedup
28
+ * causes silent character drops - the exact pathology observed in staging
29
+ * on 2026-04-15 where `create_file` tool calls arrived at the classifier
30
+ * with 2-5 chars missing from the middle of the buffer. Requiring at
31
+ * least 4 chars of overlap makes false matches vanishingly unlikely while
32
+ * still honoring the real "retransmitted content-suffix" case pinned by
33
+ * the existing "overlapping suffix dedup" regression test (which relies
34
+ * on a 6-char `Report` overlap).
35
+ *
36
+ * Similarly, short deltas (< 4 chars) are treated as append-mode
37
+ * regardless of what they look like: a 1-char delta literally cannot
38
+ * contain enough signal to distinguish retransmission from append, and
39
+ * it will not silently drop it.
40
+ */
41
+ const MIN_OVERLAP_DEDUP_LENGTH = 4;
42
+ /** Merge tool input delta helper. */
43
+ export function mergeToolInputDelta(currentArguments, nextDelta) {
44
+ const normalizedDelta = nextDelta.trimStart();
45
+ const candidateDeltas = normalizedDelta.startsWith('"')
46
+ ? [normalizedDelta, `{${normalizedDelta}`]
47
+ : [normalizedDelta];
48
+ if (currentArguments === "{}" || currentArguments.length === 0) {
49
+ for (const candidate of candidateDeltas) {
50
+ if (candidate.startsWith("{")) {
51
+ return candidate;
52
+ }
53
+ }
54
+ }
55
+ if (nextDelta.length === 0) {
56
+ return currentArguments;
57
+ }
58
+ if (currentArguments.length === 0) {
59
+ return nextDelta;
60
+ }
61
+ // Short deltas are trusted as append-mode. Retransmission at this size
62
+ // is indistinguishable from append and would produce more corruption
63
+ // than it prevents; see MIN_OVERLAP_DEDUP_LENGTH.
64
+ if (nextDelta.length < MIN_OVERLAP_DEDUP_LENGTH) {
65
+ return currentArguments + nextDelta;
66
+ }
67
+ for (const candidate of candidateDeltas) {
68
+ // Exact duplicate: the provider resent the same full buffer.
69
+ if (candidate === currentArguments) {
70
+ return currentArguments;
71
+ }
72
+ // Cumulative mode: the delta is a strict extension of the current
73
+ // buffer and supersedes it verbatim.
74
+ if (candidate.startsWith(currentArguments)) {
75
+ return candidate;
76
+ }
77
+ // Tail retransmission: the provider resent a suffix of the current
78
+ // buffer as the prefix of the new delta. Only accept overlaps of
79
+ // MIN_OVERLAP_DEDUP_LENGTH or longer. Trivial 1-3 char matches in
80
+ // streamed JSON are overwhelmingly coincidental and deduping them
81
+ // corrupts append-mode streams.
82
+ const maxOverlap = Math.min(currentArguments.length, candidate.length);
83
+ for (let overlap = maxOverlap; overlap >= MIN_OVERLAP_DEDUP_LENGTH; overlap--) {
84
+ if (currentArguments.endsWith(candidate.slice(0, overlap))) {
85
+ return currentArguments + candidate.slice(overlap);
86
+ }
87
+ }
88
+ }
89
+ return currentArguments + nextDelta;
90
+ }
91
+ /** Input payload for merge tool call. */
92
+ export function mergeToolCallInput(currentArguments, nextInput) {
93
+ if (currentArguments.length === 0) {
94
+ return nextInput;
95
+ }
96
+ const normalizedCurrent = stripLeadingEmptyObjectPlaceholder(currentArguments);
97
+ if (nextInput.trim() === "{}" && currentArguments.trim().startsWith("{")) {
98
+ return currentArguments;
99
+ }
100
+ if (nextInput.trim() === "{}" && normalizedCurrent.trim().startsWith("{")) {
101
+ return normalizedCurrent;
102
+ }
103
+ if (currentArguments.trim() === "{}" && nextInput.trim().startsWith("{")) {
104
+ return nextInput;
105
+ }
106
+ return nextInput;
107
+ }
108
+ /** Parses tool input object. */
109
+ export function parseToolInputObject(input) {
110
+ if (isRecord(input)) {
111
+ return input;
112
+ }
113
+ if (typeof input === "string") {
114
+ try {
115
+ const parsed = JSON.parse(stripLeadingEmptyObjectPlaceholder(input));
116
+ if (isRecord(parsed)) {
117
+ return parsed;
118
+ }
119
+ }
120
+ catch {
121
+ return {};
122
+ }
123
+ }
124
+ return {};
125
+ }
@@ -1,4 +1,4 @@
1
- import { mergeToolInputDelta, parseToolInputObject, } from "../agent/streaming/data-stream.js";
1
+ import { mergeToolInputDelta, parseToolInputObject, } from "../agent/streaming/tool-input.js";
2
2
  import { formatToolErrorText, isCommentOnlySseFrame, isRecord, mapFinishReason, normalizeNewlines, parseSerializedToolResult, splitSseFrames, toRenderableCustomChunk, } from "./ag-ui-helpers.js";
3
3
  import { tryResolve } from "../extensions/contracts.js";
4
4
  import { defineSchema } from "../schemas/index.js";
@@ -1 +1 @@
1
- {"version":3,"file":"message-prep.d.ts","sourceRoot":"","sources":["../../../src/src/chat/message-prep.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAC;AASjC,OAAO,EAKL,KAAK,aAAa,EAGlB,KAAK,oBAAoB,EAE1B,MAAM,YAAY,CAAC;AAMpB,4EAA4E;AAC5E,MAAM,WAAW,iDAAiD;IAChE,sBAAsB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CAC5C;AAED,uBAAuB;AACvB,wBAAgB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAErD;AAOD,qBAAqB;AACrB,wBAAgB,YAAY,CAC1B,QAAQ,EAAE,oBAAoB,EAAE,EAChC,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,GACb,oBAAoB,EAAE,CAiCxB;AAqCD,kDAAkD;AAClD,wBAAgB,qCAAqC,CACnD,QAAQ,EAAE,oBAAoB,EAAE,EAChC,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,GACf,oBAAoB,EAAE,CAiExB;AA+BD,4DAA4D;AAC5D,wBAAgB,6BAA6B,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAGxE;AAED,gDAAgD;AAChD,wBAAgB,kCAAkC,CAAC,QAAQ,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,CAwB7F;AAED,qDAAqD;AACrD,wBAAgB,wCAAwC,CACtD,QAAQ,EAAE,aAAa,EAAE,GACxB,aAAa,EAAE,CAmDjB;AAyCD,gCAAgC;AAChC,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,CAiBhF;AAsFD,wCAAwC;AACxC,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,oBAAoB,EAAE,GAC/B,oBAAoB,EAAE,CA8BxB;AA4ED,wDAAwD;AACxD,wBAAgB,0CAA0C,CACxD,QAAQ,EAAE,aAAa,EAAE,EACzB,OAAO,GAAE,iDAAsD,GAC9D,oBAAoB,EAAE,CAqBxB;AA2OD,6BAA6B;AAC7B,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CA4E3F;AAWD,yBAAyB;AACzB,wBAAgB,eAAe,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CA4IxF;AAED,yBAAyB;AACzB,wBAAgB,gBAAgB,CAAC,YAAY,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAGjF;AAED,sCAAsC;AACtC,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CA4B7F;AAED,wBAAwB;AACxB,wBAAgB,cAAc,CAC5B,QAAQ,EAAE,oBAAoB,EAAE,EAChC,QAAQ,GAAE,MAAU,GACnB,oBAAoB,EAAE,CAexB;AAED,2BAA2B;AAC3B,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CAgE1F;AAED,4BAA4B;AAC5B,wBAAgB,kBAAkB,CAChC,QAAQ,EAAE,oBAAoB,EAAE,EAChC,MAAM,GAAE,MAA6B,EACrC,QAAQ,GAAE,MAAU,GACnB,oBAAoB,EAAE,CAMxB"}
1
+ {"version":3,"file":"message-prep.d.ts","sourceRoot":"","sources":["../../../src/src/chat/message-prep.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAC;AASjC,OAAO,EAKL,KAAK,aAAa,EAGlB,KAAK,oBAAoB,EAE1B,MAAM,YAAY,CAAC;AAMpB,4EAA4E;AAC5E,MAAM,WAAW,iDAAiD;IAChE,sBAAsB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CAC5C;AAED,uBAAuB;AACvB,wBAAgB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAErD;AAOD,qBAAqB;AACrB,wBAAgB,YAAY,CAC1B,QAAQ,EAAE,oBAAoB,EAAE,EAChC,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,GACb,oBAAoB,EAAE,CAiCxB;AAqCD,kDAAkD;AAClD,wBAAgB,qCAAqC,CACnD,QAAQ,EAAE,oBAAoB,EAAE,EAChC,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,GACf,oBAAoB,EAAE,CAiExB;AA+BD,4DAA4D;AAC5D,wBAAgB,6BAA6B,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAGxE;AAED,gDAAgD;AAChD,wBAAgB,kCAAkC,CAAC,QAAQ,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,CAwB7F;AAED,qDAAqD;AACrD,wBAAgB,wCAAwC,CACtD,QAAQ,EAAE,aAAa,EAAE,GACxB,aAAa,EAAE,CAmDjB;AAyCD,gCAAgC;AAChC,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,CAiBhF;AAsFD,wCAAwC;AACxC,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,oBAAoB,EAAE,GAC/B,oBAAoB,EAAE,CA8BxB;AA4ED,wDAAwD;AACxD,wBAAgB,0CAA0C,CACxD,QAAQ,EAAE,aAAa,EAAE,EACzB,OAAO,GAAE,iDAAsD,GAC9D,oBAAoB,EAAE,CAqBxB;AAmRD,6BAA6B;AAC7B,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CA4E3F;AAWD,yBAAyB;AACzB,wBAAgB,eAAe,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CA4IxF;AAED,yBAAyB;AACzB,wBAAgB,gBAAgB,CAAC,YAAY,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAGjF;AAED,sCAAsC;AACtC,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CA4B7F;AAED,wBAAwB;AACxB,wBAAgB,cAAc,CAC5B,QAAQ,EAAE,oBAAoB,EAAE,EAChC,QAAQ,GAAE,MAAU,GACnB,oBAAoB,EAAE,CAexB;AAED,2BAA2B;AAC3B,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,GAAG,oBAAoB,EAAE,CAgE1F;AAED,4BAA4B;AAC5B,wBAAgB,kBAAkB,CAChC,QAAQ,EAAE,oBAAoB,EAAE,EAChC,MAAM,GAAE,MAA6B,EACrC,QAAQ,GAAE,MAAU,GACnB,oBAAoB,EAAE,CAMxB"}
@@ -532,13 +532,27 @@ function compactContactValue(value) {
532
532
  if (typeof emailAddress.address === "string")
533
533
  compact.address = emailAddress.address;
534
534
  }
535
- for (const field of ["login", "name", "address", "email", "id"]) {
535
+ for (const field of ["login", "name", "displayName", "address", "email", "id", "accountId"]) {
536
536
  if (typeof value[field] === "string" || typeof value[field] === "number") {
537
537
  compact[field] = value[field];
538
538
  }
539
539
  }
540
540
  return Object.keys(compact).length > 0 ? compact : null;
541
541
  }
542
+ function compactNamedArrayValue(value) {
543
+ if (typeof value === "string")
544
+ return value;
545
+ if (!isRecord(value))
546
+ return null;
547
+ for (const field of ["name", "displayName", "login", "key", "id"]) {
548
+ const candidate = value[field];
549
+ if (typeof candidate === "string" && candidate.length > 0)
550
+ return candidate;
551
+ if (typeof candidate === "number")
552
+ return String(candidate);
553
+ }
554
+ return null;
555
+ }
542
556
  function compactHistoricalField(field, fieldValue) {
543
557
  if (field.kind === "contact") {
544
558
  return compactContactValue(fieldValue);
@@ -557,6 +571,14 @@ function compactHistoricalField(field, fieldValue) {
557
571
  const strings = fieldValue.filter((item) => typeof item === "string");
558
572
  return strings.length > 0 ? strings : null;
559
573
  }
574
+ if (field.kind === "named-array") {
575
+ if (!Array.isArray(fieldValue))
576
+ return null;
577
+ const names = fieldValue
578
+ .map((item) => compactNamedArrayValue(item))
579
+ .filter((item) => item !== null);
580
+ return names.length > 0 ? names : null;
581
+ }
560
582
  if (field.kind === "object") {
561
583
  if (!isRecord(fieldValue))
562
584
  return null;
@@ -580,12 +602,24 @@ function compactHistoricalField(field, fieldValue) {
580
602
  }
581
603
  return null;
582
604
  }
605
+ function getHistoricalFieldValue(source, field) {
606
+ if (!field.path || field.path.length === 0) {
607
+ return source[field.name];
608
+ }
609
+ let value = source;
610
+ for (const segment of field.path) {
611
+ if (!isRecord(value))
612
+ return undefined;
613
+ value = value[segment];
614
+ }
615
+ return value;
616
+ }
583
617
  function compactHistoricalItemValue(value, fields) {
584
618
  if (!isRecord(value))
585
619
  return null;
586
620
  const compact = {};
587
621
  for (const field of fields) {
588
- const fieldValue = compactHistoricalField(field, value[field.name]);
622
+ const fieldValue = compactHistoricalField(field, getHistoricalFieldValue(value, field));
589
623
  if (fieldValue !== null)
590
624
  compact[field.name] = fieldValue;
591
625
  }
@@ -626,7 +660,7 @@ function compactHistoricalToolSummaryOutput(rawValue, contract) {
626
660
  };
627
661
  if (output && contract.outputFields) {
628
662
  for (const field of contract.outputFields) {
629
- const fieldValue = compactHistoricalField(field, output[field.name]);
663
+ const fieldValue = compactHistoricalField(field, getHistoricalFieldValue(output, field));
630
664
  if (fieldValue !== null)
631
665
  compacted[field.name] = fieldValue;
632
666
  }
@@ -1 +1 @@
1
- {"version":3,"file":"_data.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/_data.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,eAAO,MAAM,UAAU,EAAE,iBAAiB,EAk61DzC,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAyZxC,CAAC"}
1
+ {"version":3,"file":"_data.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/_data.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAErD,eAAO,MAAM,UAAU,EAAE,iBAAiB,EAg/1DzC,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAyZxC,CAAC"}
@@ -11736,7 +11736,18 @@ export const connectors = [
11736
11736
  "endpoint": {
11737
11737
  "method": "GET",
11738
11738
  "url": "https://api.atlassian.com/oauth/token/accessible-resources",
11739
- "response": { "transform": "" },
11739
+ "response": {
11740
+ "transform": "",
11741
+ "historicalSummary": {
11742
+ "collectionKeys": ["sites", "data"],
11743
+ "collectionName": "sites",
11744
+ "itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "url" }, {
11745
+ "name": "scopes",
11746
+ "kind": "string-array",
11747
+ }, { "name": "avatarUrl" }],
11748
+ "omitted": "provider-specific accessible resource payload fields",
11749
+ },
11750
+ },
11740
11751
  },
11741
11752
  }, {
11742
11753
  "id": "search_content",
@@ -11778,7 +11789,28 @@ export const connectors = [
11778
11789
  "default": "space,version",
11779
11790
  },
11780
11791
  },
11781
- "response": { "transform": "results" },
11792
+ "response": {
11793
+ "transform": "results",
11794
+ "historicalSummary": {
11795
+ "collectionKeys": ["results", "content", "data"],
11796
+ "collectionName": "content",
11797
+ "itemFields": [
11798
+ { "name": "id" },
11799
+ { "name": "type" },
11800
+ { "name": "status" },
11801
+ { "name": "title" },
11802
+ { "name": "excerpt", "maxLength": 300 },
11803
+ { "name": "space", "kind": "object" },
11804
+ { "name": "version", "kind": "object" },
11805
+ { "name": "_links", "kind": "object" },
11806
+ ],
11807
+ "outputFields": [{ "name": "size" }, { "name": "limit" }, { "name": "start" }, {
11808
+ "name": "_links",
11809
+ "kind": "object",
11810
+ }],
11811
+ "omitted": "page bodies, comments, and provider-specific payload fields",
11812
+ },
11813
+ },
11782
11814
  },
11783
11815
  }, {
11784
11816
  "id": "get_page",
@@ -11910,7 +11942,26 @@ export const connectors = [
11910
11942
  "default": 0,
11911
11943
  },
11912
11944
  },
11913
- "response": { "transform": "results" },
11945
+ "response": {
11946
+ "transform": "results",
11947
+ "historicalSummary": {
11948
+ "collectionKeys": ["results", "spaces", "data"],
11949
+ "collectionName": "spaces",
11950
+ "itemFields": [
11951
+ { "name": "id" },
11952
+ { "name": "key" },
11953
+ { "name": "name" },
11954
+ { "name": "type" },
11955
+ { "name": "status" },
11956
+ { "name": "_links", "kind": "object" },
11957
+ ],
11958
+ "outputFields": [{ "name": "size" }, { "name": "limit" }, { "name": "start" }, {
11959
+ "name": "_links",
11960
+ "kind": "object",
11961
+ }],
11962
+ "omitted": "space descriptions and provider-specific payload fields",
11963
+ },
11964
+ },
11914
11965
  },
11915
11966
  }, {
11916
11967
  "id": "add_comment",
@@ -19552,16 +19603,21 @@ export const connectors = [
19552
19603
  { "name": "node_id" },
19553
19604
  { "name": "name" },
19554
19605
  { "name": "full_name" },
19606
+ { "name": "description", "maxLength": 300 },
19555
19607
  { "name": "owner", "kind": "contact" },
19556
19608
  { "name": "html_url" },
19557
19609
  { "name": "private" },
19610
+ { "name": "visibility" },
19611
+ { "name": "language" },
19612
+ { "name": "stargazers_count" },
19613
+ { "name": "fork" },
19558
19614
  { "name": "archived" },
19559
19615
  { "name": "open_issues_count" },
19560
19616
  { "name": "default_branch" },
19561
19617
  { "name": "updated_at" },
19562
19618
  { "name": "pushed_at" },
19563
19619
  ],
19564
- "omitted": "repository descriptions and provider-specific payload fields",
19620
+ "omitted": "provider-specific repository payload fields",
19565
19621
  },
19566
19622
  },
19567
19623
  },
@@ -19649,8 +19705,13 @@ export const connectors = [
19649
19705
  { "name": "node_id" },
19650
19706
  { "name": "number" },
19651
19707
  { "name": "title" },
19708
+ { "name": "body", "maxLength": 500 },
19652
19709
  { "name": "state" },
19653
19710
  { "name": "html_url" },
19711
+ { "name": "head", "kind": "object" },
19712
+ { "name": "base", "kind": "object" },
19713
+ { "name": "labels", "kind": "named-array" },
19714
+ { "name": "requested_reviewers", "kind": "contact-array" },
19654
19715
  { "name": "user", "kind": "contact" },
19655
19716
  { "name": "created_at" },
19656
19717
  { "name": "updated_at" },
@@ -19658,7 +19719,7 @@ export const connectors = [
19658
19719
  { "name": "merged_at" },
19659
19720
  { "name": "draft" },
19660
19721
  ],
19661
- "omitted": "pull request bodies, diff details, and provider-specific payload fields",
19722
+ "omitted": "pull request diffs and provider-specific payload fields",
19662
19723
  },
19663
19724
  },
19664
19725
  },
@@ -19735,7 +19796,7 @@ export const connectors = [
19735
19796
  "type": "graphql",
19736
19797
  "method": "POST",
19737
19798
  "url": "https://api.github.com/graphql",
19738
- "query": "query($owner: String!, $repo: String!, $first: Int, $states: [IssueState!]) { repository(owner: $owner, name: $repo) { issues(first: $first, states: $states, orderBy: { field: UPDATED_AT, direction: DESC }) { nodes { id number title body state url createdAt updatedAt author { login } labels(first: 10) { nodes { name } } assignees(first: 10) { nodes { login } } } pageInfo { hasNextPage endCursor } } } }",
19799
+ "query": "query($owner: String!, $repo: String!, $first: Int, $after: String, $states: [IssueState!]) { repository(owner: $owner, name: $repo) { issues(first: $first, after: $after, states: $states, orderBy: { field: UPDATED_AT, direction: DESC }) { nodes { id number title body state url createdAt updatedAt author { login } labels(first: 10) { totalCount nodes { name } } assignees(first: 10) { totalCount nodes { login } } } pageInfo { hasNextPage endCursor } } } }",
19739
19800
  "params": {
19740
19801
  "owner": {
19741
19802
  "type": "string",
@@ -19761,6 +19822,11 @@ export const connectors = [
19761
19822
  "description": "Results per page",
19762
19823
  "default": 30,
19763
19824
  },
19825
+ "after": {
19826
+ "type": "string",
19827
+ "in": "body",
19828
+ "description": "Pagination cursor from pageInfo.endCursor",
19829
+ },
19764
19830
  },
19765
19831
  "response": {
19766
19832
  "transform": "repository.issues.nodes",
@@ -19772,9 +19838,12 @@ export const connectors = [
19772
19838
  { "name": "node_id" },
19773
19839
  { "name": "number" },
19774
19840
  { "name": "title" },
19841
+ { "name": "body", "maxLength": 500 },
19775
19842
  { "name": "state" },
19776
19843
  { "name": "url" },
19777
19844
  { "name": "html_url" },
19845
+ { "name": "labels", "kind": "object" },
19846
+ { "name": "assignees", "kind": "object" },
19778
19847
  { "name": "author", "kind": "contact" },
19779
19848
  { "name": "user", "kind": "contact" },
19780
19849
  { "name": "createdAt" },
@@ -19783,7 +19852,7 @@ export const connectors = [
19783
19852
  { "name": "updated_at" },
19784
19853
  ],
19785
19854
  "outputFields": [{ "name": "pageInfo", "kind": "object" }],
19786
- "omitted": "issue bodies, comments, and provider-specific payload fields",
19855
+ "omitted": "issue comments, timeline, and provider-specific payload fields",
19787
19856
  },
19788
19857
  },
19789
19858
  },
@@ -19824,6 +19893,7 @@ export const connectors = [
19824
19893
  { "name": "node_id" },
19825
19894
  { "name": "number" },
19826
19895
  { "name": "title" },
19896
+ { "name": "body", "maxLength": 2000 },
19827
19897
  { "name": "state" },
19828
19898
  { "name": "html_url" },
19829
19899
  { "name": "url" },
@@ -19836,7 +19906,7 @@ export const connectors = [
19836
19906
  { "name": "updatedAt" },
19837
19907
  ],
19838
19908
  "singleItem": true,
19839
- "omitted": "issue body, comments, timeline, and provider-specific payload fields",
19909
+ "omitted": "issue comments, timeline, and provider-specific payload fields",
19840
19910
  },
19841
19911
  },
19842
19912
  },
@@ -19945,6 +20015,7 @@ export const connectors = [
19945
20015
  { "name": "node_id" },
19946
20016
  { "name": "number" },
19947
20017
  { "name": "title" },
20018
+ { "name": "body", "maxLength": 2000 },
19948
20019
  { "name": "state" },
19949
20020
  { "name": "html_url" },
19950
20021
  { "name": "url" },
@@ -19960,7 +20031,7 @@ export const connectors = [
19960
20031
  { "name": "mergeable" },
19961
20032
  ],
19962
20033
  "singleItem": true,
19963
- "omitted": "pull request body, diff, reviews, and provider-specific payload fields",
20034
+ "omitted": "pull request diff, reviews, and provider-specific payload fields",
19964
20035
  },
19965
20036
  },
19966
20037
  },
@@ -20083,11 +20154,15 @@ export const connectors = [
20083
20154
  "historicalSummary": {
20084
20155
  "collectionKeys": ["commits", "data"],
20085
20156
  "collectionName": "commits",
20086
- "itemFields": [{ "name": "sha" }, { "name": "node_id" }, { "name": "html_url" }, {
20087
- "name": "author",
20088
- "kind": "contact",
20089
- }, { "name": "committer", "kind": "contact" }],
20090
- "omitted": "full commit messages, verification payloads, and file details",
20157
+ "itemFields": [
20158
+ { "name": "sha" },
20159
+ { "name": "node_id" },
20160
+ { "name": "html_url" },
20161
+ { "name": "commit", "kind": "object" },
20162
+ { "name": "author", "kind": "contact" },
20163
+ { "name": "committer", "kind": "contact" },
20164
+ ],
20165
+ "omitted": "commit verification payloads and file details",
20091
20166
  },
20092
20167
  },
20093
20168
  },
@@ -29073,13 +29148,16 @@ export const connectors = [
29073
29148
  "itemFields": [
29074
29149
  { "name": "id" },
29075
29150
  { "name": "key" },
29076
- { "name": "summary" },
29077
- { "name": "status", "kind": "object" },
29078
- { "name": "assignee", "kind": "contact" },
29079
- { "name": "created" },
29080
- { "name": "updated" },
29151
+ { "name": "fields", "kind": "object" },
29152
+ { "name": "summary", "path": ["fields", "summary"] },
29153
+ { "name": "status", "kind": "object", "path": ["fields", "status"] },
29154
+ { "name": "assignee", "kind": "contact", "path": ["fields", "assignee"] },
29155
+ { "name": "created", "path": ["fields", "created"] },
29156
+ { "name": "updated", "path": ["fields", "updated"] },
29081
29157
  ],
29082
- "outputFields": [{ "name": "total" }, { "name": "startAt" }, { "name": "maxResults" }],
29158
+ "outputFields": [{ "name": "nextPageToken" }, { "name": "isLast" }, {
29159
+ "name": "maxResults",
29160
+ }],
29083
29161
  "omitted": "issue descriptions, comments, changelog, and provider-specific payload fields",
29084
29162
  },
29085
29163
  },
@@ -29322,8 +29400,7 @@ export const connectors = [
29322
29400
  "query": {
29323
29401
  "type": "string",
29324
29402
  "in": "query",
29325
- "description": "Matches against display name and email address",
29326
- "required": true,
29403
+ "description": "Matches against display name and email address; pass an empty string to list users",
29327
29404
  },
29328
29405
  "maxResults": {
29329
29406
  "type": "number",
@@ -1 +1 @@
1
- {"version":3,"file":"_tool_summaries.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/_tool_summaries.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,aAAa,CAAC;AAExE,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,MAAM,EAAE,oCAAoC,CA+gHxF,CAAC"}
1
+ {"version":3,"file":"_tool_summaries.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/_tool_summaries.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,aAAa,CAAC;AAExE,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,MAAM,EAAE,oCAAoC,CA2kHxF,CAAC"}
@@ -702,6 +702,46 @@ export const historicalToolSummaries = {
702
702
  "outputFields": [{ "name": "next_page_token" }],
703
703
  "omitted": "tokenizer URLs, sampling defaults, and provider-specific payload fields",
704
704
  },
705
+ "confluence__list_sites": {
706
+ "collectionKeys": ["sites", "data"],
707
+ "collectionName": "sites",
708
+ "itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "url" }, {
709
+ "name": "scopes",
710
+ "kind": "string-array",
711
+ }, { "name": "avatarUrl" }],
712
+ "omitted": "provider-specific accessible resource payload fields",
713
+ },
714
+ "confluence__list_spaces": {
715
+ "collectionKeys": ["results", "spaces", "data"],
716
+ "collectionName": "spaces",
717
+ "itemFields": [{ "name": "id" }, { "name": "key" }, { "name": "name" }, { "name": "type" }, {
718
+ "name": "status",
719
+ }, { "name": "_links", "kind": "object" }],
720
+ "outputFields": [{ "name": "size" }, { "name": "limit" }, { "name": "start" }, {
721
+ "name": "_links",
722
+ "kind": "object",
723
+ }],
724
+ "omitted": "space descriptions and provider-specific payload fields",
725
+ },
726
+ "confluence__search_content": {
727
+ "collectionKeys": ["results", "content", "data"],
728
+ "collectionName": "content",
729
+ "itemFields": [
730
+ { "name": "id" },
731
+ { "name": "type" },
732
+ { "name": "status" },
733
+ { "name": "title" },
734
+ { "name": "excerpt", "maxLength": 300 },
735
+ { "name": "space", "kind": "object" },
736
+ { "name": "version", "kind": "object" },
737
+ { "name": "_links", "kind": "object" },
738
+ ],
739
+ "outputFields": [{ "name": "size" }, { "name": "limit" }, { "name": "start" }, {
740
+ "name": "_links",
741
+ "kind": "object",
742
+ }],
743
+ "omitted": "page bodies, comments, and provider-specific payload fields",
744
+ },
705
745
  "databricks__list_clusters": {
706
746
  "collectionKeys": ["clusters"],
707
747
  "collectionName": "clusters",
@@ -1039,6 +1079,7 @@ export const historicalToolSummaries = {
1039
1079
  { "name": "node_id" },
1040
1080
  { "name": "number" },
1041
1081
  { "name": "title" },
1082
+ { "name": "body", "maxLength": 2000 },
1042
1083
  { "name": "state" },
1043
1084
  { "name": "html_url" },
1044
1085
  { "name": "url" },
@@ -1051,7 +1092,7 @@ export const historicalToolSummaries = {
1051
1092
  { "name": "updatedAt" },
1052
1093
  ],
1053
1094
  "singleItem": true,
1054
- "omitted": "issue body, comments, timeline, and provider-specific payload fields",
1095
+ "omitted": "issue comments, timeline, and provider-specific payload fields",
1055
1096
  },
1056
1097
  "github__get_pr": {
1057
1098
  "collectionKeys": ["pullRequest", "data"],
@@ -1061,6 +1102,7 @@ export const historicalToolSummaries = {
1061
1102
  { "name": "node_id" },
1062
1103
  { "name": "number" },
1063
1104
  { "name": "title" },
1105
+ { "name": "body", "maxLength": 2000 },
1064
1106
  { "name": "state" },
1065
1107
  { "name": "html_url" },
1066
1108
  { "name": "url" },
@@ -1076,16 +1118,20 @@ export const historicalToolSummaries = {
1076
1118
  { "name": "mergeable" },
1077
1119
  ],
1078
1120
  "singleItem": true,
1079
- "omitted": "pull request body, diff, reviews, and provider-specific payload fields",
1121
+ "omitted": "pull request diff, reviews, and provider-specific payload fields",
1080
1122
  },
1081
1123
  "github__list_commits": {
1082
1124
  "collectionKeys": ["commits", "data"],
1083
1125
  "collectionName": "commits",
1084
- "itemFields": [{ "name": "sha" }, { "name": "node_id" }, { "name": "html_url" }, {
1085
- "name": "author",
1086
- "kind": "contact",
1087
- }, { "name": "committer", "kind": "contact" }],
1088
- "omitted": "full commit messages, verification payloads, and file details",
1126
+ "itemFields": [
1127
+ { "name": "sha" },
1128
+ { "name": "node_id" },
1129
+ { "name": "html_url" },
1130
+ { "name": "commit", "kind": "object" },
1131
+ { "name": "author", "kind": "contact" },
1132
+ { "name": "committer", "kind": "contact" },
1133
+ ],
1134
+ "omitted": "commit verification payloads and file details",
1089
1135
  },
1090
1136
  "github__list_issues": {
1091
1137
  "collectionKeys": ["issues", "nodes", "data"],
@@ -1095,9 +1141,12 @@ export const historicalToolSummaries = {
1095
1141
  { "name": "node_id" },
1096
1142
  { "name": "number" },
1097
1143
  { "name": "title" },
1144
+ { "name": "body", "maxLength": 500 },
1098
1145
  { "name": "state" },
1099
1146
  { "name": "url" },
1100
1147
  { "name": "html_url" },
1148
+ { "name": "labels", "kind": "object" },
1149
+ { "name": "assignees", "kind": "object" },
1101
1150
  { "name": "author", "kind": "contact" },
1102
1151
  { "name": "user", "kind": "contact" },
1103
1152
  { "name": "createdAt" },
@@ -1106,7 +1155,7 @@ export const historicalToolSummaries = {
1106
1155
  { "name": "updated_at" },
1107
1156
  ],
1108
1157
  "outputFields": [{ "name": "pageInfo", "kind": "object" }],
1109
- "omitted": "issue bodies, comments, and provider-specific payload fields",
1158
+ "omitted": "issue comments, timeline, and provider-specific payload fields",
1110
1159
  },
1111
1160
  "github__list_prs": {
1112
1161
  "collectionKeys": ["pullRequests", "data"],
@@ -1116,8 +1165,13 @@ export const historicalToolSummaries = {
1116
1165
  { "name": "node_id" },
1117
1166
  { "name": "number" },
1118
1167
  { "name": "title" },
1168
+ { "name": "body", "maxLength": 500 },
1119
1169
  { "name": "state" },
1120
1170
  { "name": "html_url" },
1171
+ { "name": "head", "kind": "object" },
1172
+ { "name": "base", "kind": "object" },
1173
+ { "name": "labels", "kind": "named-array" },
1174
+ { "name": "requested_reviewers", "kind": "contact-array" },
1121
1175
  { "name": "user", "kind": "contact" },
1122
1176
  { "name": "created_at" },
1123
1177
  { "name": "updated_at" },
@@ -1125,7 +1179,7 @@ export const historicalToolSummaries = {
1125
1179
  { "name": "merged_at" },
1126
1180
  { "name": "draft" },
1127
1181
  ],
1128
- "omitted": "pull request bodies, diff details, and provider-specific payload fields",
1182
+ "omitted": "pull request diffs and provider-specific payload fields",
1129
1183
  },
1130
1184
  "github__list_repos": {
1131
1185
  "collectionKeys": ["repositories", "data"],
@@ -1135,16 +1189,21 @@ export const historicalToolSummaries = {
1135
1189
  { "name": "node_id" },
1136
1190
  { "name": "name" },
1137
1191
  { "name": "full_name" },
1192
+ { "name": "description", "maxLength": 300 },
1138
1193
  { "name": "owner", "kind": "contact" },
1139
1194
  { "name": "html_url" },
1140
1195
  { "name": "private" },
1196
+ { "name": "visibility" },
1197
+ { "name": "language" },
1198
+ { "name": "stargazers_count" },
1199
+ { "name": "fork" },
1141
1200
  { "name": "archived" },
1142
1201
  { "name": "open_issues_count" },
1143
1202
  { "name": "default_branch" },
1144
1203
  { "name": "updated_at" },
1145
1204
  { "name": "pushed_at" },
1146
1205
  ],
1147
- "omitted": "repository descriptions and provider-specific payload fields",
1206
+ "omitted": "provider-specific repository payload fields",
1148
1207
  },
1149
1208
  "gmail__list_drafts": {
1150
1209
  "collectionKeys": ["drafts", "data"],
@@ -1840,13 +1899,14 @@ export const historicalToolSummaries = {
1840
1899
  "itemFields": [
1841
1900
  { "name": "id" },
1842
1901
  { "name": "key" },
1843
- { "name": "summary" },
1844
- { "name": "status", "kind": "object" },
1845
- { "name": "assignee", "kind": "contact" },
1846
- { "name": "created" },
1847
- { "name": "updated" },
1902
+ { "name": "fields", "kind": "object" },
1903
+ { "name": "summary", "path": ["fields", "summary"] },
1904
+ { "name": "status", "kind": "object", "path": ["fields", "status"] },
1905
+ { "name": "assignee", "kind": "contact", "path": ["fields", "assignee"] },
1906
+ { "name": "created", "path": ["fields", "created"] },
1907
+ { "name": "updated", "path": ["fields", "updated"] },
1848
1908
  ],
1849
- "outputFields": [{ "name": "total" }, { "name": "startAt" }, { "name": "maxResults" }],
1909
+ "outputFields": [{ "name": "nextPageToken" }, { "name": "isLast" }, { "name": "maxResults" }],
1850
1910
  "omitted": "issue descriptions, comments, changelog, and provider-specific payload fields",
1851
1911
  },
1852
1912
  "jira__search_users": {
@@ -210,11 +210,13 @@ export declare const IntegrationEndpointResponseEnrichmentSchema: import("../int
210
210
  export declare const getIntegrationEndpointHistoricalSummaryFieldSchema: () => import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
211
211
  name: import("../internal-agents/schema.js").Schema<string>;
212
212
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
213
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
213
214
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
214
215
  }>>;
215
216
  export declare const IntegrationEndpointHistoricalSummaryFieldSchema: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
216
217
  name: import("../internal-agents/schema.js").Schema<string>;
217
218
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
219
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
218
220
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
219
221
  }>>;
220
222
  export declare const getIntegrationEndpointHistoricalSummarySchema: () => import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
@@ -223,11 +225,13 @@ export declare const getIntegrationEndpointHistoricalSummarySchema: () => import
223
225
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
224
226
  name: import("../internal-agents/schema.js").Schema<string>;
225
227
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
228
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
226
229
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
227
230
  }>[]>;
228
231
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
229
232
  name: import("../internal-agents/schema.js").Schema<string>;
230
233
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
234
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
231
235
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
232
236
  }>[] | undefined>;
233
237
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -239,11 +243,13 @@ export declare const IntegrationEndpointHistoricalSummarySchema: import("../inte
239
243
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
240
244
  name: import("../internal-agents/schema.js").Schema<string>;
241
245
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
246
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
242
247
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
243
248
  }>[]>;
244
249
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
245
250
  name: import("../internal-agents/schema.js").Schema<string>;
246
251
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
252
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
247
253
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
248
254
  }>[] | undefined>;
249
255
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -289,11 +295,13 @@ export declare const getIntegrationEndpointSchema: () => import("../internal-age
289
295
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
290
296
  name: import("../internal-agents/schema.js").Schema<string>;
291
297
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
298
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
292
299
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
293
300
  }>[]>;
294
301
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
295
302
  name: import("../internal-agents/schema.js").Schema<string>;
296
303
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
304
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
297
305
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
298
306
  }>[] | undefined>;
299
307
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -341,11 +349,13 @@ export declare const IntegrationEndpointSchema: import("../internal-agents/schem
341
349
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
342
350
  name: import("../internal-agents/schema.js").Schema<string>;
343
351
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
352
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
344
353
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
345
354
  }>[]>;
346
355
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
347
356
  name: import("../internal-agents/schema.js").Schema<string>;
348
357
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
358
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
349
359
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
350
360
  }>[] | undefined>;
351
361
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -399,11 +409,13 @@ export declare const getIntegrationToolSchema: () => import("../internal-agents/
399
409
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
400
410
  name: import("../internal-agents/schema.js").Schema<string>;
401
411
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
412
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
402
413
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
403
414
  }>[]>;
404
415
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
405
416
  name: import("../internal-agents/schema.js").Schema<string>;
406
417
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
418
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
407
419
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
408
420
  }>[] | undefined>;
409
421
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -459,11 +471,13 @@ export declare const IntegrationToolSchema: import("../internal-agents/schema.js
459
471
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
460
472
  name: import("../internal-agents/schema.js").Schema<string>;
461
473
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
474
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
462
475
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
463
476
  }>[]>;
464
477
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
465
478
  name: import("../internal-agents/schema.js").Schema<string>;
466
479
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
480
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
467
481
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
468
482
  }>[] | undefined>;
469
483
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -638,11 +652,13 @@ export declare const getIntegrationConfigSchema: () => import("../internal-agent
638
652
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
639
653
  name: import("../internal-agents/schema.js").Schema<string>;
640
654
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
655
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
641
656
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
642
657
  }>[]>;
643
658
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
644
659
  name: import("../internal-agents/schema.js").Schema<string>;
645
660
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
661
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
646
662
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
647
663
  }>[] | undefined>;
648
664
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -800,11 +816,13 @@ export declare const IntegrationConfigSchema: import("../internal-agents/schema.
800
816
  itemFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
801
817
  name: import("../internal-agents/schema.js").Schema<string>;
802
818
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
819
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
803
820
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
804
821
  }>[]>;
805
822
  outputFields: import("../internal-agents/schema.js").Schema<import("../extensions/schema/schema-validator.js").InferShape<{
806
823
  name: import("../internal-agents/schema.js").Schema<string>;
807
824
  kind: import("../internal-agents/schema.js").Schema<string | undefined>;
825
+ path: import("../internal-agents/schema.js").Schema<string[] | undefined>;
808
826
  maxLength: import("../internal-agents/schema.js").Schema<number | undefined>;
809
827
  }>[] | undefined>;
810
828
  singleItem: import("../internal-agents/schema.js").Schema<boolean | undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/src/integrations/schema.ts"],"names":[],"mappings":"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"}
@@ -327,7 +327,9 @@ export const getIntegrationEndpointResponseEnrichmentSchema = defineSchema((v) =
327
327
  export const IntegrationEndpointResponseEnrichmentSchema = lazySchema(getIntegrationEndpointResponseEnrichmentSchema);
328
328
  export const getIntegrationEndpointHistoricalSummaryFieldSchema = defineSchema((v) => v.object({
329
329
  name: v.string(),
330
- kind: v.enum(["scalar", "string-array", "contact", "contact-array", "object"]).optional(),
330
+ kind: v.enum(["scalar", "string-array", "named-array", "contact", "contact-array", "object"])
331
+ .optional(),
332
+ path: v.array(v.string()).optional(),
331
333
  maxLength: v.number().optional(),
332
334
  }));
333
335
  export const IntegrationEndpointHistoricalSummaryFieldSchema = lazySchema(getIntegrationEndpointHistoricalSummaryFieldSchema);
@@ -1,3 +1,3 @@
1
1
  /** Shared version value. */
2
- export declare const VERSION = "0.1.873";
2
+ export declare const VERSION = "0.1.875";
3
3
  //# sourceMappingURL=version-constant.d.ts.map
@@ -1,4 +1,4 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
3
  /** Shared version value. */
4
- export const VERSION = "0.1.873";
4
+ export const VERSION = "0.1.875";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "veryfront",
3
- "version": "0.1.873",
3
+ "version": "0.1.875",
4
4
  "description": "The simplest way to build AI-powered apps",
5
5
  "keywords": [
6
6
  "react",