@shpitdev/convex-cliproxy-observability 0.1.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/CHANGELOG.md +11 -0
- package/LICENSE +201 -0
- package/README.md +40 -0
- package/dist/capture/index.d.ts +79 -0
- package/dist/capture/index.d.ts.map +1 -0
- package/dist/capture/index.js +182 -0
- package/dist/capture/index.js.map +1 -0
- package/dist/client.d.ts +129 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +232 -0
- package/dist/client.js.map +1 -0
- package/dist/component/_generated/api.d.ts +12 -0
- package/dist/component/_generated/api.d.ts.map +1 -0
- package/dist/component/_generated/api.js +7 -0
- package/dist/component/_generated/api.js.map +1 -0
- package/dist/component/_generated/component.d.ts +17 -0
- package/dist/component/_generated/component.d.ts.map +1 -0
- package/dist/component/_generated/component.js +3 -0
- package/dist/component/_generated/component.js.map +1 -0
- package/dist/component/_generated/dataModel.d.ts +8 -0
- package/dist/component/_generated/dataModel.d.ts.map +1 -0
- package/dist/component/_generated/dataModel.js +3 -0
- package/dist/component/_generated/dataModel.js.map +1 -0
- package/dist/component/_generated/server.d.ts +21 -0
- package/dist/component/_generated/server.d.ts.map +1 -0
- package/dist/component/_generated/server.js +11 -0
- package/dist/component/_generated/server.js.map +1 -0
- package/dist/component/convex.config.d.ts +4 -0
- package/dist/component/convex.config.d.ts.map +1 -0
- package/dist/component/convex.config.js +4 -0
- package/dist/component/convex.config.js.map +1 -0
- package/dist/component/ingest.d.ts +64 -0
- package/dist/component/ingest.d.ts.map +1 -0
- package/dist/component/ingest.js +309 -0
- package/dist/component/ingest.js.map +1 -0
- package/dist/component/queries.d.ts +136 -0
- package/dist/component/queries.d.ts.map +1 -0
- package/dist/component/queries.js +219 -0
- package/dist/component/queries.js.map +1 -0
- package/dist/component/schema.d.ts +159 -0
- package/dist/component/schema.d.ts.map +1 -0
- package/dist/component/schema.js +74 -0
- package/dist/component/schema.js.map +1 -0
- package/dist/content/index.d.ts +8 -0
- package/dist/content/index.d.ts.map +1 -0
- package/dist/content/index.js +41 -0
- package/dist/content/index.js.map +1 -0
- package/dist/model-call/index.d.ts +120 -0
- package/dist/model-call/index.d.ts.map +1 -0
- package/dist/model-call/index.js +96 -0
- package/dist/model-call/index.js.map +1 -0
- package/dist/projection.d.ts +19 -0
- package/dist/projection.d.ts.map +1 -0
- package/dist/projection.js +83 -0
- package/dist/projection.js.map +1 -0
- package/dist/protocols/anthropic-messages.d.ts +11 -0
- package/dist/protocols/anthropic-messages.d.ts.map +1 -0
- package/dist/protocols/anthropic-messages.js +114 -0
- package/dist/protocols/anthropic-messages.js.map +1 -0
- package/dist/protocols/chat-completions.d.ts +10 -0
- package/dist/protocols/chat-completions.d.ts.map +1 -0
- package/dist/protocols/chat-completions.js +89 -0
- package/dist/protocols/chat-completions.js.map +1 -0
- package/dist/protocols/checkpoint.d.ts +20 -0
- package/dist/protocols/checkpoint.d.ts.map +1 -0
- package/dist/protocols/checkpoint.js +318 -0
- package/dist/protocols/checkpoint.js.map +1 -0
- package/dist/protocols/content.d.ts +34 -0
- package/dist/protocols/content.d.ts.map +1 -0
- package/dist/protocols/content.js +40 -0
- package/dist/protocols/content.js.map +1 -0
- package/dist/protocols/framing.d.ts +20 -0
- package/dist/protocols/framing.d.ts.map +1 -0
- package/dist/protocols/framing.js +67 -0
- package/dist/protocols/framing.js.map +1 -0
- package/dist/protocols/index.d.ts +20 -0
- package/dist/protocols/index.d.ts.map +1 -0
- package/dist/protocols/index.js +139 -0
- package/dist/protocols/index.js.map +1 -0
- package/dist/protocols/output.d.ts +4 -0
- package/dist/protocols/output.d.ts.map +1 -0
- package/dist/protocols/output.js +81 -0
- package/dist/protocols/output.js.map +1 -0
- package/dist/protocols/responses.d.ts +12 -0
- package/dist/protocols/responses.d.ts.map +1 -0
- package/dist/protocols/responses.js +189 -0
- package/dist/protocols/responses.js.map +1 -0
- package/dist/protocols/types.d.ts +27 -0
- package/dist/protocols/types.d.ts.map +1 -0
- package/dist/protocols/types.js +2 -0
- package/dist/protocols/types.js.map +1 -0
- package/dist/protocols/usage.d.ts +3 -0
- package/dist/protocols/usage.d.ts.map +1 -0
- package/dist/protocols/usage.js +27 -0
- package/dist/protocols/usage.js.map +1 -0
- package/dist/protocols/values.d.ts +10 -0
- package/dist/protocols/values.d.ts.map +1 -0
- package/dist/protocols/values.js +32 -0
- package/dist/protocols/values.js.map +1 -0
- package/dist/test.d.ts +155 -0
- package/dist/test.d.ts.map +1 -0
- package/dist/test.js +8 -0
- package/dist/test.js.map +1 -0
- package/package.json +90 -0
- package/src/capture/index.ts +277 -0
- package/src/client.ts +286 -0
- package/src/component/_generated/api.ts +19 -0
- package/src/component/_generated/component.ts +32 -0
- package/src/component/_generated/dataModel.ts +15 -0
- package/src/component/_generated/server.ts +43 -0
- package/src/component/convex.config.ts +3 -0
- package/src/component/ingest.ts +328 -0
- package/src/component/queries.ts +248 -0
- package/src/component/schema.ts +73 -0
- package/src/content/index.ts +53 -0
- package/src/model-call/index.ts +224 -0
- package/src/projection.ts +99 -0
- package/src/protocols/anthropic-messages.ts +115 -0
- package/src/protocols/chat-completions.ts +94 -0
- package/src/protocols/checkpoint.ts +342 -0
- package/src/protocols/content.ts +41 -0
- package/src/protocols/framing.ts +62 -0
- package/src/protocols/index.ts +140 -0
- package/src/protocols/output.ts +78 -0
- package/src/protocols/responses.ts +188 -0
- package/src/protocols/types.ts +26 -0
- package/src/protocols/usage.ts +36 -0
- package/src/protocols/values.ts +35 -0
- package/src/test.ts +16 -0
package/dist/client.d.ts
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import type { GenericActionCtx, GenericDataModel, GenericMutationCtx, GenericQueryCtx, FunctionArgs } from "convex/server";
|
|
2
|
+
import type { ComponentApi } from "./component/_generated/component.js";
|
|
3
|
+
import type { CaptureObservationV1 } from "./capture/index.js";
|
|
4
|
+
import type { ModelCallV1 } from "./model-call/index.js";
|
|
5
|
+
import type { PrivateCaptureStorage } from "./content/index.js";
|
|
6
|
+
export * from "./model-call/index.js";
|
|
7
|
+
export { resolveCallBlob, type PrivateCaptureStorage } from "./content/index.js";
|
|
8
|
+
export type CliproxyObservabilityComponent = ComponentApi;
|
|
9
|
+
type ReadContext = Pick<GenericQueryCtx<GenericDataModel> | GenericMutationCtx<GenericDataModel> | GenericActionCtx<GenericDataModel>, "runQuery">;
|
|
10
|
+
type ActionContext = Pick<GenericActionCtx<GenericDataModel>, "runMutation" | "runQuery">;
|
|
11
|
+
export declare class CliproxyObservability {
|
|
12
|
+
readonly component: ComponentApi;
|
|
13
|
+
constructor(component: ComponentApi);
|
|
14
|
+
pageRecentSummaries(ctx: ReadContext, args: FunctionArgs<ComponentApi["queries"]["pageRecentSummaries"]>): Promise<{
|
|
15
|
+
calls: ModelCallV1[];
|
|
16
|
+
cursor: {
|
|
17
|
+
receivedAt: number;
|
|
18
|
+
creationTime: number;
|
|
19
|
+
} | null;
|
|
20
|
+
done: boolean;
|
|
21
|
+
}>;
|
|
22
|
+
pageCorrelationSummaries(ctx: ReadContext, args: FunctionArgs<ComponentApi["queries"]["pageRecentSummaries"]> & {
|
|
23
|
+
correlation: NonNullable<FunctionArgs<ComponentApi["queries"]["pageRecentSummaries"]>["correlation"]>;
|
|
24
|
+
}): Promise<{
|
|
25
|
+
calls: ModelCallV1[];
|
|
26
|
+
cursor: {
|
|
27
|
+
receivedAt: number;
|
|
28
|
+
creationTime: number;
|
|
29
|
+
} | null;
|
|
30
|
+
done: boolean;
|
|
31
|
+
}>;
|
|
32
|
+
getCall(ctx: ReadContext, args: {
|
|
33
|
+
destinationId: string;
|
|
34
|
+
callId: string;
|
|
35
|
+
}): Promise<{
|
|
36
|
+
summaryJson: string;
|
|
37
|
+
checkpointJson: undefined;
|
|
38
|
+
_id: import("convex/values").GenericId<"calls">;
|
|
39
|
+
_creationTime: number;
|
|
40
|
+
terminalSequence?: number | undefined;
|
|
41
|
+
projectionFailure?: {
|
|
42
|
+
reason: string;
|
|
43
|
+
at: number;
|
|
44
|
+
} | undefined;
|
|
45
|
+
requestId?: string | undefined;
|
|
46
|
+
runId?: string | undefined;
|
|
47
|
+
jobId?: string | undefined;
|
|
48
|
+
rootExecutionId?: string | undefined;
|
|
49
|
+
opencodeSessionId?: string | undefined;
|
|
50
|
+
destinationId: string;
|
|
51
|
+
callId: string;
|
|
52
|
+
instanceId: string;
|
|
53
|
+
pluginBootId: string;
|
|
54
|
+
executionId: string;
|
|
55
|
+
receivedAt: number;
|
|
56
|
+
revision: number;
|
|
57
|
+
projectedThroughSequence: number;
|
|
58
|
+
persistedThroughSequence: number;
|
|
59
|
+
} | null>;
|
|
60
|
+
pageEventSegments(ctx: ReadContext, args: FunctionArgs<ComponentApi["queries"]["pageEventSegments"]>): Promise<{
|
|
61
|
+
segments: {
|
|
62
|
+
_id: import("convex/values").GenericId<"segments">;
|
|
63
|
+
_creationTime: number;
|
|
64
|
+
destinationId: string;
|
|
65
|
+
callId: string;
|
|
66
|
+
receivedAt: number;
|
|
67
|
+
reference: {
|
|
68
|
+
key: string;
|
|
69
|
+
sha256: string;
|
|
70
|
+
byteLength: number;
|
|
71
|
+
contentType: string;
|
|
72
|
+
};
|
|
73
|
+
sequence: number;
|
|
74
|
+
throughSequence: number;
|
|
75
|
+
identity: string;
|
|
76
|
+
digest: string;
|
|
77
|
+
}[];
|
|
78
|
+
cursor: number;
|
|
79
|
+
done: boolean;
|
|
80
|
+
}>;
|
|
81
|
+
getBootHealth(ctx: ReadContext, args: {
|
|
82
|
+
destinationId: string;
|
|
83
|
+
instanceId: string;
|
|
84
|
+
pluginBootId: string;
|
|
85
|
+
}): Promise<{
|
|
86
|
+
_id: import("convex/values").GenericId<"bootHealth">;
|
|
87
|
+
_creationTime: number;
|
|
88
|
+
destinationId: string;
|
|
89
|
+
instanceId: string;
|
|
90
|
+
pluginBootId: string;
|
|
91
|
+
observedAt: number;
|
|
92
|
+
healthJson: string;
|
|
93
|
+
} | null>;
|
|
94
|
+
getCaptureCoverage(ctx: ReadContext, args: {
|
|
95
|
+
destinationId: string;
|
|
96
|
+
}): Promise<{
|
|
97
|
+
retention: "indefinite";
|
|
98
|
+
preHook: "unavailable";
|
|
99
|
+
previews: "not_enrolled";
|
|
100
|
+
attemptDetail: "unavailable";
|
|
101
|
+
sources: {
|
|
102
|
+
_id: import("convex/values").GenericId<"sourceStatus">;
|
|
103
|
+
_creationTime: number;
|
|
104
|
+
healthJson?: string | undefined;
|
|
105
|
+
destinationId: string;
|
|
106
|
+
instanceId: string;
|
|
107
|
+
pluginBootId: string;
|
|
108
|
+
lastObservedAt: string;
|
|
109
|
+
lastReceivedAt: number;
|
|
110
|
+
coverage: string;
|
|
111
|
+
}[];
|
|
112
|
+
sourcesComplete: boolean;
|
|
113
|
+
}>;
|
|
114
|
+
}
|
|
115
|
+
export declare function initialCall(o: CaptureObservationV1, callId: string, receivedAt: number): ModelCallV1;
|
|
116
|
+
export type CaptureHandlerOptions = {
|
|
117
|
+
client: CliproxyObservability;
|
|
118
|
+
destinationId: string;
|
|
119
|
+
deploymentId: string;
|
|
120
|
+
environment: "dev" | "prod";
|
|
121
|
+
instanceIds: readonly string[];
|
|
122
|
+
tokens: readonly string[];
|
|
123
|
+
storage: PrivateCaptureStorage;
|
|
124
|
+
scheduleProjection: (ctx: ActionContext, callId: string) => Promise<void>;
|
|
125
|
+
};
|
|
126
|
+
export declare function readBoundedCaptureBody(request: Request): Promise<Uint8Array>;
|
|
127
|
+
export declare function handleCliproxyCaptureRequest(ctx: ActionContext, request: Request, options: CaptureHandlerOptions): Promise<Response>;
|
|
128
|
+
export { projectPendingSegments } from "./projection.js";
|
|
129
|
+
//# sourceMappingURL=client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
package/dist/client.js
ADDED
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import { MAX_ENVELOPE_BYTES, validateSegment, sha256 } from "./capture/index.js";
|
|
2
|
+
import { nanoTime, protocolForRoute, PARSER_VERSION } from "./protocols/index.js";
|
|
3
|
+
export * from "./model-call/index.js";
|
|
4
|
+
export { resolveCallBlob } from "./content/index.js";
|
|
5
|
+
export class CliproxyObservability {
|
|
6
|
+
component;
|
|
7
|
+
constructor(component) {
|
|
8
|
+
this.component = component;
|
|
9
|
+
}
|
|
10
|
+
pageRecentSummaries(ctx, args) {
|
|
11
|
+
return ctx.runQuery(this.component.queries.pageRecentSummaries, args);
|
|
12
|
+
}
|
|
13
|
+
pageCorrelationSummaries(ctx, args) {
|
|
14
|
+
return this.pageRecentSummaries(ctx, args);
|
|
15
|
+
}
|
|
16
|
+
getCall(ctx, args) {
|
|
17
|
+
return ctx.runQuery(this.component.queries.getCall, args);
|
|
18
|
+
}
|
|
19
|
+
pageEventSegments(ctx, args) {
|
|
20
|
+
return ctx.runQuery(this.component.queries.pageEventSegments, args);
|
|
21
|
+
}
|
|
22
|
+
getBootHealth(ctx, args) {
|
|
23
|
+
return ctx.runQuery(this.component.queries.getBootHealth, args);
|
|
24
|
+
}
|
|
25
|
+
getCaptureCoverage(ctx, args) {
|
|
26
|
+
return ctx.runQuery(this.component.queries.getCaptureCoverage, args);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
export function initialCall(o, callId, receivedAt) {
|
|
30
|
+
return {
|
|
31
|
+
schemaVersion: 1,
|
|
32
|
+
source: "cliproxy",
|
|
33
|
+
callId,
|
|
34
|
+
sourceDocumentId: "",
|
|
35
|
+
gateway: "cliproxy",
|
|
36
|
+
authType: "unknown",
|
|
37
|
+
route: o.route,
|
|
38
|
+
configRevision: o.configRevision,
|
|
39
|
+
destinationId: o.destinationId,
|
|
40
|
+
instanceId: o.instanceId,
|
|
41
|
+
pluginBootId: o.pluginBootId,
|
|
42
|
+
executionId: o.requestId,
|
|
43
|
+
sourceTraceId: o.sourceTraceId,
|
|
44
|
+
traceId: o.correlation?.traceId,
|
|
45
|
+
requestModel: o.requestedModel?.slice(0, 256),
|
|
46
|
+
operation: o.route === "GET /v1/models"
|
|
47
|
+
? "discovery"
|
|
48
|
+
: o.route === "POST /v1/messages/count_tokens"
|
|
49
|
+
? "token_count"
|
|
50
|
+
: "generation",
|
|
51
|
+
clientProtocol: protocolForRoute(o.route),
|
|
52
|
+
state: "in_progress",
|
|
53
|
+
timingSource: "plugin_observed",
|
|
54
|
+
startTimeUnixNano: nanoTime(o.observedAt),
|
|
55
|
+
correlation: o.correlation ?? {},
|
|
56
|
+
correlationConflicts: o.correlationConflicts ?? [],
|
|
57
|
+
usage: [],
|
|
58
|
+
cost: { kind: "unknown" },
|
|
59
|
+
attemptDetail: "unavailable",
|
|
60
|
+
capture: {
|
|
61
|
+
raw: "partial",
|
|
62
|
+
projection: "partial",
|
|
63
|
+
usage: "unavailable",
|
|
64
|
+
preHook: "unavailable",
|
|
65
|
+
projectedThroughSequence: 0,
|
|
66
|
+
persistedThroughSequence: 0,
|
|
67
|
+
gaps: [],
|
|
68
|
+
parserVersion: PARSER_VERSION,
|
|
69
|
+
pluginVersion: o.pluginVersion,
|
|
70
|
+
redactionVersion: o.redactionVersion,
|
|
71
|
+
lastObservedAt: o.observedAt,
|
|
72
|
+
},
|
|
73
|
+
receivedAt,
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
function tokenMatches(presented, expected) {
|
|
77
|
+
let diff = presented.length ^ expected.length;
|
|
78
|
+
for (let i = 0; i < Math.max(presented.length, expected.length); i++)
|
|
79
|
+
diff |= (presented.charCodeAt(i) || 0) ^ (expected.charCodeAt(i) || 0);
|
|
80
|
+
return diff === 0;
|
|
81
|
+
}
|
|
82
|
+
export async function readBoundedCaptureBody(request) {
|
|
83
|
+
if (Number(request.headers.get("Content-Length")) > MAX_ENVELOPE_BYTES)
|
|
84
|
+
throw new RangeError("envelope limit");
|
|
85
|
+
const reader = request.body?.getReader();
|
|
86
|
+
if (!reader)
|
|
87
|
+
return new Uint8Array();
|
|
88
|
+
let size = 0;
|
|
89
|
+
const chunks = [];
|
|
90
|
+
try {
|
|
91
|
+
while (true) {
|
|
92
|
+
const { done, value } = await reader.read();
|
|
93
|
+
if (done)
|
|
94
|
+
break;
|
|
95
|
+
size += value.byteLength;
|
|
96
|
+
if (size > MAX_ENVELOPE_BYTES) {
|
|
97
|
+
await reader.cancel();
|
|
98
|
+
throw new RangeError("envelope limit");
|
|
99
|
+
}
|
|
100
|
+
chunks.push(value);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
finally {
|
|
104
|
+
reader.releaseLock();
|
|
105
|
+
}
|
|
106
|
+
const out = new Uint8Array(size);
|
|
107
|
+
let offset = 0;
|
|
108
|
+
for (const chunk of chunks) {
|
|
109
|
+
out.set(chunk, offset);
|
|
110
|
+
offset += chunk.length;
|
|
111
|
+
}
|
|
112
|
+
return out;
|
|
113
|
+
}
|
|
114
|
+
export async function handleCliproxyCaptureRequest(ctx, request, options) {
|
|
115
|
+
if (request.method !== "POST")
|
|
116
|
+
return new Response("method not allowed", { status: 405 });
|
|
117
|
+
if (options.tokens.length === 0 || options.tokens.some((x) => x.length < 24))
|
|
118
|
+
return new Response("capture unavailable", { status: 503 });
|
|
119
|
+
const bearer = request.headers.get("Authorization") ?? "";
|
|
120
|
+
if (!/^Bearer [^,\r\n]+$/.test(bearer) ||
|
|
121
|
+
!options.tokens.some((token) => tokenMatches(bearer, `Bearer ${token}`)))
|
|
122
|
+
return new Response("unauthorized", { status: 401 });
|
|
123
|
+
if (request.headers.get("Content-Type")?.split(";")[0]?.trim() !== "application/json")
|
|
124
|
+
return new Response("unsupported content type", { status: 415 });
|
|
125
|
+
let parsed;
|
|
126
|
+
try {
|
|
127
|
+
const raw = await readBoundedCaptureBody(request);
|
|
128
|
+
const candidate = JSON.parse(new TextDecoder("utf-8", { fatal: true }).decode(raw));
|
|
129
|
+
if (candidate?.operation === "health") {
|
|
130
|
+
if (candidate.schemaVersion !== 1 ||
|
|
131
|
+
candidate.destinationId !== options.destinationId ||
|
|
132
|
+
!options.instanceIds.includes(candidate.instanceId))
|
|
133
|
+
return new Response("scope mismatch", { status: 403 });
|
|
134
|
+
return Response.json({
|
|
135
|
+
ready: true,
|
|
136
|
+
destinationId: options.destinationId,
|
|
137
|
+
deploymentId: options.deploymentId,
|
|
138
|
+
instanceId: candidate.instanceId,
|
|
139
|
+
schemaVersion: 1,
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
if (candidate?.operation === "health_record") {
|
|
143
|
+
if (raw.length > 16384 ||
|
|
144
|
+
candidate.schemaVersion !== 1 ||
|
|
145
|
+
candidate.destinationId !== options.destinationId ||
|
|
146
|
+
!options.instanceIds.includes(candidate.instanceId) ||
|
|
147
|
+
!/^[a-zA-Z0-9][a-zA-Z0-9._:-]{0,199}$/.test(candidate.pluginBootId) ||
|
|
148
|
+
candidate.precommitCoverage !== "unknown_before_local_commit")
|
|
149
|
+
return new Response("invalid health scope", { status: 403 });
|
|
150
|
+
const result = await ctx.runMutation(options.client.component.ingest.recordHealth, {
|
|
151
|
+
destinationId: options.destinationId,
|
|
152
|
+
instanceId: candidate.instanceId,
|
|
153
|
+
pluginBootId: candidate.pluginBootId,
|
|
154
|
+
startedAt: candidate.startedAt,
|
|
155
|
+
observedAt: candidate.observedAt,
|
|
156
|
+
observationsTotal: candidate.observationsTotal,
|
|
157
|
+
droppedObservationsTotal: candidate.droppedObservationsTotal,
|
|
158
|
+
lostControlObservationsTotal: candidate.lostControlObservationsTotal,
|
|
159
|
+
scopeConflictsTotal: candidate.scopeConflictsTotal,
|
|
160
|
+
expiredScopesTotal: candidate.expiredScopesTotal,
|
|
161
|
+
activeCalls: candidate.activeCalls,
|
|
162
|
+
});
|
|
163
|
+
return Response.json({
|
|
164
|
+
...result,
|
|
165
|
+
digest: await sha256(raw),
|
|
166
|
+
destinationId: options.destinationId,
|
|
167
|
+
deploymentId: options.deploymentId,
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
parsed = await validateSegment(raw, options);
|
|
171
|
+
}
|
|
172
|
+
catch (error) {
|
|
173
|
+
return new Response("invalid capture segment", {
|
|
174
|
+
status: error instanceof RangeError ? 413 : 400,
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
const { envelope, content, callId, identity, digest, observations } = parsed;
|
|
178
|
+
const first = observations[0];
|
|
179
|
+
const reference = {
|
|
180
|
+
key: `observability/cliproxy/v2/${envelope.destinationId}/${envelope.instanceId}/${callId}/${envelope.firstSequence}-${digest}.ndjson`,
|
|
181
|
+
sha256: digest,
|
|
182
|
+
byteLength: content.byteLength,
|
|
183
|
+
contentType: "application/x-ndjson",
|
|
184
|
+
};
|
|
185
|
+
try {
|
|
186
|
+
await options.storage.put(reference, content);
|
|
187
|
+
const correlation = first.correlation ?? {};
|
|
188
|
+
const terminal = observations.find((o) => o.kind === "completion");
|
|
189
|
+
const receipt = await ctx.runMutation(options.client.component.ingest.admit, {
|
|
190
|
+
destinationId: envelope.destinationId,
|
|
191
|
+
instanceId: envelope.instanceId,
|
|
192
|
+
pluginBootId: envelope.pluginBootId,
|
|
193
|
+
executionId: envelope.requestId,
|
|
194
|
+
callId,
|
|
195
|
+
sequence: envelope.firstSequence,
|
|
196
|
+
throughSequence: envelope.throughSequence,
|
|
197
|
+
terminalSequence: terminal?.sequence,
|
|
198
|
+
identity,
|
|
199
|
+
digest,
|
|
200
|
+
reference,
|
|
201
|
+
summaryJson: JSON.stringify({
|
|
202
|
+
...initialCall(first, callId, Date.now()),
|
|
203
|
+
deploymentId: options.deploymentId,
|
|
204
|
+
environment: options.environment,
|
|
205
|
+
}),
|
|
206
|
+
observedAt: first.observedAt,
|
|
207
|
+
correlation: {
|
|
208
|
+
requestId: correlation.requestId,
|
|
209
|
+
runId: correlation.runId,
|
|
210
|
+
jobId: correlation.jobId,
|
|
211
|
+
rootExecutionId: correlation.rootExecutionId,
|
|
212
|
+
opencodeSessionId: correlation.opencodeSessionId,
|
|
213
|
+
},
|
|
214
|
+
});
|
|
215
|
+
// Scheduling failure returns retryable 503 after durable receipt; retry is idempotent.
|
|
216
|
+
await options.scheduleProjection(ctx, callId);
|
|
217
|
+
return Response.json({ ...receipt, rawCommitted: true, projectionCommitted: false });
|
|
218
|
+
}
|
|
219
|
+
catch (error) {
|
|
220
|
+
const message = error instanceof Error ? error.message : "";
|
|
221
|
+
return new Response(message.includes("capture_digest_conflict") || message.includes("capture_sequence_conflict")
|
|
222
|
+
? "capture identity conflict"
|
|
223
|
+
: "capture temporarily unavailable", {
|
|
224
|
+
status: message.includes("capture_digest_conflict") ||
|
|
225
|
+
message.includes("capture_sequence_conflict")
|
|
226
|
+
? 409
|
|
227
|
+
: 503,
|
|
228
|
+
});
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
export { projectPendingSegments } from "./projection.js";
|
|
232
|
+
//# sourceMappingURL=client.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type * as ingest from "../ingest.js";
|
|
2
|
+
import type * as queries from "../queries.js";
|
|
3
|
+
import type { ApiFromModules, FilterApi, FunctionReference } from "convex/server";
|
|
4
|
+
declare const fullApi: ApiFromModules<{
|
|
5
|
+
ingest: typeof ingest;
|
|
6
|
+
queries: typeof queries;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const api: FilterApi<typeof fullApi, FunctionReference<any, "public">>;
|
|
9
|
+
export declare const internal: FilterApi<typeof fullApi, FunctionReference<any, "internal">>;
|
|
10
|
+
export declare const components: {};
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/component/_generated/api.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,MAAM,cAAc,CAAC;AAC5C,OAAO,KAAK,KAAK,OAAO,MAAM,eAAe,CAAC;AAC9C,OAAO,KAAK,EACV,cAAc,EACd,SAAS,EACT,iBAAiB,EAClB,MAAM,eAAe,CAAC;AAGvB,QAAA,MAAM,OAAO,EAAE,cAAc,CAAC;IAC5B,MAAM,EAAE,OAAO,MAAM,CAAC;IACtB,OAAO,EAAE,OAAO,OAAO,CAAC;CACzB,CAAiB,CAAC;AAEnB,eAAO,MAAM,GAAG,EAAE,SAAS,CAAC,OAAO,OAAO,EAAE,iBAAiB,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAiB,CAAC;AAC9F,eAAO,MAAM,QAAQ,EAAE,SAAS,CAAC,OAAO,OAAO,EAAE,iBAAiB,CAAC,GAAG,EAAE,UAAU,CAAC,CAAiB,CAAC;AACrG,eAAO,MAAM,UAAU,EAAqC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/component/_generated/api.ts"],"names":[],"mappings":"AAAA,oBAAoB;AASpB,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAE1D,MAAM,OAAO,GAGR,MAAa,CAAC;AAEnB,MAAM,CAAC,MAAM,GAAG,GAAgE,MAAa,CAAC;AAC9F,MAAM,CAAC,MAAM,QAAQ,GAAkE,MAAa,CAAC;AACrG,MAAM,CAAC,MAAM,UAAU,GAAG,iBAAiB,EAAmB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { FunctionReference, RegisteredMutation, RegisteredQuery } from "convex/server";
|
|
2
|
+
import type * as ingest from "../ingest.js";
|
|
3
|
+
import type * as queries from "../queries.js";
|
|
4
|
+
type ComponentQuery<Registered, Name extends string | undefined> = Registered extends RegisteredQuery<any, infer Args, infer Returns> ? FunctionReference<"query", "internal", Args, Awaited<Returns>, Name> : never;
|
|
5
|
+
type PublicQueries<Module, Name extends string | undefined> = {
|
|
6
|
+
[Key in keyof Module as Module[Key] extends RegisteredQuery<"public", any, any> ? Key : never]: ComponentQuery<Module[Key], Name>;
|
|
7
|
+
};
|
|
8
|
+
type ComponentMutation<Registered, Name extends string | undefined> = Registered extends RegisteredMutation<any, infer Args, infer Returns> ? FunctionReference<"mutation", "internal", Args, Awaited<Returns>, Name> : never;
|
|
9
|
+
type PublicMutations<Module, Name extends string | undefined> = {
|
|
10
|
+
[Key in keyof Module as Module[Key] extends RegisteredMutation<"public", any, any> ? Key : never]: ComponentMutation<Module[Key], Name>;
|
|
11
|
+
};
|
|
12
|
+
export type ComponentApi<Name extends string | undefined = string | undefined> = {
|
|
13
|
+
ingest: PublicMutations<typeof ingest, Name>;
|
|
14
|
+
queries: PublicQueries<typeof queries, Name>;
|
|
15
|
+
};
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../src/component/_generated/component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAC5F,OAAO,KAAK,KAAK,MAAM,MAAM,cAAc,CAAC;AAC5C,OAAO,KAAK,KAAK,OAAO,MAAM,eAAe,CAAC;AAE9C,KAAK,cAAc,CAAC,UAAU,EAAE,IAAI,SAAS,MAAM,GAAG,SAAS,IAC7D,UAAU,SAAS,eAAe,CAAC,GAAG,EAAE,MAAM,IAAI,EAAE,MAAM,OAAO,CAAC,GAC9D,iBAAiB,CAAC,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,GACpE,KAAK,CAAC;AAEZ,KAAK,aAAa,CAAC,MAAM,EAAE,IAAI,SAAS,MAAM,GAAG,SAAS,IAAI;KAC3D,GAAG,IAAI,MAAM,MAAM,IAAI,MAAM,CAAC,GAAG,CAAC,SAAS,eAAe,CAAC,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,GAC3E,GAAG,GACH,KAAK,GAAG,cAAc,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC;CAC9C,CAAC;AAEF,KAAK,iBAAiB,CAAC,UAAU,EAAE,IAAI,SAAS,MAAM,GAAG,SAAS,IAChE,UAAU,SAAS,kBAAkB,CAAC,GAAG,EAAE,MAAM,IAAI,EAAE,MAAM,OAAO,CAAC,GACjE,iBAAiB,CAAC,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,GACvE,KAAK,CAAC;AAEZ,KAAK,eAAe,CAAC,MAAM,EAAE,IAAI,SAAS,MAAM,GAAG,SAAS,IAAI;KAC7D,GAAG,IAAI,MAAM,MAAM,IAAI,MAAM,CAAC,GAAG,CAAC,SAAS,kBAAkB,CAAC,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,GAC9E,GAAG,GACH,KAAK,GAAG,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC;CACjD,CAAC;AAEF,MAAM,MAAM,YAAY,CAAC,IAAI,SAAS,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,IAAI;IAC/E,MAAM,EAAE,eAAe,CAAC,OAAO,MAAM,EAAE,IAAI,CAAC,CAAC;IAC7C,OAAO,EAAE,aAAa,CAAC,OAAO,OAAO,EAAE,IAAI,CAAC,CAAC;CAC9C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../src/component/_generated/component.ts"],"names":[],"mappings":"AAAA,oBAAoB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DataModelFromSchemaDefinition, DocumentByName, SystemTableNames, TableNamesInDataModel } from "convex/server";
|
|
2
|
+
import type { GenericId } from "convex/values";
|
|
3
|
+
import schema from "../schema.js";
|
|
4
|
+
export type DataModel = DataModelFromSchemaDefinition<typeof schema>;
|
|
5
|
+
export type TableNames = TableNamesInDataModel<DataModel>;
|
|
6
|
+
export type Doc<TableName extends TableNames> = DocumentByName<DataModel, TableName>;
|
|
7
|
+
export type Id<TableName extends TableNames | SystemTableNames> = GenericId<TableName>;
|
|
8
|
+
//# sourceMappingURL=dataModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dataModel.d.ts","sourceRoot":"","sources":["../../../src/component/_generated/dataModel.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,6BAA6B,EAC7B,cAAc,EACd,gBAAgB,EAChB,qBAAqB,EACtB,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,MAAM,MAAM,cAAc,CAAC;AAElC,MAAM,MAAM,SAAS,GAAG,6BAA6B,CAAC,OAAO,MAAM,CAAC,CAAC;AACrE,MAAM,MAAM,UAAU,GAAG,qBAAqB,CAAC,SAAS,CAAC,CAAC;AAC1D,MAAM,MAAM,GAAG,CAAC,SAAS,SAAS,UAAU,IAAI,cAAc,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;AACrF,MAAM,MAAM,EAAE,CAAC,SAAS,SAAS,UAAU,GAAG,gBAAgB,IAAI,SAAS,CAAC,SAAS,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dataModel.js","sourceRoot":"","sources":["../../../src/component/_generated/dataModel.ts"],"names":[],"mappings":"AAAA,oBAAoB;AASpB,OAAO,MAAM,MAAM,cAAc,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { ActionBuilder, GenericActionCtx, GenericDatabaseReader, GenericDatabaseWriter, GenericMutationCtx, GenericQueryCtx, HttpActionBuilder, MutationBuilder, QueryBuilder } from "convex/server";
|
|
2
|
+
import type { DataModel } from "./dataModel.js";
|
|
3
|
+
type Env = {
|
|
4
|
+
readonly CONVEX_CLOUD_URL: string;
|
|
5
|
+
readonly CONVEX_SITE_URL: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const query: QueryBuilder<DataModel, "public">;
|
|
8
|
+
export declare const internalQuery: QueryBuilder<DataModel, "internal">;
|
|
9
|
+
export declare const mutation: MutationBuilder<DataModel, "public">;
|
|
10
|
+
export declare const internalMutation: MutationBuilder<DataModel, "internal">;
|
|
11
|
+
export declare const action: ActionBuilder<DataModel, "public">;
|
|
12
|
+
export declare const internalAction: ActionBuilder<DataModel, "internal">;
|
|
13
|
+
export declare const httpAction: HttpActionBuilder;
|
|
14
|
+
export declare const env: Env;
|
|
15
|
+
export type QueryCtx = GenericQueryCtx<DataModel>;
|
|
16
|
+
export type MutationCtx = GenericMutationCtx<DataModel>;
|
|
17
|
+
export type ActionCtx = GenericActionCtx<DataModel>;
|
|
18
|
+
export type DatabaseReader = GenericDatabaseReader<DataModel>;
|
|
19
|
+
export type DatabaseWriter = GenericDatabaseWriter<DataModel>;
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=server.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../src/component/_generated/server.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,aAAa,EACb,gBAAgB,EAChB,qBAAqB,EACrB,qBAAqB,EACrB,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,YAAY,EACb,MAAM,eAAe,CAAC;AAUvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD,KAAK,GAAG,GAAG;IACT,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAC;IAClC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;CAClC,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAgB,CAAC;AACrE,eAAO,MAAM,aAAa,EAAE,YAAY,CAAC,SAAS,EAAE,UAAU,CAAwB,CAAC;AACvF,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,SAAS,EAAE,QAAQ,CAAmB,CAAC;AAC9E,eAAO,MAAM,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAE,UAAU,CAA2B,CAAC;AAChG,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,SAAS,EAAE,QAAQ,CAAiB,CAAC;AACxE,eAAO,MAAM,cAAc,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CAAyB,CAAC;AAC1F,eAAO,MAAM,UAAU,EAAE,iBAAqC,CAAC;AAC/D,eAAO,MAAM,GAAG,EAAE,GAAsE,CAAC;AAEzF,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC;AAClD,MAAM,MAAM,WAAW,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACxD,MAAM,MAAM,SAAS,GAAG,gBAAgB,CAAC,SAAS,CAAC,CAAC;AACpD,MAAM,MAAM,cAAc,GAAG,qBAAqB,CAAC,SAAS,CAAC,CAAC;AAC9D,MAAM,MAAM,cAAc,GAAG,qBAAqB,CAAC,SAAS,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import { actionGeneric, httpActionGeneric, internalActionGeneric, internalMutationGeneric, internalQueryGeneric, mutationGeneric, queryGeneric, } from "convex/server";
|
|
3
|
+
export const query = queryGeneric;
|
|
4
|
+
export const internalQuery = internalQueryGeneric;
|
|
5
|
+
export const mutation = mutationGeneric;
|
|
6
|
+
export const internalMutation = internalMutationGeneric;
|
|
7
|
+
export const action = actionGeneric;
|
|
8
|
+
export const internalAction = internalActionGeneric;
|
|
9
|
+
export const httpAction = httpActionGeneric;
|
|
10
|
+
export const env = globalThis.process.env;
|
|
11
|
+
//# sourceMappingURL=server.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../../src/component/_generated/server.ts"],"names":[],"mappings":"AAAA,oBAAoB;AAapB,OAAO,EACL,aAAa,EACb,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,oBAAoB,EACpB,eAAe,EACf,YAAY,GACb,MAAM,eAAe,CAAC;AAQvB,MAAM,CAAC,MAAM,KAAK,GAAsC,YAAY,CAAC;AACrE,MAAM,CAAC,MAAM,aAAa,GAAwC,oBAAoB,CAAC;AACvF,MAAM,CAAC,MAAM,QAAQ,GAAyC,eAAe,CAAC;AAC9E,MAAM,CAAC,MAAM,gBAAgB,GAA2C,uBAAuB,CAAC;AAChG,MAAM,CAAC,MAAM,MAAM,GAAuC,aAAa,CAAC;AACxE,MAAM,CAAC,MAAM,cAAc,GAAyC,qBAAqB,CAAC;AAC1F,MAAM,CAAC,MAAM,UAAU,GAAsB,iBAAiB,CAAC;AAC/D,MAAM,CAAC,MAAM,GAAG,GAAS,UAAmD,CAAC,OAAO,CAAC,GAAG,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convex.config.d.ts","sourceRoot":"","sources":["../../src/component/convex.config.ts"],"names":[],"mappings":"AACA,kFAAkF;;AAClF,wBAAwD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convex.config.js","sourceRoot":"","sources":["../../src/component/convex.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,kFAAkF;AAClF,eAAe,eAAe,CAAC,uBAAuB,CAAC,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export declare const admit: import("convex/server").RegisteredMutation<"public", {
|
|
2
|
+
terminalSequence?: number | undefined;
|
|
3
|
+
destinationId: string;
|
|
4
|
+
callId: string;
|
|
5
|
+
instanceId: string;
|
|
6
|
+
pluginBootId: string;
|
|
7
|
+
executionId: string;
|
|
8
|
+
summaryJson: string;
|
|
9
|
+
reference: {
|
|
10
|
+
key: string;
|
|
11
|
+
sha256: string;
|
|
12
|
+
byteLength: number;
|
|
13
|
+
contentType: string;
|
|
14
|
+
};
|
|
15
|
+
sequence: number;
|
|
16
|
+
throughSequence: number;
|
|
17
|
+
identity: string;
|
|
18
|
+
digest: string;
|
|
19
|
+
observedAt: string;
|
|
20
|
+
correlation: {
|
|
21
|
+
requestId?: string | undefined;
|
|
22
|
+
runId?: string | undefined;
|
|
23
|
+
jobId?: string | undefined;
|
|
24
|
+
rootExecutionId?: string | undefined;
|
|
25
|
+
opencodeSessionId?: string | undefined;
|
|
26
|
+
};
|
|
27
|
+
}, Promise<{
|
|
28
|
+
identity: string;
|
|
29
|
+
digest: string;
|
|
30
|
+
callId: string;
|
|
31
|
+
duplicate: boolean;
|
|
32
|
+
}>>;
|
|
33
|
+
export declare const commitProjection: import("convex/server").RegisteredMutation<"public", {
|
|
34
|
+
destinationId: string;
|
|
35
|
+
callId: string;
|
|
36
|
+
summaryJson: string;
|
|
37
|
+
checkpointJson: string;
|
|
38
|
+
throughSequence: number;
|
|
39
|
+
expectedRevision: number;
|
|
40
|
+
}, Promise<{
|
|
41
|
+
committed: boolean;
|
|
42
|
+
revision: number;
|
|
43
|
+
}>>;
|
|
44
|
+
export declare const recordProjectionFailure: import("convex/server").RegisteredMutation<"public", {
|
|
45
|
+
destinationId: string;
|
|
46
|
+
callId: string;
|
|
47
|
+
expectedRevision: number;
|
|
48
|
+
}, Promise<void>>;
|
|
49
|
+
export declare const recordHealth: import("convex/server").RegisteredMutation<"public", {
|
|
50
|
+
destinationId: string;
|
|
51
|
+
instanceId: string;
|
|
52
|
+
pluginBootId: string;
|
|
53
|
+
observedAt: string;
|
|
54
|
+
startedAt: string;
|
|
55
|
+
observationsTotal: number;
|
|
56
|
+
droppedObservationsTotal: number;
|
|
57
|
+
lostControlObservationsTotal: number;
|
|
58
|
+
scopeConflictsTotal: number;
|
|
59
|
+
expiredScopesTotal: number;
|
|
60
|
+
activeCalls: number;
|
|
61
|
+
}, Promise<{
|
|
62
|
+
committed: boolean;
|
|
63
|
+
}>>;
|
|
64
|
+
//# sourceMappingURL=ingest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ingest.d.ts","sourceRoot":"","sources":["../../src/component/ingest.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgLhB,CAAC;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;GAmD3B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;iBAclC,CAAC;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;GAwEvB,CAAC"}
|