@chatbotkit/react 0.7.0 → 1.1.4

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.
@@ -1,303 +1,121 @@
1
- import { useState, useEffect } from 'react';
2
- import { ConversationClient } from '@chatbotkit/sdk/conversation/index.js';
3
- import { getRandomId, replaceWithCoordinates } from '../utils/string.js';
4
- /**
5
- * @typedef {{
6
- * id: string,
7
- * type: string,
8
- * text: string,
9
- * createdAt: number,
10
- * meta?: Record<string,any>
11
- * }} Message
12
- *
13
- * @typedef {(error: any) => any} onErrorFn
14
- * @typedef {(conversationId: string, messages: Message[], data: Record<string,any>) => any} onSendFn
15
- * @typedef {(conversationId: string, messages: Message[], data: Record<string,any>) => any} onReceiveFn
16
- *
17
- * @param {{
18
- * conversationId?: string,
19
- * token?: string,
20
- * messages?: Message[],
21
- * parse?: boolean,
22
- * stream?: boolean,
23
- * verbose?: boolean,
24
- * onError?: onErrorFn?,
25
- * onSend?: onSendFn?,
26
- * onReceive?: onReceiveFn?,
27
- * }}[options]
28
- */
29
- // @ts-ignore
30
- export default function useConversationManager({ conversationId: _conversationId = '', token: _token = '', messages: _messages = [], parse = false, stream = false, verbose = false, onError = null, onSend = null, onReceive = null, } = {}) {
31
- // general states
32
- const [conversationId, setConversationId] = useState(_conversationId);
1
+ import { useMemo, useState } from 'react';
2
+ import { ConversationClient } from '@chatbotkit/sdk';
3
+ import { cloneAndExtend } from '../utils/object.js';
4
+ export function useConversationManager(options) {
5
+ const { client: _client, endpoint, token: _token, conversationId: _conversationId, backstory: _backstory, model: _model, datasetId: _datasetId, skillsetId: _skillsetId, ...rest } = options;
33
6
  const [token, setToken] = useState(_token);
34
- const [messages, setMessages] = useState(_messages);
35
- const [text, setText] = useState('');
36
- const [entities, setEntities] = useState({});
37
- const [outgoingMessage, setOutgoingMessage] = useState('');
38
- // loading & thinking state
39
- const [loading, setLoading] = useState(false);
40
- const [thinking, setThinking] = useState(false);
41
- useEffect(() => {
42
- // NOTE: if we are loading we must be thinking
43
- if (loading) {
44
- setThinking(true);
7
+ const [conversationId, setConversationId] = useState(_conversationId);
8
+ const [backstory, setBackstory] = useState(_backstory);
9
+ const [model, setModel] = useState(_model);
10
+ const [datasetId, setDatasetId] = useState(_datasetId);
11
+ const [skillsetId, setSkillsetId] = useState(_skillsetId);
12
+ const client = useMemo(() => {
13
+ const options = { ...rest, secret: token || '' };
14
+ let thisClient = _client || new ConversationClient(options);
15
+ const extension = {};
16
+ if (endpoint) {
17
+ extension.url = new URL(globalThis.window?.location?.origin || 'about:blank');
18
+ extension.endpoints = {
19
+ '/api/v1/conversation/complete': endpoint,
20
+ };
45
21
  }
46
- }, [loading]);
47
- // entity methods
48
- /**
49
- * @param {string} text
50
- * @param {Record<string,string>} en
51
- */
52
- function redactEnitities(text, en = entities) {
53
- const steps = replaceWithCoordinates(text, Object.entries(en));
54
- const output = steps.pop();
55
- steps.forEach((step) => {
56
- // @ts-ignore
57
- delete step.input;
58
- // @ts-ignore
59
- delete step.output;
60
- });
61
- return [output, ...steps];
62
- }
63
- /**
64
- * @param {string} text
65
- * @param {Record<string,string>} en
66
- */
67
- function unredactEnitities(text, en = entities) {
68
- Object.entries(en).forEach(([real, redacted]) => {
69
- text = text.split(redacted).join(real);
70
- });
71
- return text;
72
- }
73
- // state utility methods
74
- /**
75
- * @returns {Promise<void>}
76
- */
77
- async function flushUserMessage() {
22
+ if (token) {
23
+ extension.secret = token;
24
+ }
25
+ if (Object.keys(extension).length === 0) {
26
+ return thisClient;
27
+ }
28
+ return cloneAndExtend(thisClient, extension);
29
+ }, [_client, endpoint, token]);
30
+ const [text, setText] = useState((''));
31
+ const [messages, setMessages] = useState(([]));
32
+ const [thinking, setThinking] = useState(false);
33
+ const [writing, setWriting] = useState(false);
34
+ const [error, setError] = useState((null));
35
+ async function submit() {
78
36
  if (!text) {
79
37
  return;
80
38
  }
81
39
  setText('');
82
- setOutgoingMessage(text);
83
- let newMessages = messages.slice(0);
84
- newMessages = newMessages.concat({
85
- id: getRandomId('message-'),
40
+ const userMessage = {
86
41
  type: 'user',
87
- text,
88
- createdAt: Date.now(),
89
- });
90
- setMessages(newMessages);
91
- }
92
- // utility states
93
- const [nextStep, setNextStep] = useState(null);
94
- useEffect(() => {
95
- if (!nextStep) {
96
- return;
97
- }
98
- setNextStep(null);
99
- // @ts-ignore
100
- switch (nextStep.fn) {
101
- case 'continueConversation':
102
- // @ts-ignore
103
- continueConversation(nextStep.options);
104
- break;
105
- default:
106
- // @ts-ignore
107
- throw new Error(`Unrecognised fn: ${nextStep.fn}`);
108
- }
109
- }, [nextStep]);
110
- // base methods
111
- /**
112
- * @param {{
113
- * token?: string,
114
- * }} [options]
115
- * @returns {Promise<void>}
116
- */
117
- async function continueConversation(options) {
42
+ text: text,
43
+ };
118
44
  let newMessages = messages.slice(0);
119
- let thisText;
120
- if (text) {
121
- thisText = text;
122
- const message = {
123
- id: getRandomId('message-'),
124
- text: text,
125
- type: 'user',
126
- createdAt: Date.now(),
127
- };
128
- newMessages = newMessages.concat([message]);
129
- setText('');
130
- }
131
- else if (outgoingMessage) {
132
- thisText = outgoingMessage;
133
- setOutgoingMessage('');
45
+ newMessages = [...newMessages, userMessage];
46
+ setMessages([...newMessages]);
47
+ setThinking(true);
48
+ let it;
49
+ try {
50
+ if (conversationId) {
51
+ it = client.complete(conversationId, { text });
52
+ }
53
+ else {
54
+ it = client.complete(null, {
55
+ backstory: backstory,
56
+ model: model,
57
+ datasetId: datasetId,
58
+ skillsetId: skillsetId,
59
+ messages: newMessages.slice(-100),
60
+ });
61
+ }
134
62
  }
135
- else {
63
+ catch (e) {
64
+ setThinking(false);
65
+ setError(e);
136
66
  return;
137
67
  }
138
- setMessages(newMessages);
139
- setLoading(true);
140
- const [redactedText, ...redactedEntities] = redactEnitities(thisText, entities);
141
- const secret = options?.token || token;
142
- const client = new ConversationClient({ secret });
143
- const completion = client.complete(conversationId, {
144
- // @ts-ignore
145
- text: redactedText,
146
- // @ts-ignore
147
- entities: redactedEntities,
148
- parse: parse,
149
- });
150
- let iter;
151
- if (stream) {
152
- iter = completion.stream();
153
- }
154
- else {
155
- iter = (async function* () {
156
- yield { type: 'receiveResult', data: await completion };
157
- })();
158
- }
68
+ const botMessage = {
69
+ type: 'bot',
70
+ text: '',
71
+ };
72
+ let alreadyStreaming = false;
159
73
  try {
160
- if (onSend) {
161
- await onSend(conversationId, newMessages, {});
162
- }
163
- const tempId = getRandomId('tmp-');
164
- let tempText = '';
165
- for await (let { type, data } of iter) {
166
- switch (type) {
167
- case 'intentDetectionEnd': {
168
- if (!verbose) {
169
- break;
170
- }
171
- const { action } = data;
172
- if (!action) {
173
- break;
174
- }
175
- const { name, input } = action;
176
- switch (name) {
177
- case 'search': {
178
- const id = getRandomId('tmp-');
179
- newMessages = newMessages.concat([
180
- {
181
- id: id,
182
- text: '',
183
- type: 'context',
184
- createdAt: Date.now(),
185
- meta: {
186
- search: input,
187
- },
188
- },
189
- ]);
190
- setMessages(newMessages);
191
- break;
192
- }
193
- }
194
- break;
195
- }
196
- case 'token': {
197
- if (!stream) {
198
- break;
199
- }
200
- const { token } = data;
201
- tempText += token;
202
- setMessages([
203
- ...newMessages,
204
- {
205
- id: tempId,
206
- text: tempText,
207
- type: 'bot',
208
- createdAt: Date.now(),
209
- meta: {},
210
- },
211
- ]);
212
- if (tempText.length) {
213
- setThinking(false);
214
- }
215
- break;
216
- }
217
- case 'sendResult': {
218
- const { entities: newEntities } = data;
219
- setEntities({ ...entities, ...newEntities });
220
- break;
221
- }
222
- case 'receiveResult': {
223
- const { id, text, parse } = data;
224
- setMessages([
225
- ...newMessages,
226
- {
227
- id: id,
228
- text: unredactEnitities((parse ? parse.stripped : text).trim(), entities),
229
- type: 'bot',
230
- createdAt: Date.now(),
231
- },
232
- ]);
74
+ for await (const event of it.stream()) {
75
+ if (event.type === 'token') {
76
+ if (!alreadyStreaming) {
77
+ alreadyStreaming = true;
78
+ newMessages = [...newMessages, botMessage];
79
+ setMessages(newMessages);
233
80
  setThinking(false);
234
- if (onReceive) {
235
- await onReceive(conversationId, newMessages, data);
236
- }
237
- break;
81
+ setWriting(true);
238
82
  }
83
+ botMessage.text += event.data.token;
84
+ setMessages([...newMessages]);
239
85
  }
240
86
  }
241
87
  }
242
88
  catch (e) {
243
- if (onError) {
244
- onError(e);
245
- }
246
- }
247
- setLoading(false);
248
- }
249
- // helper methods
250
- /**
251
- * @param {{
252
- * token?: string,
253
- * conversationId?: string
254
- * messages?: Message[]
255
- * }} [options]
256
- * @returns {void}
257
- */
258
- function interact(options) {
259
- if (options?.token) {
260
- setToken(options.token);
261
- }
262
- if (options?.conversationId) {
263
- setConversationId(options.conversationId);
264
- }
265
- if (options?.messages) {
266
- setMessages(options.messages);
89
+ setError(e);
267
90
  }
268
- if (options?.conversationId || conversationId) {
269
- setNextStep({
270
- // @ts-ignore
271
- fn: 'continueConversation',
272
- options,
273
- });
91
+ finally {
92
+ setWriting(false);
274
93
  }
275
- else {
276
- throw new Error(`No conversation id specified`);
277
- }
278
- }
279
- /**
280
- * @returns {void}
281
- */
282
- function reset() {
283
- setMessages([]);
284
- setConversationId('');
285
94
  }
286
- // final
287
95
  return {
288
- text,
289
- setText,
290
96
  token,
291
97
  setToken,
292
98
  conversationId,
293
99
  setConversationId,
100
+ backstory,
101
+ setBackstory,
102
+ model,
103
+ setModel,
104
+ datasetId,
105
+ setDatasetId,
106
+ skillsetId,
107
+ setSkillsetId,
108
+ text,
109
+ setText,
294
110
  messages,
295
111
  setMessages,
296
- flushUserMessage,
297
- continueConversation,
298
- interact,
299
- reset,
300
- loading,
301
112
  thinking,
113
+ setThinking,
114
+ writing,
115
+ setWriting,
116
+ error,
117
+ setError,
118
+ submit,
302
119
  };
303
120
  }
121
+ export default useConversationManager;
@@ -1,2 +1,2 @@
1
- export { default as AutoTextarea } from "./components/AutoTextarea.js";
2
- export { default as useConversationManager } from "./hooks/useConversationManager.js";
1
+ export { AutoTextarea } from "./components/AutoTextarea.js";
2
+ export { useConversationManager } from "./hooks/useConversationManager.js";
package/dist/esm/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { default as AutoTextarea } from './components/AutoTextarea.js';
2
- export { default as useConversationManager } from './hooks/useConversationManager.js';
1
+ export { AutoTextarea } from './components/AutoTextarea.js';
2
+ export { useConversationManager } from './hooks/useConversationManager.js';
@@ -0,0 +1 @@
1
+ export function cloneAndExtend<T>(object: T, extension: object): T;
@@ -0,0 +1,3 @@
1
+ export function cloneAndExtend(object, extension) {
2
+ return Object.assign(Object.assign(Object.create(Object.getPrototypeOf(object)), object), extension);
3
+ }
@@ -1,21 +1,5 @@
1
- /**
2
- * @param {string} [prefix]
3
- * @returns {string}
4
- */
5
1
  export function getRandomId(prefix?: string | undefined): string;
6
- /**
7
- * @param {string} input
8
- * @param {number} begin
9
- * @param {number} end
10
- * @param {string} replacement
11
- * @returns {string}
12
- */
13
2
  export function replaceBetween(input: string, begin: number, end: number, replacement: string): string;
14
- /**
15
- * @param {string} input
16
- * @param {[string, string][]} replacements
17
- * @returns {({begin: number, end: number, input: string, output: string}|string)[]}
18
- */
19
3
  export function replaceWithCoordinates(input: string, replacements: [string, string][]): (string | {
20
4
  begin: number;
21
5
  end: number;
@@ -1,25 +1,9 @@
1
- /**
2
- * @param {string} [prefix]
3
- * @returns {string}
4
- */
5
1
  export function getRandomId(prefix) {
6
2
  return `${prefix || ''}${Math.random().toString(32).slice(2)}`;
7
3
  }
8
- /**
9
- * @param {string} input
10
- * @param {number} begin
11
- * @param {number} end
12
- * @param {string} replacement
13
- * @returns {string}
14
- */
15
4
  export function replaceBetween(input, begin, end, replacement) {
16
5
  return input.substring(0, begin) + replacement + input.substring(end);
17
6
  }
18
- /**
19
- * @param {string} input
20
- * @param {[string, string][]} replacements
21
- * @returns {({begin: number, end: number, input: string, output: string}|string)[]}
22
- */
23
7
  export function replaceWithCoordinates(input, replacements) {
24
8
  const output = [];
25
9
  let currentIndex = 0;
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.2.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/@types+react@18.2.38/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.2/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.11/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.8/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.2.38/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.2.38/node_modules/@types/react/jsx-runtime.d.ts","../src/components/AutoTextarea.js","../../sdk/types/client.d.ts","../../sdk/types/bot/session/v1.d.ts","../../sdk/types/bot/session/index.d.ts","../../sdk/types/bot/v1.d.ts","../../sdk/types/bot/index.d.ts","../../sdk/types/file/v1.d.ts","../../sdk/types/file/index.d.ts","../../sdk/types/magic/v1.d.ts","../../sdk/types/magic/index.d.ts","../../sdk/types/partner/user/token/v1.d.ts","../../sdk/types/partner/user/token/index.d.ts","../../sdk/types/partner/user/v1.d.ts","../../sdk/types/partner/user/index.d.ts","../../sdk/types/partner/index.d.ts","../../sdk/types/dataset/file/v1.d.ts","../../sdk/types/dataset/file/index.d.ts","../../sdk/types/dataset/record/v1.d.ts","../../sdk/types/dataset/record/index.d.ts","../../sdk/types/dataset/v1.d.ts","../../sdk/types/dataset/index.d.ts","../../sdk/types/skillset/ability/v1.d.ts","../../sdk/types/skillset/ability/index.d.ts","../../sdk/types/skillset/v1.d.ts","../../sdk/types/skillset/index.d.ts","../../sdk/types/integration/sitemap/v1.d.ts","../../sdk/types/integration/sitemap/index.d.ts","../../sdk/types/integration/whatsapp/v1.d.ts","../../sdk/types/integration/whatsapp/index.d.ts","../../sdk/types/integration/index.d.ts","../../sdk/types/conversation/message/v1.d.ts","../../sdk/types/conversation/message/index.d.ts","../../sdk/types/conversation/session/v1.d.ts","../../sdk/types/conversation/session/index.d.ts","../../sdk/types/conversation/v1.d.ts","../../sdk/types/conversation/index.d.ts","../../sdk/types/index.d.ts","../src/utils/object.js","../src/hooks/useConversationManager.js","../src/index.js","../src/components/AutoScroller.js","../src/utils/string.js","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/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.9.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.9.1/node_modules/@types/node/index.d.ts","../../../node_modules/@types/better-sqlite3/index.d.ts","../../../node_modules/ci-info/index.d.ts","../../../node_modules/@types/is-ci/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/stack-trace/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980",{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda",{"version":"e1cb2915fbf8222e5b43d085a77f80d9eb6f54d77f46c7f899a2d74d9f3afb4e","affectsGlobalScope":true},"2879a055439b6c0c0132a1467120a0f85b56b5d735c973ad235acd958b1b5345",{"version":"6932c70d20762ed63a1b787b84b72e9189d1ad8179195a1f7d9d4b194c520212","signature":"17cae2202adcfae86ddbccb33ec6c2121d8cdd98ea0184529a41b2313c680c6c"},"e20a0e731d3d7d14e44bb282e585f51674c63b1f6ae5394382a65de348cec33d","fcbccdb0aa2cfbeb0e0fed6bfce64493b8f33eba19e251b422d5ba908c54690a","a0fbbbd54dec69706e9f1d7d949e7c3e216996a230ab4decfb76adbc697e9b62","e97cecaf14106159aae8dad4d831ba6529a8efdbeb01a78f4e843d2faed6c0e4","0d43c26678eab33610463c4a1f77a3b9bebf1103baa40cccc9604fb329ff2d15","73af2a2e137ebfa4ac21dbc4adfce258e32bfbdfb5554a3f3484809f5deb94fe","ba7333de569e4c63fff895adab281e42c4529ab54626733138d254a7c7307f77","1b8e9af2c30060ae6426ef76b4fd6bb381e6c443eafde5f559bb729257984e8a","6e59b2dc438e22e010bbcbf8da0effe9b4977728c6993171255ed1eba729488f","c3e3c9e290f5ed18d92dc2663a5e25fb04cbd72c2596c90f20eee2688d7734a6","0a18219d2e1492026a194b443514e9f8021c16da27f6d15654450cdd31d84f0b","4dc7a0719d46efe3e8776d20c347f27749243b2bc72b406b2a91e11cfbe328b8","072dcc7dac1d266414049ac9ae82d5755a9a511f7145bc83b4622b05d4182c58","966f4ef8e77112e83791a8ad249fef2121464b984248bccaa7f40c94cc72c95e","eb617bcab5268b8195dc023a3c32c587fdc65cbc8eef3585703e19805ac9ec20","3f70a6168d8b56b6b60da91bfc19c0835ebd0e67b78bd4c2cb4e3a3d4e7471d9","4341abe2d0177af32a10565d806653ed9fc1293a54cb1f125151fb6222a80e80","ba89b05d2b693bfa45dc2c529a22458a10493bfc26ec098fe9a7aae58dac6e4f","5e625c4e5537965937c92ec4d41eeaaa34a4f60e1df8034d93dffc4915fe73c3","5d680b14736840dfe89b2c2da3174dd68e49cbdc06f93af74b99b3fa609856bb","ab52a8dccf1c69156c16e0b49383718deb908dd9c713a3db4fcc09209f349e47","9fcacf073ba113a2fc1e788188792418c589ce64a36c1a3cc04d5d2bb085d758","b6c4dc4f31360a05e021b6e7487bca9a096449a88d6f4364b1d1b1680b7035b9","228a3bad6c46ce49d3e497a4a8597417a8e99c1dd8b008ba1a195e7a0ea6b849","b6669fdfa1ce2f9c0786847195eb878d678e30c63dec01d9b4e555d6a66a2253","017ccfd26312fe9fa8d8f1f0ddcd4f804d9c80306a8a3dfc25fe9f3de665f7d9","1ed6a179a9dcab8af062fa9459d638dfeff48067912401774e574d93f7368169","da66007e28cb92fdb068438c0b29ca71a5e8dffb845cbabddf2ac77c404df19e","63ed5540c1250a2da151f74ebdd564942be1427e444af764bed65e1ced064b12","721f19f1e0bcc36b79a40d6d68802786f4a1201efc61cab4b80457cecaa3c252","a0da169c47393e319f64c726d279692852fac4ee46e3afe579a4693f481929a7","847301db08ec1060d61d6621602cf24e7acb10e47f2798c66c9c8bf62ba53872","0a1498deaad78e04aa71524acec88d2a99ce7cc1df5af20f86ca2e9c7069fe0a","eafbfbe8ded4f1c919d1cb13fcea2224f0eb431a0160883962af9c86c4d7a569","17b09ac8dfc498c3bf1749d5d33270177aeb16df529c1367b57bd5e9b182008d","67d3cb9cbf1ef2ed708c84c9c352d8658f645df7701ce8fb19cd39f42c1d7716",{"version":"3fc62362afa7c76bebb3b8c5a5fa5bc18334b57c1074c5d51d3002c7ce000f49","signature":"c94af97e67e2c6c1c701ab4bf50a1d171bdeb70362e1726876996f7144dc3c7e"},{"version":"c058e6309742c2a1a03b7982f2563cea067ee45e42d625aced47ea6ac360d2b1","signature":"161c2d2c073bf133c8c8e48b7458e46d611a45bfa53d56155035a7d0fcaf7c97"},{"version":"a8e109b53ee662a81685844a1ce58d28ed023b2473673fe4c84ef526ea190341","signature":"65a38687400632182504f3a54499047ec318510d30d4e5117ff213a34ec57414"},{"version":"d0035ca63ad74254be9b0a5b333af8de9b29ef1197f7d62c88c7cc59a76bf80a","signature":"b9c70c56e52bd7fd61f070327cb80bd81b014878a0a963c1d08770a4165ec11d"},{"version":"90c4117d055083c9a1288b6a058941d18216b3b8aef7e037a112dd27a667bafe","signature":"ae38412f5576351fd8d1f227faaa5749b71dd279dea697fa68e750e7fb1e806e"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"0b3868d3f87c95ea73bdfab380e536843ec3573aa76233b97aac40518494ea24","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"308b84e1943ef30015469770e931eb21b795348893b2a6562ca54ea8f0b3c41c","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","84b8cc86ad19115f2637401cdd220460a25542df478c966a5ffc5eeaf3825299",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","b310d0ecac745104887df9d5e3bf9651df9f5391b0d369adaebe12ed1905e459","6a61697f65beb341884485c695894ee1876a45c1a7190d76cb4a57a679c9d5b8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","5b5337f28573ffdbc95c3653c4a7961d0f02fdf4788888253bf74a3b5a05443e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","85f8ebd7f245e8bf29da270e8b53dcdd17528826ffd27176c5fc7e426213ef5a","8b5d6b8b473ed3f589ca8bb5f49e5f150451b6df73d4cbc43d8e4de78794a8eb"],"root":[53,[90,94]],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./cjs","preserveConstEnums":true,"removeComments":true,"rootDir":"../src","strict":true,"target":5,"useUnknownInCatchVariables":false},"fileIdsList":[[95,173],[130,173],[131,136,164,173],[132,143,144,151,161,172,173],[132,133,143,151,173],[134,173],[135,136,144,152,173],[136,161,169,173],[137,139,143,151,173],[138,173],[139,140,173],[143,173],[141,143,173],[130,143,173],[143,144,145,161,172,173],[143,144,145,158,161,164,173],[128,173,177],[173],[139,143,146,151,161,172,173],[143,144,146,147,151,161,169,172,173],[146,148,161,169,172,173],[95,96,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[143,149,173],[150,172,173,177],[139,143,151,161,173],[152,173],[153,173],[130,154,173],[155,171,173,177],[156,173],[157,173],[143,158,159,173],[158,160,173,175],[131,143,161,162,163,164,173],[131,161,163,173],[161,162,173],[164,173],[165,173],[130,161,173],[143,167,168,173],[167,168,173],[136,151,161,169,173],[170,173],[151,171,173],[131,146,157,172,173],[136,173],[161,173,174],[150,173,175],[173,176],[131,136,143,145,154,161,172,173,175,177],[161,173,178],[47,48,49,50,173],[51,173],[105,109,172,173],[105,161,172,173],[100,173],[102,105,169,172,173],[151,169,173],[173,180],[100,173,180],[102,105,151,172,173],[97,98,101,104,131,143,161,172,173],[97,103,173],[101,105,131,164,172,173,180],[131,173,180],[121,131,173,180],[99,100,173,180],[105,173],[99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,122,123,124,125,126,127,173],[105,112,113,173],[103,105,113,114,173],[104,173],[97,100,105,173],[105,109,113,114,173],[109,173],[103,105,108,172,173],[97,102,103,105,109,112,173],[131,161,173],[100,105,121,131,173,177,180],[173,182],[173,190,229],[173,190,214,229],[173,229],[173,190],[173,190,215,229],[173,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,224,225,226,227,228],[173,215,229],[46,51,52,173],[46,51,52,89,90,173],[46,52,53,91,173],[46,52,173],[54,56,57,173],[54,55,173],[54,173],[54,84,86,87,173],[54,83,173],[54,85,173],[54,68,173],[54,69,71,72,173],[54,70,173],[54,59,173],[54,58,60,62,67,73,77,82,88,173],[54,79,81,173],[54,78,173],[54,80,173],[54,61,173],[54,66,173],[54,64,65,173],[54,63,173],[54,74,173],[54,75,76,173],[52],[51]],"referencedMap":[[95,1],[96,1],[130,2],[131,3],[132,4],[133,5],[134,6],[135,7],[136,8],[137,9],[138,10],[139,11],[140,11],[142,12],[141,13],[143,14],[144,15],[145,16],[129,17],[179,18],[146,19],[147,20],[148,21],[180,22],[149,23],[150,24],[151,25],[152,26],[153,27],[154,28],[155,29],[156,30],[157,31],[158,32],[159,32],[160,33],[161,34],[163,35],[162,36],[164,37],[165,38],[166,39],[167,40],[168,41],[169,42],[170,43],[171,44],[172,45],[173,46],[174,47],[175,48],[176,49],[177,50],[178,51],[49,18],[47,18],[51,52],[52,53],[50,18],[48,18],[44,18],[45,18],[8,18],[10,18],[9,18],[2,18],[11,18],[12,18],[13,18],[14,18],[15,18],[16,18],[17,18],[18,18],[3,18],[4,18],[19,18],[23,18],[20,18],[21,18],[22,18],[24,18],[25,18],[26,18],[5,18],[27,18],[28,18],[29,18],[30,18],[6,18],[34,18],[31,18],[32,18],[33,18],[35,18],[7,18],[36,18],[41,18],[42,18],[37,18],[38,18],[39,18],[40,18],[1,18],[43,18],[112,54],[119,55],[111,54],[126,56],[103,57],[102,58],[125,59],[120,60],[123,61],[105,62],[104,63],[100,64],[99,65],[122,66],[101,67],[106,68],[107,18],[110,68],[97,18],[128,69],[127,68],[114,70],[115,71],[117,72],[113,73],[116,74],[121,59],[108,75],[109,76],[118,77],[98,78],[124,79],[181,59],[183,80],[184,18],[185,18],[186,18],[187,18],[188,18],[189,18],[214,81],[215,82],[190,83],[193,83],[212,81],[213,81],[203,81],[202,84],[200,81],[195,81],[208,81],[206,81],[210,81],[194,81],[207,81],[211,81],[196,81],[197,81],[209,81],[191,81],[198,81],[199,81],[201,81],[205,81],[216,85],[204,81],[192,81],[229,86],[228,18],[223,85],[225,87],[224,85],[217,85],[218,85],[220,85],[222,85],[226,87],[227,87],[219,87],[221,87],[230,18],[182,18],[46,18],[93,88],[53,88],[91,89],[92,90],[90,91],[94,91],[58,92],[56,93],[55,94],[57,94],[54,18],[88,95],[84,96],[83,94],[86,97],[85,94],[87,94],[69,98],[68,94],[73,99],[71,100],[70,94],[72,94],[60,101],[59,94],[89,102],[82,103],[79,104],[78,94],[81,105],[80,94],[62,106],[61,94],[67,107],[66,108],[64,109],[63,94],[65,94],[75,110],[74,94],[77,111],[76,94]],"exportedModulesMap":[[95,1],[96,1],[130,2],[131,3],[132,4],[133,5],[134,6],[135,7],[136,8],[137,9],[138,10],[139,11],[140,11],[142,12],[141,13],[143,14],[144,15],[145,16],[129,17],[179,18],[146,19],[147,20],[148,21],[180,22],[149,23],[150,24],[151,25],[152,26],[153,27],[154,28],[155,29],[156,30],[157,31],[158,32],[159,32],[160,33],[161,34],[163,35],[162,36],[164,37],[165,38],[166,39],[167,40],[168,41],[169,42],[170,43],[171,44],[172,45],[173,46],[174,47],[175,48],[176,49],[177,50],[178,51],[49,18],[47,18],[51,52],[52,53],[50,18],[48,18],[44,18],[45,18],[8,18],[10,18],[9,18],[2,18],[11,18],[12,18],[13,18],[14,18],[15,18],[16,18],[17,18],[18,18],[3,18],[4,18],[19,18],[23,18],[20,18],[21,18],[22,18],[24,18],[25,18],[26,18],[5,18],[27,18],[28,18],[29,18],[30,18],[6,18],[34,18],[31,18],[32,18],[33,18],[35,18],[7,18],[36,18],[41,18],[42,18],[37,18],[38,18],[39,18],[40,18],[1,18],[43,18],[112,54],[119,55],[111,54],[126,56],[103,57],[102,58],[125,59],[120,60],[123,61],[105,62],[104,63],[100,64],[99,65],[122,66],[101,67],[106,68],[107,18],[110,68],[97,18],[128,69],[127,68],[114,70],[115,71],[117,72],[113,73],[116,74],[121,59],[108,75],[109,76],[118,77],[98,78],[124,79],[181,59],[183,80],[184,18],[185,18],[186,18],[187,18],[188,18],[189,18],[214,81],[215,82],[190,83],[193,83],[212,81],[213,81],[203,81],[202,84],[200,81],[195,81],[208,81],[206,81],[210,81],[194,81],[207,81],[211,81],[196,81],[197,81],[209,81],[191,81],[198,81],[199,81],[201,81],[205,81],[216,85],[204,81],[192,81],[229,86],[228,18],[223,85],[225,87],[224,85],[217,85],[218,85],[220,85],[222,85],[226,87],[227,87],[219,87],[221,87],[230,18],[182,18],[46,18],[93,112],[53,112],[91,113],[58,92],[56,93],[55,94],[57,94],[54,18],[88,95],[84,96],[83,94],[86,97],[85,94],[87,94],[69,98],[68,94],[73,99],[71,100],[70,94],[72,94],[60,101],[59,94],[89,102],[82,103],[79,104],[78,94],[81,105],[80,94],[62,106],[61,94],[67,107],[66,108],[64,109],[63,94],[65,94],[75,110],[74,94],[77,111],[76,94]],"semanticDiagnosticsPerFile":[95,96,130,131,132,133,134,135,136,137,138,139,140,142,141,143,144,145,129,179,146,147,148,180,149,150,151,152,153,154,155,156,157,158,159,160,161,163,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,49,47,51,52,50,48,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,112,119,111,126,103,102,125,120,123,105,104,100,99,122,101,106,107,110,97,128,127,114,115,117,113,116,121,108,109,118,98,124,181,183,184,185,186,187,188,189,214,215,190,193,212,213,203,202,200,195,208,206,210,194,207,211,196,197,209,191,198,199,201,205,216,204,192,229,228,223,225,224,217,218,220,222,226,227,219,221,230,182,46,93,53,91,92,90,94,58,56,55,57,54,88,84,83,86,85,87,69,68,73,71,70,72,60,59,89,82,79,78,81,80,62,61,67,66,64,63,65,75,74,77,76]},"version":"5.2.2"}