@arizeai/openinference-genai 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.
Files changed (34) hide show
  1. package/README.md +137 -0
  2. package/dist/esm/__generated__/opentelemetryInputMessages.d.ts +103 -0
  3. package/dist/esm/__generated__/opentelemetryInputMessages.d.ts.map +1 -0
  4. package/dist/esm/__generated__/opentelemetryInputMessages.js +7 -0
  5. package/dist/esm/__generated__/opentelemetryInputMessages.js.map +1 -0
  6. package/dist/esm/__generated__/opentelemetryOutputMessages.d.ts +116 -0
  7. package/dist/esm/__generated__/opentelemetryOutputMessages.d.ts.map +1 -0
  8. package/dist/esm/__generated__/opentelemetryOutputMessages.js +7 -0
  9. package/dist/esm/__generated__/opentelemetryOutputMessages.js.map +1 -0
  10. package/dist/esm/attributes.d.ts +79 -0
  11. package/dist/esm/attributes.d.ts.map +1 -0
  12. package/dist/esm/attributes.js +306 -0
  13. package/dist/esm/attributes.js.map +1 -0
  14. package/dist/esm/index.d.ts +2 -0
  15. package/dist/esm/index.d.ts.map +1 -0
  16. package/dist/esm/index.js +10 -0
  17. package/dist/esm/index.js.map +1 -0
  18. package/dist/esm/package.json +1 -0
  19. package/dist/esm/tsconfig.esm.tsbuildinfo +1 -0
  20. package/dist/esm/types.d.ts +9 -0
  21. package/dist/esm/types.d.ts.map +1 -0
  22. package/dist/esm/types.js +2 -0
  23. package/dist/esm/types.js.map +1 -0
  24. package/dist/esm/utils.d.ts +42 -0
  25. package/dist/esm/utils.d.ts.map +1 -0
  26. package/dist/esm/utils.js +94 -0
  27. package/dist/esm/utils.js.map +1 -0
  28. package/package.json +68 -0
  29. package/src/__generated__/opentelemetryInputMessages.ts +104 -0
  30. package/src/__generated__/opentelemetryOutputMessages.ts +122 -0
  31. package/src/attributes.ts +467 -0
  32. package/src/index.ts +14 -0
  33. package/src/types.ts +14 -0
  34. package/src/utils.ts +106 -0
@@ -0,0 +1,306 @@
1
+ import { OpenInferenceSpanKind, SemanticConventions, } from "@arizeai/openinference-semantic-conventions";
2
+ import { ATTR_GEN_AI_PROVIDER_NAME, ATTR_GEN_AI_REQUEST_MODEL, ATTR_GEN_AI_RESPONSE_MODEL, ATTR_GEN_AI_REQUEST_MAX_TOKENS, ATTR_GEN_AI_REQUEST_TEMPERATURE, ATTR_GEN_AI_REQUEST_TOP_P, ATTR_GEN_AI_REQUEST_TOP_K, ATTR_GEN_AI_REQUEST_PRESENCE_PENALTY, ATTR_GEN_AI_REQUEST_FREQUENCY_PENALTY, ATTR_GEN_AI_REQUEST_STOP_SEQUENCES, ATTR_GEN_AI_REQUEST_SEED, ATTR_GEN_AI_INPUT_MESSAGES, ATTR_GEN_AI_OUTPUT_MESSAGES, ATTR_GEN_AI_USAGE_INPUT_TOKENS, ATTR_GEN_AI_USAGE_OUTPUT_TOKENS, ATTR_GEN_AI_PROMPT, ATTR_GEN_AI_COMPLETION, ATTR_GEN_AI_AGENT_ID, ATTR_GEN_AI_AGENT_NAME, ATTR_GEN_AI_AGENT_DESCRIPTION, ATTR_GEN_AI_TOOL_NAME, ATTR_GEN_AI_TOOL_DESCRIPTION, ATTR_GEN_AI_TOOL_CALL_ID, ATTR_GEN_AI_TOOL_TYPE, } from "@opentelemetry/semantic-conventions/incubating";
3
+ import { getMimeType, getNumber, getString, getStringArray, merge, safelyParseJSON, safelyJSONStringify, set, toStringContent, } from "./utils.js";
4
+ const AGENT_KIND_PREFIXES = [
5
+ ATTR_GEN_AI_AGENT_ID,
6
+ ATTR_GEN_AI_AGENT_NAME,
7
+ ATTR_GEN_AI_AGENT_DESCRIPTION,
8
+ ];
9
+ const TOOL_EXECUTION_PREFIXES = [
10
+ ATTR_GEN_AI_TOOL_NAME,
11
+ ATTR_GEN_AI_TOOL_DESCRIPTION,
12
+ ATTR_GEN_AI_TOOL_CALL_ID,
13
+ ATTR_GEN_AI_TOOL_TYPE,
14
+ ];
15
+ /**
16
+ * Type guard for a GenAI chat message
17
+ * @param value - The value to check
18
+ * @returns True if the value is a chat message, false otherwise
19
+ */
20
+ const isGenAIChatMessage = (value) => {
21
+ if (typeof value !== "object" || value === null)
22
+ return false;
23
+ if (!("role" in value) || !("parts" in value))
24
+ return false;
25
+ if (typeof value.role !== "string" || !Array.isArray(value.parts))
26
+ return false;
27
+ if (!value.parts || !Array.isArray(value.parts))
28
+ return false;
29
+ return true;
30
+ };
31
+ /**
32
+ * Process genai message parts into openinference attributes
33
+ *
34
+ * @param params - The parameters to process the message parts
35
+ */
36
+ const processMessageParts = ({ attrs, msgPrefix, parts, }) => {
37
+ if (!Array.isArray(parts) || parts.length === 0)
38
+ return;
39
+ // track the index of the content and tool calls outside the loop
40
+ // this is just in-case we have to skip bad parts
41
+ let contentIndex = 0;
42
+ let toolIndex = 0;
43
+ for (const part of parts) {
44
+ if (!part || typeof part !== "object")
45
+ continue;
46
+ if (!part.type)
47
+ continue;
48
+ switch (part.type) {
49
+ case "text": {
50
+ const text = toStringContent(part.content);
51
+ if (text !== undefined) {
52
+ // MESSAGE_CONTENTS entries
53
+ const contentPrefix = `${msgPrefix}${SemanticConventions.MESSAGE_CONTENTS}.${contentIndex}.`;
54
+ set(attrs, `${contentPrefix}${SemanticConventions.MESSAGE_CONTENT_TYPE}`, "text");
55
+ set(attrs, `${contentPrefix}${SemanticConventions.MESSAGE_CONTENT_TEXT}`, text);
56
+ contentIndex += 1;
57
+ }
58
+ continue;
59
+ }
60
+ case "tool_call": {
61
+ const id = part.id ?? undefined;
62
+ const name = part.name;
63
+ const args = part.arguments ?? {};
64
+ const toolPrefix = `${msgPrefix}${SemanticConventions.MESSAGE_TOOL_CALLS}.${toolIndex}.`;
65
+ set(attrs, `${toolPrefix}${SemanticConventions.TOOL_CALL_ID}`, id);
66
+ set(attrs, toolPrefix + SemanticConventions.TOOL_CALL_FUNCTION_NAME, name);
67
+ set(attrs, toolPrefix + SemanticConventions.TOOL_CALL_FUNCTION_ARGUMENTS_JSON, safelyJSONStringify(args));
68
+ toolIndex += 1;
69
+ continue;
70
+ }
71
+ case "tool_call_response": {
72
+ const id = part.id ?? undefined;
73
+ const response = toStringContent(part.response);
74
+ set(attrs, `${msgPrefix}${SemanticConventions.MESSAGE_TOOL_CALL_ID}`, id);
75
+ const contentPrefix = `${msgPrefix}${SemanticConventions.MESSAGE_CONTENTS}.${contentIndex}.`;
76
+ set(attrs, `${contentPrefix}${SemanticConventions.MESSAGE_CONTENT_TYPE}`, "text");
77
+ set(attrs, `${contentPrefix}${SemanticConventions.MESSAGE_CONTENT_TEXT}`, response);
78
+ contentIndex += 1;
79
+ continue;
80
+ }
81
+ default: {
82
+ // Generic / unknown part type: capture as JSON text content
83
+ const genericPart = part;
84
+ const genericText = toStringContent(genericPart);
85
+ const contentPrefix = `${msgPrefix}${SemanticConventions.MESSAGE_CONTENTS}.${contentIndex}.`;
86
+ set(attrs, `${contentPrefix}${SemanticConventions.MESSAGE_CONTENT_TYPE}`, genericPart.type);
87
+ set(attrs, `${contentPrefix}${SemanticConventions.MESSAGE_CONTENT_TEXT}`, genericText);
88
+ set(attrs, `${msgPrefix}${SemanticConventions.MESSAGE_CONTENT}`, genericText);
89
+ contentIndex += 1;
90
+ }
91
+ }
92
+ }
93
+ };
94
+ /**
95
+ * Convert GenAI span attributes to OpenInference span attributes
96
+ * @param spanAttributes - The span attributes containing GenAI span attributes to convert
97
+ * @returns The converted OpenInference span attributes
98
+ */
99
+ export const convertGenAISpanAttributesToOpenInferenceSpanAttributes = (spanAttributes) => {
100
+ return merge(mapProviderAndSystem(spanAttributes), mapModels(spanAttributes), mapSpanKind(spanAttributes), mapInvocationParameters(spanAttributes), mapInputMessages(spanAttributes), mapOutputMessages(spanAttributes), mapTokenCounts(spanAttributes), mapToolExecution(spanAttributes), mapInputValue(spanAttributes), mapOutputValue(spanAttributes));
101
+ };
102
+ /**
103
+ * Map provider and system to openinference attributes
104
+ * @todo add some heuristics that can map incoming provider names to the correct OpenInference provider name
105
+ * @param spanAttributes - The span attributes containing provider and system to map
106
+ * @returns The mapped provider and system attributes
107
+ */
108
+ export const mapProviderAndSystem = (spanAttributes) => {
109
+ const attrs = {};
110
+ const provider = getString(spanAttributes[ATTR_GEN_AI_PROVIDER_NAME]);
111
+ set(attrs, SemanticConventions.LLM_PROVIDER, provider);
112
+ return attrs;
113
+ };
114
+ /**
115
+ * Map model name to openinference attributes
116
+ * @param spanAttributes - The span attributes containing model name to map
117
+ * @returns The mapped model name attributes
118
+ */
119
+ export const mapModels = (spanAttributes) => {
120
+ const attrs = {};
121
+ const requestModel = getString(spanAttributes[ATTR_GEN_AI_REQUEST_MODEL]);
122
+ const responseModel = getString(spanAttributes[ATTR_GEN_AI_RESPONSE_MODEL]);
123
+ const modelName = responseModel ?? requestModel;
124
+ set(attrs, SemanticConventions.LLM_MODEL_NAME, modelName);
125
+ return attrs;
126
+ };
127
+ /**
128
+ * Map span kind to openinference attributes
129
+ * @param spanAttributes - The span attributes containing span kind to map
130
+ * @returns The mapped span kind attributes
131
+ */
132
+ export const mapSpanKind = (spanAttributes) => {
133
+ const attrs = {};
134
+ // default to LLM for now
135
+ let spanKind = OpenInferenceSpanKind.LLM;
136
+ // detect agent kind
137
+ if (AGENT_KIND_PREFIXES.some((prefix) => spanAttributes[prefix])) {
138
+ spanKind = OpenInferenceSpanKind.AGENT;
139
+ }
140
+ // detect tool execution kind
141
+ if (TOOL_EXECUTION_PREFIXES.some((prefix) => spanAttributes[prefix])) {
142
+ spanKind = OpenInferenceSpanKind.TOOL;
143
+ }
144
+ set(attrs, SemanticConventions.OPENINFERENCE_SPAN_KIND, spanKind);
145
+ return attrs;
146
+ };
147
+ /**
148
+ * Map invocation parameters to openinference attributes
149
+ * @param spanAttributes - The span attributes containing invocation parameters to map
150
+ * @returns The mapped invocation parameters attributes
151
+ */
152
+ export const mapInvocationParameters = (spanAttributes) => {
153
+ const attrs = {};
154
+ const requestModel = getString(spanAttributes[ATTR_GEN_AI_REQUEST_MODEL]);
155
+ const maxTokens = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_MAX_TOKENS]);
156
+ const temperature = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_TEMPERATURE]);
157
+ const topP = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_TOP_P]);
158
+ const topK = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_TOP_K]);
159
+ const presencePenalty = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_PRESENCE_PENALTY]);
160
+ const frequencyPenalty = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_FREQUENCY_PENALTY]);
161
+ const seed = getNumber(spanAttributes[ATTR_GEN_AI_REQUEST_SEED]);
162
+ const stopSequences = getStringArray(spanAttributes[ATTR_GEN_AI_REQUEST_STOP_SEQUENCES]);
163
+ const invocationParameters = {};
164
+ if (requestModel)
165
+ invocationParameters.model = requestModel;
166
+ if (typeof temperature === "number")
167
+ invocationParameters.temperature = temperature;
168
+ if (typeof topP === "number")
169
+ invocationParameters.top_p = topP;
170
+ if (typeof topK === "number")
171
+ invocationParameters.top_k = topK;
172
+ if (typeof presencePenalty === "number")
173
+ invocationParameters.presence_penalty = presencePenalty;
174
+ if (typeof frequencyPenalty === "number")
175
+ invocationParameters.frequency_penalty = frequencyPenalty;
176
+ if (typeof seed === "number")
177
+ invocationParameters.seed = seed;
178
+ if (stopSequences && stopSequences.length > 0)
179
+ invocationParameters.stop_sequences = stopSequences;
180
+ if (typeof maxTokens === "number")
181
+ invocationParameters.max_completion_tokens = maxTokens;
182
+ if (Object.keys(invocationParameters).length > 0) {
183
+ set(attrs, SemanticConventions.LLM_INVOCATION_PARAMETERS, safelyJSONStringify(invocationParameters));
184
+ }
185
+ return attrs;
186
+ };
187
+ /**
188
+ * Map input value to openinference attributes
189
+ * @param spanAttributes - The span attributes containing input value to map
190
+ * @returns The mapped input value attributes
191
+ */
192
+ export const mapInputValue = (spanAttributes) => {
193
+ const attrs = {};
194
+ let input = getString(spanAttributes["input"]);
195
+ if (!input) {
196
+ // fallback to deprecated prompt attribute if input is not present
197
+ input = getString(spanAttributes[ATTR_GEN_AI_PROMPT]);
198
+ }
199
+ // only set input value and mime type if input is present
200
+ if (input) {
201
+ set(attrs, SemanticConventions.INPUT_VALUE, input);
202
+ set(attrs, SemanticConventions.INPUT_MIME_TYPE, getMimeType(input));
203
+ }
204
+ return attrs;
205
+ };
206
+ /**
207
+ * Map output value to openinference attributes
208
+ * @param spanAttributes - The span attributes containing output value to map
209
+ * @returns The mapped output value attributes
210
+ */
211
+ export const mapOutputValue = (spanAttributes) => {
212
+ const attrs = {};
213
+ let output = getString(spanAttributes["output"]);
214
+ if (!output) {
215
+ // fallback to deprecated completion attribute if output is not present
216
+ output = getString(spanAttributes[ATTR_GEN_AI_COMPLETION]);
217
+ }
218
+ // only set output value and mime type if output is present
219
+ if (output) {
220
+ set(attrs, SemanticConventions.OUTPUT_VALUE, output);
221
+ set(attrs, SemanticConventions.OUTPUT_MIME_TYPE, getMimeType(output));
222
+ }
223
+ return attrs;
224
+ };
225
+ /**
226
+ * Map input messages to openinference attributes
227
+ * @param spanAttributes - The span attributes containing input messages to map
228
+ * @returns The mapped input messages attributes
229
+ */
230
+ export const mapInputMessages = (spanAttributes) => {
231
+ const attrs = {};
232
+ const genAIInputMessages = safelyParseJSON(spanAttributes[ATTR_GEN_AI_INPUT_MESSAGES]);
233
+ if (Array.isArray(genAIInputMessages)) {
234
+ genAIInputMessages.forEach((msg, msgIndex) => {
235
+ if (!isGenAIChatMessage(msg))
236
+ return;
237
+ const msgPrefix = `${SemanticConventions.LLM_INPUT_MESSAGES}.${msgIndex}.`;
238
+ // set the message role
239
+ set(attrs, `${msgPrefix}${SemanticConventions.MESSAGE_ROLE}`, msg.role);
240
+ // process and set the rest of the message parts
241
+ processMessageParts({ attrs, msgPrefix, parts: msg.parts });
242
+ });
243
+ }
244
+ return attrs;
245
+ };
246
+ /**
247
+ * Map output messages to openinference attributes
248
+ * @param spanAttributes - The span attributes containing output messages to map
249
+ * @returns The mapped output messages attributes
250
+ */
251
+ export const mapOutputMessages = (spanAttributes) => {
252
+ const attrs = {};
253
+ const genAIOutputMessages = safelyParseJSON(spanAttributes[ATTR_GEN_AI_OUTPUT_MESSAGES]);
254
+ if (Array.isArray(genAIOutputMessages) && genAIOutputMessages.length > 0) {
255
+ // recast as unknown[] for safety, as Array.isArray() retypes to any[]
256
+ genAIOutputMessages.forEach((msg, msgIndex) => {
257
+ if (!isGenAIChatMessage(msg))
258
+ return;
259
+ const msgPrefix = `${SemanticConventions.LLM_OUTPUT_MESSAGES}.${msgIndex}.`;
260
+ // set the message role
261
+ set(attrs, `${msgPrefix}${SemanticConventions.MESSAGE_ROLE}`, msg.role);
262
+ // process and set the rest of the message parts
263
+ processMessageParts({ attrs, msgPrefix, parts: msg.parts });
264
+ });
265
+ }
266
+ return attrs;
267
+ };
268
+ /**
269
+ * Map usage token counts to openinference attributes
270
+ * @param spanAttributes - The span attributes containing usage token counts to map
271
+ * @returns The mapped usage token counts attributes
272
+ */
273
+ export const mapTokenCounts = (spanAttributes) => {
274
+ const attrs = {};
275
+ const inputTokens = getNumber(spanAttributes[ATTR_GEN_AI_USAGE_INPUT_TOKENS]);
276
+ const outputTokens = getNumber(spanAttributes[ATTR_GEN_AI_USAGE_OUTPUT_TOKENS]);
277
+ if (typeof inputTokens === "number") {
278
+ set(attrs, SemanticConventions.LLM_TOKEN_COUNT_PROMPT, inputTokens);
279
+ }
280
+ if (typeof outputTokens === "number") {
281
+ set(attrs, SemanticConventions.LLM_TOKEN_COUNT_COMPLETION, outputTokens);
282
+ }
283
+ if (typeof inputTokens === "number" && typeof outputTokens === "number") {
284
+ set(attrs, SemanticConventions.LLM_TOKEN_COUNT_TOTAL, inputTokens + outputTokens);
285
+ }
286
+ return attrs;
287
+ };
288
+ /**
289
+ * Map tool execution to openinference attributes
290
+ * @see https://opentelemetry.io/docs/specs/semconv/gen-ai/gen-ai-spans/#execute-tool-span
291
+ * @param spanAttributes - The span attributes containing tool execution to map
292
+ * @returns The mapped tool execution attributes
293
+ */
294
+ export const mapToolExecution = (spanAttributes) => {
295
+ const attrs = {};
296
+ const toolName = getString(spanAttributes[ATTR_GEN_AI_TOOL_NAME]);
297
+ const toolDescription = getString(spanAttributes[ATTR_GEN_AI_TOOL_DESCRIPTION]);
298
+ const toolCallId = getString(spanAttributes[ATTR_GEN_AI_TOOL_CALL_ID]);
299
+ // parse supported tool details
300
+ // note: while openinference can track parameters, gen_ai does not provide this information
301
+ set(attrs, SemanticConventions.TOOL_NAME, toolName);
302
+ set(attrs, SemanticConventions.TOOL_DESCRIPTION, toolDescription);
303
+ set(attrs, SemanticConventions.TOOL_CALL_ID, toolCallId);
304
+ return attrs;
305
+ };
306
+ //# sourceMappingURL=attributes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attributes.js","sourceRoot":"","sources":["../../src/attributes.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export declare const convertGenAISpanAttributesToOpenInferenceSpanAttributes: import("./types.js").SafeFunction<(spanAttributes: import("@opentelemetry/api").Attributes) => import("@opentelemetry/api").Attributes>;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,uDAAuD,yIAUhE,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { convertGenAISpanAttributesToOpenInferenceSpanAttributes as unsafeConvertGenAISpanAttributesToOpenInferenceSpanAttributes } from "./attributes.js";
2
+ import { withSafety } from "./utils.js";
3
+ export const convertGenAISpanAttributesToOpenInferenceSpanAttributes = withSafety({
4
+ fn: unsafeConvertGenAISpanAttributesToOpenInferenceSpanAttributes,
5
+ onError(error) {
6
+ // eslint-disable-next-line no-console
7
+ console.error("Unable to convert GenAI span attributes to OpenInference span attributes", error);
8
+ },
9
+ });
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uDAAuD,IAAI,6DAA6D,EAAE,MAAM,iBAAiB,CAAC;AAC3J,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAExC,MAAM,CAAC,MAAM,uDAAuD,GAClE,UAAU,CAAC;IACT,EAAE,EAAE,6DAA6D;IACjE,OAAO,CAAC,KAAK;QACX,sCAAsC;QACtC,OAAO,CAAC,KAAK,CACX,0EAA0E,EAC1E,KAAK,CACN,CAAC;IACJ,CAAC;CACF,CAAC,CAAC"}
@@ -0,0 +1 @@
1
+ {"type": "module"}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/types.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/utils.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/common/Exception.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/common/Time.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/common/Attributes.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/context/types.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/context/context.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/context.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/diag/types.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/diag/consoleLogger.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/diag.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/ObservableResult.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/Metric.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/Meter.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics/MeterProvider.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/metrics.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/baggage/context-helpers.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/propagation.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/attributes.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/trace_state.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/span_context.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/link.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/status.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/span.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/span_kind.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/SpanOptions.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/tracer.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/tracer_options.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/tracer_provider.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/SamplingResult.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/Sampler.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/trace_flags.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/internal/utils.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/api/trace.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/context-api.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/diag-api.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/metrics-api.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/propagation-api.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/trace-api.d.ts","../../../../node_modules/.pnpm/@opentelemetry+api@1.9.0/node_modules/@opentelemetry/api/build/src/index.d.ts","../../../openinference-semantic-conventions/dist/esm/trace/SemanticConventions.d.ts","../../../openinference-semantic-conventions/dist/esm/trace/index.d.ts","../../../openinference-semantic-conventions/dist/esm/resource/SemanticResourceAttributes.d.ts","../../../openinference-semantic-conventions/dist/esm/resource/index.d.ts","../../../openinference-semantic-conventions/dist/esm/index.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/stable_attributes.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/stable_metrics.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/stable_events.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/experimental_attributes.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/experimental_metrics.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/experimental_events.d.ts","../../../../node_modules/.pnpm/@opentelemetry+semantic-conventions@1.37.0/node_modules/@opentelemetry/semantic-conventions/build/src/index-incubating.d.ts","../../src/types.ts","../../src/utils.ts","../../src/__generated__/opentelemetryInputMessages.ts","../../src/__generated__/opentelemetryOutputMessages.ts","../../src/attributes.ts","../../src/index.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/dom-events.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/globals.global.d.ts","../../../../node_modules/.pnpm/@types+node@20.14.11/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../../node_modules/.pnpm/@types+jest@29.5.12/node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4e9e0d92dcad2cb387a5f1bdffe621569052f2d80186e11973aa7080260d296","impliedFormat":1},{"version":"f6380cc36fc3efc70084d288d0a05d0a2e09da012ee3853f9d62431e7216f129","impliedFormat":1},{"version":"497c3e541b4acf6c5d5ba75b03569cfe5fe25c8a87e6c87f1af98da6a3e7b918","impliedFormat":1},{"version":"d9429b81edf2fb2abf1e81e9c2e92615f596ed3166673d9b69b84c369b15fdc0","impliedFormat":1},{"version":"7e22943ae4e474854ca0695ab750a8026f55bb94278331fda02a4fb42efce063","impliedFormat":1},{"version":"7da9ff3d9a7e62ddca6393a23e67296ab88f2fcb94ee5f7fb977fa8e478852ac","impliedFormat":1},{"version":"e1b45cc21ea200308cbc8abae2fb0cfd014cb5b0e1d1643bcc50afa5959b6d83","impliedFormat":1},{"version":"c9740b0ce7533ce6ba21a7d424e38d2736acdddeab2b1a814c00396e62cc2f10","impliedFormat":1},{"version":"b3c1f6a3fdbb04c6b244de6d5772ffdd9e962a2faea1440e410049c13e874b87","impliedFormat":1},{"version":"dcaa872d9b52b9409979170734bdfd38f846c32114d05b70640fd05140b171bb","impliedFormat":1},{"version":"6c434d20da381fcd2e8b924a3ec9b8653cf8bed8e0da648e91f4c984bd2a5a91","impliedFormat":1},{"version":"992419d044caf6b14946fa7b9463819ab2eeb7af7c04919cc2087ce354c92266","impliedFormat":1},{"version":"fa9815e9ce1330289a5c0192e2e91eb6178c0caa83c19fe0c6a9f67013fe795c","impliedFormat":1},{"version":"06384a1a73fcf4524952ecd0d6b63171c5d41dd23573907a91ef0a687ddb4a8c","impliedFormat":1},{"version":"34b1594ecf1c84bcc7a04d9f583afa6345a6fea27a52cf2685f802629219de45","impliedFormat":1},{"version":"d82c9ca830d7b94b7530a2c5819064d8255b93dfeddc5b2ebb8a09316f002c89","impliedFormat":1},{"version":"7e046b9634add57e512412a7881efbc14d44d1c65eadd35432412aa564537975","impliedFormat":1},{"version":"aac9079b9e2b5180036f27ab37cb3cf4fd19955be48ccc82eab3f092ee3d4026","impliedFormat":1},{"version":"3d9c38933bc69e0a885da20f019de441a3b5433ce041ba5b9d3a541db4b568cb","impliedFormat":1},{"version":"606aa2b74372221b0f79ca8ae3568629f444cc454aa59b032e4cb602308dec94","impliedFormat":1},{"version":"50474eaea72bfda85cc37ae6cd29f0556965c0849495d96c8c04c940ef3d2f44","impliedFormat":1},{"version":"b4874382f863cf7dc82b3d15aed1e1372ac3fede462065d5bfc8510c0d8f7b19","impliedFormat":1},{"version":"df10b4f781871afb72b2d648d497671190b16b679bf7533b744cc10b3c6bf7ea","impliedFormat":1},{"version":"1fdc28754c77e852c92087c789a1461aa6eed19c335dc92ce6b16a188e7ba305","impliedFormat":1},{"version":"a656dab1d502d4ddc845b66d8735c484bfebbf0b1eda5fb29729222675759884","impliedFormat":1},{"version":"465a79505258d251068dc0047a67a3605dd26e6b15e9ad2cec297442cbb58820","impliedFormat":1},{"version":"ddae22d9329db28ce3d80a2a53f99eaed66959c1c9cd719c9b744e5470579d2f","impliedFormat":1},{"version":"d0e25feadef054c6fc6a7f55ccc3b27b7216142106b9ff50f5e7b19d85c62ca7","impliedFormat":1},{"version":"111214009193320cacbae104e8281f6cb37788b52a6a84d259f9822c8c71f6ca","impliedFormat":1},{"version":"01c8e2c8984c96b9b48be20ee396bd3689a3a3e6add8d50fe8229a7d4e62ff45","impliedFormat":1},{"version":"a4a0800b592e533897b4967b00fb00f7cd48af9714d300767cc231271aa100af","impliedFormat":1},{"version":"20aa818c3e16e40586f2fa26327ea17242c8873fe3412a69ec68846017219314","impliedFormat":1},{"version":"f498532f53d54f831851990cb4bcd96063d73e302906fa07e2df24aa5935c7d1","impliedFormat":1},{"version":"5fd19dfde8de7a0b91df6a9bbdc44b648fd1f245cae9e8b8cf210d83ee06f106","impliedFormat":1},{"version":"3b8d6638c32e63ea0679eb26d1eb78534f4cc02c27b80f1c0a19f348774f5571","impliedFormat":1},{"version":"ce0da52e69bc3d82a7b5bc40da6baad08d3790de13ad35e89148a88055b46809","impliedFormat":1},{"version":"9e01233da81bfed887f8d9a70d1a26bf11b8ddff165806cc586c84980bf8fc24","impliedFormat":1},{"version":"214a6afbab8b285fc97eb3cece36cae65ea2fca3cbd0c017a96159b14050d202","impliedFormat":1},{"version":"14beeca2944b75b229c0549e0996dc4b7863e07257e0d359d63a7be49a6b86a4","impliedFormat":1},{"version":"f7bb9adb1daa749208b47d1313a46837e4d27687f85a3af7777fc1c9b3dc06b1","impliedFormat":1},{"version":"c549fe2f52101ffe47f58107c702af7cdcd42da8c80afd79f707d1c5d77d4b6e","impliedFormat":1},{"version":"3966ea9e1c1a5f6e636606785999734988e135541b79adc6b5d00abdc0f4bf05","impliedFormat":1},{"version":"0b60b69c957adb27f990fbc27ea4ac1064249400262d7c4c1b0a1687506b3406","impliedFormat":1},{"version":"12c26e5d1befc0ded725cee4c2316f276013e6f2eb545966562ae9a0c1931357","impliedFormat":1},{"version":"27b247363f1376c12310f73ebac6debcde009c0b95b65a8207e4fa90e132b30a","impliedFormat":1},{"version":"05bd302e2249da923048c09dc684d1d74cb205551a87f22fb8badc09ec532a08","impliedFormat":1},{"version":"fe930ec064571ab3b698b13bddf60a29abf9d2f36d51ab1ca0083b087b061f3a","impliedFormat":1},{"version":"6b85c4198e4b62b0056d55135ad95909adf1b95c9a86cdbed2c0f4cc1a902d53","impliedFormat":1},{"version":"3945b3ddc71e7ec9fd8b66211c49288b0a3ffd999792949aeb073a1821975075","impliedFormat":99},{"version":"564eb4aa64bb41fd9e11fc24513538a76520246df144d454df3230faee06325b","impliedFormat":99},{"version":"7743b59242f1f4c1bc64871a0c45dc4d6170e4abbb825a63d418eb2699c0628b","impliedFormat":99},{"version":"938c97932900bb2ed1fece3c3d15d65a5b783a04c85b026aed5645a56dfc00d0","impliedFormat":99},{"version":"0041212a032ae0108d90c8ee171e606ba955adca6c5ad39edfb4bae0c83cce60","impliedFormat":99},{"version":"3a5f7910453d0bfd3cc3935a43f4db5472a0c8d9c9c9a13047bafb07e94a365d","impliedFormat":1},{"version":"4d6739cdb0281c821c4b32c34fd27bd645f44ecb1d94faeef3778ba56f48e849","impliedFormat":1},{"version":"a089122411d0b1ff69f29c69bb6508f7b2a05217ec4dc59cfbf4ca94438eb335","impliedFormat":1},{"version":"c45bb00c7d4f9ea3e5d9efcd86054b676b9b5b0779b624940ff130ab5e7829f9","impliedFormat":1},{"version":"98627be5a8afec6799fe0e2a903e9d8e6afbbdf7dc405bf79d98d118f16143e9","impliedFormat":1},{"version":"f767ea48a88771f27e250da6a1757f2fbed727f759e72dd00e87c39af8e6278d","impliedFormat":1},{"version":"4c5c4c5931cf4c37400b0aa318750e1c2da52ae3d274923973268d1e6c9bca31","impliedFormat":1},{"version":"38050202516a03c4f2aec27dc91a0c09e5b94f21526df878187d11eb4dd63f53","signature":"08ddb0c2aef1f475dfc21f161522ce52cce0450c59d5a7c53860e6093e7f992e","impliedFormat":99},{"version":"33407e3a0a80ac45830878609506d84411799a926d55c4140ec01a6494b364aa","signature":"11ff622ffca4d1e2676e4311db3d661b4c39b936b2d87958a62a2f44232a567f","impliedFormat":99},{"version":"aa406d9835862c18ec1a3e62ea406b644e7bec78afd06ef04e6e54eceeb300f9","signature":"149639813180e580d40e30ae5192d894c7d361ddd95acaaa8acd0672c2a9b3a9","impliedFormat":99},{"version":"ed3ba267f5e4211c768b0b13e737a7665087f647b189ca04a576153aac0e6579","signature":"fc6a98aec4354eb39f7dcb110db7641ed2584aeddef09c8784d326b80daafda3","impliedFormat":99},{"version":"70e2aac11aaf27bfa34d7170f0f85aa69320bcd9a99b1502e936e5e5284b5bad","signature":"d3d55e59f69443fca1dfae463756cd7c7985131e34c00a3a574a061189a96216","impliedFormat":99},{"version":"f949f267e34b8f8178bc3e18984876dffd33e0d2a226a181eef30d6445e943ee","signature":"d82a48c65db96ae6f30a7f00acf8ba5e4d64a8e873070b32f4d3b69b7c0b1135","impliedFormat":99},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","impliedFormat":1},{"version":"53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6","impliedFormat":1},{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","impliedFormat":1},{"version":"5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","impliedFormat":1},{"version":"d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true,"impliedFormat":1},{"version":"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","impliedFormat":1},{"version":"304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","impliedFormat":1},{"version":"1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","impliedFormat":1},{"version":"98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","impliedFormat":1},{"version":"c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","impliedFormat":1},{"version":"2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","impliedFormat":1},{"version":"a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","impliedFormat":1},{"version":"d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900","impliedFormat":1},{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true,"impliedFormat":1},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","impliedFormat":1},{"version":"6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","impliedFormat":1},{"version":"56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","impliedFormat":1},{"version":"2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927","impliedFormat":1},{"version":"7da97d603bf3dd0000f56467c56cb6efaf5f94692980474925fae6c33412b12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","impliedFormat":1},{"version":"e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","impliedFormat":1},{"version":"b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0","impliedFormat":1},{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","impliedFormat":1},{"version":"4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true,"impliedFormat":1}],"root":[[132,137]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":199,"outDir":"./","rootDir":"../../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"tsBuildInfoFile":"./tsconfig.esm.tsbuildinfo"},"fileIdsList":[[227],[78],[81],[86,88],[74,78,90,91],[101,104,110,112],[73,78],[72],[73],[80],[83],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118],[89],[85],[86],[77,78,84],[85,86],[92],[113],[78,98,100,101,102],[101,102,104],[78,93,96,99,106],[93,94],[76,93,96,99],[77],[78,95,98],[94],[95],[93,95],[75,76,93,95,96,97],[95,98],[78,98,100],[101,102],[125,126,127,128,129,130],[229,232],[138],[173],[174,179,208],[175,180,186,187,194,205,216],[175,176,186,194],[177,217],[178,179,187,195],[179,205,213],[180,182,186,194],[173,181],[182,183],[186],[184,186],[173,186],[186,187,188,205,216],[186,187,188,201,205,208],[171,174,221],[182,186,189,194,205,216],[186,187,189,190,194,205,213,216],[189,191,205,213,216],[138,139,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],[186,192],[193,216,221],[182,186,194,205],[195],[196],[173,197],[194,195,198,215,221],[199],[200],[186,201,202],[201,203,217,219],[174,186,205,206,207,208],[174,205,207],[205,206],[208],[209],[173,205],[186,211,212],[211,212],[179,194,205,213],[214],[194,215],[174,189,200,216],[179,217],[205,218],[193,219],[220],[174,179,186,188,197,205,216,219,221],[205,222],[225,231],[229],[226,230],[228],[148,152,216],[148,205,216],[143],[145,148,213,216],[194,213],[224],[143,224],[145,148,194,216],[140,141,144,147,174,186,205,216],[140,146],[144,148,174,208,216,224],[174,224],[164,174,224],[142,143,224],[148],[142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170],[148,155,156],[146,148,156,157],[147],[140,143,148],[148,152,156,157],[152],[146,148,151,216],[140,145,146,148,152,155],[174,205],[143,148,164,174,221,224],[119,124,131,133,134,135],[133,136],[119,124,132],[121,123],[122],[120]],"referencedMap":[[228,1],[80,2],[83,3],[89,4],[92,5],[113,6],[91,7],[73,8],[74,9],[114,10],[79,2],[115,11],[82,3],[119,12],[116,13],[86,14],[88,15],[85,16],[87,17],[84,14],[117,18],[90,2],[118,19],[103,20],[105,21],[107,22],[106,23],[100,24],[93,25],[112,26],[109,27],[111,28],[96,29],[98,30],[95,27],[110,31],[101,32],[104,33],[131,34],[233,35],[138,36],[139,36],[173,37],[174,38],[175,39],[176,40],[177,41],[178,42],[179,43],[180,44],[181,45],[182,46],[183,46],[185,47],[184,48],[186,49],[187,50],[188,51],[172,52],[189,53],[190,54],[191,55],[224,56],[192,57],[193,58],[194,59],[195,60],[196,61],[197,62],[198,63],[199,64],[200,65],[201,66],[202,66],[203,67],[205,68],[207,69],[206,70],[208,71],[209,72],[210,73],[211,74],[212,75],[213,76],[214,77],[215,78],[216,79],[217,80],[218,81],[219,82],[220,83],[221,84],[222,85],[232,86],[230,87],[231,88],[229,89],[155,90],[162,91],[154,90],[169,92],[146,93],[145,94],[168,95],[163,96],[166,97],[148,98],[147,99],[143,100],[142,101],[165,102],[144,103],[149,104],[153,104],[171,105],[170,104],[157,106],[158,107],[160,108],[156,109],[159,110],[164,95],[151,111],[152,112],[161,113],[141,114],[167,115],[136,116],[137,117],[133,118],[124,119],[123,120],[121,121]],"latestChangedDtsFile":"./index.d.ts"},"version":"5.5.4"}
@@ -0,0 +1,9 @@
1
+ export type Mutable<T> = {
2
+ -readonly [P in keyof T]: T[P];
3
+ };
4
+ export type DeeplyMutable<T> = {
5
+ -readonly [P in keyof T]: T[P] extends object ? DeeplyMutable<T[P]> : T[P];
6
+ };
7
+ export type GenericFunction = (...args: any[]) => any;
8
+ export type SafeFunction<T extends GenericFunction> = (...args: Parameters<T>) => ReturnType<T> | null;
9
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,CAAC,CAAC,IAAI;IACvB,CAAC,UAAU,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI;IAC7B,CAAC,UAAU,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS,MAAM,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAC3E,CAAC;AAGF,MAAM,MAAM,eAAe,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC;AAEtD,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,eAAe,IAAI,CACpD,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,KACnB,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,42 @@
1
+ import { MimeType } from "@arizeai/openinference-semantic-conventions";
2
+ import type { Attributes, AttributeValue } from "@opentelemetry/api";
3
+ import { GenericFunction, SafeFunction } from "./types.js";
4
+ export declare const safelyJSONStringify: (value: unknown) => string | null;
5
+ export declare const getNumber: (value: unknown) => number | undefined;
6
+ export declare const getString: (value: unknown) => string | undefined;
7
+ export declare const getStringArray: (value: unknown) => string[] | undefined;
8
+ export declare const safelyParseJSON: (value: unknown) => unknown;
9
+ export declare const getMimeType: (value: unknown) => MimeType;
10
+ /**
11
+ * Assign attribute value to attributes object if value is not undefined or null
12
+ * This mutates the attrs object
13
+ * @param attrs - The attributes object to assign the value to
14
+ * @param key - The key to assign the value to
15
+ * @param value - The value to assign to the key
16
+ */
17
+ export declare const set: (attrs: Attributes, key: string, value?: AttributeValue | null) => void;
18
+ /**
19
+ * Merge multiple attributes objects into a single attributes object
20
+ * This mutates the first attributes object
21
+ * @param groups - The groups of attributes to merge
22
+ * @returns The merged attributes
23
+ */
24
+ export declare const merge: (...groups: Attributes[]) => Attributes;
25
+ /**
26
+ * Convert a value to a string. If the value is already a string, return it.
27
+ * If the value can be jsonified, jsonify it.
28
+ * Otherwise, return the string representation of the value.
29
+ * @param value - The value to convert to a string
30
+ * @returns The string representation of the value
31
+ */
32
+ export declare const toStringContent: (value: unknown) => string;
33
+ /**
34
+ * Wraps a function with a try-catch block to catch and log any errors.
35
+ * @param fn - A function to wrap with a try-catch block.
36
+ * @returns A function that returns null if an error is thrown.
37
+ */
38
+ export declare function withSafety<T extends GenericFunction>({ fn, onError, }: {
39
+ fn: T;
40
+ onError?: (error: unknown) => void;
41
+ }): SafeFunction<T>;
42
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,6CAA6C,CAAC;AACvE,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAE3D,eAAO,MAAM,mBAAmB,UAAW,OAAO,kBAMjD,CAAC;AAEF,eAAO,MAAM,SAAS,UAAW,OAAO,KAAG,MAAM,GAAG,SAGnD,CAAC;AAEF,eAAO,MAAM,SAAS,UAAW,OAAO,KAAG,MAAM,GAAG,SAGnD,CAAC;AAEF,eAAO,MAAM,cAAc,UAAW,OAAO,KAAG,MAAM,EAAE,GAAG,SAK1D,CAAC;AAEF,eAAO,MAAM,eAAe,UAAW,OAAO,KAAG,OAQhD,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,OAAO,KAAG,QAG5C,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,GAAG,UACP,UAAU,OACZ,MAAM,UACH,cAAc,GAAG,IAAI,SAI9B,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,KAAK,cAAe,UAAU,EAAE,KAAG,UACoB,CAAC;AAErE;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,UAAW,OAAO,KAAG,MAKhD,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,CAAC,SAAS,eAAe,EAAE,EACpD,EAAE,EACF,OAAO,GACR,EAAE;IACD,EAAE,EAAE,CAAC,CAAC;IACN,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CACpC,GAAG,YAAY,CAAC,CAAC,CAAC,CAWlB"}